/* ============================================================
   LIVEOLYMPIAD v2 — Luxury Academic Design System
   Deep Navy + Warm Gold | Playfair Display + Inter
   Glassmorphism · Gradient Mesh · Scroll Reveals · Micro-interactions
   ============================================================ */

/* 1. Design Tokens
   ------------------------------------------------------------ */
:root {
    --navy-950: #060d1a;
    --navy-900: #0b1426;
    --navy-800: #0f1d35;
    --navy-700: #162a4d;
    --navy-600: #1e3a6e;
    --navy-500: #2a4f8f;
    --navy-100: #dce4f2;
    --navy-50:  #f0f3f9;

    --gold-700: #9a7a2e;
    --gold-600: #b8923e;
    --gold-500: #c9a84c;
    --gold-400: #ddc06a;
    --gold-300: #e8d5a3;
    --gold-200: #f2e8c9;
    --gold-100: #faf5e8;
    --gold-50:  #fdfbf5;

    --cream:    #faf7f0;
    --white:    #ffffff;
    --gray-50:  #fafafa;
    --gray-100: #f5f5f5;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;

    --success: #059669;
    --error:   #dc2626;

    --maths:   #3b82f6;
    --science: #10b981;
    --english: #8b5cf6;

    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body:    'Inter', -apple-system, 'Segoe UI', sans-serif;

    --section-py: 6rem;

    --radius-sm:   8px;
    --radius-md:   12px;
    --radius-lg:   20px;
    --radius-xl:   28px;
    --radius-2xl:  36px;
    --radius-full: 9999px;

    --shadow-xs:  0 1px 2px rgba(11,20,38,.04);
    --shadow-sm:  0 2px 8px rgba(11,20,38,.06);
    --shadow-md:  0 4px 16px rgba(11,20,38,.08);
    --shadow-lg:  0 8px 32px rgba(11,20,38,.10);
    --shadow-xl:  0 16px 48px rgba(11,20,38,.12);
    --shadow-2xl: 0 24px 64px rgba(11,20,38,.16);
    --shadow-gold: 0 8px 32px rgba(201,168,76,.25);
    --shadow-glow: 0 0 60px rgba(201,168,76,.15);

    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring:   cubic-bezier(0.34, 1.56, 0.64, 1);

    --glass-bg: rgba(255,255,255,.65);
    --glass-border: rgba(255,255,255,.3);
    --glass-dark-bg: rgba(11,20,38,.4);
    --glass-dark-border: rgba(255,255,255,.08);
}

/* 2. Reset & Base
   ------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
body {
    font-family: var(--font-body);
    color: var(--gray-600);
    line-height: 1.7;
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { transition: all .3s var(--ease-out-expo); text-decoration: none; }
::selection { background: var(--gold-200); color: var(--navy-900); }

/* 3. Typography
   ------------------------------------------------------------ */
h1, h2, h3 {
    font-family: var(--font-heading);
    color: var(--navy-800);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.01em;
}
h4, h5, h6 {
    font-family: var(--font-body);
    color: var(--navy-800);
    font-weight: 600;
    line-height: 1.35;
}

/* 4. Scroll Reveal Animations
   ------------------------------------------------------------ */
