/* ══════════════════════════════════════════════════════════════
   GasheAI — Landing Page "2026 Premium Design System v8"
   VISUAL ENHANCEMENT EDITION
   ══════════════════════════════════════════════════════════════ */

/* ─── 1. :root Design Tokens (ENHANCED) ─── */
:root {
    /* Base Colors */
    --bg-primary: #050816;
    --bg-secondary: #0B1023;
    --surface: #11182E;

    /* Accent Colors */
    --gold: #F5B21B;
    --gold-hover: #FFC94A;
    --gold-light: #FFE066;
    --gold-dark: #E89A00;

    --blue: #3B82F6;
    --blue-hover: #60A5FA;
    --blue-glow: rgba(59, 130, 246, 0.4);

    --green: #1FA971;
    --green-hover: #34D399;

    --red: #E63946;
    --purple: #8B5CF6;
    --cyan: #06B6D4;
    --orange: #F97316;
    --pink: #EC4899;

    /* Text */
    --text-primary: #F8FAFC;
    --text-secondary: #94A3B8;
    --text-dim: #64748B;

    /* Borders & Glass (ENHANCED) */
    --border: rgba(255, 255, 255, .08);
    --border-strong: rgba(255, 255, 255, .14);
    --glass-bg: rgba(255, 255, 255, .035);
    --glass-bg-hover: rgba(255, 255, 255, .055);
    --glass-bg-strong: rgba(255, 255, 255, .06);

    /* Typography */
    --font-heading: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Legacy Aliases (kept for backward compat) */
    --brand-dark: #050816;
    --brand-deep: #050816;
    --brand-navy: #0B1023;
    --brand-surface: #11182E;
    --brand-surface-hover: #151C34;
    --brand-gold: #F5B21B;
    --brand-gold-light: #FFC94A;
    --brand-gold-dark: #E89A00;
    --brand-gold-glow: rgba(245, 178, 27, 0.35);
    --brand-green: #1FA971;
    --brand-red: #E63946;
    --brand-blue: #3B82F6;
    --brand-purple: #8B5CF6;
    --brand-cyan: #06B6D4;
    --brand-orange: #F97316;
    --brand-pink: #EC4899;
    --brand-text: #F8FAFC;
    --brand-muted: #94A3B8;
    --brand-dim: #64748B;
    
    /* Gradients (ENHANCED) */
    --gradient-hero: linear-gradient(145deg, #050816 0%, #0a0f25 25%, #0B1023 50%, #0d1229 75%, #050816 100%);
    --gradient-gold: linear-gradient(135deg, #FFE066 0%, #F5B21B 40%, #FFC94A 70%, #F5B21B 100%);
    --gradient-shine: linear-gradient(135deg, #FFD166, #F5B21B, #FFC94A, #F5B21B, #FFE066);
    --gradient-glass: rgba(11, 16, 35, 0.7);
    
    /* Shadows (ENHANCED) */
    --shadow-card: 0 12px 44px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255,255,255,0.04);
    --shadow-card-hover: 0 24px 64px rgba(0, 0, 0, 0.55), 0 0 80px rgba(59, 130, 246, 0.08);
    --shadow-glow: 0 0 50px rgba(245, 178, 27, 0.22);
    --shadow-glow-strong: 0 0 70px rgba(245, 178, 27, 0.32);
    --shadow-hover: 0 20px 56px rgba(0, 0, 0, 0.55);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-border-hover: rgba(255, 255, 255, 0.18);
}

/* ─── 2. Reset & Base (ENHANCED) ─── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

/* ENHANCED: Richer body background with more depth */
body {
    font-family: var(--font-body);
    background:
        /* Layer 1: Primary gradient */
        linear-gradient(180deg, #050816 0%, #0a0f25 30%, #0B1023 60%, #0d1229 100%),
        /* Layer 2: Large blue orb top-left */
        radial-gradient(ellipse 80% 60% at 15% 10%, rgba(59, 130, 246, 0.14) 0%, transparent 55%),
        /* Layer 3: Gold orb bottom-right */
        radial-gradient(ellipse 70% 50% at 85% 90%, rgba(245, 178, 27, 0.1) 0%, transparent 50%),
        /* Layer 4: Purple accent center */
        radial-gradient(ellipse 50% 40% at 50% 50%, rgba(139, 92, 246, 0.05) 0%, transparent 55%),
        /* Layer 5: Green subtle accent */
        radial-gradient(ellipse 40% 30% at 70% 20%, rgba(31, 169, 113, 0.04) 0%, transparent 50%),
        /* Base color fallback */
        #050816;
    background-attachment: fixed;
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 18px;
    position: relative;
}

/* ENHANCED: Subtle noise texture overlay for premium feel */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    opacity: 0.018;
    pointer-events: none;
    z-index: 9999;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px 256px;
}

a { text-decoration: none; color: inherit; transition: color 0.3s, opacity 0.3s; }
img { max-width: 100%; }
ul { list-style: none; }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
}

/* ─── 3. Animations (@keyframes) ENHANCED ─── */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(36px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInScale {
    from { opacity: 0; transform: scale(0.94) translateY(24px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}
@keyframes shine {
    0% { background-position: 200% center; }
    100% { background-position: -200% center; }
}
@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(24px, -28px) scale(1.06); }
    50% { transform: translate(-12px, -44px) scale(1.09); }
    75% { transform: translate(18px, -18px) scale(1.04); }
}
@keyframes pulse-ring {
    0% { transform: scale(0.8); opacity: 1; }
    100% { transform: scale(2.6); opacity: 0; }
}
@keyframes pill-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
@keyframes glow-pulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.06); }
}
@keyframes orb-drift {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(48px, -36px) scale(1.12); }
    66% { transform: translate(-24px, 24px) scale(0.96); }
}
@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}
@keyframes shimmer {
    0% { background-position: -1000px 0; }
    100% { background-position: 1000px 0; }
}

/* NEW: Gentle border glow animation */
@keyframes borderGlow {
    0%, 100% { border-color: rgba(245, 178, 27, 0.15); }
    50% { border-color: rgba(245, 178, 27, 0.3); }
}

/* NEW: Subtle rotate for decorative elements */
@keyframes gentleRotate {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(3deg); }
}

/* NEW: CTA pulse for attention */
@keyframes ctaPulse {
    0%, 100% { box-shadow: 0 10px 36px rgba(245, 178, 27, 0.3), 0 0 0 0 rgba(245, 178, 27, 0.15); }
    50% { box-shadow: 0 14px 44px rgba(245, 178, 27, 0.42), 0 0 0 8px rgba(245, 178, 27, 0); }
}

/* ─── 4. Scroll-triggered Animations (ENHANCED) ─── */
.card, .step-card, .highlight-main-card, .highlight-mini-card, 
.grade-card, .pricing-card, .testimonial-card {
    opacity: 0;
    transform: translateY(48px);
    transition: 
        opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.8s cubic-bezier(0.16, 1, 0.3, 1),
        border-color 0.5s ease,
        box-shadow 0.5s ease,
        background 0.5s ease,
        filter 0.5s ease;
}

