* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: transparent;
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.comparison-section {
    max-width: 1100px;
    width: 100%;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

.comparison-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 0;
    align-items: stretch;
}

.comparison-card {
    background: #fff;
    border-radius: 24px;
    padding: 40px 32px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.comparison-card:hover {
    transform: translateY(-8px);
}

/* Klasik Sistem - Sol Kart */
.card-before {
    background: linear-gradient(145deg, #fff 0%, #fef2f2 100%);
    border: 2px solid #fecaca;
    box-shadow: 0 20px 60px rgba(239, 68, 68, 0.1);
}

.card-before:hover {
    box-shadow: 0 30px 80px rgba(239, 68, 68, 0.15);
}

.card-before .card-badge {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

/* Bütünleşik Fiş - Sağ Kart */
.card-after {
    background: linear-gradient(145deg, #fff 0%, #f0fdf4 100%);
    border: 2px solid #86efac;
    box-shadow: 0 20px 60px rgba(34, 197, 94, 0.1);
}

.card-after:hover {
    box-shadow: 0 30px 80px rgba(34, 197, 94, 0.15);
}

.card-after .card-badge {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
}

.card-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 50px;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
}

.card-badge svg {
    width: 18px;
    height: 18px;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 28px;
}

.card-before .card-title {
    color: #991b1b;
}

.card-after .card-title {
    color: #166534;
}

.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1;
    justify-content: center;
    margin-left: -14px;
    margin-right: -14px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    border-radius: 12px;
    transition: transform 0.2s ease;
}

.feature-item:hover {
    transform: translateX(4px);
}

.card-before .feature-item {
    background: rgba(239, 68, 68, 0.08);
}

.card-after .feature-item {
    background: rgba(34, 197, 94, 0.08);
}

.feature-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.card-before .feature-icon {
    background: linear-gradient(135deg, #fecaca 0%, #fca5a5 100%);
    color: #dc2626;
}

.card-after .feature-icon {
    background: linear-gradient(135deg, #bbf7d0 0%, #86efac 100%);
    color: #16a34a;
}

.feature-icon svg {
    width: 20px;
    height: 20px;
}

.feature-text {
    font-size: 1rem;
    font-weight: 500;
}

.card-before .feature-text {
    color: #7f1d1d;
}

.card-after .feature-text {
    color: #14532d;
}

/* Orta Ok Bölümü */
.divider {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    position: relative;
    z-index: 10;
}

.arrow-container {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(99, 102, 241, 0.4);
    animation: pulse 2s infinite;
}

.arrow-container svg {
    width: 32px;
    height: 32px;
    color: #fff;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 10px 40px rgba(99, 102, 241, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 15px 50px rgba(99, 102, 241, 0.5);
    }
}

/* Mobil Uyumluluk */
@media (max-width: 900px) {
    .comparison-container {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .divider {
        padding: 10px 0;
    }

    .arrow-container {
        width: 60px;
        height: 60px;
        transform: rotate(90deg);
    }

    .arrow-container svg {
        width: 24px;
        height: 24px;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .comparison-card {
        padding: 28px 24px;
    }

    .card-title {
        font-size: 1.3rem;
        text-align: left;
    }

    .card-badge {
        align-self: flex-start;
    }

    .feature-item {
        justify-content: flex-start;
        padding-left: 12px;
    }

    .feature-list {
        margin-left: -12px;
        margin-right: -12px;
    }
}

@media (max-width: 480px) {
    body {
        padding: 24px 16px;
    }

    .section-header {
        margin-bottom: 32px;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .section-header p {
        font-size: 1rem;
    }

    .comparison-card {
        padding: 24px 12px;
        border-radius: 20px;
    }

    .feature-list {
        margin-left: -8px;
        margin-right: -8px;
    }

    .feature-item {
        padding: 12px 8px;
    }

    .feature-icon {
        width: 32px;
        height: 32px;
    }

    .feature-text {
        font-size: 0.95rem;
    }
}

/* =====================================================
   ELIMINATE SECTION - Neyi Ortadan Kaldırır
   ===================================================== */

.eliminate-section {
    max-width: 900px;
    margin: 0 auto;
}

.eliminate-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.eliminate-section .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 50px;
    margin-bottom: 20px;
}

.eliminate-section .section-badge-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #dc2626;
}

.eliminate-section .section-badge-icon svg {
    width: 18px;
    height: 18px;
}

.eliminate-section .section-badge-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: #dc2626;
}

.eliminate-section .section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e293b;
    line-height: 1.3;
}

.eliminate-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.eliminate-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px 28px;
    background: linear-gradient(135deg, #fff 0%, #fef2f2 100%);
    border: 1px solid #fecaca;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.eliminate-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #ef4444 0%, #dc2626 100%);
}

.eliminate-item:hover {
    transform: translateX(8px);
    box-shadow: 0 10px 30px rgba(239, 68, 68, 0.1);
}

.eliminate-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, #fecaca 0%, #fca5a5 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
}

.eliminate-icon svg {
    width: 26px;
    height: 26px;
    color: #dc2626;
}

.eliminate-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23dc2626' stroke-width='3'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M6 18L18 6M6 6l12 12'/%3E%3C/svg%3E") center/60% no-repeat;
    opacity: 0.6;
}