.lo-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .8s var(--ease-out-expo), transform .8s var(--ease-out-expo);
}
.lo-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}
.lo-reveal--delay-1 { transition-delay: .1s; }
.lo-reveal--delay-2 { transition-delay: .2s; }
.lo-reveal--delay-3 { transition-delay: .3s; }
.lo-reveal--delay-4 { transition-delay: .4s; }

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
}
@keyframes pulse-glow {
    0%, 100% { opacity: .4; transform: scale(1); }
    50% { opacity: .7; transform: scale(1.05); }
}
@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}
@keyframes grain {
    0%, 100% { transform: translate(0, 0); }
    10% { transform: translate(-5%, -10%); }
    20% { transform: translate(-15%, 5%); }
    30% { transform: translate(7%, -25%); }
    40% { transform: translate(-5%, 25%); }
    50% { transform: translate(-15%, 10%); }
    60% { transform: translate(15%, 0%); }
    70% { transform: translate(0%, 15%); }
    80% { transform: translate(3%, 35%); }
    90% { transform: translate(-10%, 10%); }
}
@keyframes orbit {
    from { transform: rotate(0deg) translateX(120px) rotate(0deg); }
    to { transform: rotate(360deg) translateX(120px) rotate(-360deg); }
}
@keyframes counter-up {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* 5. Section Utilities
   ------------------------------------------------------------ */
.lo-section { padding: var(--section-py) 0; position: relative; }
.lo-section--cream { background: var(--cream); }
.lo-section--gray { background: var(--gray-50); }
.lo-section--navy { background: var(--navy-900); color: var(--white); }
.lo-section--gold-tint { background: var(--gold-50); }

.lo-section-header { text-align: center; margin-bottom: 4rem; max-width: 720px; margin-left: auto; margin-right: auto; }
.lo-section-header__label {
    font-family: var(--font-body); font-size: .7rem; text-transform: uppercase;
    letter-spacing: .2em; color: var(--gold-600); font-weight: 700;
    margin-bottom: 1rem; display: inline-block;
    background: var(--gold-100); padding: .35rem 1.25rem; border-radius: var(--radius-full);
}
.lo-section--navy .lo-section-header__label {
    background: rgba(201,168,76,.12); color: var(--gold-400);
}
.lo-section-header__title {
    font-family: var(--font-heading); font-size: 2.75rem; font-weight: 700;
    color: var(--navy-900); margin-bottom: 1.25rem;
}
.lo-section--navy .lo-section-header__title { color: var(--white); }
.lo-section-header__subtitle {
    font-size: 1.1rem; color: var(--gray-500); line-height: 1.8;
}
.lo-section--navy .lo-section-header__subtitle { color: rgba(255,255,255,.55); }

/* Decorative line under section headers */
.lo-section-header__title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-500), var(--gold-300));
    margin: 1.25rem auto 0;
    border-radius: 2px;
}

/* 6. Navigation
   ------------------------------------------------------------ */
.lo-navbar {
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: .6rem 0;
    border-bottom: 1px solid rgba(11,20,38,.04);
    transition: all .35s var(--ease-out-expo);
    z-index: 1000;
}
.lo-navbar.scrolled {
    padding: .4rem 0;
    box-shadow: var(--shadow-md);
    background: rgba(255,255,255,.97);
}
.lo-navbar__logo { height: 52px; width: auto; transition: height .35s var(--ease-out-expo); }
.lo-navbar.scrolled .lo-navbar__logo { height: 44px; }
.lo-navbar .nav-link {
    font-family: var(--font-body); font-weight: 500; font-size: .78rem;
    color: var(--navy-700) !important; letter-spacing: .06em;
    text-transform: uppercase; padding: .5rem 1rem !important;
    transition: color .2s ease; position: relative;
}
.lo-navbar .nav-link::after {
    content: '';
    position: absolute; bottom: 0; left: 50%; width: 0; height: 2px;
    background: var(--gold-500);
    transition: all .3s var(--ease-out-expo);
    transform: translateX(-50%);
}
.lo-navbar .nav-link:hover { color: var(--gold-600) !important; }
.lo-navbar .nav-link:hover::after,
.lo-navbar .nav-link.active::after { width: 70%; }
.lo-navbar .nav-link.active { color: var(--gold-600) !important; }

/* 7. Buttons
   ------------------------------------------------------------ */
.lo-btn {
    font-family: var(--font-body); font-weight: 600; font-size: .8rem;
    letter-spacing: .08em; text-transform: uppercase; text-decoration: none;
    display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
    padding: .75rem 2.25rem; border-radius: var(--radius-full);
    border: 2px solid transparent; cursor: pointer;
    transition: all .4s var(--ease-out-expo);
    position: relative; overflow: hidden;
}
.lo-btn--lg { padding: 1rem 3rem; font-size: .88rem; }
.lo-btn--sm { padding: .5rem 1.5rem; font-size: .72rem; }

/* Gold CTA with shimmer */
.lo-btn--gold {
    background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
    color: var(--navy-900); border-color: transparent;
    box-shadow: var(--shadow-sm);
}
.lo-btn--gold::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.4), transparent);
    background-size: 200% 100%;
    animation: shimmer 3s infinite;
    opacity: 0;
    transition: opacity .3s ease;
}
.lo-btn--gold:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
    color: var(--navy-900);
    background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
}
.lo-btn--gold:hover::before { opacity: 1; }

.lo-btn--primary {
    background: var(--navy-900); color: var(--white); border-color: var(--navy-900);
}
.lo-btn--primary:hover {
    background: var(--navy-700); border-color: var(--navy-700); color: var(--white);
    transform: translateY(-3px); box-shadow: var(--shadow-lg);
}

