/* ═══════════════════════════════════════════════
   ALPHAEDGE PARTNERS LIMITED — ULTRA PREMIUM DESIGN SYSTEM
   Aesthetic: Institutional Wealth Management
   Colors: Navy #0A1F44 · Gold #D4AF37 · White · Platinum Silver
   Fonts: Inter (body) · Playfair Display (headings)
═══════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,800;1,400;1,600;1,700&family=Cormorant+Garamond:ital,wght@0,500;0,600;1,500&display=swap');

*, *::before, *::after { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
}

/* ── SCREEN-READER ONLY ── */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

:root {
    /* ── Core Palette ── */
    --navy: #0A1F44;
    --navy-dark: #050F26;
    --navy-light: #1a3a6a;
    --navy-glow: rgba(10,31,68,0.08);
    
    --gold: #D4AF37;
    --gold-dark: #a67c1f;
    --gold-light: #ecd488;
    --gold-pale: #f5e6b8;
    --gold-glow: rgba(212,175,55,0.15);
    --gold-glow-strong: rgba(212,175,55,0.3);
    
    --white: #FFFFFF;
    --off-white: #F9F8F4;
    --cream: #FBF6EC;
    --silver: #C0C0C0;
    --silver-light: #E8E8E8;
    
    --ink: #17182A;
    --muted: #5E6D82;
    --muted-light: #9CACC0;
    
    /* ── Gradients ── */
    --gradient-primary: linear-gradient(135deg, #081733, #0d2a5c, #1a3a6a);
    --gradient-gold: linear-gradient(120deg, #E8CB6E 0%, #D4AF37 35%, #B8922F 70%, #D4AF37 100%);
    --gradient-gold-subtle: linear-gradient(135deg, rgba(212,175,55,0.08), rgba(212,175,55,0.02));
    --gradient-hero: linear-gradient(165deg, #081733 0%, #0d2a5c 45%, #050F26 100%);
    
    /* ── Shadows ── */
    --shadow-sm: 0 2px 10px rgba(10,31,68,0.07);
    --shadow-md: 0 10px 34px rgba(10,31,68,0.10);
    --shadow-lg: 0 26px 68px rgba(10,31,68,0.13);
    --shadow-xl: 0 44px 90px rgba(10,31,68,0.16);
    --shadow-gold: 0 10px 34px rgba(212,175,55,0.22);
    
    /* ── Radii ── */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 18px;
    --radius-xl: 26px;
    --radius-full: 9999px;
    
    /* ── Typography ── */
    --font-display: 'Playfair Display', serif;
    --font-accent: 'Cormorant Garamond', serif;
    --font-body: 'Inter', sans-serif;
    
    /* ── Transitions ── */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    
    /* ── Spacing ── */
    --nav-height: 76px;
    --container-max: 1400px;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    background: var(--off-white);
    color: var(--ink);
    overflow-x: hidden;
    min-height: 100vh;
    line-height: 1.6;
}

/* ── Custom Scrollbar ── */
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-dark); }

/* ── Selection ── */
::selection {
    background: var(--gold);
    color: var(--navy);
}

/* ════════════════════════════════════════
   TYPOGRAPHY
════════════════════════════════════════ */
.font-display { font-family: var(--font-display); }
.font-body { font-family: var(--font-body); }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    letter-spacing: -0.015em;
}

h1 {
    font-size: clamp(2.8rem, 5.5vw, 4.8rem);
    font-weight: 700;
    line-height: 1.08;
}

h2 {
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    font-weight: 700;
    line-height: 1.12;
}

h3 {
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 600;
    line-height: 1.2;
}

h4 {
    font-size: clamp(1.1rem, 1.8vw, 1.5rem);
    font-weight: 600;
}

/* ── Gold Text ── */
.text-gold { color: var(--gold); }
.text-gold-light { color: var(--gold-light); }
.text-navy { color: var(--navy); }

