/* Genel Ayarlar ve Değişkenler */
:root {
    /* 2. Renk Paletini "Yetişkinleştirmek" */
    --brand-primary: #6f42c1;
    --brand-dark: #4b2c85;
    --accent-color: #00D2D3; /* Canlılık için modern bir turkuaz */
    --surface-color: #ffffff;
    --text-main: #1e293b;
    --text-muted: #64748b;
    --border-color: #e2e8f0;
    --shadow-soft: 0 10px 40px -10px rgba(111, 66, 193, 0.15); /* Morumsu yumuşak gölge */
    --light-color: #F8F9FC; /* Arka plan rengi için yeni değişken */
    --container-width: 1100px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    /* 1. Tipografi ile Karakter Kazandırma */
    font-family: 'Plus Jakarta Sans', sans-serif;
    line-height: 1.6;
    color: var(--text-main);
    background-color: var(--light-color);
}

.container {
    max-width: var(--container-width);
    margin: auto;
    overflow: hidden;
    padding: 0 2rem;
}

h1, h2, h3 {
    color: var(--text-main);
    margin-bottom: 1rem;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; text-align: center; }
p { margin-bottom: 1rem; }
p, li, a, button { color: var(--text-muted); }
a {
    text-decoration: none;
    color: var(--primary-color);
}

ul {
    list-style: none;
}

/* Butonlar */
.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-primary {
    /* 5. Butonları Canlandırmak */
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-dark));
    border: none;
    box-shadow: 0 4px 15px rgba(111, 66, 193, 0.4); /* Butonun kendi renginde gölgesi */
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 50px; /* Tam yuvarlak (Pill shape) */
    color: #fff;
}

.btn-secondary {
    background-color: var(--surface-color);
    color: var(--text-main);
    border: 1px solid #ccc;
}

.btn-large {
    font-size: 1.2rem;
    padding: 1rem 2rem;
}

.btn-primary:hover {
    transform: scale(1.05); /* Hafif büyüme */
    box-shadow: 0 6px 20px rgba(111, 66, 193, 0.6);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

.btn-outline-primary {
    background-color: transparent;
    border: 1px solid var(--brand-primary);
    color: var(--brand-primary);
    font-weight: 600;
}

.btn-outline-primary:hover {
    background-color: var(--brand-primary);
    color: #fff;
}

/* Header ve Navigasyon */
header {
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 1rem 0;
}

header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}


header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--text-main);
}

header .logo .logo-slogan {
    font-size: 0.8rem;
    font-weight: 400;
    color: #999;
    margin-left: 0.5rem;
}

header ul {
    display: flex;
}

header ul li {
    margin-left: 2rem;
}

header ul li a {
    color: var(--text-main);
    font-weight: 500;
    transition: color 0.3s ease;
}

header ul li a:hover {
    color: var(--brand-primary);
}

header .buttons .btn {
    margin-left: 1rem;
}

/* Bölümler */
section {
    padding: 4rem 0;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
}

/* Hero Bölümü */
#hero {
    /* 4. Hero Bölümünü "Vurucu" Yapmak */
    position: relative;
    text-align: center;
    padding-top: 8rem;
    padding-bottom: 6rem;
    background: radial-gradient(circle at 10% 20%, rgba(111, 66, 193, 0.05) 0%, transparent 40%),
                radial-gradient(circle at 90% 80%, rgba(0, 210, 211, 0.05) 0%, transparent 40%);
}

#hero h1 {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 800; /* Çok kalın */
    letter-spacing: -1px; /* Harfleri birbirine yaklaştır (Modern stil) */
    line-height: 1.1;
    background: linear-gradient(135deg, var(--text-main) 0%, var(--brand-primary) 100%);
    -webkit-background-clip: text;
    background-clip: text; /* Standart özellik eklenerek uyumluluk artırıldı */
    -webkit-text-fill-color: transparent; /* Başlığı renk geçişli yap */
    margin-bottom: 1.5rem;
}

#hero .subtext {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 1rem auto 2rem auto;
}

#hero .cta-note {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

#hero .hero-image {
    margin-top: 3rem;
}

#hero .hero-image img {
    max-width: 100%;
    border-radius: 20px;
    border: 8px solid rgba(255, 255, 255, 0.5); /* Yarı saydam çerçeve */
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); /* Derin gölge */
}