.lo-btn--outline-white {
    background: transparent; color: var(--white);
    border-color: rgba(255,255,255,.25);
}
.lo-btn--outline-white:hover {
    background: var(--white); color: var(--navy-900);
    border-color: var(--white); transform: translateY(-3px);
}

.lo-btn--outline-gold {
    background: transparent; color: var(--gold-500); border-color: var(--gold-500);
}
.lo-btn--outline-gold:hover {
    background: var(--gold-500); color: var(--navy-900); transform: translateY(-3px);
}

.lo-btn--ghost {
    background: transparent; color: var(--navy-700);
    border-color: var(--gray-200); font-weight: 500;
}
.lo-btn--ghost:hover {
    border-color: var(--navy-700); color: var(--navy-700); transform: translateY(-2px);
}

/* 8. Hero Section
   ------------------------------------------------------------ */
.lo-hero {
    background: var(--navy-950);
    color: var(--white);
    padding: 8rem 0 7rem;
    position: relative;
    overflow: hidden;
    text-align: center;
    min-height: 90vh;
    display: flex;
    align-items: center;
}
/* Gradient mesh */
.lo-hero::before {
    content: '';
    position: absolute;
    width: 800px; height: 800px;
    background: radial-gradient(circle, rgba(201,168,76,.12) 0%, transparent 70%);
    top: -200px; right: -200px;
    animation: pulse-glow 8s ease-in-out infinite;
}
.lo-hero::after {
    content: '';
    position: absolute;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(59,130,246,.08) 0%, transparent 70%);
    bottom: -150px; left: -150px;
    animation: pulse-glow 10s ease-in-out infinite 2s;
}
/* Subtle grid pattern */
.lo-hero__grid {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}
/* Floating orbs */
.lo-hero__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(1px);
    pointer-events: none;
}
.lo-hero__orb--1 {
    width: 8px; height: 8px;
    background: var(--gold-500);
    top: 20%; left: 15%;
    animation: float 6s ease-in-out infinite;
    opacity: .5;
}
.lo-hero__orb--2 {
    width: 6px; height: 6px;
    background: var(--gold-400);
    top: 60%; right: 20%;
    animation: float 8s ease-in-out infinite 1s;
    opacity: .4;
}
.lo-hero__orb--3 {
    width: 10px; height: 10px;
    background: rgba(59,130,246,.5);
    bottom: 25%; left: 25%;
    animation: float 7s ease-in-out infinite 2s;
    opacity: .3;
}
.lo-hero__orb--4 {
    width: 5px; height: 5px;
    background: var(--gold-300);
    top: 35%; right: 10%;
    animation: float 9s ease-in-out infinite 3s;
    opacity: .35;
}

.lo-hero .container { position: relative; z-index: 2; }
.lo-hero__partners {
    display: flex; justify-content: center; align-items: center; gap: 1.75rem;
    margin-bottom: 2.5rem;
}
.lo-hero__partners img {
    height: 44px; filter: brightness(0) invert(1); opacity: .7;
    transition: opacity .3s ease;
}
.lo-hero__partners img:hover { opacity: 1; }
.lo-hero__partners-divider {
    color: var(--gold-500); font-family: var(--font-heading);
    font-size: 1.1rem; opacity: .6;
}
.lo-hero__badge {
    display: inline-flex; align-items: center; gap: .5rem;
    background: rgba(201,168,76,.08);
    border: 1px solid rgba(201,168,76,.15); color: var(--gold-400);
    font-size: .72rem; font-weight: 600; text-transform: uppercase;
    letter-spacing: .12em; padding: .6rem 2rem; border-radius: var(--radius-full);
    margin-bottom: 2.5rem;
    backdrop-filter: blur(10px);
}
.lo-hero h1 {
    font-family: var(--font-heading); font-size: 4rem; font-weight: 700;
    line-height: 1.1; color: var(--white); margin-bottom: 1.75rem;
    letter-spacing: -0.02em;
}
.lo-hero__gold {
    background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.lo-hero__subtitle {
    font-size: 1.15rem; color: rgba(255,255,255,.5);
    max-width: 600px; margin: 0 auto 3rem; line-height: 1.8;
    font-weight: 400;
}
.lo-hero__actions {
    display: flex; gap: 1.25rem; justify-content: center; flex-wrap: wrap;
}

/* 9. Page Header (inner pages)
   ------------------------------------------------------------ */
.lo-page-header {
    background: var(--navy-950); color: var(--white);
    padding: 7rem 0 4rem; text-align: center;
    position: relative; overflow: hidden;
}
.lo-page-header::before {
    content: '';
    position: absolute;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(201,168,76,.08) 0%, transparent 70%);
    top: -200px; right: -100px;
    animation: pulse-glow 8s ease-in-out infinite;
}
.lo-page-header::after {
    content: '';
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.015) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
}
.lo-page-header .container { position: relative; z-index: 2; }
.lo-page-header__label {
    font-size: .7rem; text-transform: uppercase; letter-spacing: .2em;
    color: var(--gold-500); font-weight: 700; margin-bottom: 1rem;
    display: inline-block; background: rgba(201,168,76,.1);
    padding: .35rem 1.25rem; border-radius: var(--radius-full);
}
.lo-page-header h1 {
    font-family: var(--font-heading); font-size: 3rem; font-weight: 700;
    color: var(--white); margin-bottom: 1rem; letter-spacing: -0.01em;
}
.lo-page-header__subtitle {
    font-size: 1.05rem; color: rgba(255,255,255,.45); max-width: 550px; margin: 0 auto;
}
/* Breadcrumb-style divider at bottom */
.lo-page-header__divider {
    position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201,168,76,.2), transparent);
}