.eliminate-content {
    flex: 1;
}

.eliminate-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #991b1b;
    margin-bottom: 4px;
    text-decoration: line-through;
    text-decoration-color: #ef4444;
    text-decoration-thickness: 2px;
}

.eliminate-desc {
    font-size: 0.9rem;
    color: #7f1d1d;
    opacity: 0.8;
}

.eliminate-x {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

.eliminate-x svg {
    width: 18px;
    height: 18px;
    color: #fff;
}

/* Eliminate Section - Mobil */
@media (max-width: 768px) {
    .eliminate-section .section-title {
        font-size: 1.8rem;
    }

    .eliminate-item {
        padding: 20px 20px;
        gap: 16px;
    }

    .eliminate-icon {
        width: 44px;
        height: 44px;
    }

    .eliminate-icon svg {
        width: 22px;
        height: 22px;
    }

    .eliminate-title {
        font-size: 1.05rem;
    }

    .eliminate-x {
        width: 32px;
        height: 32px;
    }

    .eliminate-x svg {
        width: 16px;
        height: 16px;
    }
}

@media (max-width: 480px) {
    .eliminate-section .section-header {
        margin-bottom: 32px;
    }

    .eliminate-section .section-title {
        font-size: 1.5rem;
    }

    .eliminate-item {
        padding: 16px 14px;
        gap: 12px;
    }

    .eliminate-icon {
        width: 40px;
        height: 40px;
        border-radius: 10px;
    }

    .eliminate-icon svg {
        width: 20px;
        height: 20px;
    }

    .eliminate-title {
        font-size: 1rem;
    }

    .eliminate-desc {
        font-size: 0.85rem;
    }

    .eliminate-x {
        width: 28px;
        height: 28px;
    }

    .eliminate-x svg {
        width: 14px;
        height: 14px;
    }
}

/* =====================================================
   NEDIR SECTION - Bütünleşik Fiş Nedir?
   ===================================================== */

.nedir-section {
    max-width: 100%;
    margin: 0 auto;
    padding: 60px 20px;
}

/* Hero Başlık */
.nedir-hero {
    text-align: center;
    margin-bottom: 48px;
}

.nedir-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 50px;
    margin-bottom: 24px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #16a34a;
}

.nedir-badge svg {
    width: 18px;
    height: 18px;
}

.nedir-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #1e293b;
    line-height: 1.2;
    margin-bottom: 16px;
}