.card.animate-in, .step-card.animate-in, .highlight-main-card.animate-in,
.highlight-mini-card.animate-in, .grade-card.animate-in, 
.pricing-card.animate-in, .testimonial-card.animate-in {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

/* Stagger delay for grid items (ENHANCED) */
.card:nth-child(1) { transition-delay: 0s; }
.card:nth-child(2) { transition-delay: 0.1s; }
.card:nth-child(3) { transition-delay: 0.2s; }
.card:nth-child(4) { transition-delay: 0.3s; }
.card:nth-child(5) { transition-delay: 0.4s; }
.card:nth-child(6) { transition-delay: 0.5s; }
.card:nth-child(7) { transition-delay: 0.6s; }
.card:nth-child(8) { transition-delay: 0.7s; }
.card:nth-child(9) { transition-delay: 0.8s; }

/* ══════════════════════════════════════════════════════════════
   5. NAVBAR (ENHANCED)
   ══════════════════════════════════════════════════════════════ */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 0 32px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(5, 8, 22, .82);
    backdrop-filter: blur(24px) saturate(1.4);
    -webkit-backdrop-filter: blur(24px) saturate(1.4);
    border-bottom: 1px solid rgba(255, 255, 255, .07);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.navbar.scrolled {
    background: rgba(5, 8, 22, .92);
    backdrop-filter: blur(28px) saturate(1.6);
    -webkit-backdrop-filter: blur(28px) saturate(1.6);
    box-shadow: 
        0 8px 48px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.05),
        inset 0 -1px 0 var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: #fff;
}
.nav-logo-icon {
    width: 32px; height: 32px; max-width: 32px; max-height: 32px;
    object-fit: contain; border-radius: 8px;
    filter: drop-shadow(0 0 14px rgba(245, 178, 27, 0.5));
    transition: filter 0.3s ease;
}
.nav-logo:hover .nav-logo-icon {
    filter: drop-shadow(0 0 22px rgba(245, 178, 27, 0.7));
}
.nav-logo-text {
    background: var(--gradient-shine);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 6s linear infinite;
}

/* Version badge in navbar (ENHANCED) */
.nav-version-badge {
    font-size: 0.65rem;
    font-weight: 700;
    background: linear-gradient(135deg, rgba(245, 178, 27, 0.15), rgba(245, 178, 27, 0.08));
    color: var(--gold);
    padding: 3px 8px;
    border-radius: 6px;
    border: 1px solid rgba(245, 178, 27, 0.3);
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(245, 178, 27, 0.15);
}

.nav-links { display: flex; gap: 28px; }
.nav-links a {
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
    transition: color 0.3s ease;
    padding: 4px 0;
}
.nav-links a:hover { color: var(--text-primary); }
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 2px;
    background: linear-gradient(90deg, var(--blue), var(--gold));
    border-radius: 2px;
    transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav-links a:hover::after { width: 100%; }

/* Download App button in navbar — gold pill (ENHANCED) */
.nav-download-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    background: linear-gradient(135deg, #D49A2E 0%, #b8861c 100%);
    color: #fff;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 
        0 4px 16px rgba(194, 137, 47, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
}
.nav-download-btn::after { display: none; }
.nav-download-btn:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 
        0 8px 26px rgba(194, 137, 47, 0.55),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    background: linear-gradient(135deg, #e0a832 0%, #c99428 100%);
}

.nav-actions { display: flex; gap: 12px; }
.btn {
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    font-family: var(--font-body);
    cursor: pointer;
    border: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    gap: 8px;
}
.btn-lg { padding: 14px 32px; font-size: 1.05rem; border-radius: 14px; }

.btn-ghost {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .1);
    color: #fff;
    backdrop-filter: blur(8px);
}
.btn-ghost:hover {
    background: rgba(255, 255, 255, .1);
    border-color: rgba(255, 255, 255, .2);
    color: #fff;
    box-shadow: 0 0 24px rgba(59, 130, 246, 0.15);
    transform: translateY(-1px);
}

/* ENHANCED: Primary CTA button with dramatic glow */
.btn-primary {
    background: linear-gradient(135deg, #F5B21B 0%, #E89A00 100%);
    color: #050816;
    box-shadow: 
        0 10px 36px rgba(245, 178, 27, .32),
        0 0 0 1px rgba(245, 178, 27, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
    font-weight: 700;
    position: relative;
    overflow: hidden;
}
.btn-primary::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}
.btn-primary:hover::before {
    left: 100%;
}
.btn-primary:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 
        0 16px 48px rgba(245, 178, 27, .45),
        0 0 60px rgba(245, 178, 27, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
}
.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: 0.3s;
    border-radius: 2px;
}

/* ══════════════════════════════════════════════════════════════
   6. HERO SECTION (ENHANCED)
   ══════════════════════════════════════════════════════════════ */

/* Hero section with richer background */
.hero {
    padding: 0 !important;
    padding-top: 80px !important;
    margin-top: 0 !important;
    min-height: calc(100vh - 80px);
    display: block;
    position: relative;
    top: 0 !important;
    background: var(--gradient-hero);
    overflow: hidden;
}

/* ENHANCED: Multiple layered hero background effects */
.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background:
        radial-gradient(circle at 25% 20%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 75% 80%, rgba(245, 178, 27, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.06) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.hero-bg { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }

/* ENHANCED: Rich animated background orbs with more intensity */
.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.7;
    transition: transform 0.3s ease-out;
}
.hero-orb--1 {
    width: 750px; height: 750px;
    background: radial-gradient(circle, rgba(245, 178, 27, 0.3) 0%, rgba(245, 178, 27, 0.06) 60%, transparent 100%);
    top: -18%; right: -12%;
    animation: orb-drift 16s ease-in-out infinite;
}
.hero-orb--2 {
    width: 550px; height: 550px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.25) 0%, rgba(59, 130, 246, 0.04) 60%, transparent 100%);
    bottom: -12%; left: -10%;
    animation: orb-drift 16s ease-in-out infinite;
    animation-delay: -5s;
}
.hero-orb--3 {
    width: 450px; height: 450px;
    background: radial-gradient(circle, rgba(31, 169, 113, 0.22) 0%, rgba(31, 169, 113, 0.03) 60%, transparent 100%);
    top: 38%; left: 42%;
    animation: orb-drift 14s ease-in-out infinite;
    animation-delay: -3s;
}

/* NEW: Fourth orb for extra depth */
.hero-orb--4 {
    width: 350px; height: 350px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.18) 0%, rgba(139, 92, 246, 0.02) 60%, transparent 100%);
    top: 60%; right: 20%;
    animation: orb-drift 18s ease-in-out infinite;
    animation-delay: -8s;
}

/* Hero container */
.hero-content {
    max-width: 1320px !important;
    margin: 0 auto !important;
    padding: 0 16px !important;
    position: relative !important;
    z-index: 2 !important;
    min-height: calc(100vh - 80px) !important;
    box-sizing: border-box !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 48px !important;
    width: 100% !important;
}

/* Hero main text column */
.hero-main {
    flex: 1 1 50% !important;
    width: 50% !important;
    max-width: 50% !important;
    min-width: 0 !important;
    padding: 48px 0 !important;
    box-sizing: border-box !important;
    text-align: left !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    position: relative !important;
    z-index: 3 !important;
}

