/* Reset & Fonts */
:root {
    --primary: #0F172A; /* Orijinal Lacivert Arka Plan */
    --accent: #F59E0B; /* VidInsight Sarısı */
    --accent-hover: #D97706;
    --text-light: #F8FAFC; 
    --text-dark: #0F172A; /* Koyu Metin Rengi */
    --text-muted: #1e293b; /* Çok Daha Belirgin Koyu Gri (Aydınlık Bölümler) */
    --text-muted-light: #94A3B8; /* Hafif Gri (Karanlık Bölümler) */
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --card-bg: #1E293B;
    --header-bg: #FFFFFF; /* Beyaz Giriş Kısmı */
}

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden; /* Yatay kaymayı tamamen engelle */
    position: relative;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box; /* Tüm elemanlar border-box kuralına uymalı */
    font-family: 'Outfit', sans-serif;
}

body {
    background-color: var(--primary);
    color: var(--text-light);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Glassmorphism Utilities */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2rem;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    border-color: rgba(245, 158, 11, 0.3); /* Accent tint */
}

/* Typography & Colors */
h1 { font-size: 3.5rem; font-weight: 800; line-height: 1.1; margin-bottom: 1.5rem; }
h2 { font-size: 2.5rem; font-weight: 800; margin-bottom: 1rem; }
h3 { font-size: 1.5rem; font-weight: 800; margin-bottom: 1rem; }
.highlight { color: var(--accent); }
.text-yellow { color: var(--accent); }
.text-green { color: #10B981; font-weight: 600; }
.text-red { color: #EF4444; font-weight: 600; }
a { text-decoration: none; color: inherit; }

/* Buttons */
.btn-primary {
    background-color: var(--accent);
    color: #111827;
    font-weight: 700;
    padding: 0.8rem 1.8rem;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.2s ease;
    font-size: 1.1rem;
}
.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
}
.btn-secondary {
    background-color: transparent;
    color: var(--text-light);
    font-weight: 600;
    padding: 0.8rem 1.8rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s;
}
.btn-secondary:hover { color: var(--accent); }
.w-100 { width: 100%; }

/* Navbar (Aydınlık Kalan Kısım) */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(15, 23, 42, 0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    padding: 0.5rem 0;
}

.navbar-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo img {
    height: 70px;
    width: auto;
    max-width: 280px;
    display: block;
    object-fit: contain;
    transition: height 0.3s ease;
}

.nav-content {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    transition: all 0.3s ease;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-light);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.2s;
    text-decoration: none;
}

.nav-links a:hover {
    color: var(--accent);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.lang-flags {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(245, 158, 11, 0.08);
    padding: 0.3rem 0.6rem;
    border-radius: 20px;
    border: 1px solid rgba(245, 158, 11, 0.15);
}

.lang-flags a {
    text-decoration: none;
    font-size: 1.2rem;
    transition: transform 0.2s;
}

.lang-flags a:hover {
    transform: scale(1.15);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px;
    z-index: 1100;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .navbar {
        padding: 0.6rem 0;
    }

    .navbar-container {
        flex-wrap: nowrap;
        gap: 0;
        align-items: center;
    }

    .logo {
        flex: 0 0 auto;
    }

    .logo img {
        height: 28px;
    }

    .nav-actions {
        flex: 1;
        order: 1;
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: auto;
        margin-top: 0;
        padding: 0 10px;
        border-top: none;
    }

    .nav-btn {
        padding: 0.45rem 0.9rem;
        font-size: 0.8rem;
        white-space: nowrap;
    }

    .lang-flags {
        background: none;
        border: none;
        padding: 0;
        gap: 0.4rem;
    }

    .lang-flags a {
        font-size: 1.1rem;
    }

    .menu-toggle {
        display: block;
        order: 2;
        flex: 0 0 auto;
    }

    .nav-content {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: #111827;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 80px 30px;
        box-shadow: -10px 0 30px rgba(0,0,0,0.5);
        gap: 2rem;
        z-index: 1050;
    }

    .nav-content.active {
        right: 0;
    }

    /* Panel açıkken nav-links görünsün (768px'deki display:none'u override et) */
    .nav-content .nav-links {
        display: flex;
    }

    .nav-links {
        flex-direction: column;
        width: 100%;
        gap: 1.5rem;
    }

    .nav-links li {
        width: 100%;
        border-bottom: 1px solid rgba(255,255,255,0.05);
        padding-bottom: 10px;
    }

    .nav-links a {
        font-size: 1.1rem;
        display: block;
    }
}

/* Hero Section (Aydınlık Kalan Kısım) */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8rem 5% 6rem;
    gap: 4rem;
    position: relative;
    background: #F8FAFC; 
    color: var(--text-dark);
}

