/* --- 1. VARIABLES & RESET --- */
:root {
    --color-cream: #FFFBEF;
    --color-dark-amber: #C97B29;
    --color-amber-light: #FFB74D;
    --color-dark-slate: #343A40;
    --color-charcoal: #212529;
    --color-grey: #6C757D;
    --color-green: #28A745;
    --color-red: #DC3545;
    --shadow-soft: 0 10px 40px rgba(0,0,0,0.08);
    --radius-lg: 20px;
    --radius-md: 12px;
    --transition: all 0.3s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--color-cream);
    color: var(--color-charcoal);
    line-height: 1.6;
    overflow-x: hidden;
}
html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    /* Mobildeki hayalet kaymayı engellemek için çift kilit */
    overflow-x: hidden; 
    position: relative;
}

#site-wrapper {
    width: 100%;
    overflow-x: hidden; /* Dışarı sarkan her şeyi burada kesiyoruz */
    position: relative;
}

h1, h2, h3, h4 { font-weight: 700; line-height: 1.2; }
a { text-decoration: none; transition: var(--transition); }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* --- 2. NAVBAR --- */
nav {
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: rgba(255, 251, 239, 0.95);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}
nav.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.05); padding: 15px 0; }

.nav-container { display: flex; justify-content: space-between; align-items: center; }

.logo { display: flex; align-items: center; gap: 5px; text-decoration: none; }
.logo img { height: 40px; width: auto; display: block; }
.logo span {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-dark-amber);
    letter-spacing: -0.5px;
    line-height: 1;
}

.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-item { color: var(--color-charcoal); font-weight: 500; font-size: 15px; cursor: pointer; }
.nav-item:hover { color: var(--color-dark-amber); }

.btn-primary {
    background-color: var(--color-dark-slate);
    color: var(--color-cream);
    padding: 10px 24px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 14px;
    border: 2px solid var(--color-dark-slate);
}
.btn-primary:hover { background-color: transparent; color: var(--color-dark-slate); }

/* --- 3. HERO SECTION --- */
.hero { padding: 120px 0 100px; overflow: hidden; }
.hero-layout { display: flex; align-items: center; justify-content: space-between; gap: 60px; }
.hero-content { flex: 1; min-width: 350px; }