/* Hero carousel column */
.hero-carousel {
    flex: 1 1 50% !important;
    width: 50% !important;
    max-width: 50% !important;
    min-width: 0 !important;
    position: relative !important;
    aspect-ratio: 4 / 3 !important;
    min-height: 500px !important;
    height: auto !important;
    border-radius: 20px !important;
    overflow: hidden !important;
    background: linear-gradient(145deg, rgba(11,16,35,0.7), rgba(17,24,46,0.5)) !important;
    border: 1px solid rgba(255,255,255,0.08) !important;
    box-shadow: 
        0 24px 72px rgba(0,0,0,0.5),
        0 0 0 1px rgba(255,255,255,0.04),
        inset 0 1px 0 rgba(255,255,255,0.05) !important;
    box-sizing: border-box !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 1 !important;
}

.carousel-slides {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    overflow: hidden !important;
    border-radius: 20px !important;
    background: transparent !important;
}

.carousel-slide {
    position: absolute !important;
    top: 0 !important; left: 0 !important;
    width: 100% !important; height: 100% !important;
    opacity: 0 !important;
    transition: opacity 1s ease-in-out !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: transparent !important;
}
.carousel-slide.active { opacity: 1 !important; }

.carousel-slide img {
    width: 100% !important; height: 100% !important;
    object-fit: cover !important; object-position: center !important;
    display: block !important;
}

.carousel-progress {
    position: absolute !important;
    bottom: 0 !important; left: 0 !important; right: 0 !important;
    height: 4px !important;
    background: rgba(255,255,255,0.1) !important;
    border-radius: 0 0 20px 20px !important;
    overflow: hidden !important;
    z-index: 10 !important;
}
.carousel-progress-bar {
    height: 100% !important;
    background: linear-gradient(90deg, #FCDD09, #f59e0b, #FFD166) !important;
    width: 0% !important;
    transition: width 0.1s linear !important;
}

.carousel-dots {
    position: absolute !important;
    bottom: 18px !important; left: 50% !important;
    transform: translateX(-50%) !important;
    display: flex !important; gap: 10px !important;
    z-index: 11 !important;
}
.carousel-dot {
    width: 10px !important; height: 10px !important;
    border-radius: 50% !important;
    background: rgba(255,255,255,0.3) !important;
    border: none !important;
    cursor: pointer !important;
    transition: all 0.35s !important; padding: 0 !important;
}
.carousel-dot.active {
    background: #FCDD09 !important;
    width: 28px !important;
    border-radius: 5px !important;
    box-shadow: 0 0 12px rgba(252, 221, 9, 0.5);
}

/* Floating AI Chat Bubble (ENHANCED) */
.hero-carousel-bubble {
    position: absolute !important;
    top: 20px !important; right: 20px !important;
    z-index: 20 !important;
    max-width: 250px !important;
    padding: 14px 18px !important;
    background: rgba(11, 16, 35, 0.94) !important;
    border: 1px solid rgba(245, 178, 27, 0.4) !important;
    border-radius: 16px !important;
    box-shadow: 
        0 16px 40px rgba(0, 0, 0, 0.6),
        0 0 30px rgba(245, 178, 27, 0.1) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    animation: bubbleFloat 4.5s ease-in-out infinite !important;
    pointer-events: none !important;
}
.hero-carousel-bubble-header {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    margin-bottom: 6px !important;
}
.hero-carousel-bubble-avatar {
    width: 28px !important; height: 28px !important;
    border-radius: 50% !important;
    background: linear-gradient(135deg, #FCDD09, #f59e0b) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 0.82rem !important;
    flex-shrink: 0 !important;
    box-shadow: 0 0 12px rgba(252, 221, 9, 0.4);
}
.hero-carousel-bubble-name {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-size: 0.76rem !important;
    font-weight: 700 !important;
    color: #f5b21b !important;
}
.hero-carousel-bubble-status {
    font-size: 0.62rem !important;
    color: rgba(255,255,255,0.5) !important;
    margin-left: auto !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 4px !important;
}
.hero-carousel-bubble-status::before {
    content: '' !important;
    width: 6px !important; height: 6px !important;
    border-radius: 50% !important;
    background: #22c55e !important;
    box-shadow: 0 0 10px #22c55e !important;
    display: inline-block !important;
}
.hero-carousel-bubble-text {
    font-size: 0.82rem !important;
    line-height: 1.5 !important;
    color: rgba(255,255,255,0.93) !important;
    margin: 0 !important;
}
.hero-carousel-bubble-text strong { color: #FCDD09 !important; font-weight: 700 !important; }

/* Quiz Score Chip (ENHANCED) */
.hero-carousel-chip {
    position: absolute !important;
    bottom: 20px !important; left: 20px !important;
    z-index: 20 !important;
    padding: 10px 16px !important;
    background: rgba(11, 16, 35, 0.94) !important;
    border: 1px solid rgba(34, 197, 94, 0.4) !important;
    border-radius: 12px !important;
    box-shadow: 
        0 12px 36px rgba(0,0,0,0.5),
        0 0 24px rgba(34, 197, 94, 0.1) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    animation: bubbleFloat 4.5s ease-in-out infinite !important;
    animation-delay: -2s !important;
    pointer-events: none !important;
}
.hero-carousel-chip-icon {
    width: 30px !important; height: 30px !important;
    border-radius: 8px !important;
    background: linear-gradient(135deg, #22c55e, #16a34a) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 0.95rem !important;
    flex-shrink: 0 !important;
    box-shadow: 0 0 10px rgba(34, 197, 94, 0.4);
}
.hero-carousel-chip-label {
    font-size: 0.62rem !important;
    color: rgba(255,255,255,0.5) !important;
    text-transform: uppercase !important;
    letter-spacing: 0.08em !important;
    font-weight: 600 !important;
    display: block !important;
    margin-bottom: 2px !important;
}
.hero-carousel-chip-value {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-size: 0.9rem !important;
    font-weight: 800 !important;
    color: #fff !important;
    line-height: 1 !important;
}
.hero-carousel-chip-value strong { color: #22c55e !important; }

@keyframes bubbleFloat {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-6px); }
}

/* Mobile responsive hero */
@media (max-width: 768px) {
    .hero-content {
        flex-direction: column !important;
        gap: 36px !important;
        align-items: center !important;
        min-height: auto !important;
        padding: 36px 24px 0 !important;
    }
    .hero-main, .hero-carousel {
        flex: 1 1 100% !important;
        flex-basis: 100% !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    .hero-main {
        text-align: center !important;
        align-items: center !important;
        padding: 0 0 20px !important;
    }
    .hero-actions { justify-content: center !important; }
    .hero-stats { justify-content: center !important; }
    .hero-feature-pills { justify-content: center !important; }
    .hero-carousel {
        min-height: 400px !important;
        aspect-ratio: 4 / 3 !important;
    }
    .hero-carousel-bubble {
        right: 12px !important; top: 12px !important;
        max-width: 210px !important; padding: 10px 14px !important;
    }
    .hero-carousel-bubble-text { font-size: 0.74rem !important; }
    .hero-carousel-chip {
        left: 12px !important; bottom: 12px !important;
        padding: 8px 12px !important;
    }
}

@media (max-width: 600px) {
    .hero-carousel {
        min-height: 320px !important;
        aspect-ratio: 4 / 3 !important;
    }
    .hero-carousel-bubble { display: none !important; }
    .hero-carousel-chip { display: none !important; }
}

/* Hero Badge (ENHANCED) */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    background: linear-gradient(135deg, rgba(245, 178, 27, 0.12), rgba(245, 178, 27, 0.06));
    border: 1px solid rgba(245, 178, 27, 0.3);
    border-radius: 100px;
    font-size: 0.9rem;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease both;
    position: relative;
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 16px rgba(245, 178, 27, 0.15);
}
.badge-dot {
    width: 8px; height: 8px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 14px var(--gold);
    position: relative;
    z-index: 1;
}
.badge-pulse {
    position: absolute;
    width: 8px; height: 8px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse-ring 2s ease-out infinite;
}

/* Hero Title (ENHANCED) */
.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 4.2vw, 3.5rem);
    font-weight: 800;
    line-height: 1.08;
    margin-bottom: 18px;
    letter-spacing: -0.025em;
    animation: fadeInUp 0.8s 0.2s ease both;
}
.gradient-text {
    background: linear-gradient(
        120deg,
        #f8fafc 0%,
        #FFD166 18%,
        #F5B21B 36%,
        #FFC94A 50%,
        #F5B21B 64%,
        #FFD166 82%,
        #f8fafc 100%
    );
    background-size: 300% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shine 8s linear infinite;
}
.brand-highlight {
    background: linear-gradient(90deg, #F5B21B, #FFC94A, #FFE066);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    animation: gradient-shift 4s ease infinite;
}

/* Hero Subtitle (ENHANCED) */
.hero-subtitle {
    font-size: 1.08rem;
    color: var(--text-secondary);
    max-width: 560px;
    margin: 0 0 28px;
    line-height: 1.75;
    animation: fadeInUp 0.8s 0.4s ease both;
}
.hero-subtitle strong { color: #fff; font-weight: 600; }

/* Hero Actions (CTAs) */
.hero-actions {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
    animation: fadeInUp 0.8s 0.6s ease both;
    flex-wrap: wrap;
}

/* Hero Stats (ENHANCED) */
.hero-stats {
    display: flex;
    justify-content: flex-start;
    gap: 36px;
    margin-top: 28px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    animation: fadeInUp 0.8s 0.8s ease both;
}
.stat-item { text-align: center; }
.stat-num {
    font-size: 46px;
    font-weight: 800;
    background: linear-gradient(120deg, #FFD166, #F5B21B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    filter: drop-shadow(0 0 20px rgba(245, 178, 27, 0.3));
}
.stat-label {
    font-size: 0.88rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    display: block;
    margin-top: 6px;
    font-weight: 600;
}

/* Feature Pills (ENHANCED) */
.hero-feature-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 8px;
    margin-top: 20px;
    animation: fadeInUp 0.8s 1s ease both;
}
.feature-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 18px 7px 7px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 100px;
    font-size: 0.84rem;
    font-weight: 600;
    color: var(--text-primary);
    cursor: default;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(12px);
}
.feature-pill:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, .2);
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}
.pill-animate { animation: pill-float 4s ease-in-out infinite; }
.pill-icon {
    width: 28px; height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    flex-shrink: 0;
}