/* ── Section Headers ── */
.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-accent);
    font-size: 0.95rem;
    font-style: italic;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--gold-dark);
    margin-bottom: 0.85rem;
}
.section-eyebrow::before {
    content: '';
    width: 32px;
    height: 1.5px;
    background: var(--gradient-gold);
}
.section-eyebrow-center {
    justify-content: center;
}
.section-eyebrow-center::before,
.section-eyebrow-center::after {
    content: '';
    width: 30px;
    height: 2px;
    background: var(--gold);
}
.section-eyebrow-center::after {
    margin-left: 10px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    font-weight: 700;
    color: var(--navy);
    line-height: 1.12;
    margin-bottom: 1rem;
}
.section-title .gold { color: var(--gold); }
.section-title .italic { font-style: italic; }

.section-subtitle {
    font-size: 1.05rem;
    color: var(--muted);
    max-width: 640px;
    line-height: 1.8;
}
.section-subtitle.center { margin: 0 auto; }

.section-header-center {
    text-align: center;
    margin-bottom: 3.5rem;
}
.section-header-center .section-subtitle {
    margin: 0 auto;
}

/* ════════════════════════════════════════
   CONTAINER & LAYOUT
════════════════════════════════════════ */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 5rem 0;
}
.section-sm { padding: 3rem 0; }
.section-lg { padding: 7rem 0; }

.section-dark {
    background: var(--navy);
    color: white;
}
.section-dark .section-title { color: white; }
.section-dark .section-subtitle { color: rgba(255,255,255,0.7); }
.section-dark .section-eyebrow { color: var(--gold-light); }

.section-gold-subtle {
    background: var(--gradient-gold-subtle);
}

.section-white {
    background: white;
}

/* ════════════════════════════════════════
   BUTTONS
════════════════════════════════════════ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0.85rem 2rem;
    border-radius: var(--radius-full);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all var(--transition-base);
    border: none;
    letter-spacing: 0.01em;
    position: relative;
    overflow: hidden;
}

.btn-gold {
    background: var(--gradient-gold);
    color: var(--navy);
    box-shadow: var(--shadow-gold);
}
.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 44px var(--gold-glow-strong);
    color: var(--navy);
}

.btn-gold-outline {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
}
.btn-gold-outline:hover {
    background: var(--gold);
    color: var(--navy);
    transform: translateY(-2px);
}

.btn-navy {
    background: var(--navy);
    color: white;
}
.btn-navy:hover {
    background: var(--navy-light);
    transform: translateY(-2px);
    color: white;
}

.btn-navy-outline {
    background: transparent;
    color: var(--navy);
    border: 2px solid var(--navy);
}
.btn-navy-outline:hover {
    background: var(--navy);
    color: white;
    transform: translateY(-2px);
}

.btn-white-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
}
.btn-white-outline:hover {
    background: white;
    color: var(--navy);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 1.1rem 2.8rem;
    font-size: 0.95rem;
}
.btn-sm {
    padding: 0.6rem 1.4rem;
    font-size: 0.75rem;
}

.btn .icon {
    font-size: 1.1em;
    transition: transform var(--transition-fast);
}
.btn:hover .icon {
    transform: translateX(4px);
}

.btn-gold .icon { color: var(--navy); }

/* ── Shine Effect ── */
.btn-shine {
    position: relative;
}
.btn-shine::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 200%;
    height: 200%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transform: rotate(25deg) translateX(-100%);
    transition: transform 0.6s;
}
.btn-shine:hover::after {
    transform: rotate(25deg) translateX(100%);
}

/* ════════════════════════════════════════
   NAVBAR — ULTRA PREMIUM
════════════════════════════════════════ */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(8,23,51,0.92);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: all var(--transition-base);
    height: var(--nav-height);
}

#navbar.scrolled {
    background: rgba(8,23,51,0.98);
    box-shadow: 0 4px 40px rgba(0,0,0,0.22);
    border-bottom-color: rgba(212,175,55,0.15);
}