/* 10. Glassmorphism Cards
   ------------------------------------------------------------ */
.lo-glass {
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(150%);
    -webkit-backdrop-filter: blur(20px) saturate(150%);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
}
.lo-glass--dark {
    background: var(--glass-dark-bg);
    border-color: var(--glass-dark-border);
}

/* 11. Subject Cards
   ------------------------------------------------------------ */
.lo-subject-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 3rem 2rem 2.5rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
    height: 100%;
    border: 1px solid var(--gray-200);
    transition: all .5s var(--ease-out-expo);
}
.lo-subject-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 4px;
    transition: height .5s var(--ease-out-expo);
}
.lo-subject-card--maths::before { background: linear-gradient(90deg, var(--maths), #60a5fa); }
.lo-subject-card--science::before { background: linear-gradient(90deg, var(--science), #34d399); }
.lo-subject-card--english::before { background: linear-gradient(90deg, var(--english), #a78bfa); }
.lo-subject-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}
.lo-subject-card:hover::before { height: 6px; }
.lo-subject-card__icon {
    width: 80px; height: 80px; margin: 0 auto 1.75rem;
    border-radius: var(--radius-lg);
    display: flex; align-items: center; justify-content: center;
    font-size: 2rem;
}
.lo-subject-card--maths .lo-subject-card__icon { background: #eff6ff; color: var(--maths); }
.lo-subject-card--science .lo-subject-card__icon { background: #ecfdf5; color: var(--science); }
.lo-subject-card--english .lo-subject-card__icon { background: #f5f3ff; color: var(--english); }
.lo-subject-card__img {
    width: 100px; height: 100px; object-fit: contain;
    margin: 0 auto 1.75rem; border-radius: var(--radius-md);
}
.lo-subject-card__title {
    font-family: var(--font-heading); font-size: 1.35rem;
    color: var(--navy-800); margin-bottom: .5rem;
}
.lo-subject-card__desc { font-size: .9rem; color: var(--gray-500); margin: 0; }

/* 12. Stats / Numbers Section
   ------------------------------------------------------------ */
.lo-stats {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem;
}
.lo-stat {
    text-align: center; padding: 2rem 1rem;
}
.lo-stat__number {
    font-family: var(--font-heading); font-size: 3rem; font-weight: 700;
    background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: .25rem; line-height: 1;
}
.lo-stat__label {
    font-size: .8rem; text-transform: uppercase; letter-spacing: .1em;
    color: rgba(255,255,255,.4); font-weight: 500;
}

/* 13. Competition Details Grid
   ------------------------------------------------------------ */
.lo-details-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.lo-detail-box {
    background: var(--white); border-radius: var(--radius-lg);
    padding: 1.75rem; box-shadow: var(--shadow-xs);
    display: flex; gap: 1.25rem; align-items: flex-start;
    border: 1px solid var(--gray-200);
    transition: all .4s var(--ease-out-expo);
}
.lo-detail-box:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
    border-color: var(--gold-200);
}
.lo-detail-box__icon {
    width: 52px; height: 52px; min-width: 52px;
    border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem;
}
.lo-detail-box__icon--navy {
    background: var(--navy-50); color: var(--navy-700);
}
.lo-detail-box__icon--gold {
    background: var(--gold-100); color: var(--gold-700);
}
.lo-detail-box__title {
    font-weight: 700; font-size: .72rem; text-transform: uppercase;
    letter-spacing: .08em; color: var(--gold-600); margin-bottom: .35rem;
}
.lo-detail-box__text { font-size: .88rem; color: var(--gray-600); margin: 0; line-height: 1.6; }

/* 14. Pricing Cards
   ------------------------------------------------------------ */
.lo-pricing-card {
    background: var(--white); border-radius: var(--radius-2xl);
    padding: 3rem 2.25rem; text-align: center;
    box-shadow: var(--shadow-sm);
    position: relative; overflow: hidden; height: 100%;
    border: 1px solid var(--gray-200);
    transition: all .5s var(--ease-out-expo);
}
.lo-pricing-card:hover {
    border-color: var(--gold-300);
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
}
.lo-pricing-card--featured {
    background: var(--navy-900); color: var(--white);
    border-color: rgba(201,168,76,.3);
    box-shadow: var(--shadow-xl), var(--shadow-glow);
    transform: scale(1.04);
    z-index: 2;
}
.lo-pricing-card--featured:hover { transform: scale(1.06) translateY(-4px); }
.lo-pricing-card--featured::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--gold-500), var(--gold-300), var(--gold-500));
}
.lo-pricing-card__popular {
    position: absolute; top: 1.25rem; right: -2rem;
    background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
    color: var(--navy-900); font-size: .65rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: .1em;
    padding: .35rem 3rem; transform: rotate(45deg);
}
.lo-pricing-card__tier {
    font-size: .7rem; text-transform: uppercase; letter-spacing: .15em;
    color: var(--gray-400); font-weight: 700; margin-bottom: 1.25rem;
}
.lo-pricing-card--featured .lo-pricing-card__tier { color: var(--gold-500); }
.lo-pricing-card__price {
    font-family: var(--font-heading); font-size: 3.5rem; font-weight: 700;
    color: var(--navy-900); margin-bottom: .5rem; line-height: 1;
}
.lo-pricing-card--featured .lo-pricing-card__price {
    background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.lo-pricing-card__price sub {
    font-family: var(--font-body); font-size: .8rem; font-weight: 400;
    color: var(--gray-400); -webkit-text-fill-color: var(--gray-400);
}
.lo-pricing-card__desc { font-size: .88rem; color: var(--gray-500); margin-bottom: 2.5rem; }
.lo-pricing-card--featured .lo-pricing-card__desc { color: rgba(255,255,255,.45); }
.lo-pricing-card__features { list-style: none; padding: 0; margin: 0 0 2.5rem; text-align: left; }
.lo-pricing-card__features li {
    padding: .75rem 0 .75rem 2rem; border-bottom: 1px solid var(--gray-100);
    font-size: .88rem; position: relative; color: var(--gray-600);
}
.lo-pricing-card__features li::before {
    content: '';
    position: absolute; left: 0; top: 50%; transform: translateY(-50%);
    width: 20px; height: 20px; border-radius: 50%;
    background: var(--gold-100);
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 20 20' fill='%23c9a84c' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z'/%3E%3C/svg%3E");
    background-size: 12px; background-repeat: no-repeat; background-position: center;
}
.lo-pricing-card--featured .lo-pricing-card__features li {
    border-bottom-color: rgba(255,255,255,.06); color: rgba(255,255,255,.7);
}
.lo-pricing-card--featured .lo-pricing-card__features li::before {
    background-color: rgba(201,168,76,.15);
}

/* 15. Feature / Benefits Boxes
   ------------------------------------------------------------ */
.lo-feature-box {
    text-align: center; padding: 2.5rem 1.5rem;
    border-radius: var(--radius-xl);
    transition: all .4s var(--ease-out-expo);
    border: 1px solid transparent;
}
.lo-feature-box:hover {
    background: var(--white);
    border-color: var(--gray-200);
    box-shadow: var(--shadow-md);
    transform: translateY(-6px);
}
.lo-feature-box__icon {
    width: 72px; height: 72px; margin: 0 auto 1.25rem;
    background: var(--white); border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm); display: flex; align-items: center; justify-content: center;
    border: 1px solid var(--gray-200);
    transition: all .4s var(--ease-out-expo);
}
.lo-feature-box:hover .lo-feature-box__icon {
    box-shadow: var(--shadow-md);
    border-color: var(--gold-200);
}
.lo-feature-box__icon img { width: 36px; height: 36px; object-fit: contain; }
.lo-feature-box__title { font-weight: 600; font-size: .95rem; color: var(--navy-800); margin-bottom: .4rem; }
.lo-feature-box__desc { font-size: .85rem; color: var(--gray-500); margin: 0; line-height: 1.6; }

/* 16. Step Cards (For Schools)
   ------------------------------------------------------------ */
.lo-step-card {
    background: var(--white); border-radius: var(--radius-xl);
    padding: 2rem 2.25rem; margin-bottom: 1.25rem;
    box-shadow: var(--shadow-xs);
    border: 1px solid var(--gray-200);
    transition: all .4s var(--ease-out-expo);
    display: flex; gap: 1.5rem; align-items: flex-start;
}
.lo-step-card:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold-200);
}
.lo-step-number {
    width: 48px; height: 48px; min-width: 48px;
    background: var(--navy-900); color: var(--gold-500); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-heading); font-size: 1.15rem; font-weight: 700;
    box-shadow: 0 4px 12px rgba(11,20,38,.15);
}
.lo-step-card__title { font-weight: 700; color: var(--navy-800); margin-bottom: .4rem; font-size: 1.05rem; }
.lo-step-card__text { font-size: .9rem; color: var(--gray-500); margin: 0; line-height: 1.7; }
.lo-step-card__text a { color: var(--gold-600); font-weight: 500; }
.lo-step-card__text a:hover { color: var(--gold-500); text-decoration: underline; }

/* 17. Highlight Boxes
   ------------------------------------------------------------ */
.lo-highlight-box {
    background: var(--cream); border-radius: var(--radius-2xl);
    padding: 3.5rem 3rem; text-align: center; margin: 3rem 0;
    border: 1px solid var(--gold-200);
    position: relative; overflow: hidden;
}
.lo-highlight-box::before {
    content: '';
    position: absolute; top: -50px; right: -50px;
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(201,168,76,.08) 0%, transparent 70%);
}
.lo-highlight-box--dark {
    background: var(--navy-900); color: var(--white);
    border-color: rgba(201,168,76,.15);
}
.lo-highlight-box--dark::before {
    background: radial-gradient(circle, rgba(201,168,76,.06) 0%, transparent 70%);
}
.lo-highlight-box__label {
    font-size: .7rem; text-transform: uppercase; letter-spacing: .2em;
    color: var(--gold-600); font-weight: 700; margin-bottom: .75rem; display: block;
}
.lo-highlight-box--dark .lo-highlight-box__label { color: var(--gold-500); }
.lo-highlight-box__title {
    font-family: var(--font-heading); font-size: 1.85rem; font-weight: 700;
    color: var(--navy-800); margin-bottom: 1.25rem;
}
.lo-highlight-box--dark .lo-highlight-box__title { color: var(--white); }
.lo-highlight-box__text {
    font-size: 1rem; color: var(--gray-600); max-width: 700px;
    margin: 0 auto; line-height: 1.8;
}
.lo-highlight-box--dark .lo-highlight-box__text { color: rgba(255,255,255,.55); }