/* ══════════════════════════════════════════════════════════════
   7. SECTIONS (Shared) - ENHANCED
   ══════════════════════════════════════════════════════════════ */
.section {
    padding: 110px 24px;
    position: relative;
}

/* NEW: Section divider decoration */
.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    border-radius: 2px;
    opacity: 0.4;
}

.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 64px;
}
.section-label {
    color: var(--gold);
    font-size: 0.88rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: 14px;
    display: block;
    font-family: var(--font-heading);
    opacity: 0.9;
}

/* ENHANCED: Section titles with better hierarchy */
.section-title {
    font-family: var(--font-heading);
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 18px;
    color: #fff;
    letter-spacing: -0.025em;
    line-height: 1.2;
    position: relative;
    display: inline-block;
}

/* NEW: Subtle underline on section titles */
.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-hover));
    border-radius: 2px;
    opacity: 0.6;
}

.section-desc {
    color: var(--text-secondary);
    font-size: 1.04rem;
    line-height: 1.7;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
}

.grid-container {
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    gap: 28px;
}

/* ══════════════════════════════════════════════════════════════
   8. FEATURES SECTION (ENHANCED)
   ══════════════════════════════════════════════════════════════ */
.features-section {
    background:
        radial-gradient(ellipse at 18% 0%, rgba(59, 130, 246, 0.13) 0%, transparent 55%),
        radial-gradient(ellipse at 82% 100%, rgba(245, 178, 27, 0.1) 0%, transparent 55%),
        radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.04) 0%, transparent 55%),
        linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}
.features-grid { grid-template-columns: repeat(auto-fit, minmax(330px, 1fr)); }

/* Enhanced Feature Cards */
.feature-card { position: relative; }
.feature-card-glow {
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(245, 178, 27, 0.08) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
}
.feature-card:hover .feature-card-glow { opacity: 1; }

.feature-tag {
    display: inline-block;
    margin-top: 18px;
    padding: 5px 14px;
    background: linear-gradient(135deg, rgba(245, 178, 27, 0.12), rgba(245, 178, 27, 0.06));
    color: var(--gold);
    font-size: 0.74rem;
    font-weight: 700;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    border: 1px solid rgba(245, 178, 27, 0.2);
}

/* Feature icon colors - enhanced glow shadows */
.feature-icon-gold { filter: drop-shadow(0 0 18px rgba(245, 178, 27, 0.5)); }
.feature-icon-green { filter: drop-shadow(0 0 18px rgba(31, 169, 113, 0.5)); }
.feature-icon-blue { filter: drop-shadow(0 0 18px rgba(59, 130, 246, 0.5)); }
.feature-icon-purple { filter: drop-shadow(0 0 18px rgba(139, 92, 246, 0.5)); }
.feature-icon-orange { filter: drop-shadow(0 0 18px rgba(249, 115, 22, 0.5)); }
.feature-icon-cyan { filter: drop-shadow(0 0 18px rgba(6, 182, 212, 0.5)); }
.feature-icon-pink { filter: drop-shadow(0 0 18px rgba(236, 72, 153, 0.5)); }
.feature-icon-teal { filter: drop-shadow(0 0 18px rgba(20, 184, 166, 0.5)); }
.feature-icon-indigo { filter: drop-shadow(0 0 18px rgba(99, 102, 241, 0.5)); }

/* ENHANCED: Premium glassmorphism cards with more depth */
.card, .subject-card, .stat-card {
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02));
    backdrop-filter: blur(20px) saturate(1.2);
    -webkit-backdrop-filter: blur(20px) saturate(1.2);
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 20px;
    padding: 36px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-card);
}
.card:hover, .subject-card:hover, .stat-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-card-hover);
    border-color: rgba(245, 178, 27, 0.3);
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.03));
}

/* ENHANCED: Animated top border on card hover */
.card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gradient-shine);
    background-size: 200% 100%;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.card:hover::before {
    transform: scaleX(1);
}

/* Inner glow on hover (ENHANCED) */
.card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 140px;
    background: linear-gradient(180deg, rgba(245, 178, 27, 0.06) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
}
.card:hover::after { opacity: 1; }

.card-icon { 
    font-size: 2.6rem; 
    margin-bottom: 22px; 
    display: block;
    transition: transform 0.3s ease;
}
.card:hover .card-icon {
    transform: scale(1.1);
}
.card-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #fff;
    letter-spacing: -0.01em;
}
.card-desc { 
    color: var(--text-secondary); 
    line-height: 1.68; 
    font-size: 0.92rem; 
}