.nav-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    height: 100%;
    gap: 0;
}

/* ── Logo ── */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    flex-shrink: 0;
    margin-right: 2.5rem;
}
.nav-logo-mark {
    width: 46px;
    height: 46px;
    background: rgba(212,175,55,0.08);
    border: 1px solid rgba(212,175,55,0.25);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    object-fit: contain;
    padding: 6px;
    box-shadow: var(--shadow-gold);
    flex-shrink: 0;
}
.nav-logo-text { line-height: 1.1; }
.nav-logo-name {
    display: block;
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    letter-spacing: 0.02em;
}
.nav-logo-sub {
    display: block;
    font-size: 0.55rem;
    font-weight: 500;
    color: var(--gold-light);
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

/* ── Nav Links ── */
.nav-links {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
}
.nav-item {
    position: relative;
    display: flex;
    align-items: center;
}
.nav-link {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 0.5rem 1.2rem;
    font-size: 0.82rem;
    font-weight: 500;
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    cursor: pointer;
    transition: all var(--transition-fast);
    border: none;
    background: none;
    font-family: var(--font-body);
    border-radius: var(--radius-full);
    position: relative;
}
.nav-link .chevron {
    font-size: 0.55rem;
    opacity: 0.5;
    transition: transform var(--transition-fast);
}
.nav-link:hover,
.nav-link.active {
    color: var(--gold-light);
}
.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
}
.nav-link-toggle[aria-expanded="true"] .chevron {
    transform: rotate(180deg);
    opacity: 1;
}

/* ── Nav Actions ── */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: auto;
    flex-shrink: 0;
}
.btn-nav-ghost {
    padding: 0.5rem 1.4rem;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: all var(--transition-fast);
    font-family: var(--font-body);
}
.btn-nav-ghost:hover {
    border-color: var(--gold);
    color: var(--gold-light);
}
.btn-nav-cta {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0.5rem 1.6rem;
    background: var(--gradient-gold);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--navy);
    text-decoration: none;
    transition: all var(--transition-fast);
    font-family: var(--font-body);
    box-shadow: var(--shadow-gold);
}
.btn-nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 28px rgba(212,175,55,0.4);
    color: var(--navy);
}

/* ── Mobile Toggle ── */
.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: 1px solid rgba(212,175,55,0.25);
    border-radius: var(--radius-md);
    padding: 8px 14px;
    color: var(--gold-light);
    font-size: 1.1rem;
    cursor: pointer;
    transition: all var(--transition-fast);
    margin-left: auto;
    flex-shrink: 0;
    line-height: 1;
}
.mobile-menu-toggle:hover {
    background: rgba(212,175,55,0.08);
    border-color: var(--gold);
}

.nav-mobile-ctas { display: none; }

/* ── Mega Menu ── */
.mega {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    width: min(920px, calc(100vw - 2rem));
    background: var(--navy-dark);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-lg);
    box-shadow: 0 32px 80px rgba(0,0,0,0.5);
    padding: 2rem 2.5rem;
    display: none;
    z-index: 200;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}
.mega.open { display: flex; gap: 2rem; }

.mega-col { flex: 1; min-width: 130px; }
.mega-col-promo { min-width: 200px; flex: 0 0 200px; }
.mega-head {
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mega-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0.5rem 0.6rem;
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: background var(--transition-fast);
    margin-bottom: 2px;
}
.mega-item:hover {
    background: rgba(255,255,255,0.04);
}
.mega-item-icon {
    width: 30px;
    height: 30px;
    background: rgba(255,255,255,0.04);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-mid);
    font-size: 0.75rem;
    flex-shrink: 0;
}
.mega-item strong {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(255,255,255,0.88);
}
.mega-item span {
    font-size: 0.65rem;
    color: var(--muted-light);
}
.mega-divider {
    width: 1px;
    background: rgba(255,255,255,0.06);
    flex-shrink: 0;
}

