/* 
@font-face {
    font-family: 'Inter';
    src: url('fonts/Inter-VariableFont_opsz,wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
} */

/* @font-face {
    font-family: 'Inter';
    src: url('fonts/Inter-VariableFont_opsz,wght.ttf') format('truetype-variations');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap; 
} */

/* @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;800;900&display=swap'); */

:root {
    --bg: #050608;
    --panel: #0f1115;
    --accent: #00f2ff;
    --accent-dim: rgba(0, 242, 255, 0.15);
    --text: #ffffff;
    --text-dim: #8e9297;
    --border: rgba(255, 255, 255, 0.08);
    --nav-height: 70px;

}

* {
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    background-color: var(--bg);
    color: var(--text);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;

}

.active-text {
    color: var(--accent) !important;
}

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

.highlight {
    color: var(--accent);
}

.glass {
    background: var(--panel);
    border: 1px solid var(--border);
    backdrop-filter: blur(10px);
    border-radius: 20px;
}

/* --- Navigation --- */
nav {
    height: var(--nav-height);
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 2000;
    background: rgba(5, 6, 8, 0.9);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--border);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    font-size: 1.2rem;
    font-weight: 900;
    letter-spacing: -1px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: 25px;
}

.nav-links a {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: 0.3s;
}

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

.nav-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.menu-toggle span {
    width: 22px;
    height: 2px;
    background: white;
}

/* --- Hero --- */
.hero {
    padding: calc(var(--nav-height) + 40px) 0 30px;
    text-align: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 5%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, var(--accent-dim) 0%, transparent 70%);
    transform: translateX(-50%);
    z-index: -1;
}

h1 {
    /* font-size: clamp(2.2rem, 7vw, 4rem); */
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
}


.pro-choice-title {
    font-size: clamp(1.2rem, 3vw, 2rem);
    /* font-family: 'Inter', sans-serif; */
    font-weight: 900;
    letter-spacing: 1.0em;  
    text-transform: uppercase;
}


.hero p {
    font-size: clamp(1rem, 2vw, 1.1rem);
    color: var(--text-dim);
    max-width: 650px;
    margin: 0 auto 35px;
}

/* --- CTA Buttons (Fixed for Mobile) --- */
.cta-group {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    /* Important for wrap on mobile */
}

.btn {
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
    display: inline-block;
    font-size: 0.95rem;
    text-align: center;
    border: none;
}

.btn-main {
    background: var(--accent);
    color: #000;
}

.btn-secondary {
    border: 1px solid var(--border);
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
}

/* --- Promotional Banner --- */

.promo-banner {
    background: linear-gradient(90deg, var(--accent-dim), transparent);
    padding: 25px;
    border-left: 5px solid var(--accent);
    text-align: left;
}

.promo-banner h2 {
    margin-top: 0;
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 800;
}

.promo-banner p {
    font-size: 1.1rem;
    max-width: 950px;
    color: #ced4da;
}

.step-num {
    width: 50px;
    height: 50px;
    background: var(--accent);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    margin-bottom: 20px;
    box-shadow: 0 0 20px var(--accent-dim);
}

/* --- Sections --- */
.section-header {
    text-align: center;
}

.grid {
    display: grid;
    gap: 20px;
    margin: 40px 0;
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

.card {
    padding: 30px;
}

/* --- Stats --- */
.stat-box {
    text-align: center;
    border-right: 1px solid var(--border);
    padding: 20px;
}

.stat-box:last-child {
    border-right: none;
}

.stat-box h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin: 0;
}

.stat-box p {
    color: var(--text-dim);
    font-size: 0.75rem;
    letter-spacing: 2px;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    text-align: left;
}