/* Single Column Centered Hero */
.hero.hero-centered {
    flex-direction: column;
    text-align: center;
    justify-content: center;
    padding: 10rem 5% 6rem;
}

.hero.hero-centered .hero-content {
    max-width: 900px;
}

.hero.hero-centered .hero-visual {
    margin-top: 2rem;
    width: 100%;
    max-width: 400px;
}

.hero-content { flex: 1; }
.hero-content h1 { color: var(--text-dark); }
.hero-content p {
    font-size: 1.25rem;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 2.5rem;
    max-width: 550px;
    line-height: 1.7;
}
.hero-badge {
    display: inline-block;
    background: rgba(245, 158, 11, 0.1);
    color: var(--accent-hover);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.hero-actions { display: flex; gap: 1.2rem; align-items: center; }

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
}

/* Mockup Widget */
.mockup {
    width: 100%;
    max-width: 480px;
    border-radius: 20px;
    background: white;
    box-shadow: 0 30px 60px rgba(0,0,0,0.12);
    border: 1px solid var(--glass-border);
    overflow: hidden;
}
.mockup-header {
    background: #F1F5F9;
    padding: 14px 24px;
    display: flex;
    gap: 10px;
    border-bottom: 1px solid var(--glass-border);
}
.dot { width: 12px; height: 12px; border-radius: 50%; }
.dot.red { background: #FF5F57; }
.dot.yellow { background: #FFBD2E; }
.dot.green { background: #28C940; }

.mockup-body {
    padding: 2.5rem;
}
.stat-row {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.stat-box {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    background: #F8FAFC;
    padding: 1.2rem 1.5rem;
    border-radius: 12px;
    border: 1px solid #E2E8F0;
    transition: transform 0.2s;
}
.stat-box:hover { transform: scale(1.02); }
.stat-box i { font-size: 1.8rem; }
.stat-box div { display: flex; flex-direction: column; }
.stat-box span { font-size: 1.4rem; font-weight: 800; color: var(--text-dark); }
.stat-box small { color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; font-size: 0.75rem; font-weight: 600;}

/* Sections Common */
.section-title {
    text-align: center;
    margin-bottom: 4rem;
}
.section-title p {
    color: var(--text-muted);
    font-size: 1.25rem;
    font-weight: 600;
}

/* Features (Karanlık Mod'a Dönüş) */
.features {
    padding: 7rem 5%;
    background: #0B1120; /* Koyu geçiş */
    overflow: hidden; /* Taşmaları engelle */
}
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Daha dar ekranlar için küçültüldü */
    gap: 2rem;
}
.feature-card.glass-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 2.5rem;
    width: 100%;
    max-width: 100%; /* Kartın ekranı taşmamasını sağlar */
}
.feature-card.glass-card:hover { border-color: var(--accent); }
.icon-box {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    background: rgba(245, 158, 11, 0.1);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1.8rem;
}
.feature-card h3 { color: white; }
.feature-card p { color: var(--text-muted-light); }

/* Pricing */
.pricing {
    padding: 6rem 5%;
    position: relative;
    overflow: hidden; /* Arka plan gradyanının taşmasını engelle */
}
.pricing::after {
    content: '';
    position: absolute;
    bottom: -10%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.1) 0%, rgba(15, 23, 42, 0) 70%);
    z-index: -1;
    filter: blur(50px);
    max-width: 100vw; /* Gradyan ekran dışına taşmasın */
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* 320px cihazlar için minmax optimize edildi */
    gap: 2rem;
    align-items: stretch; /* Kartların boyu eşit olsun */
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}
.pricing-card {
    position: relative;
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 100%;
}
.pricing-card.popular {
    transform: scale(1.05);
    border-color: var(--accent);
    background: rgba(30, 41, 59, 0.8);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-5px);
}
.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: #111827;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
    white-space: nowrap;
}
.pkg-header { font-size: 1.5rem; font-weight: 700; color: var(--text-muted); margin-bottom: 0.5rem;}
.pkg-price { font-size: 3.5rem; font-weight: 800; color: white; margin-bottom: 1rem;}
.pkg-price span { font-size: 1.2rem; font-weight: 400; color: var(--text-muted);}
.pkg-desc { color: var(--text-muted); margin-bottom: 2rem; font-size: 0.95rem; min-height: 50px;}
.pkg-features {
    list-style: none;
    margin-bottom: 2.5rem;
    flex-grow: 1;
}
.pkg-features li {
    margin-bottom: 1rem;
    display: flex;
    gap: 10px;
    align-items: center;
}