/* Değer Önermesi & Özellikler Bölümü */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.feature-card {
    /* 3. Kart Tasarımı: "Bento Grid" ve Cam Efekti */
    background: var(--surface-color);
    border: 1px solid var(--border-color); /* İnce, zarif bir kenarlık */
    border-radius: 24px; /* Daha kavisli köşeler (Modern trend) */
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Yaylanma efekti */
    box-shadow: 0 4px 6px rgba(0,0,0,0.02); /* Çok hafif gölge */
    position: relative;
    overflow: hidden;
}



/* Kaydırma Animasyonu için başlangıç durumu */
.feature-card, .pricing-card, .contact-form {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}


.feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--brand-primary);
    box-shadow: var(--shadow-soft);
}

/* Kartın içine hafif bir renk parlaması ekleyelim */
.feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 5px;
    background: linear-gradient(90deg, var(--brand-primary), var(--accent-color));
    opacity: 0;
    transition: opacity 0.3s;
}
.feature-card:hover::before {
    opacity: 1;
}

.feature-card i {
    font-size: 3rem;
    color: var(--brand-primary);
    margin-bottom: 1rem;
}

/* Eleman görünür olduğunda uygulanacak stil */
.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Nasıl Çalışır Bölümü */
.light-bg {
    background-color: var(--surface-color);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    text-align: center;
    margin-top: 3rem;
}

.step-card {
    position: relative;
}

.step-card span {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    background-color: var(--brand-purple);
    color: #fff;
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

/* Sosyal Kanıt Bölümü */
#social-proof {
    padding: 2rem 0;
    border-top: 1px solid #eee;
}

/* Fiyatlandırma Bölümü */
#pricing {
    background-color: var(--surface-color);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.pricing-card {
    background: #fff;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    position: relative;
    border: 1px solid #eee;
}

.pricing-card.popular {
    border: 2px solid var(--brand-primary);
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--brand-primary);
    color: #fff;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
}

.pricing-card .price {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.pricing-card .price span {
    font-size: 3rem;
    font-weight: bold;
    color: var(--text-main);
}

.pricing-card ul {
    margin-bottom: 2rem;
}

.pricing-card ul li {
    margin-bottom: 0.8rem;
}

.pricing-card ul li i {
    margin-right: 0.5rem;
}

.pricing-card ul li .fa-check { color: green; }
.pricing-card ul li .fa-times { color: red; }

/* Footer */
footer {
    background: var(--surface-color);
    padding: 5rem 0 2rem 0;
    text-align: center;
    border-top: 1px solid var(--border-color);
    margin-top: 4rem;
}

footer .footer-cta {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 2rem;
}

/* Footer Grid Yapısı */
.footer-main {
    padding: 4rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr; /* Marka sütunu daha geniş */
    gap: 3rem;
    text-align: left;
}

.footer-col h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-main);
}

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col ul li a {
    transition: all 0.3s ease;
    position: relative;
}

.footer-col ul li a:hover {
    color: var(--brand-primary);
    transform: translateY(-2px);
    display: inline-block; /* Transform için gereklidir */
}

.footer-col.brand-col p {
    margin-top: 1rem;
    margin-bottom: 1.5rem;
    max-width: 300px;
}

.social-links a { margin-right: 1rem; font-size: 1.2rem; }

footer .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    font-size: 0.9rem;
}

footer p {
    margin: 0.5rem 0;
    color: var(--text-muted);
}

footer a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--brand-primary);
}

/* --- FEATURES SAYFASI ÖZEL STİLLERİ --- */