.mega-promo-card {
    background: linear-gradient(135deg, rgba(212,175,55,0.08), rgba(212,175,55,0.02));
    border: 1px solid rgba(212,175,55,0.15);
    border-radius: var(--radius-md);
    padding: 1.2rem;
}
.mega-promo-badge {
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 0.5rem;
}
.mega-promo-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.3rem;
    line-height: 1.2;
}
.mega-promo-desc {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.45);
    line-height: 1.6;
    margin-bottom: 0.8rem;
}
.mega-promo-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--gold-light);
    text-decoration: none;
    transition: gap var(--transition-fast);
}
.mega-promo-link:hover { gap: 10px; }

/* ════════════════════════════════════════
   HERO SECTION
════════════════════════════════════════ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--gradient-hero);
    color: white;
    padding-top: var(--nav-height);
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 60%;
    height: 80%;
    background: radial-gradient(ellipse, rgba(212,175,55,0.06), transparent 70%);
    pointer-events: none;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top, var(--off-white), transparent);
    pointer-events: none;
}
.hero .container {
    position: relative;
    z-index: 2;
    padding-top: 2rem;
    padding-bottom: 4rem;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212,175,55,0.12);
    border: 1px solid rgba(212,175,55,0.22);
    border-radius: var(--radius-full);
    padding: 0.3rem 1rem 0.3rem 0.5rem;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--gold-light);
    margin-bottom: 1.5rem;
}
.hero-badge .dot {
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.8); }
}

.hero h1 {
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 700;
    line-height: 1.05;
    margin-bottom: 1.2rem;
}
.hero h1 .gold { color: var(--gold); }
.hero h1 .italic { font-style: italic; }

.hero p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.72);
    max-width: 540px;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.hero-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.hero-stat .number {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: -0.01em;
}
.hero-stat .label {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero-image-placeholder {
    width: 100%;
    max-width: 480px;
    aspect-ratio: 4/3;
    background: radial-gradient(ellipse at center, rgba(212,175,55,0.07), transparent);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(212,175,55,0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 2rem;
    text-align: center;
}
.hero-image-placeholder .icon {
    font-size: 4rem;
    color: var(--gold);
    opacity: 0.55;
}
.hero-image-placeholder p {
    color: rgba(255,255,255,0.32);
    font-size: 0.85rem;
    max-width: 80%;
}

/* ════════════════════════════════════════
   TRUST BAR
════════════════════════════════════════ */
.trust-bar {
    background: var(--navy-dark);
    border-top: 1px solid rgba(255,255,255,0.04);
    border-bottom: 1px solid rgba(255,255,255,0.04);
    padding: 0.8rem 0;
    overflow: hidden;
}
.trust-track {
    display: flex;
    gap: 2.5rem;
    align-items: center;
    animation: scrollX 35s linear infinite;
    width: max-content;
}
@media (prefers-reduced-motion: reduce) {
    .trust-track { animation: none; }
}
@keyframes scrollX {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    font-size: 0.7rem;
    font-weight: 500;
    color: rgba(255,255,255,0.35);
    flex-shrink: 0;
}
.trust-item i { color: var(--gold); font-size: 0.75rem; }

/* ════════════════════════════════════════
   CARDS
════════════════════════════════════════ */
.card-premium {
    background: var(--off-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-base);
    border: 1px solid rgba(10,31,68,0.06);
    height: 100%;
}
.card-premium:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(212,175,55,0.15);
}
.card-premium .card-body { padding: 1.8rem; }
.card-premium .card-icon {
    font-size: 2.2rem;
    color: var(--gold);
    margin-bottom: 1rem;
}
.card-premium .card-title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.5rem;
}
.card-premium .card-text {
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.7;
}

.card-dark {
    background: var(--navy);
    border-color: rgba(255,255,255,0.06);
}
.card-dark .card-title { color: white; }
.card-dark .card-text { color: rgba(255,255,255,0.6); }