/* Modal Styling */
.modal-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}
.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}
.modal {
    width: 100%;
    max-width: 500px;
    background: #1E293B;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
    padding: 2.5rem;
}
.modal-overlay.active .modal {
    transform: translateY(0);
}
.close-modal {
    position: absolute;
    top: 20px; right: 20px;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.2s;
}
.close-modal:hover { color: white; }
.modal h2 { margin-bottom: 0.5rem; font-size: 1.8rem; }
.modal p { color: var(--text-muted); margin-bottom: 2rem; }

.input-group { margin-bottom: 1.5rem; display: flex; flex-direction: column; gap: 8px;}
.input-group label { font-weight: 600; font-size: 0.9rem; color: #E2E8F0; }
.input-group input, .input-group textarea {
    background: rgba(0,0,0,0.2);
    border: 1px solid var(--glass-border);
    color: white;
    padding: 12px 15px;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.2s;
}
.input-group input:focus, .input-group textarea:focus {
    outline: none;
    border-color: var(--accent);
}

.form-status { margin-top: 1.5rem; text-align: center; }
.loading-text { color: var(--accent); font-weight: 600; }

/* Footer */
footer {
    background: #0B1120;
    padding: 4rem 5% 1rem;
    border-top: 1px solid var(--glass-border);
}
.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    margin-bottom: 3rem;
}
.footer-brand { flex: 2; min-width: 250px; }
.footer-brand p { color: #FFFFFF; max-width: 300px; font-weight: 500; }
.footer-brand img {
    height: 55px; /* Footer'da biraz daha küçük tutalım */
    width: auto;
    margin-bottom: 20px;
}
.footer-links, .footer-contact { flex: 1; min-width: 150px; }
.footer-links h4, .footer-contact h4 { margin-bottom: 1.5rem; color: white; font-size: 1.2rem; }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 0.8rem; }
.footer-links a { color: #FFFFFF; transition: color 0.2s; font-weight: 500; }
.footer-links a:hover { color: var(--accent); }
.footer-contact p { color: #FFFFFF; font-weight: 500; }

/* Social Icons */
.social-icons {
    display: flex;
    gap: 15px;
}
.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
    color: #FFFFFF;
}
.social-link:hover {
    transform: translateY(-3px);
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(245, 158, 11, 0.1);
}
.social-link i {
    font-size: 1.2rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: #FFFFFF;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Responsive Breakpoints */

/* Tablet & Smaller Desktop (Laptops) */
@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
    .hero { padding: 4rem 5%; }
}

/* Tablet & Large Mobile */
@media (max-width: 768px) {
    .navbar { padding: 0.5rem 4%; }
    .nav-links { display: none; }
    #nav-logo { height: 32px; }

    .hero {
        flex-direction: column;
        text-align: center;
        padding: 5rem 5% 3rem;
        gap: 2rem;
    }
    .hero-content {
        margin-bottom: 1rem;
    }
    .hero-content p { margin: 0 auto 2rem; font-size: 1.1rem; }
    .hero-actions { justify-content: center; }
    .hero-visual { max-width: 380px; margin: 0 auto; width: 100%; }

    .section-title { margin-bottom: 2rem; }
    .section-title h2 { font-size: 1.9rem; }
    .section-title p { font-size: 1.05rem; }

    .features { padding: 4rem 5%; }
    .feature-card.glass-card { padding: 1.8rem; }
    .icon-box { width: 54px; height: 54px; font-size: 1.5rem; margin-bottom: 1.2rem; }

    .pricing { padding: 4rem 5%; }
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
    }

    .pricing-card.popular { transform: scale(1); margin: 1rem 0; }
    .pricing-card.popular:hover { transform: translateY(-5px); }

    .footer-content { flex-direction: column; gap: 2rem; text-align: center; }
    .footer-brand p { margin: 0 auto; }
}