/* 1. Hero Düzenlemeleri */
#features-hero {
    padding: 8rem 0 4rem 0;
    max-width: 800px;
}
.badge-pill {
    background: rgba(111, 66, 193, 0.1);
    color: var(--brand-primary);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 1rem;
}
.gradient-text {
    background: linear-gradient(135deg, var(--brand-primary), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* 2. Zig-Zag Bölümü (Core Özellikler) */
.feature-block {
    padding: 6rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
.feature-grid {
    display: flex;
    align-items: center;
    gap: 4rem;
}
.reverse-layout .feature-grid {
    flex-direction: row-reverse; /* Görseli sola, metni sağa alır */
}
.text-content h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-align: left; /* h2'yi sola hizala */
}
.text-content .lead {
    font-size: 1.2rem;
    color: var(--text-main); /* Rengi --text-color yerine --text-main olarak düzelttim */
    margin-bottom: 1.5rem;
}
.feature-check-list {
    margin-top: 2rem;
}
.feature-check-list li {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    font-weight: 500;
    color: var(--text-main); /* Rengi --dark-color yerine --text-main olarak düzelttim */
}
.feature-check-list li i {
    color: #27ae60; /* Onay yeşili */
    margin-right: 0.8rem;
    font-size: 1.2rem;
}

/* Görsel Mockup Efekti */
.screen-mockup img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 50px -10px rgba(0,0,0,0.15); /* Derin gölge */
    border: 1px solid rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}
.screen-mockup:hover img {
    transform: translateY(-5px);
}

/* İkon Kutuları */
.icon-box {
    width: 60px; height: 60px;
    border-radius: 16px;
    background: rgba(111, 66, 193, 0.1); /* Mor Arka Plan */
    color: var(--brand-primary);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}
.icon-box.icon-teal {
    background: rgba(0, 210, 211, 0.1);
    color: #00D2D3;
}

/* 3. Bento Grid (Prestijli Özellikler) */
#pro-features {
    padding: 6rem 0;
    background-color: #F8FAFC; /* Hafif kirli beyaz zemin */
}
.section-header {
    max-width: 700px;
    margin: 0 auto 4rem auto;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 Sütunlu yapı */
    grid-template-rows: auto auto; /* 2 Satır */
    gap: 2rem;
}

.bento-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 24px;
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}

.bento-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    border-color: var(--brand-primary);
}

/* İlk kartı geniş yapalım (Vardiya Defteri önemli) */
.large-card {
    grid-column: span 2; /* 2 birim yer kaplasın */
    background: linear-gradient(135deg, #fff 0%, #fcfcfc 100%);
}

.bento-card i {
    font-size: 2.5rem;
    color: var(--brand-primary);
    margin-bottom: 1.5rem;
    display: block;
}

.bento-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
}

.bento-card p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Mobil Uyumluluk */
@media (max-width: 900px) {
    .feature-grid {
        flex-direction: column;
        text-align: center;
    }
    .reverse-layout .feature-grid {
        flex-direction: column; /* Mobilde görsel hep üstte/altta standart olsun */
    }
    .text-content { order: 2; } /* Metin altta */
    .image-content { order: 1; } /* Görsel üstte */
    .feature-check-list li { justify-content: center; } /* Listeyi ortala */
    .icon-box { margin: 0 auto 1.5rem auto; }
    
    .bento-grid { grid-template-columns: 1fr; } /* Mobilde tek sütun */
    .large-card { grid-column: span 1; }
}

/* ====================================================== */
/* YENİ KATEGORİK ÖZELLİK BÖLÜMÜ */
/* ====================================================== */
#all-features {
    padding: 6rem 0;
    background-color: #F8FAFC;
}

.feature-category {
    margin-bottom: 5rem;
}

.feature-category:last-child {
    margin-bottom: 0;
}

.category-header {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.category-header i {
    font-size: 2.5rem;
    color: var(--brand-primary);
    margin-bottom: 1rem;
    display: block;
}

.category-header h3 {
    font-size: 2.2rem;
    font-weight: 700;
}

.feature-card-grid {
    display: grid;
    /* Kartların esnek bir şekilde sığmasını sağlar */
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

/* --- PRICING SAYFASI ÖZEL --- */

/* Fiyatlandırma sayfası hero alanı için özel boşluk ayarı */
#pricing-hero {
    padding-bottom: 6rem; /* Alt boşluğu artırarak toggle ile kartlar arasını açtık */
}

/* 1. Mantık Anlatımı (Steps) */
.pricing-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 3rem 0;
    gap: 1rem;
}
.step-item {
    text-align: center;
    width: 150px;
}
.step-number {
    width: 40px; height: 40px;
    background: var(--brand-primary);
    color: #fff;
    border-radius: 50%;
    line-height: 40px;
    margin: 0 auto 0.5rem auto;
    font-weight: bold;
}
.step-line {
    width: 50px; height: 2px;
    background: #e2e8f0;
}