/* ── Program Cards ── */
.program-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 1.8rem;
    border: 1px solid rgba(10,31,68,0.06);
    transition: all var(--transition-base);
    height: 100%;
    position: relative;
    overflow: hidden;
}
.program-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-gold);
    opacity: 0;
    transition: opacity var(--transition-base);
}
.program-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(212,175,55,0.15);
}
.program-card:hover::before { opacity: 1; }

.program-card .tier-name {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--navy);
}
.program-card .tier-range {
    color: var(--gold);
    font-weight: 700;
    font-size: 1.1rem;
    margin: 0.3rem 0 0.8rem;
}
.program-card .tier-features {
    list-style: none;
    padding: 0;
    margin: 1rem 0 1.5rem;
}
.program-card .tier-features li {
    padding: 0.3rem 0;
    font-size: 0.85rem;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 8px;
}
.program-card .tier-features li::before {
    content: '✦';
    color: var(--gold);
    font-size: 0.7rem;
}

/* ── Stat Cards ── */
.stat-card {
    background: white;
    border-radius: var(--radius-md);
    padding: 1.8rem;
    text-align: center;
    border: 1px solid rgba(10,31,68,0.06);
    transition: all var(--transition-base);
}
.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(212,175,55,0.15);
}
.stat-card .number {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1;
}
.stat-card .number.gold { color: var(--gold); }
.stat-card .label {
    color: var(--muted);
    font-size: 0.85rem;
    margin-top: 0.3rem;
}

/* ════════════════════════════════════════
   TESTIMONIALS
════════════════════════════════════════ */
.testimonial-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 1px solid rgba(10,31,68,0.06);
    transition: all var(--transition-base);
    height: 100%;
}
.testimonial-card:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(212,175,55,0.12);
}
.testimonial-card .stars {
    color: var(--gold);
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 0.8rem;
}
.testimonial-card .quote {
    font-family: var(--font-accent);
    font-size: 1.15rem;
    font-weight: 500;
    line-height: 1.7;
    color: var(--ink);
    margin-bottom: 1.2rem;
    font-style: italic;
}
.testimonial-card .author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.testimonial-card .author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gradient-gold-subtle);
    border: 2px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--navy);
    font-size: 0.9rem;
}
.testimonial-card .author-name {
    font-weight: 600;
    color: var(--navy);
    font-size: 0.9rem;
}
.testimonial-card .author-title {
    font-size: 0.75rem;
    color: var(--muted);
}

/* ════════════════════════════════════════
   FOOTER — ULTRA PREMIUM
════════════════════════════════════════ */
footer {
    background: var(--navy-dark);
    border-top: 1px solid rgba(255,255,255,0.04);
}
.footer-main { padding: 4rem 0 3rem; border-bottom: 1px solid rgba(255,255,255,0.05); }

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.4fr;
    gap: 3rem;
}

.footer-brand .footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    margin-bottom: 1rem;
}
.footer-brand .footer-logo-mark {
    width: 42px;
    height: 42px;
    background: rgba(212,175,55,0.08);
    border: 1px solid rgba(212,175,55,0.25);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    object-fit: contain;
    padding: 5px;
    flex-shrink: 0;
}
.footer-brand .footer-logo-name {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
}
.footer-brand .footer-logo-sub {
    font-size: 0.5rem;
    font-weight: 500;
    color: var(--gold-light);
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
}
.footer-brand p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
    line-height: 1.9;
    margin: 1rem 0 1.5rem;
    max-width: 300px;
}

.footer-socials {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}
.f-social {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    font-size: 0.85rem;
    transition: all var(--transition-fast);
}
.f-social:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy);
}

.footer-trust-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.f-trust-badge {
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-sm);
    padding: 4px 12px;
    font-size: 0.6rem;
    font-weight: 600;
    color: rgba(255,255,255,0.4);
}
.f-trust-badge i { color: var(--gold-light); }