/* Small Mobile (320px - 480px) */
@media (max-width: 480px) {
    h1 { font-size: 2rem; line-height: 1.15; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.15rem; }

    /* Hero */
    .hero { padding: 5.5rem 4% 2.5rem; gap: 1.5rem; }
    .hero-visual { display: none; }
    .hero-content p { font-size: 1rem; margin-bottom: 1.8rem; }
    .hero-actions { flex-direction: column; width: 100%; gap: 0.8rem; }
    .btn-primary { width: 100%; justify-content: center; min-height: 48px; }
    .btn-secondary { width: auto; align-self: center; }
    .hero-badge { font-size: 0.8rem; padding: 0.4rem 1rem; }

    /* Navbar */
    .navbar { padding: 0.5rem 0; }
    .logo img { height: 24px; }
    .nav-btn { font-size: 0.75rem; padding: 0.4rem 0.7rem; width: auto; }
    .lang-flags a { font-size: 1rem; }

    /* Sections */
    .features { padding: 3rem 4%; }
    .section-title { margin-bottom: 1.5rem; }
    .section-title p { font-size: 0.95rem; }
    .feature-card.glass-card { padding: 1.5rem; border-radius: 14px; }
    .icon-box { width: 48px; height: 48px; font-size: 1.3rem; margin-bottom: 1rem; border-radius: 12px; }
    .feature-grid { gap: 1rem; }

    /* Pricing */
    .pricing { padding: 2rem 4%; }
    .pricing-card { padding: 1.2rem 1rem; }
    .pkg-price { font-size: 2rem; }
    .pricing-row { padding: 14px 12px; gap: 8px; }
    .pricing-col-feat { gap: 8px; padding: 12px 0; }
    .pricing-col-action { gap: 10px; }
    .btn-pricing { min-width: unset; width: 100%; padding: 10px 16px; }
    .price-amount { font-size: 1.3rem; }
    .popular-row { transform: scale(1); }

    /* Modal */
    .modal { padding: 2rem 1.5rem; margin: 10px; border-radius: 16px; }
}


/* --- ADMIN PREMIUM LAYOUT --- */
.admin-container {
    display: flex;
    min-height: 100vh;
    background: #F8FAFC;
    color: #0F172A;
}

.admin-sidebar {
    width: 280px;
    background: #0F172A;
    color: white;
    display: flex;
    flex-direction: column;
    padding: 2.5rem 0;
    position: fixed;
    height: 100vh;
    box-shadow: 4px 0 20px rgba(0,0,0,0.1);
    z-index: 1000;
}

.admin-sidebar .sidebar-logo {
    padding: 0 2rem 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    margin-bottom: 2.5rem;
}

.admin-sidebar .sidebar-logo img {
    height: 50px;
    width: auto;
}

.admin-sidebar nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 0 1.2rem;
}

.admin-sidebar nav a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    border-radius: 12px;
    color: #94A3B8;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.95rem;
}

.admin-sidebar nav a i {
    width: 24px;
    font-size: 1.2rem;
    opacity: 0.8;
}

.admin-sidebar nav a:hover {
    background: rgba(255,255,255,0.05);
    color: white;
    transform: translateX(5px);
}

.admin-sidebar nav a.active {
    background: #6366F1;
    color: white;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.admin-sidebar nav a.active i {
    opacity: 1;
}

.admin-sidebar .logout-link {
    margin-top: auto;
    color: #EF4444 !important;
}

.admin-sidebar .logout-link:hover {
    background: rgba(239, 68, 68, 0.1) !important;
}

.admin-content {
    flex: 1;
    margin-left: 280px;
    padding: 3.5rem 5rem;
    background: #F8FAFC;
}

/* Admin Card UI */
.admin-card {
    background: #FFFFFF;
    border-radius: 20px;
    border: 1px solid #E2E8F0;
    padding: 2.5rem;
    box-shadow: 0 10px 25px -5px rgba(0,0,0,0.03);
    transition: all 0.3s ease;
}

.admin-card:hover {
    box-shadow: 0 20px 30px -10px rgba(0,0,0,0.05);
}

.admin-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3.5rem;
}

