:root {
    /* Colors - Light Theme */
    --bg-dark: #F0F7FF;
    /* Light Blue/White background */
    --bg-card: #FFFFFF;
    --primary: #2563EB;
    /* Bright Blue */
    --accent: #3B82F6;
    /* Sky Blue */
    --text-main: #1E293B;
    /* Slate 800 */
    --text-muted: #64748B;
    /* Slate 500 */
    --border: rgba(37, 99, 235, 0.1);
    --glass: rgba(255, 255, 255, 0.9);
    --warning-bg: #FEF2F2;
    --warning-text: #991B1B;
    --success-bg: #F0FDF4;
    --success-text: #166534;

    /* Spacing */
    --section-padding: 80px 20px;
    --container-width: 1100px;

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: #1e293b;
    line-height: 1.2;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* Utilities */
.text-gradient {
    background: linear-gradient(135deg, #2563EB 0%, #1d4ed8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-highlight {
    color: var(--primary);
    font-weight: 700;
}

.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    /* Pill shape */
    text-decoration: none;
    font-weight: 600;
    font-family: var(--font-heading);
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
    position: relative;
    overflow: hidden;
    font-size: 1.1rem;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(37, 99, 235, 0.5);
}

.section {
    padding: var(--section-padding);
    position: relative;
}

/* Animations */
@keyframes pulse-slow {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 15px 40px rgba(37, 99, 235, 0.6);
    }
}

.btn-pulse {
    animation: pulse-slow 3s infinite ease-in-out;
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Glass Card */
.glass-card {
    background: var(--bg-card);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 24px;
    padding: 32px;
    transition: transform 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(25, 90, 230, 0.1);
}

/* URGENCY & CRO ELEMENTS */
.urgency-box {
    background-color: var(--warning-bg);
    border: 2px dashed var(--warning-text);
    color: var(--warning-text);
    padding: 20px;
    border-radius: 12px;
    margin: 30px auto;
    max-width: 600px;
    text-align: left;
    position: relative;
}

.urgency-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.security-badges-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
    flex-wrap: wrap;
    opacity: 0.8;
}

.security-badge-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* HERO CANVAS & FLOATING ELEMENTS */
#hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    /* Behind content */
    pointer-events: none;
    /* Let clicks pass through */
}

.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: white;
    /* Fallback */
}

.floating-badges {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.badge {
    position: absolute;
    background: white;
    padding: 10px 20px;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 8px;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* INFINITE MARQUEE (New Carousel) */
.marquee-container {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    padding: 20px 0;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-content {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: scroll 40s linear infinite;
}

.marquee-content:hover {
    animation-play-state: paused;
}

.testimonial-card-slide {
    width: 350px;
    white-space: normal;
    flex-shrink: 0;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }

    /* Shift by half because content is duplicated */
}

/* CLEAN STUDENT COUNT */
.clean-stat-section {
    padding: 60px 20px;
    text-align: center;
    background: transparent;
}

.clean-stat-number {
    font-size: 5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    letter-spacing: -2px;
    margin-bottom: 10px;
    background: linear-gradient(180deg, var(--primary) 0%, rgba(37, 99, 235, 0.5) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.clean-stat-label {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-main);
    text-transform: uppercase;
    letter-spacing: 2px;
}


/* REVELATION & PRICE FIXES */
.revelation-card {
    text-align: left;
    background: #fff;
    padding: 50px;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
}

.solution-box {
    padding: 30px;
    background: #eff6ff;
    border-radius: 12px;
    border-left: 4px solid var(--primary);
}

.benefit-bullets {
    display: grid;
    gap: 20px;
    margin-top: 30px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: #fff;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.price-container {
    display: flex;
    flex-direction: column;
    /* Stack vertically by default or generally */
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-bottom: 20px;
}

/* Center align specifically */


/* Problems Grid & Bonus Grid */
.problem-list,
.bonus-grid,
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    :root {
        --section-padding: 50px 20px;
        --container-width: 100%;
    }

    h1 {
        font-size: 2.2rem !important;
        line-height: 1.1;
    }

    h2 {
        font-size: 1.8rem;
    }

    p {
        font-size: 1rem !important;
    }

    .hero {
        min-height: auto;
        padding-top: 100px;
        padding-bottom: 60px;
    }

    .container {
        padding: 0 20px;
    }

    /* Hide floating badges on mobile to save space and avoid clutter */
    .badge {
        display: none;
    }

    /* Adjust Card Paddings */
    .glass-card {
        padding: 24px;
    }

    /* Clean Stat fixes */
    .clean-stat-number {
        font-size: 3.5rem;
    }

    .clean-stat-label {
        font-size: 1rem;
    }

    /* Offer Section */
    .offer .glass-card {
        padding: 30px 20px !important;
    }

    .btn-primary {
        width: 100%;
        padding: 16px 20px;
        font-size: 1.1rem;
        /* Bigger for mobile */
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Mobile Fixes for Content Padding */
    .revelation-card {
        padding: 24px !important;
    }

    .solution-box {
        padding: 20px !important;
    }

    .marquee-content {
        gap: 15px;
    }

    .testimonial-card-slide {
        width: 280px;
        padding: 20px;
    }

    .urgency-box {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem !important;
    }

    .clean-stat-number {
        font-size: 3rem;
    }
}