.footer-col .f-col-title {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 1.2rem;
}
.f-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.f-links a {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    transition: color var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 8px;
}
.f-links a:hover { color: var(--gold-light); }
.f-links a i {
    color: var(--gold);
    font-size: 0.75rem;
    width: 14px;
    text-align: center;
    flex-shrink: 0;
}

.f-contact-links a {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.78rem;
    line-height: 1.5;
}
.f-contact-links i {
    color: var(--gold);
    font-size: 0.7rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-nl-desc {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.35);
    line-height: 1.8;
    margin-bottom: 0.8rem;
}
.f-nl-form {
    display: flex;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-md);
    overflow: hidden;
}
.f-nl-input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 0.7rem 1rem;
    font-size: 0.78rem;
    color: white;
    font-family: var(--font-body);
    min-width: 0;
}
.f-nl-input::placeholder { color: rgba(255,255,255,0.25); }
.f-nl-input:focus { outline: none; }
.f-nl-btn {
    padding: 0.7rem 1.2rem;
    background: var(--gradient-gold);
    border: none;
    color: var(--navy);
    font-size: 0.72rem;
    font-weight: 700;
    cursor: pointer;
    font-family: var(--font-body);
    transition: all var(--transition-fast);
    white-space: nowrap;
    flex-shrink: 0;
}
.f-nl-btn:hover { opacity: 0.85; }

.footer-contact-block { margin-top: 1.5rem; }

.footer-bottom-bar {
    padding: 1.2rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}
.footer-copy {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.25);
}
.footer-legal {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.footer-legal a {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.25);
    text-decoration: none;
    transition: color var(--transition-fast);
}
.footer-legal a:hover { color: rgba(255,255,255,0.6); }

/* Make hero image take maximum space */
.hero .hero-image {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero .dashboard-preview-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0,0,0,0.25);
    border: 2px solid rgba(212,175,55,0.3);
    background: #0a1628;
    width: 100%;
    max-width: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero .dashboard-preview-wrapper:hover {
    transform: scale(1.02);
    box-shadow: 0 40px 100px rgba(0,0,0,0.35);
}

.hero .dashboard-preview-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.hero .dashboard-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(212,175,55,0.95);
    color: #0a1628;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* Make the image take full height on larger screens */
@media (min-width: 992px) {
    .hero .dashboard-preview-wrapper {
        max-height: 600px;
    }
    .hero .dashboard-preview-wrapper img {
        height: 100%;
        object-fit: contain;
    }
}

/* ════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════ */
@media (max-width: 1100px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
    .footer-brand {
        grid-column: 1 / -1;
    }
    .footer-col-last {
        grid-column: 1 / -1;
    }
    .footer-col-last .f-nl-form {
        max-width: 400px;
    }
}