.admin-header-flex h1 {
    font-size: 2.4rem;
    color: #0F172A;
    margin: 0;
    font-weight: 800;
}

.admin-header-flex p {
    color: #64748B;
    font-size: 1.1rem;
    margin-top: 0.5rem;
}

/* FAQ Section */
.faq-section {
    padding: 6rem 5%;
    background: #0F172A;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.open {
    border-color: var(--accent);
    background: rgba(30, 41, 59, 0.8);
}

.faq-question {
    width: 100%;
    text-align: left;
    background: transparent;
    border: none;
    padding: 1.5rem;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.2s;
}

.faq-question:hover {
    color: var(--accent);
}

.faq-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
    color: var(--accent);
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
    padding: 0 1.5rem;
    background: rgba(0,0,0,0.2);
}

.faq-item.open .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
    color: var(--text-muted-light);
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 600;
    margin: 0;
}

/* Horizontal Pricing Redesign */
.horizontal-pricing {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.pricing-table-header {
    display: flex;
    justify-content: space-between;
    padding: 10px 40px;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--glass-bg);
    padding: 20px 40px;
    border-radius: 16px;
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

.pricing-col-name {
    flex: 0 0 200px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.pricing-col-name .pkg-header {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    margin: 0;
}

.pkg-credits {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 0.3px;
}

.pricing-col-feat {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 7px 18px;
    padding: 0 24px;
    align-content: center;
}

.feat-title {
    font-size: 0.82rem;
    color: #94a3b8;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.pricing-col-action {
    flex: 0 0 230px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
}

.pricing-row:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.5);
    border-color: var(--accent);
}

.pricing-row.popular-row {
    background: rgba(245, 158, 11, 0.1); 
    border: 1px solid #F6AD55;
    transform: scale(1.02);
    box-shadow: 0 15px 30px -5px rgba(246, 173, 85, 0.1);
}

.pricing-row.popular-row:hover {
    transform: scale(1.02) translateY(-2px);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: #cbd5e1;
    font-size: 0.95rem;
}

.feature-item i {
    color: var(--accent);
}

.popular-row .feature-item i {
    color: #F59E0B; 
}

.price-amount {
    font-size: 1.6rem;
    font-weight: 800;
    color: white;
}

.price-sub {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
}

.btn-pricing {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    border-radius: 12px;
    font-weight: 700;
    min-width: 180px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    line-height: 1.2;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-pricing:hover {
    transform: scale(1.05) translateY(-3px);
    box-shadow: 0 10px 25px rgba(245, 158, 11, 0.3);
    border-color: rgba(245, 158, 11, 0.5);
}

.cta-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
    margin-bottom: 2px;
}

.cta-price {
    font-size: 1.1rem;
    font-weight: 800;
}

/* Fallback for Mobile Flow */
@media (max-width: 900px) {
    .pricing-table-header {
        display: none;
    }

    .horizontal-pricing {
        gap: 8px;
    }

    .pricing-row {
        flex-direction: column;
        gap: 8px;
        padding: 12px 16px;
        text-align: center;
    }

    /* flex-basis sıfırla — yoksa column yönünde 200/230px yükseklik zorlar */
    .pricing-col-name,
    .pricing-col-feat,
    .pricing-col-action {
        flex: none;
        width: 100%;
    }

    /* Paket adı + kredi: ortalı, dikey */
    .pricing-col-name {
        align-items: center;
        gap: 3px;
    }

    .pricing-col-name .pkg-header {
        font-size: 1.15rem;
        font-weight: 800;
        color: white;
        margin: 0;
    }

    .pkg-credits {
        font-size: 0.8rem;
    }

    /* Özellikler: 2×2 grid — yüksekliği yarıya indirir */
    .pricing-col-feat {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 5px 10px;
        padding: 8px 0;
        width: 100%;
        border-top: 1px solid rgba(255,255,255,0.06);
        border-bottom: 1px solid rgba(255,255,255,0.06);
        text-align: left;
    }

    .feat-title {
        font-size: 0.72rem;
        color: #94a3b8;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    /* Fiyat + buton: yan yana */
    .pricing-col-action {
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 14px;
        width: 100%;
    }

    .price-amount {
        font-size: 1.15rem;
        white-space: nowrap;
    }

    .btn-pricing {
        padding: 9px 18px;
        font-size: 0.85rem;
        white-space: nowrap;
    }
}