/* 18. Contact Cards
   ------------------------------------------------------------ */
.lo-contact-card {
    background: var(--white); border-radius: var(--radius-xl);
    padding: 2.25rem; box-shadow: var(--shadow-sm); height: 100%;
    border: 1px solid var(--gray-200);
    transition: all .4s var(--ease-out-expo);
}
.lo-contact-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold-200);
}
.lo-contact-card__icon {
    width: 56px; height: 56px; background: var(--navy-900);
    border-radius: var(--radius-md); display: flex; align-items: center;
    justify-content: center; font-size: 1.25rem; color: var(--gold-500);
    margin-bottom: 1.25rem;
    box-shadow: 0 4px 12px rgba(11,20,38,.12);
}
.lo-contact-card__title {
    font-family: var(--font-heading); font-size: 1.2rem;
    color: var(--navy-800); margin-bottom: .75rem;
}
.lo-contact-card__text { color: var(--gray-500); font-size: .9rem; line-height: 1.8; margin: 0; }
.lo-contact-card a { color: var(--gold-600); text-decoration: none; font-weight: 600; }
.lo-contact-card a:hover { color: var(--gold-500); }

/* 19. Support Page
   ------------------------------------------------------------ */
.lo-support-card {
    background: var(--white); border-radius: var(--radius-2xl);
    padding: 3rem; box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
}
.lo-support-alert {
    background: var(--gold-50); border-left: 4px solid var(--gold-500);
    border-radius: var(--radius-md); padding: 1.75rem; margin: 2rem 0;
}
.lo-support-alert__title { font-weight: 700; color: var(--navy-800); margin-bottom: .5rem; }
.lo-support-alert__text { color: var(--gray-600); font-size: .9rem; margin: 0; line-height: 1.7; }
.lo-support-alert__text a { color: var(--gold-600); font-weight: 600; }
.lo-support-topic {
    border-left: 3px solid var(--navy-800); margin-bottom: .75rem;
    border-radius: var(--radius-md); background: var(--navy-50);
    padding: 1.25rem 1.5rem;
    transition: all .3s var(--ease-out-expo);
}
.lo-support-topic:hover {
    transform: translateX(8px);
    background: var(--white);
    box-shadow: var(--shadow-md);
    border-left-color: var(--gold-500);
}
.lo-support-topic__title { font-weight: 700; color: var(--navy-800); margin-bottom: .25rem; font-size: .95rem; }
.lo-support-topic__desc { font-size: .85rem; color: var(--gray-500); margin: 0; }