@media (max-width: 992px) {
    :root { --nav-height: 64px; }

    .nav-inner { padding: 0 1.25rem; }

    .mobile-menu-toggle { display: flex; }
    .nav-actions { display: none; }

    .nav-links {
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        width: 300px;
        height: 100dvh;
        background: var(--navy-dark);
        flex-direction: column;
        padding: var(--nav-height) 0 2rem;
        transform: translateX(-100%);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        visibility: hidden;
        z-index: 1001;
        overflow-y: auto;
        gap: 0;
        border-right: 1px solid rgba(255,255,255,0.06);
        box-shadow: 6px 0 40px rgba(0,0,0,0.4);
    }
    .nav-links.open {
        transform: translateX(0);
        visibility: visible;
    }

    .nav-item {
        width: 100%;
        flex-direction: column;
    }
    .nav-link,
    .nav-link-toggle {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.8rem 1.5rem;
        width: 100%;
        font-size: 0.88rem;
        height: auto;
        border-bottom: 1px solid rgba(255,255,255,0.04);
        color: rgba(255,255,255,0.75);
        text-align: left;
    }
    .nav-link:hover,
    .nav-link-toggle:hover {
        color: var(--gold-light);
        background: rgba(255,255,255,0.03);
    }

    .mega {
        position: static;
        transform: none;
        width: 100%;
        border-radius: var(--radius-md);
        margin: 0;
        padding: 0.75rem 1rem 1rem;
        display: none;
        flex-direction: column;
        gap: 0;
        box-shadow: none;
        background: rgba(255,255,255,0.03);
        border: none;
        border-top: 1px solid rgba(255,255,255,0.04);
        border-bottom: 1px solid rgba(255,255,255,0.04);
    }
    .mega.open { display: flex; }

    .mega-col { width: 100%; min-width: 0; }
    .mega-col-promo { flex: unset; }
    .mega-divider { display: none; }
    .mega-head { margin-top: 0.5rem; }

    .nav-mobile-ctas {
        display: flex;
        flex-direction: column;
        gap: 10px;
        padding: 1.5rem 1.25rem;
        margin-top: auto;
        border-top: 1px solid rgba(255,255,255,0.06);
    }
    .btn-mobile-ghost {
        display: block;
        text-align: center;
        padding: 0.7rem 1rem;
        border: 1px solid rgba(255,255,255,0.15);
        border-radius: var(--radius-full);
        font-size: 0.82rem;
        font-weight: 600;
        color: rgba(255,255,255,0.75);
        text-decoration: none;
        transition: all var(--transition-fast);
    }
    .btn-mobile-ghost:hover {
        border-color: var(--gold);
        color: var(--gold-light);
    }
    .btn-mobile-cta {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 7px;
        padding: 0.8rem 1rem;
        background: var(--gradient-gold);
        border-radius: var(--radius-full);
        font-size: 0.82rem;
        font-weight: 700;
        color: var(--navy);
        text-decoration: none;
        transition: all var(--transition-fast);
    }

    .nav-mobile-socials {
        display: flex;
        justify-content: center;
        gap: 10px;
        margin-top: 1.1rem;
        padding-top: 1.1rem;
        border-top: 1px solid rgba(255,255,255,0.06);
    }
    .nav-mobile-socials a {
        width: 38px;
        height: 38px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: var(--radius-sm);
        background: rgba(255,255,255,0.04);
        border: 1px solid rgba(255,255,255,0.08);
        color: rgba(255,255,255,0.5);
        font-size: 0.9rem;
        transition: all var(--transition-fast);
    }
    .nav-mobile-socials a:hover {
        background: var(--gold);
        border-color: var(--gold);
        color: var(--navy);
    }

    .mobile-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.7);
        z-index: 999;
        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(4px);
    }
    .mobile-overlay.open { display: block; }

    .hero { min-height: auto; padding: 6rem 0 3rem; }
    .hero h1 { font-size: 2.6rem; }
    .hero-stats { gap: 1.5rem; flex-wrap: wrap; }
    .hero-image { margin-top: 2rem; }
    .hero-image-placeholder { max-width: 100%; }
}

@media (max-width: 640px) {
    .container { padding: 0 1.1rem; }
    .section { padding: 3rem 0; }
    .section-lg { padding: 4rem 0; }

    .footer-grid { grid-template-columns: 1fr; }
    .footer-brand { grid-column: 1; }
    .footer-col-last { grid-column: 1; }
    .footer-col-last .f-nl-form { max-width: 100%; }
    .footer-brand p { max-width: 100%; }
    .footer-bottom-bar { flex-direction: column; text-align: center; }
    .footer-legal { justify-content: center; gap: 1rem; }

    .hero h1 { font-size: 2.2rem; }
    .hero p { font-size: 0.95rem; }
    .hero-stats { gap: 1rem; }
    .hero-stat .number { font-size: 1.3rem; }

    .program-card .tier-name { font-size: 1.1rem; }
    .stat-card .number { font-size: 2.2rem; }
}

@media (max-width: 380px) {
    .nav-logo-sub { display: none; }
    .nav-logo-name { font-size: 0.95rem; }
    .hero h1 { font-size: 1.8rem; }
}