/* ══════════════════════════════════════════════════════════════
   9. HOW IT WORKS SECTION (ENHANCED)
   ══════════════════════════════════════════════════════════════ */
.how-it-works-section {
    background-image:
        radial-gradient(circle, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.08) 0%, transparent 65%);
    background-size: 32px 32px, 100% 100%;
    background-color: var(--bg-primary);
}
.steps-grid { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }

.step-card {
    text-align: center;
    padding: 44px 32px;
    position: relative;
}

/* ENHANCED: Step number circles */
.step-number {
    width: 70px; height: 70px;
    background: var(--gradient-gold);
    color: var(--bg-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.9rem;
    font-weight: 800;
    font-family: var(--font-heading);
    margin: 0 auto 26px;
    box-shadow: 
        0 6px 28px rgba(245, 178, 27, 0.4),
        0 0 56px rgba(245, 178, 27, 0.15);
    position: relative;
    transition: all 0.35s ease;
}
.step-number:hover {
    transform: scale(1.08);
    box-shadow: 
        0 8px 36px rgba(245, 178, 27, 0.5),
        0 0 72px rgba(245, 178, 27, 0.2);
}
.step-connector { display: none; }

@media (min-width: 768px) {
    .steps-grid { grid-template-columns: repeat(4, 1fr); }
    .step-card:not(:last-child) .step-connector {
        display: block;
        position: absolute;
        top: 58px;
        right: -14px;
        width: calc(100% - 70px - 70px + 28px);
        height: 2px;
        background: repeating-linear-gradient(
            90deg,
            rgba(245, 178, 27, 0.3) 0px,
            rgba(245, 178, 27, 0.3) 6px,
            transparent 6px,
            transparent 12px
        );
    }
}

/* ══════════════════════════════════════════════════════════════
   10. HIGHLIGHT SECTION (ENHANCED)
   ══════════════════════════════════════════════════════════════ */
.highlight-section {
    background:
        radial-gradient(ellipse at 28% 38%, rgba(245, 178, 27, 0.1) 0%, transparent 65%),
        radial-gradient(ellipse at 72% 72%, rgba(31, 169, 113, 0.08) 0%, transparent 55%),
        linear-gradient(160deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, var(--bg-primary) 100%);
}
.highlight-grid {
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    align-items: start;
}

/* ENHANCED: Main highlight card */
.highlight-main-card {
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(245, 178, 27, 0.18);
    border-radius: 26px;
    padding: 44px 40px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px) saturate(1.2);
    -webkit-backdrop-filter: blur(20px) saturate(1.2);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: var(--shadow-card);
}
.highlight-main-card:hover {
    border-color: rgba(245, 178, 27, 0.35);
    box-shadow: var(--shadow-card-hover), 0 0 80px rgba(245, 178, 27, 0.08);
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025));
}
.highlight-main-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--gradient-shine);
    background-size: 200% 100%;
}
/* Inner ambient glow (ENHANCED) */
.highlight-main-card::after {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle at 50% 0%, rgba(245, 178, 27, 0.06) 0%, transparent 55%);
    pointer-events: none;
}
.highlight-main-icon {
    font-size: 3.2rem;
    margin-bottom: 22px;
    display: block;
    filter: drop-shadow(0 0 24px rgba(245, 178, 27, 0.55));
    transition: transform 0.3s ease;
}
.highlight-main-card:hover .highlight-main-icon {
    transform: scale(1.08);
}
.highlight-main-card h3 {
    font-family: var(--font-heading);
    font-size: 1.7rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 14px;
    letter-spacing: -0.02em;
}
.highlight-main-card > p {
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 24px;
    font-size: 0.96rem;
}
.highlight-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.highlight-list li {
    color: var(--text-secondary);
    font-size: 0.94rem;
    padding-left: 26px;
    position: relative;
    line-height: 1.5;
}
.highlight-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 800;
    font-size: 1.05rem;
}

/* Side cards (ENHANCED) */
.highlight-side-cards {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.highlight-mini-card {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 26px;
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.015));
    border: 1px solid var(--border);
    border-radius: 18px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(18px) saturate(1.2);
    -webkit-backdrop-filter: blur(18px) saturate(1.2);
    box-shadow: var(--shadow-card);
}
.highlight-mini-card:hover {
    border-color: rgba(245, 178, 27, 0.3);
    transform: translateX(10px);
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025));
    box-shadow: var(--shadow-card-hover);
}
.mini-card-icon {
    font-size: 2.1rem;
    flex-shrink: 0;
    width: 52px; height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(245, 178, 27, 0.12), rgba(245, 178, 27, 0.06));
    border-radius: 14px;
    border: 1px solid rgba(245, 178, 27, 0.15);
    transition: transform 0.3s ease;
}
.highlight-mini-card:hover .mini-card-icon {
    transform: scale(1.08);
}
.highlight-mini-card h4 {
    font-family: var(--font-heading);
    font-size: 1.08rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 7px;
}
.highlight-mini-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.55;
}

/* ══════════════════════════════════════════════════════════════
   11. GRADES / SUBJECTS (ENHANCED)
   ══════════════════════════════════════════════════════════════ */
.grades-section {
    background:
        radial-gradient(ellipse at 50% 0%, rgba(59, 130, 246, 0.12) 0%, transparent 65%),
        radial-gradient(ellipse at 18% 85%, rgba(139, 92, 246, 0.08) 0%, transparent 55%),
        radial-gradient(ellipse at 82% 85%, rgba(6, 182, 212, 0.08) 0%, transparent 55%),
        linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}
.grades-grid { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.grade-card { text-align: center; }
.grade-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: var(--shadow-card-hover);
    border-color: rgba(245, 178, 27, 0.3);
}
.grade-card-featured {
    border-color: rgba(245, 178, 27, 0.35);
    background: linear-gradient(165deg, rgba(245, 178, 27, 0.06), rgba(245, 178, 27, 0.02));
}
.grade-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--gradient-gold);
    color: var(--bg-primary);
    font-size: 0.66rem;
    font-weight: 800;
    padding: 5px 12px;
    border-radius: 10px;
    letter-spacing: 0.6px;
    box-shadow: 0 4px 16px rgba(245, 178, 27, 0.35);
}
.grade-num-circle {
    width: 84px; height: 84px;
    background: linear-gradient(135deg, rgba(245, 178, 27, 0.1), rgba(245, 178, 27, 0.04));
    border: 2.5px solid rgba(245, 178, 27, 0.45);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.1rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: var(--gold);
    margin: 0 auto 22px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.grade-card:hover .grade-num-circle {
    background: var(--gradient-gold);
    color: var(--bg-primary);
    border-color: transparent;
    box-shadow: 0 0 48px rgba(245, 178, 27, 0.4);
    transform: scale(1.1);
}
.grade-subjects {
    margin-top: 14px;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.32);
    line-height: 1.55;
}