.nedir-title .highlight {
    background: linear-gradient(135deg, #22c55e 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nedir-subtitle {
    font-size: 1.15rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Ana Açıklama Kartı */
.nedir-main-card {
    position: relative;
    background: linear-gradient(135deg, #fff 0%, #f0fdf4 100%);
    border: 1px solid #bbf7d0;
    border-radius: 24px;
    padding: 40px;
    margin-bottom: 40px;
    overflow: hidden;
}

.card-glow {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.nedir-main-content {
    position: relative;
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.nedir-icon-large {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 24px rgba(34, 197, 94, 0.3);
}

.nedir-icon-large svg {
    width: 32px;
    height: 32px;
    color: #fff;
}

.nedir-main-text {
    font-size: 1.1rem;
    color: #334155;
    line-height: 1.8;
}

.nedir-main-text strong {
    color: #166534;
}

/* Karşılaştırma Bölümü */
.nedir-compare {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 48px;
}

.compare-card {
    flex: 1;
    padding: 28px;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.compare-card:hover {
    transform: translateY(-4px);
}

.compare-old {
    background: linear-gradient(135deg, #fff 0%, #fef2f2 100%);
    border: 1px solid #fecaca;
}

.compare-new {
    background: linear-gradient(135deg, #fff 0%, #f0fdf4 100%);
    border: 1px solid #bbf7d0;
}

.compare-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.compare-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.compare-old .compare-icon {
    background: linear-gradient(135deg, #fecaca 0%, #fca5a5 100%);
    color: #dc2626;
}

.compare-new .compare-icon {
    background: linear-gradient(135deg, #bbf7d0 0%, #86efac 100%);
    color: #16a34a;
}

.compare-icon svg {
    width: 20px;
    height: 20px;
}

.compare-header h3 {
    font-size: 1.1rem;
    font-weight: 700;
}

.compare-old .compare-header h3 {
    color: #991b1b;
}

.compare-new .compare-header h3 {
    color: #166534;
}

.compare-text {
    font-size: 0.95rem;
    line-height: 1.6;
}

.compare-old .compare-text {
    color: #7f1d1d;
}

.compare-new .compare-text {
    color: #14532d;
}

.compare-arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #22c55e 0%, #3b82f6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(34, 197, 94, 0.3);
}

.compare-arrow svg {
    width: 24px;
    height: 24px;
    color: #fff;
}

/* Özellik Blokları */
.nedir-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 48px;
}

.feature-block {
    display: flex;
    gap: 16px;
    padding: 24px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.feature-block:hover {
    border-color: #22c55e;
    box-shadow: 0 8px 24px rgba(34, 197, 94, 0.1);
}

.feature-number {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #22c55e 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.feature-content h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 6px;
}

.feature-content p {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.6;
}

/* Avantajlar Listesi */
.nedir-advantages {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 24px;
    padding: 36px;
    margin-bottom: 48px;
}

.advantages-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e293b;
    text-align: center;
    margin-bottom: 28px;
}

.advantages-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.advantage-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: #fff;
    border-radius: 50px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.advantage-item:hover {
    border-color: #22c55e;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.15);
}

.advantage-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #16a34a;
}

.advantage-icon svg {
    width: 16px;
    height: 16px;
}

.advantage-item span {
    font-size: 0.9rem;
    font-weight: 500;
    color: #334155;
}

/* Sonuç Mesajı */
.nedir-conclusion {
    background: linear-gradient(135deg, #22c55e 0%, #3b82f6 100%);
    border-radius: 24px;
    padding: 40px;
    text-align: center;
}

.conclusion-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}

.conclusion-content p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto 24px;
}

.conclusion-highlight {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

.conclusion-highlight svg {
    width: 22px;
    height: 22px;
    color: #fff;
}

.conclusion-highlight span {
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
}

/* Nedir Section - Mobil */
@media (max-width: 768px) {
    .nedir-section {
        padding: 40px 16px;
    }

    .nedir-title {
        font-size: 2rem;
    }

    .nedir-title br {
        display: none;
    }

    .nedir-subtitle {
        font-size: 1rem;
    }

    .nedir-main-card {
        padding: 28px 20px;
    }

    .nedir-main-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .nedir-icon-large {
        width: 56px;
        height: 56px;
    }

    .nedir-icon-large svg {
        width: 28px;
        height: 28px;
    }

    .nedir-main-text {
        font-size: 1rem;
    }

    .nedir-compare {
        flex-direction: column;
    }

    .compare-arrow {
        transform: rotate(90deg);
    }

    .nedir-features {
        grid-template-columns: 1fr;
    }

    .nedir-advantages {
        padding: 28px 20px;
    }

    .advantages-grid {
        flex-direction: column;
    }

    .advantage-item {
        justify-content: center;
    }

    .nedir-conclusion {
        padding: 32px 20px;
    }

    .conclusion-content h3 {
        font-size: 1.3rem;
    }

    .conclusion-content p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .nedir-hero {
        margin-bottom: 32px;
    }

    .nedir-title {
        font-size: 1.6rem;
    }

    .nedir-badge {
        padding: 8px 16px;
        font-size: 0.85rem;
    }

    .feature-block {
        padding: 20px 16px;
    }

    .feature-number {
        font-size: 1.6rem;
    }

    .feature-content h4 {
        font-size: 1rem;
    }

    .conclusion-highlight {
        padding: 12px 20px;
        flex-direction: column;
        gap: 8px;
    }
}

/* =====================================================
   FAYDALAR SECTION - Bütünleşik Fiş'in Faydaları
   ===================================================== */

.faydalar-section {
    max-width: 100%;
    margin: 0 auto;
    padding: 60px 20px;
}

.faydalar-header {
    text-align: center;
    margin-bottom: 48px;
}

.faydalar-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 50px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #16a34a;
}

.faydalar-badge svg {
    width: 18px;
    height: 18px;
}

.faydalar-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e293b;
    line-height: 1.3;
}

/* Faydalar Grid */
.faydalar-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.fayda-card {
    display: flex;
    gap: 18px;
    padding: 28px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.fayda-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    border-color: transparent;
}

.fayda-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.fayda-icon svg {
    width: 26px;
    height: 26px;
}

/* Fayda Icon Renkleri */
.fayda-icon.blue {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    color: #2563eb;
}

.fayda-icon.green {
    background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
    color: #16a34a;
}

.fayda-icon.red {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    color: #dc2626;
}

.fayda-icon.purple {
    background: linear-gradient(135deg, #ede9fe 0%, #ddd6fe 100%);
    color: #7c3aed;
}

.fayda-icon.teal {
    background: linear-gradient(135deg, #ccfbf1 0%, #99f6e4 100%);
    color: #0d9488;
}

.fayda-icon.orange {
    background: linear-gradient(135deg, #ffedd5 0%, #fed7aa 100%);
    color: #ea580c;
}

.fayda-icon.indigo {
    background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 100%);
    color: #4f46e5;
}

.fayda-icon.emerald {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    color: #059669;
}

.fayda-icon.cyan {
    background: linear-gradient(135deg, #cffafe 0%, #a5f3fc 100%);
    color: #0891b2;
}

.fayda-icon.sky {
    background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
    color: #0284c7;
}

.fayda-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
}

.fayda-content p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
}

/* Faydalar Section - Mobil */
@media (max-width: 768px) {
    .faydalar-section {
        padding: 40px 16px;
    }

    .faydalar-title {
        font-size: 1.8rem;
    }

    .faydalar-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .fayda-card {
        padding: 22px 18px;
        gap: 14px;
    }

    .fayda-icon {
        width: 46px;
        height: 46px;
    }

    .fayda-icon svg {
        width: 22px;
        height: 22px;
    }

    .fayda-content h3 {
        font-size: 1rem;
    }

    .fayda-content p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .faydalar-header {
        margin-bottom: 32px;
    }

    .faydalar-title {
        font-size: 1.5rem;
    }

    .faydalar-badge {
        padding: 8px 16px;
        font-size: 0.85rem;
    }

    .fayda-card {
        padding: 18px 14px;
    }

    .fayda-icon {
        width: 42px;
        height: 42px;
        border-radius: 12px;
    }

    .fayda-icon svg {
        width: 20px;
        height: 20px;
    }
}

/* =====================================================
   CTA SECTION - İletişim Call to Action
   ===================================================== */

.cta-section {
    position: relative;
    width: 100%;
    margin: 0;
    padding: 80px 20px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    border-radius: 0;
    overflow: hidden;
    text-align: center;
}

.cta-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    pointer-events: none;
}

.cta-glow-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    top: -100px;
    left: -100px;
}

.cta-glow-2 {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    bottom: -80px;
    right: -80px;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 50px;
    margin-bottom: 24px;
}

.cta-badge svg {
    width: 18px;
    height: 18px;
    color: #22c55e;
}

.cta-badge span {
    font-size: 0.9rem;
    font-weight: 600;
    color: #22c55e;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 16px;
}

.cta-title .highlight {
    background: linear-gradient(135deg, #22c55e 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 14px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-btn svg {
    width: 20px;
    height: 20px;
}

.cta-btn-primary {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: #fff;
    box-shadow: 0 8px 24px rgba(34, 197, 94, 0.4);
}

.cta-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(34, 197, 94, 0.5);
}

.cta-btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.cta-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

.cta-features {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cta-feature svg {
    width: 18px;
    height: 18px;
    color: #22c55e;
}

.cta-feature span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* CTA Section - Mobil */
@media (max-width: 768px) {
    .cta-section {
        padding: 60px 20px;
        border-radius: 0;
    }

    .cta-title {
        font-size: 1.8rem;
    }

    .cta-description {
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 14px 28px;
    }

    .cta-features {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }

    .cta-glow-1 {
        width: 250px;
        height: 250px;
        top: -50px;
        left: -50px;
    }

    .cta-glow-2 {
        width: 200px;
        height: 200px;
        bottom: -40px;
        right: -40px;
    }
}

@media (max-width: 480px) {
    .cta-section {
        padding: 48px 16px;
        border-radius: 0;
    }

    .cta-title {
        font-size: 1.5rem;
    }

    .cta-badge {
        padding: 8px 16px;
    }

    .cta-badge span {
        font-size: 0.85rem;
    }

    .cta-btn {
        padding: 12px 24px;
        font-size: 0.95rem;
    }
}