/* 2. Toggle Switch */
.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
}
.switch {
    position: relative;
    display: inline-block;
    width: 60px; height: 34px;
}
.switch input { opacity: 0; width: 0; height: 0; }
.slider {
    position: absolute;
    cursor: pointer;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
}
.slider:before {
    position: absolute;
    content: "";
    height: 26px; width: 26px;
    left: 4px; bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

.switch input:checked + .slider {
    background-color: var(--brand-primary);
}

.switch input:checked + .slider:before {
    transform: translateX(26px);
}

.discount-badge {
    background: #FFE4E6;
    color: #E11D48;
    font-size: 0.75rem;
    padding: 0.2rem 0.5rem;
    border-radius: 10px;
    font-weight: bold;
}

/* 3. Dinamik Kart Tasarımı */
.pricing-grid-dynamic {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: center; /* Ortadaki kart büyüyünce hizalama bozulmasın */
}

.pricing-card-modern {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 2.5rem;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* Featured (Profesyonel) Kartı Özelleştirme */
.pricing-card-modern.featured {
    border: 2px solid var(--brand-primary);
    transform: scale(1.05); /* Biraz daha büyük */
    box-shadow: 0 20px 40px rgba(111, 66, 193, 0.15);
    z-index: 2;
}
.pricing-card-modern.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-tag {
    position: absolute;
    top: -15px; left: 50%;
    transform: translateX(-50%);
    background: var(--brand-primary);
    color: #fff;
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
}

.card-header { text-align: center; margin-bottom: 2rem; }
.price-box .amount { font-size: 3.5rem; font-weight: 800; color: var(--text-main); }
.price-box .currency { font-size: 1.5rem; vertical-align: top; }
.price-box .period { color: #94a3b8; }

/* Slot Görünümü */
.limit-badge { position: relative; } /* Tooltip için eklendi */
.limit-badge {
    background: #F1F5F9;
    color: #475569;
    text-align: center;
    padding: 0.8rem;
    border-radius: 12px;
    font-weight: 700;
    margin-bottom: 2rem;
}
.limit-badge.infinite { background: linear-gradient(135deg, #1e293b, #0f172a); color: #fff; }

.badge-tooltip {
    position: absolute;
    bottom: 120%;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--text-main);
    color: #fff;
    padding: 0.5rem 0.8rem;
    border-radius: 8px;
    font-size: 0.85rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    z-index: 10;
}
.limit-badge:hover .badge-tooltip { opacity: 1; visibility: visible; }

.slot-title { font-size: 0.9rem; color: #94a3b8; margin-bottom: 0.5rem; }
.feature-slots { margin-bottom: 2rem; }
.slot {
    padding: 0.8rem;
    margin-bottom: 0.5rem;
    border-radius: 8px;
    font-size: 0.95rem;
    display: flex; align-items: center;
}
.slot.active {
    background: rgba(111, 66, 193, 0.05);
    color: var(--brand-primary);
    border: 1px dashed var(--brand-primary); /* Seçilebilir olduğunu hissettirir */
}
.slot.active i { margin-right: 10px; }
.slot.locked {
    background: #f8fafc;
    color: #cbd5e1;
    border: 1px solid #e2e8f0;
}

.small-note {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 1.5rem;
}

.full-width { display: block; width: 100%; text-align: center; margin-top: 2rem; }

/* 4. Modül Menüsü */
.mb-4 {
    margin-bottom: 3rem; /* Eksik olan utility sınıfı eklendi */
}
.rounded-section { border-radius: 24px; padding: 4rem; margin-top: 4rem; }
.modules-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}
.module-item {
    background: #fff;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    border: 1px solid var(--border-color);
    font-weight: 500;
    color: var(--text-main);
    box-shadow: 0 2px 5px rgba(0,0,0,0.02);
    transition: all 0.3s ease;
}
.module-item i { color: var(--brand-primary); margin-right: 8px; }

.module-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.06);
}

/* 5. SSS Bölümü */
.faq-section {
    padding: 6rem 0; /* Diğer bölümlerle uyumlu boşluk */
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.faq-item {
    background: #fff;
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
}
.faq-item h4 {
    font-size: 1.2rem;
    color: var(--text-main);
}

/* Mobilde düzenleme */
@media (max-width: 900px) {
    .pricing-grid-dynamic { grid-template-columns: 1fr; }
    .pricing-card-modern.featured { transform: scale(1); } /* Mobilde büyütme iptal */
    .pricing-steps { display: none; } /* Mobilde adım adım alanı gizle, kalabalık yapar */
    .faq-grid { grid-template-columns: 1fr; }
}

/* --- NEDEN SHIFTY SAYFASI --- */

/* 1. Hero Alanı */
#why-hero {
    padding: 6rem 0 4rem 0;
    max-width: 800px;
}
.lead-text {
    font-size: 1.2rem;
    max-width: 650px;
    margin: 1rem auto 2rem auto;
}
.highlight-underline {
    position: relative;
    z-index: 1;
}
.highlight-underline::after {
    content: '';
    position: absolute;
    bottom: 5px; left: 0; width: 100%; height: 15px;
    background: rgba(111, 66, 193, 0.2); /* Mor Fosforlu Kalem Efekti */
    z-index: -1;
    transform: rotate(-1deg);
}

/* 2. Karşılaştırma Tablosu (En Önemli Kısım) */
.comparison-container {
    display: flex;
    align-items: stretch; /* Kartların aynı yükseklikte olmasını sağlar */
    justify-content: center;
    gap: 2rem;
    position: relative;
    margin-top: 3rem;
}

.compare-card {
    flex: 1;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    overflow: hidden;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

/* Eski Usül Kartı */
.old-way {
    border: 1px solid #FFE4E6;
    background: linear-gradient(to bottom, #FFF1F2 0%, #fff 100%);
}
.old-way .card-header-red {
    background: #FFE4E6;
    color: #E11D48;
    padding: 1.5rem;
    text-align: center;
}
.old-way ul li i { color: #E11D48; margin-right: 10px; }

/* Yeni Usül (Shifty) Kartı */
.new-way {
    border: 2px solid var(--brand-primary); /* Bizimki daha vurgulu */
    transform: scale(1.05); /* Bizimki daha büyük */
    box-shadow: 0 20px 50px rgba(111, 66, 193, 0.15);
    z-index: 2;
}
.new-way .card-header-green {
    background: var(--brand-primary);
    color: #fff;
    padding: 1.5rem;
    text-align: center;
}
.new-way ul li i { color: #27ae60; margin-right: 10px; font-size: 1.2rem; }

/* Liste Stilleri */
.compare-card ul { padding: 2rem; list-style: none; margin: 0; flex-grow: 1; }
.compare-card ul li {
    margin-bottom: 1.2rem;
    display: flex;
    align-items: start;
    font-size: 1rem;
    line-height: 1.5;
    color: #475569;
}

/* VS Rozeti */
.vs-badge {
    width: 60px; height: 60px;
    background: #fff;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 900;
    color: #94a3b8;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    position: absolute;
    left: 50%; top: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    font-style: italic;
    font-size: 1.2rem;
}

/* 3. Değerler Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    text-align: center;
}
.value-item h3 { margin-top: 1rem; font-size: 1.3rem; }
.value-item p { color: #64748b; font-size: 0.95rem; }
.icon-circle {
    width: 80px; height: 80px;
    margin: 0 auto;
    background: #fff;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 2rem;
    color: var(--brand-primary);
    box-shadow: 0 10px 20px rgba(111, 66, 193, 0.1);
}

/* 4. İstatistikler */
.stat-section { padding: 5rem 0; }
.stat-grid {
    display: flex;
    justify-content: space-around;
    background: var(--brand-dark);
    border-radius: 20px;
    padding: 3rem;
    color: #fff;
}
.stat-box .number {
    display: block;
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--accent-color); /* Turkuaz */
    line-height: 1;
    margin-bottom: 0.5rem;
}
.stat-box p { font-size: 1.1rem; opacity: 0.9; margin: 0; color: #fff; }

/* Mobil Uyumluluk */
@media (max-width: 900px) {
    .comparison-container {
        flex-direction: column;
        gap: 3rem; /* Kartlar arası boşluk */
    }
    .vs-badge {
        position: relative;
        left: auto; top: auto;
        transform: none;
        margin: -1.5rem auto; /* Ortada dursun */
    }
    .values-grid, .stat-grid {
        grid-template-columns: 1fr;
        flex-direction: column;
        gap: 2rem;
    }
    .new-way { transform: scale(1); }
}