/* 20. Forms
   ------------------------------------------------------------ */
.lo-form-card {
    background: var(--white); border-radius: var(--radius-2xl);
    padding: 3rem; box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
}
.lo-form-label {
    font-weight: 600; font-size: .85rem; color: var(--navy-800);
    margin-bottom: .5rem; display: block;
}
.lo-form-control {
    border: 2px solid var(--gray-200); border-radius: var(--radius-md);
    padding: .8rem 1.15rem; font-family: var(--font-body); font-size: .95rem;
    color: var(--gray-700);
    transition: border-color .25s var(--ease-out-expo), box-shadow .25s var(--ease-out-expo);
    width: 100%; display: block; background: var(--white);
}
.lo-form-control:focus {
    border-color: var(--navy-600);
    box-shadow: 0 0 0 4px rgba(11,20,38,.06);
    outline: none;
}
.lo-form-control::placeholder { color: var(--gray-400); }
select.lo-form-control { appearance: auto; }
.lo-form-section-title {
    font-family: var(--font-heading); font-size: 1.2rem; color: var(--navy-800);
    font-weight: 700; margin-bottom: 1.5rem; padding-bottom: .85rem;
    border-bottom: 2px solid var(--gold-100);
}
.lo-form-group { margin-bottom: 1.5rem; }