/* Grade Card Subject Color-Coded Borders */
.grade-card-subject-mathematics { border-top: 4px solid #3B82F6; }
.grade-card-subject-physics { border-top: 4px solid #8B5CF6; }
.grade-card-subject-chemistry { border-top: 4px solid #1FA971; }
.grade-card-subject-biology { border-top: 4px solid #10B981; }
.grade-card-subject-english { border-top: 4px solid #F97316; }
.grade-card-subject-information_technology { border-top: 4px solid #06B6D4; }
.grade-card-subject-civics { border-top: 4px solid #F59E0B; }

/* ══════════════════════════════════════════════════════════════
   12. PRICING PLANS (ENHANCED)
   ══════════════════════════════════════════════════════════════ */
.pricing-section {
    background:
        radial-gradient(ellipse at 50% 0%, rgba(245, 178, 27, 0.1) 0%, transparent 55%),
        radial-gradient(ellipse at 50% 100%, rgba(139, 92, 246, 0.08) 0%, transparent 45%),
        linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, var(--bg-primary) 100%);
}
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1140px;
    margin: 0 auto;
    align-items: start;
}

/* ENHANCED: Pricing cards with more depth */
.pricing-card {
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015));
    border: 1px solid var(--border);
    border-radius: 26px;
    padding: 44px 34px 36px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    backdrop-filter: blur(20px) saturate(1.2);
    -webkit-backdrop-filter: blur(20px) saturate(1.2);
    overflow: visible;
    box-shadow: var(--shadow-card);
}
.pricing-card:hover {
    transform: translateY(-8px);
    border-color: rgba(245, 178, 27, 0.25);
    box-shadow: var(--shadow-card-hover);
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025));
}

/* Gold accent line on hover (ENHANCED) */
.pricing-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--gradient-shine);
    background-size: 200% 100%;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    border-radius: 26px 26px 0 0;
}
.pricing-card:hover::before { transform: scaleX(1); }

/* ENHANCED: Popular pricing card - much more prominent */
.pricing-card-popular {
    border-color: rgba(245, 178, 27, 0.4);
    background: linear-gradient(165deg, rgba(245, 178, 27, 0.08), rgba(245, 178, 27, 0.03));
    transform: scale(1.06);
    z-index: 2;
    box-shadow: 
        0 20px 56px rgba(0, 0, 0, 0.5),
        0 0 0 2px rgba(245, 178, 27, 0.2),
        0 0 80px rgba(245, 178, 27, 0.1);
}
.pricing-card-popular:hover { 
    transform: scale(1.06) translateY(-8px); 
    box-shadow: 
        0 28px 68px rgba(0, 0, 0, 0.55),
        0 0 0 2px rgba(245, 178, 27, 0.3),
        0 0 100px rgba(245, 178, 27, 0.15);
}
.pricing-card-popular::before { transform: scaleX(1); }

/* ENHANCED: Popular badge */
.pricing-popular-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-gold);
    color: var(--bg-primary);
    font-size: 0.8rem;
    font-weight: 800;
    padding: 7px 24px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    box-shadow: 
        0 6px 24px rgba(245, 178, 27, 0.4),
        0 0 0 1px rgba(245, 178, 27, 0.2);
}

.pricing-header { margin-bottom: 28px; }
.pricing-name {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
}
.pricing-billing { font-size: 0.86rem; color: var(--text-secondary); }

/* ENHANCED: Price display */
.pricing-amount { 
    display: flex; 
    align-items: baseline; 
    justify-content: center; 
    gap: 4px; 
    margin-bottom: 10px; 
}
.pricing-currency { 
    font-size: 1.15rem; 
    font-weight: 700; 
    color: var(--gold); 
}
.pricing-price {
    font-family: var(--font-heading);
    font-size: 3.4rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    letter-spacing: -0.03em;
}
.pricing-period { 
    font-size: 0.96rem; 
    color: var(--text-secondary); 
}
.pricing-savings { 
    font-size: 0.84rem; 
    color: var(--gold); 
    font-weight: 700; 
    margin-bottom: 28px;
    display: inline-block;
    padding: 4px 12px;
    background: rgba(245, 178, 27, 0.1);
    border-radius: 8px;
}

/* ENHANCED: Pricing features list */
.pricing-features { 
    text-align: left; 
    margin-bottom: 36px; 
}
.pricing-features li {
    padding: 10px 0;
    font-size: 0.94rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.pricing-features li:last-child {
    border-bottom: none;
}
.pricing-feature-included::before {
    content: '✓';
    color: var(--gold);
    font-weight: 800;
    flex-shrink: 0;
    font-size: 1.05rem;
}

/* ENHANCED: Pricing buttons */
.pricing-btn {
    width: 100%;
    padding: 15px 26px;
    border-radius: 14px;
    font-weight: 700;
    font-size: 0.96rem;
    font-family: var(--font-body);
    cursor: pointer;
    border: 2px solid var(--gold);
    background: transparent;
    color: var(--gold);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.pricing-btn:hover {
    background: linear-gradient(135deg, #F5B21B, #E89A00);
    color: var(--bg-primary);
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 
        0 12px 36px rgba(245, 178, 27, 0.4),
        0 0 0 1px rgba(245, 178, 27, 0.2);
}
.pricing-btn-primary {
    background: linear-gradient(135deg, #F5B21B, #E89A00);
    color: var(--bg-primary);
    border-color: transparent;
    box-shadow: 
        0 8px 28px rgba(245, 178, 27, 0.35),
        0 0 0 1px rgba(245, 178, 27, 0.2);
}
.pricing-btn-primary:hover {
    box-shadow: 
        0 14px 44px rgba(245, 178, 27, 0.5),
        0 0 60px rgba(245, 178, 27, 0.2);
    transform: translateY(-3px) scale(1.03);
}

/* ══════════════════════════════════════════════════════════════
   13. ABOUT SECTION (ENHANCED)
   ══════════════════════════════════════════════════════════════ */
.about-section {
    background:
        radial-gradient(ellipse at 72% 50%, rgba(31, 169, 113, 0.08) 0%, transparent 65%),
        var(--bg-primary);
}
.about-content { max-width: 1240px; margin: 0 auto; }
.about-grid { grid-template-columns: 1fr 1fr; gap: 52px; align-items: start; }
.about-text p {
    color: var(--text-secondary);
    line-height: 1.85;
    margin-bottom: 22px;
    font-size: 1.06rem;
}
.about-highlights { display: flex; flex-direction: column; gap: 18px; }

/* ENHANCED: Highlight items */
.highlight-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 24px;
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.015));
    border: 1px solid var(--border);
    border-radius: 18px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(18px) saturate(1.2);
    -webkit-backdrop-filter: blur(18px) saturate(1.2);
    box-shadow: var(--shadow-card);
}
.highlight-item:hover {
    border-color: rgba(245, 178, 27, 0.28);
    transform: translateY(-5px);
    box-shadow: var(--shadow-card-hover);
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025));
}
.highlight-icon {
    font-size: 1.9rem;
    flex-shrink: 0;
    margin-top: 2px;
    transition: transform 0.3s ease;
}
.highlight-item:hover .highlight-icon {
    transform: scale(1.1);
}
.highlight-item h4 {
    font-family: var(--font-heading);
    font-size: 1.08rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
}
.highlight-item p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.55;
}

/* ══════════════════════════════════════════════════════════════
   14. CTA SECTION (ENHANCED)
   ══════════════════════════════════════════════════════════════ */
.cta-section {
    padding: 110px 24px;
    text-align: center;
    position: relative;
    background:
        radial-gradient(ellipse at 28% 50%, rgba(245, 178, 27, 0.12) 0%, transparent 65%),
        radial-gradient(ellipse at 72% 50%, rgba(59, 130, 246, 0.1) 0%, transparent 65%),
        var(--gradient-hero);
    overflow: hidden;
}
.cta-bg { position: absolute; inset: 0; pointer-events: none; }