.badge-pill {
    display: inline-block;
    background-color: rgba(245, 124, 0, 0.1);
    color: var(--color-dark-amber);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero h1 { font-size: 52px; color: var(--color-dark-slate); margin-bottom: 20px; }
.highlight { color: var(--color-dark-amber); position: relative; }
.highlight::after {
    content: ''; position: absolute; bottom: 5px; left: 0; width: 100%; height: 12px;
    background-color: rgba(245, 124, 0, 0.2); z-index: -1; border-radius: 4px;
}

.hero p { font-size: 18px; color: var(--color-grey); margin-bottom: 40px; max-width: 500px; }

.cta-group { display: flex; align-items: center; gap: 20px; margin-bottom: 40px; flex-wrap: wrap; }
.hero-btn {
    background: linear-gradient(135deg, var(--color-dark-amber), #e65100);
    color: white; padding: 16px 32px; border-radius: var(--radius-md);
    font-weight: 600; font-size: 16px; box-shadow: 0 10px 25px rgba(245, 124, 0, 0.3);
    border: none; cursor: pointer; display: inline-flex; align-items: center; gap: 10px;
}
.hero-btn:hover { transform: translateY(-3px); box-shadow: 0 15px 30px rgba(245, 124, 0, 0.4); }

.secondary-link { color: var(--color-charcoal); font-weight: 600; }
.secondary-link:hover { color: var(--color-dark-amber); }

.social-proof { display: flex; align-items: center; gap: 15px; }
.avatars { display: flex; }
.avatar { width: 35px; height: 35px; border-radius: 50%; border: 3px solid var(--color-cream); display: flex; align-items: center; justify-content: center; font-size: 10px; color: white; font-weight: bold; margin-left: -10px; }
.avatar:first-child { margin-left: 0; }
.avatar-count { width: 35px; height: 35px; border-radius: 50%; background: var(--color-dark-slate); color: white; border: 3px solid var(--color-cream); display: flex; align-items: center; justify-content: center; font-size: 10px; margin-left: -10px; font-weight: bold;}
.social-proof p { font-size: 13px; color: var(--color-grey); margin: 0; }

.hero-image-area { flex: 1; position: relative; display: flex; justify-content: center; min-width: 300px; }
.phone-frame { width: 300px; height: 600px; border: none; background: transparent; position: relative; z-index: 2; }
.app-screenshot { width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4)); }
.blob { position: absolute; border-radius: 50%; filter: blur(80px); z-index: 1; opacity: 0.5; }
.blob-1 { width: 350px; height: 350px; background: var(--color-amber-light); top: -40px; right: -60px; }
.blob-2 { width: 300px; height: 300px; background: #90CDF4; bottom: -20px; left: -20px; }

/* --- 4. STATS SECTION --- */
.stats-section { padding: 40px 0; background: #fff; border-top: 1px solid rgba(201, 123, 41, 0.05); }
.stats-flex-grid { display: flex; justify-content: space-around; align-items: center; flex-wrap: wrap; gap: 40px; }
.stat-unit { flex: 1; min-width: 220px; text-align: center; }
.stat-unit h3 {
    font-size: 56px; font-weight: 800; color: var(--color-dark-slate);
    display: flex; align-items: center; justify-content: center;
    letter-spacing: -2px; margin-bottom: 5px;
}
.stat-unit h3 span.plus { font-size: 44px; color: var(--color-dark-amber); margin-left: 4px; font-weight: 800; line-height: 1; }
.stat-unit p { font-size: 14px; font-weight: 700; color: var(--color-grey); text-transform: uppercase; letter-spacing: 1.2px; }
.stat-line { width: 30px; height: 3px; background: var(--color-dark-amber); margin: 15px auto 0; border-radius: 2px; opacity: 0.4; }

/* --- 5. HIVE INTERACTIVE PROCESS (TABS) --- */
.hive-process { padding: 80px 0; background: #fff; }
.section-header { text-align: center; max-width: 700px; margin: 0 auto 60px; }
.hive-tabs-wrapper {
    background: #fff; border-radius: var(--radius-lg); box-shadow: 0 20px 60px rgba(0,0,0,0.05);
    overflow: hidden; border: 1px solid rgba(0,0,0,0.03); max-width: 1000px; margin: 0 auto;
}
.hive-tabs-nav { display: grid; grid-template-columns: repeat(5, 1fr); background: #fdfaf0; border-bottom: 1px solid #f0e6cc; }
.hive-tab-btn {
    padding: 25px 15px; border: none; background: transparent; cursor: pointer;
    display: flex; flex-direction: column; align-items: center; gap: 10px; opacity: 0.5; position: relative;
}
.hive-tab-btn.active { opacity: 1; background: #fff; }
.hive-tab-btn.active::after { content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 3px; background: var(--color-dark-amber); }
.step-icon {
    width: 32px; height: 32px; background: var(--color-dark-slate); color: #fff;
    border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 700;
}
.hive-tab-btn.active .step-icon { background: var(--color-dark-amber); }
.step-label { font-weight: 700; font-size: 14px; color: var(--color-dark-slate); }

.hive-tabs-content { padding: 50px; min-height: 320px; }
.hive-panel { display: none; animation: fadeIn 0.4s ease; }
.hive-panel.active { display: block; }

.panel-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 40px; align-items: center; }
.panel-main h3 { font-size: 26px; margin-bottom: 20px; color: var(--color-dark-slate); }
.panel-main p { font-size: 16px; color: var(--color-grey); line-height: 1.7; margin-bottom: 15px; }

.panel-details { background: #fdfaf0; padding: 25px; border-radius: var(--radius-md); display: flex; flex-direction: column; gap: 12px; }
.detail-item { font-size: 14px; font-weight: 500; display: flex; align-items: center; gap: 8px; }
.detail-item::before { content: '•'; color: var(--color-dark-amber); font-weight: 900; }
.detail-item.warning { color: var(--color-red); }
.detail-item.success { color: var(--color-green); }

.logic-box {
    margin-top: 20px; padding: 15px; background: #fff9e6; border-radius: 8px;
    border-left: 4px solid var(--color-dark-amber); display: flex; gap: 12px; font-size: 14px; line-height: 1.4;
}
.logic-box i { color: var(--color-dark-amber); margin-top: 3px; }

.penalty-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 20px; }
.penalty-tag { background: #fff; border: 1px solid #ffebee; padding: 10px 5px; border-radius: 8px; text-align: center; font-weight: 800; color: var(--color-red); }
.penalty-tag span { display: block; font-size: 10px; color: var(--color-grey); font-weight: 500; margin-top: 4px; }
.penalty-footer { font-size: 12px; color: var(--color-grey); border-top: 1px solid #eee; padding-top: 10px; }

/* --- 6. COMPARISON SECTION --- */
.comparison { padding: 50px 0; background: #fff; position: relative; }
.comparison-container {
    display: grid; grid-template-columns: 1fr 1fr; position: relative; background: #fff;
    border-radius: var(--radius-lg); box-shadow: 0 30px 60px rgba(0,0,0,0.08); overflow: hidden; border: 1px solid rgba(0,0,0,0.05);
}
.compare-side { padding: 60px 40px; position: relative; }
.old-way { background: #fcfcfc; border-right: 1px solid #eee; }
.hive-way { background: #fffdf5; }
.side-header { text-align: center; margin-bottom: 40px; }
.side-header i { font-size: 40px; margin-bottom: 15px; }
.old-way .side-header i { color: #aaa; }
.hive-way .side-header i { color: var(--color-dark-amber); }
.side-header h3 { font-size: 24px; color: var(--color-dark-slate); }
.compare-list { display: flex; flex-direction: column; gap: 30px; }
.compare-item { display: flex; gap: 20px; align-items: flex-start; }
.icon-fail, .icon-success { width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 14px; }
.icon-fail { background: #fee2e2; color: #ef4444; }
.icon-success { background: #dcfce7; color: #22c55e; }
.text h4 { font-size: 16px; margin-bottom: 5px; color: var(--color-dark-slate); }
.text p { font-size: 14px; color: var(--color-grey); line-height: 1.5; }
.vs-circle {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 60px; height: 60px;
    background: var(--color-dark-slate); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 18px; z-index: 10; border: 6px solid #fff; box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* --- 7. FAQ SECTION (ACCORDION) --- */
.faq-section { padding: 100px 0; background-color: #f8f9fa; }
.faq-accordion-wrapper { max-width: 900px; margin: 0 auto; display: flex; flex-direction: column; gap: 15px; }
.faq-item { background: #fff; border-radius: var(--radius-md); border: 1px solid rgba(0,0,0,0.05); overflow: hidden; transition: var(--transition); }
.faq-item:hover { border-color: var(--color-amber-light); box-shadow: 0 10px 25px rgba(201, 123, 41, 0.05); }
.faq-question { padding: 25px; display: flex; align-items: center; gap: 20px; cursor: pointer; user-select: none; }
.faq-icon { width: 40px; height: 40px; background: var(--color-cream); color: var(--color-dark-amber); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.faq-question h4 { flex: 1; font-size: 18px; color: var(--color-dark-slate); font-weight: 600; }
.faq-arrow { font-size: 14px; color: var(--color-grey); transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1); }
.faq-item.active { border-color: var(--color-dark-amber); box-shadow: 0 15px 35px rgba(201, 123, 41, 0.1); }
.faq-item.active .faq-arrow { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1); background: #fffdf5; }
.answer-content { padding: 0 25px 30px 85px; }
.answer-content p { font-size: 15px; color: var(--color-grey); line-height: 1.7; margin-bottom: 15px; }
.answer-content li { font-size: 14px; color: var(--color-charcoal); position: relative; padding-left: 20px; margin-bottom: 10px; }
.answer-content li::before { content: '→'; position: absolute; left: 0; color: var(--color-dark-amber); font-weight: bold; }
.warning-text { color: var(--color-red) !important; font-weight: 600; font-size: 14px !important; }

/* --- 8. REVIEWS & CTA --- */
.reviews-section { padding: 80px 0; background-color: #fff; overflow: hidden; }
.marquee-wrapper { width: 100%; margin-top: 40px; position: relative; }
.marquee-wrapper::before, .marquee-wrapper::after { content: ""; position: absolute; top: 0; width: 150px; height: 100%; z-index: 2; pointer-events: none; }
.marquee-wrapper::before { left: 0; background: linear-gradient(to right, white, transparent); }
.marquee-wrapper::after { right: 0; background: linear-gradient(to left, white, transparent); }
.marquee-track { display: flex; gap: 20px; width: max-content; animation: scroll 60s linear infinite; }
.marquee-track:hover { animation-play-state: paused; }
@keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(calc(-320px * 7 - 20px * 7)); } }

.review-card { width: 320px; background: #fff; border-radius: 12px; padding: 20px; box-shadow: 0 4px 12px rgba(0,0,0,0.08); border: 1px solid #f0f0f0; flex-shrink: 0; display: flex; flex-direction: column; }
.review-header { display: flex; align-items: center; gap: 12px; margin-bottom: 15px; }
.review-avatar { width: 40px; height: 40px; border-radius: 50%; color: white; font-weight: bold; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.review-author { font-weight: 600; color: #202124; font-size: 14px; }
.stars { color: #01875f; font-size: 11px; margin-right: 5px; }
.review-text { font-size: 14px; color: #5f6368; line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 5; -webkit-box-orient: vertical; overflow: hidden; }

.cta-banner { padding: 60px 0 100px; }
.cta-box {
    background: linear-gradient(135deg, var(--color-dark-slate), #1a1e21);
    border-radius: 30px; padding: 80px 40px; text-align: center; color: var(--color-cream);
    box-shadow: 0 20px 50px rgba(52, 58, 64, 0.3); position: relative; overflow: hidden;
}
.cta-box h2 { font-size: 42px; margin-bottom: 20px; }
.cta-box p { font-size: 18px; color: #ccc; margin-bottom: 40px; max-width: 600px; margin-left: auto; margin-right: auto; }
.big-btn { padding: 20px 40px; font-size: 18px; }

/* --- 9. FOOTER --- */
footer { background: var(--color-dark-slate); color: var(--color-cream); padding: 50px 0 30px; }
footer .logo span { color: var(--color-cream); }
.footer-content { display: flex; flex-direction: column; align-items: center; gap: 20px; }
.footer-links { display: flex; gap: 30px; }
.footer-links a { color: #ccc; font-size: 14px; }
.footer-links a:hover { color: var(--color-dark-amber); }
footer p { font-size: 13px; color: #777; margin-top: 20px; }

/* --- 10. UTILS & ANIMATIONS --- */
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s ease-out; }
.reveal.active { opacity: 1; transform: translateY(0); }

.hamburger { display: none; cursor: pointer; flex-direction: column; z-index: 1001; }
.hamburger div { width: 25px; height: 3px; background: var(--color-charcoal); margin: 4px; transition: 0.3s; }
.hamburger.toggle .line1 { transform: rotate(-45deg) translate(-5px, 6px); }
.hamburger.toggle .line2 { opacity: 0; }
.hamburger.toggle .line3 { transform: rotate(45deg) translate(-5px, -6px); }

/* --- NEW SPLIT SUPPORT LAYOUT (NO BREAKING CARDS) --- */
.support-container-v2 {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
    background: #ffffff;
    padding: 50px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0,0,0,0.02);
}

/* Sol Taraf: Metin Alanları */
.support-info-side {
    flex: 1.2;
}

.support-info-side h2 {
    font-size: 28px;
    color: var(--color-dark-slate);
    margin-bottom: 20px;
}

.support-info-side h3 {
    font-size: 18px;
    color: var(--color-dark-amber);
    margin-top: 25px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.support-info-side p {
    color: var(--color-grey);
    font-size: 15px;
    line-height: 1.7;
}

/* Sağ Taraf: Aksiyon Kutusu */
.support-action-side {
    flex: 0.8;
    display: flex;
    align-items: center;
    justify-content: center;
}

.email-cta-box {
    background: var(--color-cream);
    padding: 40px 30px;
    border-radius: var(--radius-md);
    text-align: center;
    width: 100%;
    border: 1px solid rgba(201, 123, 41, 0.1);
}

.contact-big-icon {
    font-size: 48px;
    color: var(--color-dark-amber);
    margin-bottom: 15px;
}

.email-cta-box h3 {
    font-size: 20px;
    color: var(--color-dark-slate);
    margin-bottom: 10px;
}

.email-cta-box p {
    font-size: 14px;
    color: var(--color-grey);
    margin-bottom: 25px;
    line-height: 1.5;
}

/* Yeni Buton Kuralları */
.support-page-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 30px;
    background-color: var(--color-dark-slate);
    color: var(--color-cream);
    border-radius: var(--radius-md);
    font-weight: 600;
    width: 100%;
    font-size: 15px;
    transition: var(--transition);
}

.support-page-btn:hover {
    background-color: var(--color-dark-amber);
    color: white;
}

.direct-email-text {
    display: block;
    margin-top: 15px;
    font-size: 12px;
    color: var(--color-grey);
}

/* Tablet ve Mobil Ekran Uyumu */
@media (max-width: 868px) {
    .support-container-v2 {
        flex-direction: column;
        padding: 35px 20px;
        gap: 35px;
    }
    
    .support-info-side h2 {
        font-size: 24px;
    }
}
/* --- 11. RESPONSIVE --- */
@media (max-width: 968px) {
    .hero-layout { flex-direction: column; text-align: center; }
    .hero-content { align-items: center; display: flex; flex-direction: column; }
    .cta-group { justify-content: center; }
    .comparison-container { grid-template-columns: 1fr; }
    .vs-circle { top: 50%; }
    .old-way { border-right: none; border-bottom: 1px solid #eee; }
    .hive-tabs-nav { grid-template-columns: repeat(3, 1fr); }
    .panel-grid { grid-template-columns: 1fr; }
    .hamburger { display: flex; }
    .nav-links {
        /* 1. EKRANIN İÇİNDE SABİTLE (Dışarı itmiyoruz) */
        position: fixed;
        top: 0;
        right: 0; 
        width: 75%;
        height: 100vh;
        background-color: var(--color-cream);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        z-index: 1001;
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);

        /* 2. OLDUĞU YERDE GİZLE (Hayalet alan yaratmaz) */
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        
        /* 3. KAYDIRMA DEĞİL, YUMUŞAK BELİRME EFEKTİ */
        transition: opacity 0.3s ease, visibility 0.3s ease;
        
        /* KRİTİK: Eski kaydırma kodlarını eziyoruz */
        transform: none !important; 
    }

    .nav-links.active {
        /* Butona basıldığında olduğu yerde görünür olur */
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: none !important;
    }
    
    /* Nav-item'ların mobilde sığması için genişliklerini sabitle */
    .nav-item {
        width: 100%;
        text-align: center;
        white-space: nowrap;
    }

    /* Hero alanındaki balonların (blob) taşmasını mühürle[cite: 3] */
    .hero h1 { font-size: 36px; }
    .logo img { height: 32px; }
    .logo span { font-size: 20px; }
}

@media (max-width: 600px) {
    .hive-tabs-nav { grid-template-columns: repeat(2, 1fr); }
    .stats-flex-grid { gap: 20px; }
    .stat-unit h3 { font-size: 42px; }
    .stat-unit h3 span.plus { font-size: 32px; }
}

@media (max-width: 480px) {
    .big-btn { width: 100%; padding: 15px 10px; font-size: 15px; display: flex; align-items: center; justify-content: center; gap: 8px; }
}

/* --- 12. LEGAL PAGES (Privacy & Terms) --- */
.page-header {
    background-color: var(--color-dark-slate);
    color: var(--color-cream);
    padding: 80px 0 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 15px;
    color: var(--color-amber-light);
}

.last-updated {
    font-size: 14px;
    color: #aaa;
    font-style: italic;
    display: block;
}

.legal-section {
    padding: 80px 0;
    background-color: var(--color-cream);
}

.legal-card {
    background: white;
    padding: 60px;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.02);
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h3 {
    font-size: 24px;
    color: var(--color-dark-slate);
    margin-top: 50px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(201, 123, 41, 0.1);
}

.legal-content h3:first-child {
    margin-top: 0;
}

.legal-content p {
    color: var(--color-grey);
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.legal-content strong {
    color: var(--color-charcoal);
    font-weight: 700;
}

.legal-content ul {
    list-style: disc;
    padding-left: 25px;
    margin-bottom: 25px;
    color: var(--color-grey);
}

.legal-content li {
    margin-bottom: 12px;
    font-size: 15px;
    line-height: 1.6;
}

.legal-content a {
    color: var(--color-dark-amber);
    text-decoration: underline;
}

.legal-content a:hover {
    color: var(--color-dark-slate);
}

/* Responsive Fix for Legal Pages */
@media (max-width: 768px) {
    .legal-card {
        padding: 30px 20px;
    }
    .page-header h1 {
        font-size: 32px;
    }
    .legal-content h3 {
        font-size: 20px;
    }
}

/* --- 13. SUPPORT PAGE STYLES --- */
.support-section {
    padding: 80px 0;
    background-color: var(--color-cream);
    min-height: 60vh;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.support-card {
    background: white;
    padding: 50px 30px;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.03);
    text-align: center;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.support-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(201, 123, 41, 0.1);
    border-color: var(--color-amber-light);
}

.support-icon {
    font-size: 60px;
    color: var(--color-dark-amber);
    margin-bottom: 25px;
    display: inline-block;
}

.support-card h3 {
    font-size: 24px;
    color: var(--color-dark-slate);
    margin-bottom: 15px;
}

.support-card p {
    color: var(--color-grey);
    font-size: 16px;
    margin-bottom: 30px;
    line-height: 1.6;
    flex-grow: 1; /* Kartların boyunu eşitler */
}

.support-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    background-color: var(--color-dark-slate);
    color: var(--color-cream);
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

.support-btn:hover {
    background-color: var(--color-dark-amber);
    color: white;
    transform: scale(1.05);
}

/* Reddit için özel renk vurgusu */
.reddit-card .support-icon {
    color: #FF4500; /* Reddit Orijinal Turuncusu */
}

/* Support Mobile Adjustments */
@media (max-width: 768px) {
    .support-grid {
        gap: 25px;
    }
    .support-card {
        padding: 40px 20px;
    }
}

/* --- 14. DOWNLOAD-FOCUSED SECTION CTA --- */
.section-cta {
    padding: 40px 0;
    text-align: center;
    background-color: transparent;
}

.cta-prompt {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-dark-slate);
    margin-bottom: 25px;
    display: block;
    letter-spacing: -0.5px;
}

.section-cta .hero-btn {
    padding: 16px 40px;
    font-size: 17px;
}

/* Mobilde boşlukları daraltalım */
@media (max-width: 768px) {
    .section-cta { padding: 50px 20px; }
    .cta-prompt { font-size: 18px; }
}