.pricing-features li {
    padding: 10px 0;
    color: var(--text-dim);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-features li b {
    color: var(--accent);
}

.stats-glass {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* Default 4 columns */
    margin: 30px 0;
    padding: 30px 10px;
}

/* FAQ */
.faq-container {
    /* max-width: 800px; */
    margin: 0 auto;
}

.faq-grid {
    display: grid;
    gap: 40px;
    margin-bottom: 100px;
}

details {
    padding: 20px;
    margin-bottom: 15px;
    cursor: pointer;
    border-radius: 15px;
}


.flex-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

/* --- Super Footer --- */
.super-footer {
    background-color: #080a0c;
    border-top: 1px solid var(--border);
    padding: 40px 0 30px;
    margin-top: 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-brand p {
    color: var(--text-dim);
    font-size: 0.9rem;
    margin-top: 20px;
}

.footer-title {
    color: var(--text);
    font-size: 1.1rem;
    margin-bottom: 25px;
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 30px;
    height: 2px;
    background: var(--accent);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 0.9rem;
    transition: 0.3s;
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    color: var(--text-dim);
    font-size: 0.8rem;
    flex-wrap: wrap;
    gap: 20px;
}

/* --- Social Icons Styling --- */
.social-links {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.social-icon {
    width: 20px;
    height: 20px;
    background: var(--panel);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    text-decoration: none;
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--accent);
    color: #000;
    border-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px var(--accent-dim);
}

.color-inst {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.color-wa {
    background: linear-gradient(45deg, #EDF8F5, #E5FFCC, #1EBEA5, #00E676, #00E676, #D0E9EA, #ffffff);
}

.color-fb {
    background: linear-gradient(120deg, #3b5998, #FFFFFF);
}

/* --- Page Header Style --- */
.page-header {
    padding: calc(var(--nav-height) + 50px) 0 50px;
    text-align: center;
}

/* Background Glow for Page Headers */
.page-header::after {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, var(--accent-dim) 0%, transparent 70%);
    transform: translateX(-50%);
    z-index: 0;
    pointer-events: none;
}

.page-header h1 {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    /* margin: 10px 0; */
    text-transform: uppercase;
    letter-spacing: -1px;
}

.breadcrumb {
    font-size: 0.8rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

.page-description {
    color: var(--text-dim);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.mobile-text {
    display: none;
}

.desktop-text {
    display: inline;
}



/* --- Responsive Breakpoints --- */
@media (max-width: 992px) {
    .nav-links {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .grid-3,
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-box {
        border: none;
    }
}

@media (max-width: 768px) {
    .hero {
        padding-top: calc(var(--nav-height) + 20px);
    }

    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }

    /* Crucial fix for Buttons displaying on mobile */
    .cta-group {
        flex-direction: column;
        align-items: stretch;
        padding: 0 10%;
    }

    .btn {
        width: 100%;
        display: block;
    }

    .nav-right .btn-main {
        display: none;
        /* Hide top right button on mobile to save space */
    }

    .pro-choice-title {
        font-weight: 800;
        letter-spacing: 0.04em;  
    }

    .card-header-row {
        display: flex;
        align-items: center;
        /* Centers icon and text vertically */
        gap: 20px;
    }

    .stats-glass {
        grid-template-columns: repeat(2, 1fr);
        /* 2x2 grid on mobile */
        gap: 30px 0;
        /* Vertical spacing between rows */
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        text-align: justify;
        gap: 20px;
    }

    /* .footer-column h4::after { left: 50%; transform: translateX(-50%); } */
    .footer-column-platform{
        margin-left: 45px;
    }

    .footer-column-support,
    .footer-column-brand{
        margin-left: 15px;
    }

    .footer-column-contact{
        margin-left: -25px;
    }


    .footer-bottom {
        justify-content: center;
    }

    .flex-btns {
        /* flex-direction: column; */
        grid-template-columns: repeat(2, 1fr);
    }

    .page-header {
        padding: calc(var(--nav-height) + 30px) 0 40px;
    }

    .container {
        /* padding: 0 20px; */
        padding-left: 10px;
        padding-right: 10px;
    }

    .desktop-text {
        display: none; 
    }
    .mobile-text {
        display: block; 
        font-size: 0.4rem; 
    }
}

/* Mobile Slide-in Menu */
#mobileNav {
    position: fixed;
    top: var(--nav-height);
    left: -100%;
    width: 100%;
    height: 100vh;
    background: var(--bg);
    z-index: 1999;
    display: flex;
    flex-direction: column;
    padding: 40px;
    gap: 20px;
    transition: 0.4s;
}

#mobileNav.active {
    left: 0;
}

#mobileNav a {
    font-size: 1.5rem;
    color: white;
    text-decoration: none;
    font-weight: 700;
}