/* 21. Alerts
   ------------------------------------------------------------ */
.lo-alert {
    border-radius: var(--radius-md); padding: 1.15rem 1.5rem;
    font-size: .9rem; margin-bottom: 1.5rem;
}
.lo-alert--success { background: #ecfdf5; color: #065f46; border-left: 4px solid var(--success); }
.lo-alert--error { background: #fef2f2; color: #991b1b; border-left: 4px solid var(--error); }

/* 22. Legal Pages
   ------------------------------------------------------------ */
.lo-legal { padding: var(--section-py) 0; }
.lo-legal__content { max-width: 780px; margin: 0 auto; }
.lo-legal__content h2, .lo-legal__content h3,
.lo-legal__content h4, .lo-legal__content h5 {
    font-family: var(--font-heading); color: var(--navy-800); font-weight: 700;
    margin-top: 2.5rem; margin-bottom: 1rem;
}
.lo-legal__content h4 { font-size: 1.25rem; }
.lo-legal__content h5 { font-size: 1.1rem; }
.lo-legal__content p { color: var(--gray-600); line-height: 1.9; margin-bottom: 1rem; }
.lo-legal__content ol, .lo-legal__content ul { color: var(--gray-600); line-height: 1.9; padding-left: 1.5rem; }
.lo-legal__content li { margin-bottom: .75rem; }
.lo-legal__content strong { color: var(--navy-800); }

/* 23. Map
   ------------------------------------------------------------ */
.lo-map-container {
    border-radius: var(--radius-xl); overflow: hidden;
    box-shadow: var(--shadow-lg); border: 1px solid var(--gray-200);
}
.lo-map-container iframe { width: 100%; height: 400px; border: none; display: block; }

/* 24. Footer
   ------------------------------------------------------------ */
.lo-footer {
    background: var(--navy-950); color: rgba(255,255,255,.6);
    padding: 5rem 0 2rem; position: relative; overflow: hidden;
}
.lo-footer::before {
    content: '';
    position: absolute;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(201,168,76,.04) 0%, transparent 70%);
    bottom: -200px; right: -100px;
}
.lo-footer__logo { height: 48px; width: auto; margin-bottom: 1rem; filter: brightness(0) invert(1); opacity: .9; }
.lo-footer__tagline {
    font-family: var(--font-heading); font-style: italic;
    font-size: .85rem; color: var(--gold-500); opacity: .8;
}
.lo-footer__partners { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.lo-footer__partners-label {
    font-size: .65rem; text-transform: uppercase; letter-spacing: .15em;
    color: rgba(255,255,255,.25); font-weight: 600;
}
.lo-footer__partner-logos { display: flex; align-items: center; gap: .75rem; }
.lo-footer__partner-logos img { height: 32px; width: auto; filter: brightness(0) invert(1); opacity: .45; }
.lo-footer__partner-divider { color: var(--gold-500); font-family: var(--font-heading); opacity: .5; }
.lo-footer__heading {
    font-family: var(--font-body); font-weight: 700; font-size: .65rem;
    text-transform: uppercase; letter-spacing: .15em; color: var(--gold-500);
    margin-bottom: 1.25rem;
}
.lo-footer__links { list-style: none; padding: 0; margin: 0; }
.lo-footer__links li { margin-bottom: .6rem; }
.lo-footer__links a {
    color: rgba(255,255,255,.4); text-decoration: none; font-size: .85rem;
    transition: all .2s ease; display: inline-block;
}
.lo-footer__links a:hover { color: var(--white); transform: translateX(3px); }
.lo-footer__divider { border-color: rgba(255,255,255,.06); margin: 2.5rem 0 1.5rem; opacity: 1; }
.lo-footer__copyright {
    text-align: center; font-size: .72rem;
    color: rgba(255,255,255,.25); letter-spacing: .05em;
}
.lo-footer__text { color: rgba(255,255,255,.45); font-size: .85rem; margin-bottom: .35rem; }

/* 25. Hero Image
   ------------------------------------------------------------ */
.lo-hero-image {
    border-radius: var(--radius-xl); overflow: hidden;
    box-shadow: var(--shadow-xl); border: 1px solid var(--gray-200);
}
.lo-hero-image img { width: 100%; display: block; }

/* 26. Trust Badge
   ------------------------------------------------------------ */
.lo-trust-badge {
    display: inline-flex; align-items: center; gap: .5rem;
    background: var(--gold-50); border: 1px solid var(--gold-200);
    border-radius: var(--radius-full); padding: .4rem 1.25rem;
    font-size: .72rem; color: var(--gold-700); font-weight: 600;
    letter-spacing: .03em;
}

/* 27. Divider
   ------------------------------------------------------------ */
.lo-divider {
    height: 1px; border: none; margin: 0;
    background: linear-gradient(90deg, transparent, var(--gray-200), transparent);
}

/* 28. Responsive
   ------------------------------------------------------------ */
@media (max-width: 991.98px) {
    .lo-hero { padding: 6rem 0 5rem; min-height: auto; }
    .lo-hero h1 { font-size: 2.75rem; }
    .lo-page-header h1 { font-size: 2.25rem; }
    .lo-section-header__title { font-size: 2.15rem; }
    .lo-details-grid { grid-template-columns: repeat(2, 1fr); }
    .lo-pricing-card--featured { transform: scale(1); }
    .lo-pricing-card--featured:hover { transform: translateY(-8px); }
    .lo-stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767.98px) {
    :root { --section-py: 4rem; }
    .lo-hero { padding: 5rem 0 4rem; }
    .lo-hero h1 { font-size: 2.15rem; }
    .lo-hero__subtitle { font-size: 1rem; }
    .lo-hero__partners img { height: 32px; }
    .lo-hero__badge { font-size: .65rem; padding: .5rem 1.25rem; }
    .lo-page-header { padding: 5rem 0 3rem; }
    .lo-page-header h1 { font-size: 1.85rem; }
    .lo-section-header { margin-bottom: 3rem; }
    .lo-section-header__title { font-size: 1.85rem; }
    .lo-details-grid { grid-template-columns: 1fr; }
    .lo-stats { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .lo-stat__number { font-size: 2.25rem; }
    .lo-step-card { flex-direction: column; }
    .lo-navbar__logo { height: 42px; }
    .lo-form-card { padding: 1.75rem; }
    .lo-support-card { padding: 1.75rem; }
    .lo-highlight-box { padding: 2.5rem 1.75rem; }
    .lo-pricing-card { padding: 2.5rem 1.75rem; }
    .lo-footer { padding: 3.5rem 0 1.5rem; }
}
@media (max-width: 575.98px) {
    .lo-hero h1 { font-size: 1.85rem; }
    .lo-section-header__title { font-size: 1.6rem; }
    .lo-hero__actions { flex-direction: column; align-items: center; }
    .lo-hero__actions .lo-btn { width: 100%; max-width: 280px; }
}