/* ENHANCED: CTA orbs with more intensity */
.cta-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    animation: glow-pulse 4.5s ease-in-out infinite;
}
.cta-orb--1 {
    width: 650px; height: 650px;
    background: radial-gradient(circle, rgba(245, 178, 27, 0.18) 0%, transparent 70%);
    top: -42%; right: 5%;
}
.cta-orb--2 {
    width: 550px; height: 550px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
    bottom: -42%; left: 5%;
    animation-delay: -2s;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 620px;
    margin: 0 auto;
}
.cta-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 18px;
    letter-spacing: -0.025em;
    line-height: 1.15;
}
.cta-text {
    font-size: 1.18rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.75;
}

/* ══════════════════════════════════════════════════════════════
   15. TESTIMONIALS SECTION (ENHANCED)
   ══════════════════════════════════════════════════════════════ */
.testimonials-section {
    padding: 110px 24px;
    position: relative;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(59, 130, 246, 0.08) 0%, transparent 65%),
        radial-gradient(ellipse at 18% 100%, rgba(59, 130, 246, 0.05) 0%, transparent 55%),
        var(--bg-primary);
}
.testimonials-header { text-align: center; margin-bottom: 60px; }
.testimonials-header h2 {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 14px;
    letter-spacing: -0.025em;
}
.testimonials-header h2 .gradient-text {
    background: linear-gradient(135deg, var(--gold-hover), var(--gold), var(--gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.testimonials-header p {
    color: var(--text-dim);
    font-size: 1.06rem;
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.65;
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1140px;
    margin: 0 auto;
}

/* Card 1 — Gold accent (ENHANCED) */
.testimonials-grid .testimonial-card:nth-child(1) {
    border-top: 4px solid var(--gold);
}
.testimonials-grid .testimonial-card:nth-child(1):hover {
    border-color: rgba(245, 178, 27, 0.4);
    border-top-color: var(--gold);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35), 0 0 40px rgba(245, 178, 27, 0.12);
}
.testimonials-grid .testimonial-card:nth-child(1) .testimonial-stars svg {
    fill: var(--gold);
}
.testimonials-grid .testimonial-card:nth-child(1) .testimonial-avatar {
    background: linear-gradient(135deg, rgba(245, 178, 27, 0.25), rgba(245, 178, 27, 0.15));
    color: var(--gold);
    border: 2px solid rgba(245, 178, 27, 0.3);
}

/* Card 2 — Blue accent (ENHANCED) */
.testimonials-grid .testimonial-card:nth-child(2) {
    border-top: 4px solid var(--blue);
}
.testimonials-grid .testimonial-card:nth-child(2):hover {
    border-color: rgba(59, 130, 246, 0.4);
    border-top-color: var(--blue);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35), 0 0 40px rgba(59, 130, 246, 0.12);
}
.testimonials-grid .testimonial-card:nth-child(2) .testimonial-stars svg {
    fill: var(--blue);
}
.testimonials-grid .testimonial-card:nth-child(2) .testimonial-avatar {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.25), rgba(59, 130, 246, 0.15));
    color: var(--blue);
    border: 2px solid rgba(59, 130, 246, 0.3);
}

/* Card 3 — Green accent (ENHANCED) */
.testimonials-grid .testimonial-card:nth-child(3) {
    border-top: 4px solid var(--green);
}
.testimonials-grid .testimonial-card:nth-child(3):hover {
    border-color: rgba(31, 169, 113, 0.4);
    border-top-color: var(--green);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35), 0 0 40px rgba(31, 169, 113, 0.12);
}
.testimonials-grid .testimonial-card:nth-child(3) .testimonial-stars svg {
    fill: var(--green);
}
.testimonials-grid .testimonial-card:nth-child(3) .testimonial-avatar {
    background: linear-gradient(135deg, rgba(31, 169, 113, 0.25), rgba(31, 169, 113, 0.15));
    color: var(--green);
    border: 2px solid rgba(31, 169, 113, 0.3);
}

/* Base testimonial card (ENHANCED) */
.testimonial-card {
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.018));
    backdrop-filter: blur(20px) saturate(1.2);
    -webkit-backdrop-filter: blur(20px) saturate(1.2);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 32px 26px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

/* NEW: Decorative quote mark */
.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 12px;
    right: 20px;
    font-size: 5rem;
    font-family: Georgia, serif;
    font-weight: 700;
    opacity: 0.04;
    line-height: 1;
    color: currentColor;
    pointer-events: none;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-card-hover);
    border-color: var(--glass-border-hover);
}
.testimonial-card:hover::before {
    opacity: 0.08;
}

.testimonial-stars { 
    display: flex; 
    gap: 4px; 
    margin-bottom: 18px; 
}
.testimonial-stars svg { 
    width: 17px; 
    height: 17px; 
    fill: var(--gold); 
    filter: drop-shadow(0 0 4px rgba(245, 178, 27, 0.3));
}
.testimonial-text {
    color: var(--text-primary);
    font-size: 0.98rem;
    line-height: 1.75;
    margin-bottom: 24px;
    font-style: italic;
    position: relative;
    z-index: 1;
}
.testimonial-author { 
    display: flex; 
    align-items: center; 
    gap: 14px; 
}

/* ENHANCED: Avatar styling */
.testimonial-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.05rem;
    color: #fff;
    flex-shrink: 0;
    background: linear-gradient(135deg, rgba(245, 178, 27, 0.2), rgba(245, 178, 27, 0.1));
    border: 2px solid rgba(245, 178, 27, 0.2);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.testimonial-info h4 {
    font-family: var(--font-heading);
    font-size: 0.94rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 3px;
}
.testimonial-info p { 
    font-size: 0.82rem; 
    color: var(--text-dim); 
}

/* ══════════════════════════════════════════════════════════════
   16. FOOTER (ENHANCED)
   ══════════════════════════════════════════════════════════════ */
.site-footer {
    border-top: 1px solid var(--border);
    background-image:
        radial-gradient(circle, rgba(255, 255, 255, 0.018) 1px, transparent 1px),
        radial-gradient(ellipse at 50% 0%, rgba(11, 16, 35, 0.9) 0%, transparent 65%);
    background-size: 24px 24px, 100% 100%;
    background-color: var(--bg-primary);
    position: relative;
}

/* NEW: Footer top gradient line */
.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.3;
}

.footer-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 64px 24px 52px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 52px;
}
.footer-logo-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
}
.footer-logo-icon {
    width: 26px; height: 26px;
    max-width: 26px; max-height: 26px;
    object-fit: contain;
    border-radius: 7px;
    filter: drop-shadow(0 0 8px rgba(245, 178, 27, 0.4));
}
.footer-logo-text {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 800;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.footer-version {
    font-size: 0.66rem;
    font-weight: 700;
    background: linear-gradient(135deg, rgba(245, 178, 27, 0.14), rgba(245, 178, 27, 0.08));
    color: var(--gold);
    padding: 3px 10px;
    border-radius: 6px;
    border: 1px solid rgba(245, 178, 27, 0.25);
}
.footer-description {
    color: var(--text-dim);
    font-size: 0.94rem;
    line-height: 1.75;
    max-width: 340px;
}

/* ENHANCED: Social links */
.footer-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    color: var(--text-dim);
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.09);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.footer-social-link:hover {
    color: var(--gold);
    background: linear-gradient(135deg, rgba(245, 178, 27, 0.15), rgba(245, 178, 27, 0.08));
    border-color: rgba(245, 178, 27, 0.35);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(245, 178, 27, 0.2);
}
.footer-column-title {
    font-family: var(--font-heading);
    font-size: 0.86rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    color: var(--gold);
    margin-bottom: 22px;
}
.footer-column-links li { margin-bottom: 14px; }
.footer-column-links a {
    color: var(--text-dim);
    font-size: 0.94rem;
    transition: all 0.3s ease;
    display: inline-block;
}
.footer-column-links a:hover {
    color: var(--text-primary);
    padding-left: 6px;
    transform: translateX(2px);
}
.footer-bottom {
    border-top: 1px solid var(--border);
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1240px;
    margin: 0 auto;
}
.copyright { 
    font-size: 0.84rem; 
    color: rgba(255, 255, 255, 0.28); 
}
.footer-flag { 
    font-size: 1.5rem; 
    filter: drop-shadow(0 0 8px rgba(0, 0, 0, 0.3));
}

/* ══════════════════════════════════════════════════════════════
   17. UTILITIES
   ══════════════════════════════════════════════════════════════ */
.hidden { display: none; }

/* Mobile Nav (ENHANCED) */
.mobile-nav {
    position: fixed; inset: 0;
    background: rgba(5, 8, 22, 0.97);
    backdrop-filter: blur(28px) saturate(1.4);
    -webkit-backdrop-filter: blur(28px) saturate(1.4);
    z-index: 999;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 28px;
    opacity: 0; visibility: hidden;
    transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.mobile-nav.open { opacity: 1; visibility: visible; }
.mobile-nav a {
    font-size: 1.6rem;
    font-weight: 600;
    font-family: var(--font-heading);
    color: var(--text-primary);
    transition: color 0.3s ease;
}
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav .btn { width: 80%; max-width: 320px; }

/* ══════════════════════════════════════════════════════════════
   18. RESPONSIVE (ENHANCED)
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .footer-container { grid-template-columns: 1fr 1fr; gap: 40px; }
    .highlight-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .testimonials-grid { grid-template-columns: 1fr; }
    .testimonials-section { padding: 70px 18px; }
    .testimonials-header h2 { font-size: 1.9rem; }
    .section { padding: 70px 18px; }
    .section-title { font-size: 2.1rem; }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid .testimonial-card:last-child { grid-column: span 2; max-width: 50%; margin: 0 auto; }
}

@media (max-width: 768px) {
    .nav-links, .nav-actions { display: none; }
    .nav-toggle { display: flex; }
    .hero-title { font-size: clamp(2rem, 5.5vw, 3.1rem); }
    .hero-subtitle { font-size: 1.06rem; }
    .hero-stats {
        flex-direction: row;
        gap: 28px;
        flex-wrap: wrap;
        justify-content: center;
    }
    .hero-actions { flex-direction: column; }
    .section { padding: 70px 18px; }
    .section-title { font-size: 2.1rem; }

    .about-grid { grid-template-columns: 1fr; }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
    }
    .pricing-card-popular { transform: none; }
    .pricing-card-popular:hover { transform: translateY(-8px); }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 36px;
        text-align: center;
    }
    .footer-description { max-width: 100%; }
    .footer-bottom {
        flex-direction: column;
        gap: 14px;
        text-align: center;
    }

    .highlight-grid { grid-template-columns: 1fr; }
    .cta-title { font-size: 2.1rem; }
    .hero-feature-pills { gap: 8px; }
    .feature-pill { font-size: 0.76rem; padding: 6px 14px 6px 6px; }
    .pill-icon { width: 24px; height: 24px; font-size: 0.76rem; }
}

@media (max-width: 400px) {
    .navbar { padding: 0 14px; height: 64px; }
    .nav-logo { font-size: 1.2rem; }
    .nav-logo-icon { width: 26px; height: 26px; max-width: 26px; max-height: 26px; }
    .nav-version-badge { display: none; }
    .hero { padding: 100px 16px 60px; }
    .hero-title { font-size: clamp(1.85rem, 5.5vw, 2.6rem); }
    .hero-subtitle { font-size: 1rem; }
    .hero-badge { font-size: 0.8rem; padding: 7px 16px; }
    .hero-stats { gap: 20px; margin-top: 44px; padding-top: 26px; }
    .stat-num { font-size: 1.9rem; }
    .stat-label { font-size: 0.74rem; }
    .section { padding: 54px 14px; }
    .section-title { font-size: 1.7rem; }
    .section-desc { font-size: 0.96rem; }
    .section-header { margin-bottom: 42px; }
    .pricing-card { padding: 32px 22px 28px; }
    .pricing-price { font-size: 2.5rem; }
    .card { padding: 28px 22px; }
    .footer-bottom { padding: 18px 14px; }
    .hero-feature-pills { gap: 6px; }
    .feature-pill { font-size: 0.72rem; padding: 5px 12px 5px 4px; }
    .pill-icon { width: 22px; height: 22px; font-size: 0.72rem; }
}

/* ══════════════════════════════════════════════════════════════
   19. prefers-reduced-motion
   ══════════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms;
        animation-iteration-count: 1;
        transition-duration: 0.01ms;
        scroll-behavior: auto;
    }
}

/* ═══ TRUST STRIP SECTION (ENHANCED) ═══ */
.trust-strip-section {
    padding: 52px 24px;
    background: rgba(5, 8, 22, 0.65);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: relative;
}

/* NEW: Subtle gradient overlay on trust strip */
.trust-strip-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(245, 178, 27, 0.02), transparent);
    pointer-events: none;
}

.trust-strip-container {
    max-width: 1320px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 36px;
    position: relative;
    z-index: 1;
}

/* Stats Row (ENHANCED) */
.trust-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.trust-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 36px;
    min-width: 130px;
}

.trust-stat-num {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    background: linear-gradient(120deg, #FFE066, #F5B21B, #FFC94A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    filter: drop-shadow(0 0 24px rgba(245, 178, 27, 0.25));
}

.trust-stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1.8px;
    font-weight: 600;
    margin-top: 8px;
}

.trust-stat-divider {
    width: 1px;
    height: 44px;
    background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.14), transparent);
}

/* Pills Row (ENHANCED) */
.trust-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}

.trust-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px 10px 10px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 100px;
    font-size: 0.86rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.92);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(8px);
}

.trust-pill:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(245, 178, 27, 0.25);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.trust-pill-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.86rem;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .trust-strip-section { padding: 38px 18px; }
    .trust-stat { padding: 0 18px; min-width: 95px; }
    .trust-stat-num { font-size: 1.6rem; }
    .trust-stat-label { font-size: 0.7rem; }
    .trust-stat-divider { height: 34px; }
    .trust-pills { gap: 10px; }
    .trust-pill { font-size: 0.78rem; padding: 8px 16px 8px 8px; }
    .trust-pill-icon { width: 24px; height: 24px; font-size: 0.78rem; }
}

@media (max-width: 480px) {
    .trust-stat-divider { display: none; }
    .trust-stats { gap: 24px; }
    .trust-stat { padding: 0; }
}
