/* =============================================
   ASPERRA — Main Stylesheet
   ============================================= */

:root {
  --color-primary-dark: #1A1A2E;
  --color-gold: #D4A94C;
  --color-gold-bright: #D4AF37;
  --color-gold-light: #F2D27A;
  --color-gold-muted: #8B7635;
  --color-gold-cta: #C4A035;
  --color-white: #FFFFFF;
  --color-white-80: rgba(255,255,255,0.80);
  --color-white-55: rgba(255,255,255,0.55);
  --color-white-35: rgba(255,255,255,0.35);
  --color-dark-60: rgba(26,26,46,0.60);
  --color-dark-55: rgba(26,26,46,0.55);
  --color-dark-50: rgba(26,26,46,0.50);
  --color-bg-light: #F8F6F1;
  --color-bg-cream: #FAF8F3;
  --color-border-light: rgba(26,26,46,0.08);
  --color-border-white: rgba(255,255,255,0.10);
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --font-ui: 'Plus Jakarta Sans', -apple-system, sans-serif;
  --max-width: 1200px;
  --section-padding: 100px 120px;
}

/* ---- Reset ---- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; font-synthesis: none; scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--color-primary-dark); background: var(--color-white); line-height: 1.6; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ---- Utilities ---- */
.container { max-width: var(--max-width); margin: 0 auto; width: 100%; }
.label-upper { text-transform: uppercase; letter-spacing: 0.16em; font-family: var(--font-body); font-weight: 600; font-size: 13px; line-height: 1; }
.label-upper-sm { text-transform: uppercase; letter-spacing: 0.14em; font-family: var(--font-body); font-weight: 600; font-size: 11px; line-height: 1; }

/* ---- Buttons ---- */
.btn-gold {
  display: inline-flex; align-items: center; gap: 10px; justify-content: center;
  padding: 18px 40px; border-radius: 4px; font-family: var(--font-ui); font-size: 16px; line-height: 1.25;
  color: #fff; border: 1px solid rgba(255,232,179,0.18);
  background: linear-gradient(180deg, #CBA63A 0%, #B8922E 100%);
  box-shadow: 0 0 18px rgba(212,175,55,0.18); transition: all 0.3s;
}
.btn-gold:hover { box-shadow: 0 0 24px rgba(212,175,55,0.3); transform: translateY(-1px); }
.btn-gold svg { width: 20px; height: 20px; flex-shrink: 0; }

.btn-outline {
  display: inline-flex; align-items: center; gap: 10px; justify-content: center;
  padding: 18px 40px; border-radius: 4px; font-family: var(--font-ui); font-size: 16px; line-height: 1.25;
  color: var(--color-white); border: 1px solid rgba(255,255,255,0.18); background: transparent; transition: all 0.3s;
}
.btn-outline:hover { border-color: rgba(255,255,255,0.4); }

.btn-gold-outline {
  display: inline-flex; align-items: center; gap: 10px; justify-content: center;
  padding: 18px 40px; border-radius: 4px; font-family: var(--font-ui); font-size: 16px; line-height: 1.25;
  color: #DDBD5D; border: 1px solid rgba(255,232,179,0.18); background: transparent; transition: all 0.3s;
}
.btn-gold-outline:hover { border-color: rgba(255,232,179,0.4); }
.btn-gold-outline svg { width: 20px; height: 20px; flex-shrink: 0; }

.link-underline { font-family: var(--font-body); font-size: 14px; text-decoration: underline; text-underline-offset: 4px; text-decoration-thickness: 1px; }

/* ---- Arrow icon ---- */
.arrow-icon { display: inline-block; }
.arrow-icon path { stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; fill: none; }

/* =============================================
   HEADER / NAVIGATION
   ============================================= */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 9999;
  display: flex; justify-content: space-between; align-items: center;
  padding: 28px 64px; font-size: 13px;
  transition: transform 0.3s ease, background 0.3s ease;
}
.site-header.header-hidden { transform: translateY(-100%); }
.site-header .logo { display: flex; align-items: center; gap: 10px; }
.site-header .logo-icon { width: 36px; height: 36px; background-size: contain; background-repeat: no-repeat; background-position: center; }
.site-header .logo-text { letter-spacing: 0.12em; color: var(--color-gold-light); font-family: var(--font-heading); font-weight: 600; font-size: 18px; }
.site-header nav { display: flex; align-items: center; gap: 36px; }
.site-header nav a { letter-spacing: 0.06em; color: rgba(255,255,255,0.7); font-family: var(--font-body); font-size: 13px; transition: color 0.2s; }
.site-header nav a:hover { color: var(--color-white); }
.site-header .nav-cta { padding: 8px 20px; border-radius: 4px; border: 1px solid rgba(255,255,255,0.3); color: var(--color-white); font-weight: 500; }
.site-header .nav-cta:hover { border-color: rgba(255,255,255,0.6); }

/* Mobile menu toggle */
.menu-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; cursor: pointer; z-index: 10001; position: relative; }
.menu-toggle span { width: 22px; height: 1.5px; background: var(--color-gold-light); border-radius: 2px; transition: 0.3s; }
.menu-toggle .menu-toggle-short { width: 14px; }
.menu-toggle.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { width: 22px; transform: translateY(-6.5px) rotate(-45deg); }

/* =============================================
   HERO SECTION
   ============================================= */
/* Hero: design = 900px, content flex:1 centered, stats pinned to bottom */
.hero {
  position: relative; height: 900px; min-height: 100vh; display: flex; flex-direction: column;
  align-items: center; overflow: hidden;
  background-color: #1A1A2E;
}
/* Top spacer matches header height so content centers correctly */
.hero-spacer { flex-shrink: 0; height: 92px; width: 100%; }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; z-index: 0; }
.hero-overlay { position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(26,26,46,0.3) 0%, rgba(26,26,46,0.1) 40%, rgba(22,22,56,0.6) 100%);
}
.hero-content {
  position: relative; z-index: 2; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 28px;
  flex: 1 1 0%; justify-content: center; padding-bottom: 120px;
}
.hero-badge { display: flex; align-items: center; gap: 10px; }
.hero-badge-icon { width: 116px; height: 115px; background-size: 122.782%; background-position: 48.421% 47.264%; background-repeat: no-repeat; }
.hero-subtitle { text-transform: uppercase; letter-spacing: 0.22em; color: #D4A94C; font-family: var(--font-body); font-weight: 600; font-size: 11px; line-height: 14px; }
.hero-title { font-size: 80px; line-height: 1.05; letter-spacing: 0.02em; color: #fff; font-family: var(--font-heading); font-weight: 300; }
.hero-desc { font-size: 16px; line-height: 1.7; max-width: 480px; width: 480px; color: rgba(255,255,255,0.55); font-family: var(--font-body); text-align: center; }
.hero-buttons { display: flex; align-items: center; gap: 32px; margin-top: 12px; }
.hero-buttons .btn-gold { padding: 18px 40px; }
.hero-buttons .btn-outline { padding: 18px 40px; }
.hero-or { color: rgba(255,255,255,0.35); font-size: 14px; font-family: var(--font-body); flex-shrink: 0; }

/* Hero stats bar — pinned to bottom */
.hero-stats {
  position: relative; z-index: 2; display: flex; justify-content: center;
  gap: 56px; padding-bottom: 40px; flex-shrink: 0;
}
.hero-stat { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.hero-stat-number { font-size: 28px; line-height: 1; color: #D4A94C; font-family: var(--font-heading); font-weight: 500; }
.hero-stat-label { text-transform: uppercase; letter-spacing: 0.12em; color: rgba(255,255,255,0.35); font-family: var(--font-body); font-weight: 500; font-size: 10px; }
.hero-stats-divider { width: 1px; height: 36px; background: rgba(255,255,255,0.1); align-self: center; }

/* =============================================
   SECTION STYLES
   ============================================= */
.section { padding: 100px 120px; position: relative; }
.section-light { background: var(--color-bg-light); }
.section-dark { background: var(--color-primary-dark); }
.section-white { background: var(--color-white); }
.section-cream { background: var(--color-bg-cream); }

.section-label { color: var(--color-gold-muted); margin-bottom: 24px; }
.section-label-light { color: rgba(212,175,55,0.78); margin-bottom: 24px; }

.section-title {
  font-family: var(--font-heading); font-weight: 600; font-size: 60px; line-height: 1.08;
  letter-spacing: 0.01em; color: var(--color-primary-dark);
}
.section-title-light {
  font-family: var(--font-heading); font-weight: 600; font-size: 58px; line-height: 1.18;
  letter-spacing: 0.01em; color: var(--color-white);
}
.section-title-gradient {
  background: linear-gradient(90deg, var(--color-primary-dark) 0%, rgba(26,26,46,0.65) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.section-title-white-gradient {
  background: linear-gradient(90deg, #fff 0%, rgba(255,255,255,0.45) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.section-desc { font-size: 17px; line-height: 1.7; color: rgba(26,26,46,0.60); max-width: 560px; }
.section-desc-light { font-size: 17px; line-height: 1.7; color: rgba(232,228,220,0.68); max-width: 560px; }

.section-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 56px; }
.section-header-center { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 20px; margin-bottom: 56px; }

/* =============================================
   WHY ASPERRA — Cards
   ============================================= */
.why-section { padding: 100px 120px; background: #F5F2EB; }
.why-header { max-width: var(--max-width); margin: 0 auto 42px; display: flex; flex-direction: column; gap: 24px; }
.why-cards { max-width: var(--max-width); margin: 0 auto; display: flex; flex-direction: column; gap: 42px; }
.why-card {
  display: flex; border-radius: 6px; overflow: hidden; background: #fff;
  border: 1px solid rgba(26,26,46,0.08); box-shadow: 0 2px 20px rgba(0,0,0,0.06); position: relative;
}
.why-card.reversed { flex-direction: row-reverse; }
.why-card-image { width: 50%; min-height: 320px; background-size: cover; background-position: center; position: relative; }
.why-card-content { width: 50%; display: flex; flex-direction: column; justify-content: center; gap: 20px; padding: 48px; }
.why-card-community { padding: 48px; gap: 40px; }
.why-card-community .stats-row { margin-top: 0; }
.why-card-tag { display: flex; align-items: center; gap: 10px; }
.why-card-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--color-gold-bright); box-shadow: 0 0 12px rgba(212,175,55,0.5); }
.why-card-tag-text { text-transform: uppercase; letter-spacing: 0.14em; color: var(--color-gold-muted); font-weight: 600; font-size: 12px; }
.why-card-title {
  font-family: var(--font-heading); font-weight: 600; font-size: 40px; line-height: 1.08;
  letter-spacing: 0.01em;
  background: linear-gradient(90deg, var(--color-primary-dark) 0%, rgba(26,26,46,0.75) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.why-card-desc { font-size: 15px; line-height: 1.7; color: rgba(26,26,46,0.60); }
.why-card-link { display: inline-flex; flex-direction: column; gap: 6px; font-size: 14px; color: var(--color-primary-dark); }
.why-card-link-line { width: 109px; height: 1px; background: var(--color-primary-dark); }

/* Community card (full width) */
.why-card-community { flex-direction: column; padding: 48px; gap: 40px; }
.why-card-community .why-card-top { display: flex; gap: 40px; }
.why-card-community .why-card-top-image { flex: 1; min-height: 252px; border-radius: 6px; background-size: cover; background-position: center; border: 1px solid rgba(255,255,255,0.2); }
.why-card-community .why-card-top-content { flex: 1.4; display: flex; flex-direction: column; gap: 12px; }
.why-card-community .stats-row { display: flex; gap: 12px; }
.stat-box { flex: 1; display: flex; flex-direction: column; gap: 6px; padding: 24px 32px; border-radius: 4px; background: rgba(26,26,46,0.03); border: 1px solid var(--color-border-light); }
.stat-box-value { font-family: var(--font-ui); font-weight: 700; font-size: 36px; line-height: 1.2; color: var(--color-primary-dark); }
.stat-box-value-gold {
  background: linear-gradient(90deg, #E2B830 0%, #C49A28 60%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.stat-box-label { font-family: var(--font-ui); font-size: 13px; color: rgba(26,26,46,0.50); }
.stats-mobile { display: none; }

/* =============================================
   THE CIRCLE SECTION (dark)
   ============================================= */
.circle-section { padding: 0; background: #08142B; position: relative; overflow: hidden; }
.circle-header { max-width: 1120px; margin: 0 auto; text-align: center; padding: 80px 160px 0; display: flex; flex-direction: column; align-items: center; gap: 20px; }
.circle-columns { max-width: var(--max-width); margin: 0 auto; display: flex; gap: 24px; padding: 62px 120px; }
.circle-col-header { display: flex; align-items: center; gap: 10px; }
.circle-col-header svg { flex-shrink: 0; }
.circle-col-title { text-transform: uppercase; letter-spacing: 0.15em; color: var(--color-gold-light); font-family: var(--font-heading); font-weight: 600; font-size: 12px; }

/* Fragmented path items */
.fragment-item { display: flex; align-items: center; padding: 0; gap: 14px; }
.fragment-icon { width: 24px; height: 24px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  background: linear-gradient(135deg, #C44040, #CC4848); box-shadow: 0 0 14px rgba(212,74,74,0.35); }
.fragment-icon svg { width: 14px; height: 14px; }
.fragment-text { font-size: 14px; line-height: 1.5; color: rgba(240,237,230,0.45); font-family: var(--font-ui); font-style: italic; }

/* ASPERRA circle items */
.circle-item { display: flex; align-items: flex-start; gap: 14px; }
.circle-item-icon { width: 24px; height: 24px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  background: linear-gradient(135deg, #B89A2C, #B8922E); box-shadow: 0 0 14px rgba(212,175,55,0.3); }
.circle-item-icon svg { width: 12px; height: 12px; }
.circle-item-content { display: flex; flex-direction: column; gap: 3px; }
.circle-item-title { font-size: 15px; line-height: 1.3; color: #F0EDE6; font-family: var(--font-ui); font-weight: 600; }
.circle-item-desc { font-size: 13px; line-height: 1.6; color: rgba(240,237,230,0.50); font-family: var(--font-ui); }

/* =============================================
   PROGRAMS CAROUSEL (horizontal scroll)
   ============================================= */
.programs-section { padding: 80px 0 100px 120px; background: #F5F2EB; overflow: hidden; }
.programs-section .section-inner { display: flex; gap: 64px; }
.programs-left { flex-shrink: 0; width: 435px; display: flex; flex-direction: column; gap: 42px; }
.programs-swiper-wrap { flex: 1; min-width: 0; position: relative; }
.programs-swiper { overflow: hidden; }
.programs-swiper .swiper-wrapper { align-items: stretch; }
.programs-swiper .swiper-slide { width: 280px; height: auto; }

/* Right fade gradient — hints at more content */
.programs-swiper-wrap::after {
  content: ''; position: absolute; top: 0; right: 0; bottom: 40px;
  width: 120px; z-index: 3; pointer-events: none;
  background: linear-gradient(90deg, rgba(245,242,235,0) 0%, #F5F2EB 100%);
}
.program-card { display: flex; flex-direction: column; gap: 18px; padding: 28px 0; }
.program-card-image { width: 100%; height: 280px; border-radius: 4px; background-size: cover; background-position: center; }
.program-card-tag { text-transform: uppercase; letter-spacing: 0.14em; color: var(--color-gold-muted); font-weight: 500; font-size: 11px; }
.program-card-title { font-family: var(--font-heading); font-weight: 600; font-size: 26px; line-height: 1.2; color: var(--color-primary-dark); }
.program-card-desc { font-size: 15px; line-height: 1.6; color: rgba(26,26,46,0.55); }

/* =============================================
   CTA BANNER
   ============================================= */
.cta-banner-section { padding: 20px 120px; background: #F5F2EB; position: relative; }
.cta-banner-section::before,
.cta-banner-section::after {
  content: ''; position: absolute; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, rgba(26,26,46,0) 0%, rgba(26,26,46,0.08) 15%, rgba(26,26,46,0.08) 85%, rgba(26,26,46,0) 100%);
}
.cta-banner-section::before { top: 0; }
.cta-banner-section::after { bottom: 0; }
.cta-banner {
  display: flex; border-radius: 6px; overflow: hidden; max-width: var(--max-width); margin: 0 auto;
  height: 320px; background: linear-gradient(115deg, #1A2744 18%, #2B4670 100%);
}
.cta-banner-content { flex: 1; padding: 48px; display: flex; flex-direction: column; gap: 16px; justify-content: center; position: relative; overflow: hidden; }
.cta-banner-label { text-transform: uppercase; letter-spacing: 0.2em; color: rgba(255,255,255,0.45); font-weight: 600; font-size: 11px; position: relative; z-index: 2; }
.cta-banner-title { font-family: var(--font-heading); font-weight: 300; font-size: 38px; line-height: 1.15; letter-spacing: 0.02em; color: var(--color-white); position: relative; z-index: 2; }
.cta-banner-desc { font-size: 13px; line-height: 1.6; color: rgba(255,255,255,0.50); max-width: 380px; position: relative; z-index: 2; }
.cta-banner-link { color: #E0C164; font-size: 14px; text-decoration: underline; text-underline-offset: 4px; position: relative; z-index: 2; }
.cta-banner-image { width: 554px; flex-shrink: 0; background-size: cover; background-position: center; height: 100%; }

/* =============================================
   PARENT ADVISORY TIMELINE
   ============================================= */
.advisory-timeline-section { padding: 100px 120px; background: #F5F2EB; }
.adv-header { display: flex; justify-content: space-between; align-items: flex-start; padding-bottom: 64px; max-width: var(--max-width); margin: 0 auto; gap: 80px; }
.adv-header-left { max-width: 640px; display: flex; flex-direction: column; gap: 16px; }
.adv-header-right { max-width: 380px; padding-top: 24px; display: flex; flex-direction: column; gap: 20px; }

.adv-table { max-width: var(--max-width); margin: 56px auto 0; }
.adv-table-head { display: flex; padding-bottom: 40px; }
.adv-col-title { font-family: var(--font-heading); font-weight: 600; font-size: 32px; line-height: 1.2; color: #1E3A5F; }
.adv-table-col-left { flex: 1; display: flex; align-items: center; gap: 20px; padding: 32px 0; }
.adv-table-col-right { flex: 1; display: flex; align-items: center; gap: 20px; padding: 32px 0; }
.adv-table-divider { width: 1px; flex-shrink: 0; background: rgba(26,26,46,0.10); margin: 0 48px; }
.adv-table-row { display: flex; min-height: 120px; border-top: 1px solid rgba(26,26,46,0.08); }
.adv-table-row-last { border-bottom: 1px solid rgba(26,26,46,0.08); }

.adv-month { display: flex; flex-direction: column; gap: 2px; min-width: 72px; flex-shrink: 0; }
.adv-month-label { text-transform: uppercase; letter-spacing: 0.1em; color: #D4A94C; font-family: var(--font-body); font-weight: 600; font-size: 11px; }
.adv-month-number { font-family: var(--font-heading); font-weight: 300; font-size: 36px; line-height: 1; color: #1E3A5F; }
.adv-month-content { display: flex; flex-direction: column; gap: 6px; }
.adv-row-title { font-family: var(--font-heading); font-weight: 600; font-size: 22px; line-height: 1.3; color: var(--color-primary-dark); }
.adv-row-desc { font-size: 14px; line-height: 1.6; color: rgba(26,26,46,0.50); }

.adv-outcome-num { font-family: var(--font-heading); font-weight: 300; font-size: 52px; line-height: 1; color: #D4A94C; min-width: 56px; flex-shrink: 0; }

.adv-mobile { display: none; }
.adv-bottom-stats { display: flex; align-items: flex-start; gap: 64px; padding-top: 56px; max-width: var(--max-width); margin: 0 auto; }
.adv-stat { display: flex; flex-direction: column; gap: 4px; }
.adv-stat-value { font-family: var(--font-heading); font-weight: 600; font-size: 44px; line-height: 1; }
.adv-stat-gold { color: #8B7635; }
.adv-stat-blue { color: #3B6EA5; }
.adv-stat-label { text-transform: uppercase; letter-spacing: 0.1em; color: rgba(26,26,46,0.40); font-family: var(--font-body); font-weight: 500; font-size: 12px; }
.adv-stat-divider { width: 1px; height: 52px; background: rgba(26,26,46,0.10); flex-shrink: 0; }

@media (max-width: 1024px) {
  .advisory-timeline-section { padding: 64px 40px; }
  .adv-header { flex-direction: column; gap: 24px; }
  .adv-header-left { max-width: 100%; }
  .adv-header-right { max-width: 100%; padding-top: 0; }
  .adv-table-divider { margin: 0 24px; }
}
@media (max-width: 768px) {
  /* ── Advisory: hide desktop table, show mobile single-column ── */
  .advisory-timeline-section { padding: 64px 24px; }
  .adv-header { flex-direction: column; gap: 16px; padding-bottom: 32px; }
  .adv-header-left { max-width: 100%; }
  .adv-header-left .section-title { font-size: 30px; }
  .adv-header-right { max-width: 100%; padding-top: 0; }
  .adv-table { display: none; }
  .adv-mobile { display: block; padding-top: 16px; }

  .adv-mobile-heading {
    font-family: var(--font-heading); font-weight: 600; font-size: 24px;
    color: var(--color-primary-dark); padding-bottom: 16px;
    border-bottom: 1px solid rgba(26,26,46,0.10);
  }
  .adv-mobile-item {
    display: flex; flex-direction: column; gap: 6px;
    padding: 20px 0; border-bottom: 1px solid rgba(26,26,46,0.08);
  }
  .adv-mobile-month {
    text-transform: uppercase; letter-spacing: 0.1em; font-size: 11px;
    font-weight: 600; color: #D4A94C; font-family: var(--font-body);
  }
  .adv-mobile-num {
    font-family: var(--font-heading); font-weight: 300; font-size: 32px;
    line-height: 1; color: #D4A94C;
  }
  .adv-mobile-title {
    font-family: var(--font-heading); font-weight: 600; font-size: 20px;
    color: var(--color-primary-dark); line-height: 1.3;
  }
  .adv-mobile-desc {
    font-size: 13px; line-height: 1.6; color: rgba(26,26,46,0.50);
  }

  .adv-bottom-stats { gap: 24px; flex-wrap: nowrap; padding-top: 32px; justify-content: flex-start; }
  .adv-stat-value { font-size: 28px; }
  .adv-stat-divider { height: 36px; }
  .adv-stat-label { font-size: 10px; }
}

/* =============================================
   EVENTS / SEASONS (dark)
   ============================================= */
.events-section { padding: 100px 120px; background: #08142B; }
.events-grid { max-width: var(--max-width); margin: 56px auto 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.event-card { display: flex; flex-direction: column; gap: 18px; }
.event-card-image { width: 100%; height: 396px; border-radius: 4px; background-size: cover; background-position: center; position: relative; overflow: hidden; }
.event-card-tag { text-transform: uppercase; letter-spacing: 0.14em; color: var(--color-gold-muted); font-weight: 500; font-size: 11px; }
.event-card-title { font-family: var(--font-heading); font-weight: 600; font-size: 26px; line-height: 1.2; color: var(--color-white); }
.event-card-desc { font-size: 15px; line-height: 1.6; color: rgba(255,255,255,0.55); }

/* =============================================
   3-STEP PROCESS
   ============================================= */
.steps-section { padding: 100px 120px; background: #F5F2EB; }
.steps-header {
  max-width: var(--max-width); margin: 0 auto 56px;
  display: flex; flex-direction: column; align-items: center; gap: 16px; text-align: center;
}
.steps-header-title {
  font-family: var(--font-heading); font-weight: 600; font-size: 56px; line-height: 1.2;
  letter-spacing: 0.01em; max-width: 800px; text-align: center;
  background: linear-gradient(90deg, #1A1A2E 0%, rgba(26,26,46,0.65) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.steps-header-desc { font-size: 16px; line-height: 1.7; color: rgba(26,26,46,0.60); max-width: 480px; text-align: center; }
.steps-grid { max-width: var(--max-width); margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.step-card {
  flex: 1; display: flex; flex-direction: column; border-radius: 6px; overflow: hidden;
  background: #fff; border: 1px solid rgba(26,26,46,0.08); box-shadow: 0 2px 16px rgba(0,0,0,0.05);
}
.step-card-image {
  height: 293px; background-size: cover; background-position: center; flex-shrink: 0;
}
.step-card-body { padding: 28px; border-top: 3px solid #C4A035; display: flex; flex-direction: column; gap: 10px; }
.step-card-title { font-family: var(--font-heading); font-weight: 600; font-size: 26px; color: var(--color-primary-dark); }
.step-card-desc { font-size: 14px; line-height: 1.6; color: rgba(26,26,46,0.55); }

/* =============================================
   PRICING (dark)
   ============================================= */
.pricing-section { padding: 100px 120px 80px; background: #08142B; }
.pricing-header { max-width: var(--max-width); margin: 0 auto; padding-bottom: 64px; display: flex; justify-content: space-between; gap: 80px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.pricing-grid { max-width: var(--max-width); margin: 0 auto; padding-top: 56px; display: flex; }
.pricing-tier { flex: 1; padding: 56px 0; display: flex; flex-direction: column; gap: 24px; }
.pricing-tier:nth-child(2) { flex: 1.15; padding: 56px 48px; border-left: 1px solid rgba(255,255,255,0.08); border-right: 1px solid rgba(255,255,255,0.08); }
.pricing-tier:first-child { padding-right: 48px; }
.pricing-tier:last-child { padding-left: 48px; }
.pricing-tier-label { text-transform: uppercase; letter-spacing: 0.14em; font-weight: 600; font-size: 11px; color: rgba(255,255,255,0.35); }
.pricing-tier-label.recommended { color: var(--color-gold); }
.pricing-tier-name { font-family: var(--font-heading); font-weight: 600; font-size: 32px; line-height: 1.2; color: var(--color-white); }
.pricing-price { display: flex; align-items: baseline; gap: 4px; }
.pricing-from { color: rgba(255,255,255,0.35); font-family: var(--font-heading); font-size: 14px; }
.pricing-amount { font-family: var(--font-heading); font-weight: 500; font-size: 40px; line-height: 1; color: var(--color-gold); }
.pricing-period { color: rgba(255,255,255,0.30); font-size: 13px; }
.pricing-divider { width: 40px; height: 1px; background: rgba(255,255,255,0.10); }
.pricing-features { display: flex; flex-direction: column; gap: 10px; }
.pricing-feature { font-size: 14px; line-height: 1.6; color: var(--color-white-80); }
.pricing-note { max-width: var(--max-width); margin: 24px auto 0; font-size: 14px; color: rgba(255,255,255,0.45); text-align: center; }

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials-section { padding: 100px 120px; background: #F5F2EB; }
.testimonials-header { max-width: var(--max-width); margin: 0 auto 56px; display: flex; justify-content: space-between; align-items: flex-start; }
.testimonials-grid { max-width: var(--max-width); margin: 0 auto; display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 20px; }
.testimonial-card { display: flex; flex-direction: column; border-radius: 6px; overflow: hidden; background: #fff; border: 1px solid rgba(26,26,46,0.08); box-shadow: 0 2px 16px rgba(0,0,0,0.05); }

.testimonial-media { position: relative; height: 424px; overflow: hidden; cursor: pointer; background: #1A1A2E; }
.testimonial-video { width: 100%; height: 100%; object-fit: cover; display: block; }
.testimonial-poster { width: 100%; height: 100%; background-size: cover; background-position: center top; }
.testimonial-media-overlay {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.3) 100%);
  transition: opacity 0.3s;
}
.testimonial-media.is-playing .testimonial-media-overlay { opacity: 0; }

.testimonial-play-btn {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 48px; height: 48px; border-radius: 50%; border: none;
  background: rgba(255,255,255,0.9); display: flex; align-items: center; justify-content: center;
  z-index: 2; cursor: pointer; transition: transform 0.2s, opacity 0.3s;
  padding-left: 3px;
}
.testimonial-play-btn:hover { transform: translate(-50%,-50%) scale(1.08); }
.testimonial-media.is-playing .testimonial-play-btn { opacity: 0; }
.testimonial-media.is-playing:hover .testimonial-play-btn { opacity: 0.7; }
.testimonial-play-btn svg { width: 16px; height: 18px; flex-shrink: 0; }

/* Pause icon (injected by JS when playing) */
.testimonial-play-btn.is-pause svg { display: none; }
.testimonial-play-btn.is-pause::before {
  content: ''; width: 4px; height: 16px; border-radius: 1px;
  background: #1A1A2E; box-shadow: 8px 0 0 #1A1A2E;
}
.testimonial-body { padding: 28px; display: flex; flex-direction: column; gap: 16px; }
.testimonial-quote { font-size: 15px; line-height: 1.7; color: rgba(26,26,46,0.65); font-family: var(--font-ui); font-style: italic; }
.testimonial-author { font-family: var(--font-ui); font-weight: 600; font-size: 14px; color: var(--color-primary-dark); }
.testimonial-origin { font-family: var(--font-ui); font-size: 13px; color: rgba(26,26,46,0.45); }

/* =============================================
   FAQ
   ============================================= */
.faq-section { padding: 100px 120px 80px; background: #F5F2EB; }
.faq-header { max-width: var(--max-width); margin: 0 auto; padding-bottom: 56px; display: flex; justify-content: space-between; gap: 80px; }
.faq-list { max-width: var(--max-width); margin: 0 auto; }
.faq-item { display: flex; justify-content: space-between; align-items: center; padding: 28px 0; border-top: 1px solid var(--color-border-light); cursor: pointer; }
.faq-item:last-child { border-bottom: 1px solid var(--color-border-light); }
.faq-question { font-family: var(--font-heading); font-weight: 500; font-size: 24px; line-height: 1.3; color: var(--color-primary-dark); }
.faq-icon { width: 20px; height: 20px; position: relative; flex-shrink: 0; }
.faq-icon::before, .faq-icon::after { content: ''; position: absolute; background: var(--color-gold); transition: 0.3s; }
.faq-icon::before { top: 50%; left: 0; width: 20px; height: 1.5px; transform: translateY(-50%); }
.faq-icon::after { left: 50%; top: 0; width: 1.5px; height: 20px; transform: translateX(-50%); }
.faq-item.active .faq-icon::after { transform: translateX(-50%) rotate(90deg); }
.faq-answer { max-width: var(--max-width); margin: 0 auto; overflow: hidden; max-height: 0; transition: max-height 0.3s ease; }
.faq-answer-inner { padding: 0 0 28px; font-size: 16px; line-height: 1.7; color: rgba(26,26,46,0.60); }

/* =============================================
   ENROLLMENT CTA (dark)
   ============================================= */
.enrollment-section {
  display: flex; overflow: hidden; min-height: 560px; position: relative;
  background: linear-gradient(270deg, #1A2744 39%, #2B4670 100%);
}
.enrollment-content { flex: 1; padding: 80px 120px; display: flex; flex-direction: column; justify-content: center; gap: 32px; position: relative; z-index: 2; }
.enrollment-image { width: 561px; flex-shrink: 0; background-size: cover; background-position: center; }

/* =============================================
   FOOTER
   ============================================= */
.site-footer { background: #08142B; padding: 64px 120px 32px; }
.footer-main { display: flex; justify-content: space-between; align-items: flex-start; padding-bottom: 48px; }
.footer-brand { max-width: 320px; display: flex; flex-direction: column; gap: 16px; }
.footer-logo { font-family: var(--font-heading); font-weight: 600; font-size: 22px; color: var(--color-gold-light); letter-spacing: 0.01em; }
.footer-tagline { font-size: 13px; line-height: 1.7; color: rgba(232,228,220,0.68); }
.footer-nav { display: flex; gap: 64px; }
.footer-nav-col { display: flex; flex-direction: column; gap: 14px; }
.footer-nav-title { text-transform: uppercase; letter-spacing: 0.1em; color: rgba(212,169,76,0.60); font-weight: 600; font-size: 10px; }
.footer-nav-link { color: rgba(255,255,255,0.50); font-size: 13px; transition: color 0.2s; }
.footer-nav-link:hover { color: var(--color-white); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-copyright { font-size: 12px; letter-spacing: 0.02em; color: rgba(255,255,255,0.25); font-family: var(--font-body); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 12px; color: rgba(255,255,255,0.25); transition: color 0.2s; }
.footer-legal a:hover { color: rgba(255,255,255,0.5); }
.footer-social { display: flex; align-items: center; gap: 16px; }
.footer-social a { color: rgba(255,255,255,0.25); transition: color 0.2s; display: flex; }
.footer-social a:hover { color: rgba(255,255,255,0.5); }
.footer-social svg { width: 18px; height: 18px; }

/* =============================================
   INNER PAGE HERO (for-children, for-parents)
   ============================================= */
.page-hero {
  position: relative; min-height: 780px; display: flex; flex-direction: column;
  overflow: hidden; background-color: var(--color-primary-dark);
}
.page-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; z-index: 0; }
.page-hero-overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(26,26,46,0.4) 0%, rgba(26,26,46,0.8) 100%); }
.page-hero-content { position: relative; z-index: 2; padding: 160px 120px 60px; max-width: 800px; display: flex; flex-direction: column; gap: 28px; }
.page-hero-tag { font-size: 14px; color: var(--color-gold); letter-spacing: 0.06em; }
.page-hero-title { font-family: var(--font-heading); font-weight: 600; font-size: 64px; line-height: 1.15; color: var(--color-white); }
.page-hero-desc { font-size: 17px; line-height: 1.7; color: rgba(255,255,255,0.55); max-width: 560px; }

/* Page hero stats bar */
.page-hero-stats {
  position: relative; z-index: 2; display: flex; padding: 0 120px 40px; gap: 0;
}
.page-hero-stat { display: flex; flex-direction: column; gap: 4px; padding: 0 40px; border-right: 1px solid rgba(255,255,255,0.10); }
.page-hero-stat:first-child { padding-left: 0; }
.page-hero-stat:last-child { border-right: none; }
.page-hero-stat-number { font-family: var(--font-heading); font-weight: 500; font-size: 28px; color: var(--color-gold); line-height: 1; }
.page-hero-stat-label { text-transform: uppercase; letter-spacing: 0.12em; font-weight: 500; font-size: 10px; color: rgba(255,255,255,0.35); }
.page-hero-buttons { display: flex; flex-direction: column; gap: 12px; }
.page-hero-buttons .btn-gold { padding: 18px 40px; }
.page-hero-btn-secondary { display: none; }
@media (max-width: 768px) {
  .page-hero-btn-secondary {
    display: flex !important; width: 100%; justify-content: center;
    padding: 12px 24px; font-size: 13px; font-weight: 600;
    outline: 1px solid rgba(255,255,255,0.12); border: none;
    color: rgba(255,255,255,0.6);
  }
}

/* =============================================
   "THIS IS NOT ANOTHER" SECTION
   ============================================= */
.not-another-section { padding: 80px 120px; background: #F5F2EB; }
.not-another-header { max-width: var(--max-width); margin: 0 auto 60px; display: flex; justify-content: space-between; align-items: flex-start; }
.not-another-grid { max-width: var(--max-width); margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.not-another-card { display: flex; flex-direction: column; gap: 12px; }
.not-another-icon { width: 56px; height: 56px; margin-bottom: 8px; }
.not-another-card-title { font-family: var(--font-heading); font-weight: 600; font-size: 22px; color: var(--color-primary-dark); }
.not-another-card-desc { font-size: 14px; line-height: 1.6; color: rgba(26,26,46,0.55); }

/* =============================================
   TRACKS SECTION
   ============================================= */
.tracks-section { padding: 80px 0 100px 120px; background: #F5F2EB; overflow: hidden; }
.tracks-inner { display: flex; gap: 64px; }

/* =============================================
   APPLY / ENROLLMENT DARK CTA
   ============================================= */
.apply-section {
  position: relative; overflow: hidden; min-height: 629px;
  display: flex; align-items: center; background: var(--color-primary-dark);
}
.apply-bg { position: absolute; inset: 0; background-size: cover; background-position: center; z-index: 0; }
.apply-overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, rgba(26,26,46,0.92) 0%, rgba(26,26,46,0.5) 100%); }
.apply-content { position: relative; z-index: 2; padding: 80px 120px; max-width: 720px; display: flex; flex-direction: column; gap: 24px; }

/* =============================================
   ADVISORY BOARD (for-parents)
   ============================================= */
.advisory-section { padding: 80px 120px; background: #F5F2EB; }
.advisory-header { max-width: var(--max-width); margin: 0 auto 48px; display: flex; justify-content: space-between; }
.advisory-grid { max-width: var(--max-width); margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.advisory-card { display: flex; flex-direction: column; gap: 12px; padding: 24px; border: 1px solid var(--color-border-light); border-radius: 4px; }
.advisory-card-title { font-family: var(--font-heading); font-weight: 600; font-size: 22px; color: var(--color-primary-dark); }
.advisory-card-desc { font-size: 14px; line-height: 1.6; color: rgba(26,26,46,0.55); }

/* =============================================
   MASTERMIND CTA (dark with image)
   ============================================= */
.mastermind-section { position: relative; overflow: hidden; background: var(--color-primary-dark); min-height: 566px; display: flex; align-items: center; }

/* =============================================
   QUARTERLY OUTCOMES
   ============================================= */
.quarterly-section { padding: 80px 120px; background: #F5F2EB; }
.quarterly-grid { max-width: var(--max-width); margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.quarterly-card { display: flex; flex-direction: column; border-radius: 6px; overflow: hidden; }
.quarterly-card-image { height: 240px; background-size: cover; background-position: center; }
.quarterly-card-body { padding: 20px; display: flex; flex-direction: column; gap: 8px; }

/* =============================================
   PILLARS (for-parents)
   ============================================= */
.pillars-section { padding: 80px 120px; background: #F5F2EB; }
.pillars-header { max-width: var(--max-width); margin: 0 auto 48px; }
.pillars-grid { max-width: var(--max-width); margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.pillar-card { padding: 24px; border: 1px solid var(--color-border-light); border-radius: 4px; display: flex; flex-direction: column; gap: 8px; }
.pillar-num { font-family: var(--font-heading); font-weight: 600; font-size: 20px; color: var(--color-gold); }
.pillar-title { font-family: var(--font-heading); font-weight: 600; font-size: 20px; color: var(--color-primary-dark); }
.pillar-desc { font-size: 14px; line-height: 1.6; color: rgba(26,26,46,0.55); }

/* =============================================
   RESPONSIVE — Tablet (1024px)
   ============================================= */
@media (max-width: 1024px) {
  .section, .why-section, .programs-section, .events-section,
  .steps-section, .pricing-section, .testimonials-section, .faq-section,
  .not-another-section, .tracks-section, .advisory-section, .pillars-section,
  .quarterly-section { padding: 64px 40px; }
  .circle-section { padding: 0; }
  .circle-header { padding: 64px 40px 0; }
  .circle-columns { padding: 40px; }
  .cta-banner-section { padding: 20px 40px; }
  .site-header { padding: 20px 24px; }
  .hero-title { font-size: 52px; }
  .section-title, .steps-header-title { font-size: 40px; }
  .section-title-light { font-size: 40px; }
  .why-card { flex-direction: column !important; }
  .why-card-image { width: 100%; min-height: 200px; }
  .why-card-content { width: 100%; padding: 24px; }
  .why-card-community .why-card-top { flex-direction: column; }
  .circle-columns { flex-direction: column; gap: 24px; }
  .circle-col:last-child { border-left: none; }
  .programs-section { padding: 64px 40px; }
  .programs-section .section-inner { flex-direction: column; gap: 40px; }
  .programs-left { width: 100%; }
  .programs-swiper-wrap::after { width: 80px; background: linear-gradient(90deg, rgba(245,242,235,0) 0%, #F5F2EB 100%); }
  .programs-swiper .swiper-scrollbar { width: 100%; }
  .events-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: 1fr; }
  .pricing-grid { flex-direction: column; }
  .pricing-tier, .pricing-tier:nth-child(2), .pricing-tier:first-child, .pricing-tier:last-child {
    padding: 40px 0; border-left: none; border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .testimonials-grid { grid-template-columns: 1fr; }
  .not-another-grid { grid-template-columns: repeat(2, 1fr); }
  .enrollment-section { flex-direction: column; }
  .enrollment-content { padding: 64px 40px; }
  .enrollment-image { width: 100%; height: 300px; }
  .cta-banner { flex-direction: column; height: auto; }
  .cta-banner-image { width: 100%; height: 300px; }
  .cta-banner-section::before, .cta-banner-section::after { left: 0; right: 0; }
  .page-hero-content { padding: 140px 40px 40px; }
  .page-hero-stats { padding: 0 40px 32px; flex-wrap: wrap; gap: 20px; }
  .quarterly-grid { grid-template-columns: repeat(2, 1fr); }
  .advisory-grid { grid-template-columns: repeat(2, 1fr); }
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-main { flex-direction: column; gap: 40px; }
  .footer-nav { flex-wrap: wrap; gap: 32px; }
  .site-footer { padding: 48px 40px 32px; }
}

/* =============================================
   RESPONSIVE — Mobile (390px target, max-width 768px)
   Values extracted directly from mobile artboards
   ============================================= */
@media (max-width: 768px) {
  /* ── Header mobile ── */
  .site-header { padding: 20px 24px; }
  .site-header .logo-icon { width: 20px; height: 19px; }
  .site-header .logo-text { font-size: 16px; }
  .site-header nav { display: none; }
  .site-header nav.active {
    display: flex; flex-direction: column; position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: #0A0E1A; padding: 100px 24px; gap: 28px; z-index: 10000;
    overflow: hidden;
  }
  .site-header nav.active::before {
    content: ''; position: absolute; inset: 0; pointer-events: none;
    background:
      radial-gradient(1px 1px at 12% 18%, rgba(255,255,255,0.5) 50%, transparent 100%),
      radial-gradient(1.5px 1.5px at 85% 12%, rgba(255,255,255,0.4) 50%, transparent 100%),
      radial-gradient(1px 1px at 7% 55%, rgba(255,255,255,0.45) 50%, transparent 100%),
      radial-gradient(1.5px 1.5px at 78% 42%, rgba(255,255,255,0.35) 50%, transparent 100%),
      radial-gradient(1px 1px at 45% 8%, rgba(255,255,255,0.3) 50%, transparent 100%),
      radial-gradient(1px 1px at 62% 32%, rgba(255,255,255,0.4) 50%, transparent 100%),
      radial-gradient(1.5px 1.5px at 28% 72%, rgba(255,255,255,0.35) 50%, transparent 100%),
      radial-gradient(1px 1px at 92% 65%, rgba(255,255,255,0.3) 50%, transparent 100%),
      radial-gradient(2px 2px at 55% 85%, #D4AF37 30%, transparent 100%),
      radial-gradient(1.5px 1.5px at 18% 90%, rgba(59,110,165,0.7) 40%, transparent 100%);
  }
  .site-header nav.active a { font-size: 20px; color: #fff; letter-spacing: 0.02em; }
  .site-header nav.active .nav-cta {
    margin-top: 16px; padding: 14px 28px; text-align: center;
    border: 1px solid rgba(212,175,55,0.3); border-radius: 4px;
    color: var(--color-gold); font-size: 16px;
  }
  .menu-toggle { display: flex; }
  .menu-toggle span { background: var(--color-gold-light); }

  /* ── Hero (from I7G-0) ── */
  .hero { min-height: 720px; height: auto; padding: 0; flex-direction: column; }
  .hero-spacer { height: 60px; }
  .hero-badge-icon { width: 86px; height: 85px; }
  .hero-subtitle { font-size: 10px; letter-spacing: 0.22em; max-width: 181px; text-align: center; }
  .hero-title { font-size: 44px; line-height: 1.08; }
  .hero-desc { font-size: 14px; max-width: 320px; }
  .hero-buttons { flex-direction: column; align-items: center; gap: 12px; margin-top: 8px; }
  .hero-buttons .btn-gold { padding: 12px 28px; font-size: 13px; width: 100%; }
  .hero-buttons .btn-outline {
    background: none; border: none; padding: 0;
    color: rgba(255,255,255,0.6); font-size: 13px; font-weight: 500;
    text-decoration: underline; text-underline-offset: 4px;
    font-family: var(--font-body);
  }
  .hero-or { display: none; }
  .hero-content { padding: 40px 24px 60px; gap: 20px; padding-bottom: 60px; }
  .hero-stats { flex-direction: row; gap: 32px; padding: 0 24px 40px; }
  .hero-stats-divider { display: none; }
  .hero-stat-number { font-size: 28px; font-weight: 600; }
  .hero-stat-label { font-size: 9px; letter-spacing: 0.1em; }

  /* ── All sections (from design: py-64 px-24) ── */
  .section, .why-section, .programs-section, .events-section,
  .steps-section, .pricing-section, .testimonials-section, .faq-section,
  .not-another-section, .tracks-section, .advisory-section, .pillars-section,
  .quarterly-section { padding: 64px 24px; }
  .circle-section { padding: 0; }
  .circle-header { padding: 64px 24px 0; }
  .circle-columns { padding: 40px 24px; }
  .cta-banner-section { padding: 16px 24px; }

  /* ── Section titles (from design: 32px) ── */
  .section-title, .steps-header-title, .section-title-light { font-size: 32px; line-height: 1.1; }
  .section-desc, .section-desc-light { font-size: 14px; }
  .label-upper { font-size: 11px; }
  .section-header, .not-another-header, .testimonials-header,
  .pricing-header, .faq-header, .advisory-header { flex-direction: column; gap: 16px; }

  /* ── Why cards (from I87-0: stacked, image 200px, title 24px) ── */
  .why-section { gap: 40px; }
  .why-card { flex-direction: column !important; box-shadow: 4px 8px 20px rgba(0,0,0,0.10); }
  .why-card-image { width: 100%; min-height: 200px; height: 200px; }
  .why-card-content { width: 100%; padding: 24px; gap: 12px; }
  .why-card-title { font-size: 24px; line-height: 1.15; }
  .why-card-desc { font-size: 13px; line-height: 1.65; }
  .why-card-link { font-size: 13px; text-decoration: underline; text-underline-offset: 4px; }
  .why-card-link-line { display: none; }
  .why-card-community { padding: 0; }
  .why-card-community .why-card-top { flex-direction: column; gap: 0; }
  .why-card-community .why-card-top-image { min-height: 200px; border-radius: 6px; }
  .why-card-community .why-card-top-content { padding: 24px; }
  .why-card-community .why-card-top-content .why-card-title { font-size: 24px; }
  /* Stats: hide desktop row, show mobile 2x2 grid inside card */
  .why-card-community { padding: 0 0 12px; gap: 0; }
  .stats-desktop { display: none !important; }
  .stats-mobile {
    display: grid !important; grid-template-columns: 1fr 1fr; gap: 7px; padding: 12px;
  }
  .stat-box-m {
    display: flex; flex-direction: column; gap: 4px; padding: 16px;
    border-radius: 6px; background: #fff; border: 1px solid rgba(26,26,46,0.08);
    min-height: 90px; justify-content: space-between;
  }
  .stat-box-m-value { font-family: var(--font-ui); font-weight: 700; font-size: 28px; line-height: 1.2; color: var(--color-primary-dark); }
  .stat-box-m-value.stat-box-value-gold {
    background: linear-gradient(90deg, #E2B830 0%, #C49A28 60%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  }
  .stat-box-m-label { font-size: 11px; text-transform: uppercase; color: rgba(26,26,46,0.40); font-family: var(--font-body); font-weight: 500; }

  /* ── Circle (from I9G-0: stacked cards with borders + gold divider) ── */
  .circle-section { background: #08142B; }
  .circle-header { text-align: left; align-items: flex-start; padding-top: 0; }
  .circle-header .section-title-light { text-align: left; font-size: 32px; }
  .circle-header .section-desc-light { text-align: left; }
  .circle-header::after { content: ''; display: block; width: 40px; height: 1px; background: rgba(255,255,255,0.15); margin-top: 8px; }
  .circle-columns { flex-direction: column; gap: 0; }
  .circle-col { padding: 24px; border-radius: 6px; border: 1px solid rgba(255,255,255,0.08); }
  .circle-col:last-child {
    border: 1px solid rgba(212,169,76,0.2);
    background: rgba(212,169,76,0.04);
  }
  .circle-col::before { display: none; }
  .circle-col-title { font-size: 14px; }
  /* Gold divider between the two cards */
  .circle-columns::after {
    content: ''; display: block; order: 1; width: 100%; height: 2px; border-radius: 1px;
    background: linear-gradient(90deg, transparent 0%, #B8922E 30%, #B8922E 70%, transparent 100%);
    margin: 22px 0;
  }
  .circle-col:last-child { order: 2; }

  /* ── Programs: stacked cards (from IAG-0) ── */
  .programs-section { padding: 64px 24px; overflow: visible; }
  .programs-section .section-inner { flex-direction: column; gap: 24px; }
  .programs-left { width: 100%; display: contents; }
  .programs-left > div:first-child { order: 1; }
  .programs-left > p { order: 2; font-size: 14px; }
  .programs-left .btn-gold { order: 4; width: 100%; margin-top: 8px; }
  .programs-swiper-wrap { overflow: visible; order: 3; }
  .programs-swiper-wrap::after { display: none; }
  .programs-swiper { overflow: visible !important; }
  .programs-swiper .swiper-wrapper {
    flex-direction: column !important; gap: 32px;
    transform: none !important; transition: none !important;
  }
  .programs-swiper .swiper-slide { width: 100% !important; margin: 0 !important; }
  .programs-swiper .swiper-scrollbar { display: none; }
  .program-card { padding: 0; flex-direction: column; }
  .program-card-image { width: 100%; height: 220px; border-radius: 6px; }
  .program-card-tag { margin-top: 12px; }
  .program-card-title { font-size: 24px; }
  .program-card-desc { font-size: 13px; }
  .programs-left .section-title { font-size: 32px; }
  .programs-left .section-desc { font-size: 14px; }
  .programs-left .btn-gold { width: 100%; justify-content: center; padding: 12px 28px; font-size: 13px; }
  .programs-swiper .swiper-slide { width: 220px; }
  .program-card-image { height: 220px; }
  .program-card-title { font-size: 22px; }
  .program-card-desc { font-size: 13px; }

  /* ── CTA Banner (image on TOP, content below — from K2H-0) ── */
  .cta-banner { flex-direction: column-reverse; height: auto; }
  .cta-banner-image { width: 100%; height: 240px; border-radius: 6px 6px 0 0; }
  .cta-banner-content { padding: 40px 24px; }
  .cta-banner-title { font-size: 28px; font-weight: 600; }
  .cta-banner-desc { font-size: 13px; }
  .cta-banner-section { padding: 0 24px 24px; }
  .cta-banner-section::before, .cta-banner-section::after { left: 0; right: 0; }

  /* ── Events (from ICB-0: dark bg, stacked cards) ── */
  .events-section { padding: 64px 24px; background: #08142B; }
  .events-grid { grid-template-columns: 1fr; gap: 32px; margin-top: 32px; }
  .event-card-image { height: 220px; border-radius: 6px; }
  .event-card-title { font-size: 22px; }
  .event-card-desc { font-size: 13px; }

  /* ── Steps ── */
  /* ── Steps: numbered list, no images (from ID5-0) ── */
  .steps-section { padding: 64px 24px; }
  .steps-header { margin-bottom: 40px; }
  .steps-header-title { font-size: 32px; text-align: left; -webkit-text-fill-color: var(--color-primary-dark); }
  .steps-header-desc { font-size: 14px; text-align: left; }
  .steps-grid { grid-template-columns: 1fr; gap: 0; }
  .step-card { border: none; box-shadow: none; background: transparent; border-radius: 0; }
  .step-card-image { display: none; }
  .step-card-body {
    border-top: 1px solid rgba(26,26,46,0.10); border-left: none; padding: 32px 0;
  }
  .step-card-body::before {
    font-family: var(--font-heading); font-weight: 300; font-size: 36px; color: #D4A94C;
    display: block; margin-bottom: 16px;
  }
  .step-card:nth-child(1) .step-card-body::before { content: '01'; }
  .step-card:nth-child(2) .step-card-body::before { content: '02'; }
  .step-card:nth-child(3) .step-card-body::before { content: '03'; }
  .step-card-title { font-size: 22px; }
  .step-card-desc { font-size: 14px; }

  /* ── Pricing (from IDM-0: stacked cards with borders) ── */
  .pricing-section { padding: 64px 24px; }
  .pricing-header { padding-bottom: 32px; border-bottom: none; gap: 16px; flex-direction: column; }
  .pricing-header h2 { font-size: 30px !important; }
  .pricing-header > div:last-child { max-width: 100% !important; padding-top: 0 !important; }
  .pricing-grid { flex-direction: column; gap: 24px; padding-top: 0; }
  .pricing-tier, .pricing-tier:first-child, .pricing-tier:last-child {
    padding: 24px; border: 1px solid rgba(255,255,255,0.08); border-radius: 6px;
  }
  .pricing-tier:nth-child(2) {
    padding: 24px; border: 1px solid rgba(212,169,76,0.30); border-radius: 6px;
    background: rgba(212,169,76,0.04);
  }
  .pricing-tier-label { font-size: 10px; letter-spacing: 0.12em; }
  .pricing-tier-name { font-size: 28px; }
  .pricing-amount { font-size: 32px; font-weight: 600; color: #fff; }
  .pricing-divider { width: 30px; }
  .pricing-feature { font-size: 13px; color: rgba(255,255,255,0.60); }
  .pricing-tier .link-underline { display: none; }
  .pricing-tier .btn-gold, .pricing-tier .btn-gold-outline {
    padding: 12px 28px; font-size: 13px; font-weight: 600; width: 100%; justify-content: center;
  }
  .pricing-note { font-size: 12px; padding-top: 16px; }

  /* ── Testimonials (from KBI-0) ── */
  .testimonials-section { padding: 64px 24px; }
  .testimonials-header h2 { font-size: 32px !important; -webkit-text-fill-color: var(--color-primary-dark); }
  .testimonials-header p { padding-top: 0 !important; }
  .testimonials-grid { grid-template-columns: 1fr; gap: 24px; }
  .testimonial-media { height: 320px; }
  .testimonial-quote { font-size: 14px; }
  .testimonial-body { padding: 20px; }

  /* ── FAQ (from IGD-0) ── */
  .faq-section { padding: 64px 24px 48px; }
  .faq-header { padding-bottom: 32px; gap: 16px; flex-direction: column; }
  .faq-header > div:first-child h2 { font-size: 32px !important; }
  .faq-header > div:last-child { max-width: 100%; padding-top: 0; }
  .faq-question { font-size: 18px; }
  .faq-answer-inner { font-size: 14px; }

  /* ── Enrollment CTA (from KFE-0: image on TOP, 2 buttons) ── */
  .enrollment-section { flex-direction: column-reverse; min-height: auto; }
  .enrollment-content { padding: 40px 24px; gap: 24px; }
  .enrollment-content h2 { font-size: 28px !important; }
  .enrollment-content p { font-size: 14px !important; }
  .enrollment-content > div:last-of-type {
    flex-direction: column; gap: 12px; margin-top: 0;
  }
  .enrollment-content > div:last-of-type a {
    width: 100%; text-align: center; padding: 12px 28px; font-size: 13px;
    text-decoration: none; border-radius: 4px; display: block;
  }
  .enrollment-content > div:last-of-type a:first-child {
    background: linear-gradient(180deg, #CBA63A 0%, #B8922E 100%);
    color: #fff; font-weight: 600;
  }
  .enrollment-content > div:last-of-type a:nth-child(3) {
    border: 1px solid rgba(255,255,255,0.12); color: #fff; font-weight: 600;
  }
  .enrollment-content > div:last-of-type span { display: none; }
  .enrollment-image { width: 100%; height: 260px; }

  /* ── Page hero (inner pages — from II8-0, JKC-0: min-h 780, title 38px) ── */
  .page-hero { min-height: 780px; }
  .page-hero-title { font-size: 38px; line-height: 1.08; }
  .page-hero-tag { font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; }
  .page-hero-desc { font-size: 14px; line-height: 1.7; }
  .page-hero-content { padding: 0 24px; justify-content: center; flex: 1; gap: 20px; padding-top: 80px; }
  .page-hero-content .btn-gold {
    width: 100%; justify-content: center;
    padding: 12px 24px; font-size: 13px; font-weight: 600;
    background: linear-gradient(180deg, #CBA63A 0%, #B8922E 100%);
    border: 1px solid rgba(255,232,179,0.18); box-shadow: 0 0 14px rgba(212,175,55,0.15);
  }
  .page-hero-content .btn-gold svg { display: none; }
  .page-hero-content .btn-gold::after { content: ' →'; }
  /* Add secondary button on mobile */
  .page-hero-buttons-mobile { display: none; }

  /* Stats bar: horizontal, border-top, evenly divided (from design) */
  .page-hero-stats {
    display: flex; flex-wrap: nowrap; padding: 0;
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .page-hero-stat {
    flex: 1; display: flex; flex-direction: column; align-items: center;
    justify-content: center; gap: 4px; padding: 24px 9px;
    border-right: 1px solid rgba(255,255,255,0.08);
  }
  .page-hero-stat:last-child { border-right: none; }
  .page-hero-stat-number { font-size: 28px; font-weight: 500; }
  .page-hero-stat-label { font-size: 9px; letter-spacing: 0.12em; text-align: center; }

  /* ── Not another / "This is not" (from IJ2-0: stacked, border-bottom dividers) ── */
  .not-another-section { background: #F5F2EB; }
  .not-another-header { flex-direction: column; gap: 16px; }
  .not-another-header .section-title { font-size: 30px; line-height: 1.12; }
  .not-another-grid {
    grid-template-columns: 1fr; gap: 0;
  }
  .not-another-card {
    padding-bottom: 24px; margin-bottom: 0;
    border-bottom: 1px solid rgba(26,26,46,0.10);
    padding-top: 24px;
  }
  .not-another-card:last-child { border-bottom: none; padding-bottom: 0; }
  .not-another-card > div:first-child { font-size: 36px; font-weight: 300; }
  .not-another-card-title { font-size: 20px; line-height: 1.2; }
  .not-another-card-desc { font-size: 13px; line-height: 1.6; color: rgba(26,26,46,0.50); }

  /* ── Pillars (stacked, from IQ0-0) ── */
  .pillars-grid { grid-template-columns: 1fr; gap: 16px; }
  .pillar-card { padding: 20px; }
  .pillar-num { font-size: 18px; }
  .pillar-title { font-size: 18px; }
  .pillar-desc { font-size: 13px; }

  /* ── Advisory (stacked) ── */
  .advisory-grid { grid-template-columns: 1fr; gap: 16px; }
  .advisory-card { padding: 20px; }
  .advisory-card-title { font-size: 18px; }
  .advisory-card-desc { font-size: 13px; }

  /* ── Quarterly outcomes (2 columns from ISO-0) ── */
  .quarterly-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .quarterly-card-image { height: 160px; }
  .quarterly-card-body h3 { font-size: 16px !important; }
  .quarterly-card-body p { font-size: 12px !important; }

  /* ── Apply/enrollment CTA (from IKE-0, ILH-0: full-width stacked) ── */
  .apply-section { min-height: auto; }
  .apply-content { padding: 64px 24px; }
  .apply-content h2 { font-size: 30px !important; line-height: 1.1 !important; }
  .apply-content p { font-size: 14px !important; }
  .apply-content > div { flex-direction: column; gap: 12px; }
  .apply-content .btn-gold, .apply-content .btn-outline {
    width: 100%; justify-content: center;
    padding: 12px 24px; font-size: 13px; font-weight: 600;
  }
  .apply-content .btn-gold { background: linear-gradient(180deg, #CBA63A 0%, #B8922E 100%); }

  /* ── Mastermind CTA (from JOS-0: full width, stacked) ── */
  .mastermind-section { min-height: auto; flex-direction: column; }
  .mastermind-section .apply-content { padding: 64px 24px; }
  .mastermind-section .apply-content h2 { font-size: 30px !important; }
  .mastermind-section .apply-content ul { gap: 10px; }
  .mastermind-section .apply-content .btn-gold { width: 100%; }

  /* ── Tracks (from JD3-0: stacked, scroll cards) ── */
  .tracks-section { padding: 64px 24px; background: #F5F2EB; }
  .tracks-inner { flex-direction: column; gap: 32px; }
  .tracks-inner .programs-left .section-title { font-size: 28px; }
  .tracks-inner .programs-left .section-desc { font-size: 13px; }
  .tracks-inner .programs-left .btn-gold {
    width: 100%; padding: 12px 24px; font-size: 13px;
    background: linear-gradient(180deg, #CBA63A 0%, #B8922E 100%); box-shadow: 0 0 14px rgba(212,175,55,0.15);
  }
  .tracks-inner .programs-swiper .swiper-slide { width: 200px; }
  .tracks-inner .program-card-image { height: 180px; }
  .tracks-inner .program-card-title { font-size: 20px; }
  .tracks-inner .program-card-desc { font-size: 12px; }

  /* ── Events inner pages (from IKN-0) ── */
  .page-children .events-section,
  .page-parents .events-section { background: #F5F2EB; }
  .page-children .events-section .section-title-light,
  .page-parents .events-section .section-title-light { color: var(--color-primary-dark); -webkit-text-fill-color: var(--color-primary-dark); }
  .page-children .events-section .section-desc-light,
  .page-parents .events-section .section-desc-light { color: rgba(26,26,46,0.55); }
  .page-children .events-section .event-card-title,
  .page-parents .events-section .event-card-title { color: var(--color-primary-dark); }
  .page-children .events-section .event-card-desc,
  .page-parents .events-section .event-card-desc { color: rgba(26,26,46,0.55); }
  .page-children .events-section .event-card-tag,
  .page-parents .events-section .event-card-tag { color: var(--color-gold-muted); }

  /* ── Footer (from KEL-0: brand top, 3-col nav, legal bottom) ── */
  .site-footer { padding: 48px 24px 32px; }
  .footer-main { flex-direction: column; gap: 32px; }
  .footer-brand { max-width: 100%; }
  .footer-logo { font-size: 20px; letter-spacing: 0.12em; }
  .footer-tagline { font-size: 13px; line-height: 1.7; }
  .footer-nav { flex-direction: row; gap: 0; }
  .footer-nav-col { flex: 1; padding-right: 12px; }
  .footer-nav-title { font-size: 9px; letter-spacing: 0.1em; }
  .footer-nav-link { font-size: 13px; }
  .footer-bottom { flex-direction: column-reverse; gap: 16px; text-align: center; padding-top: 32px; }
  .footer-copyright { font-size: 11px; order: -1; }
  .footer-legal { justify-content: center; flex-wrap: wrap; gap: 16px; }
  .footer-legal a { font-size: 12px; }
  .footer-social { display: none; }

  /* ── Star field: keep but reduce ── */
  .star-field .dot:nth-child(n+8) { display: none; }
}

/* =============================================
   DECORATIVE: Star dots & gradient dividers
   ============================================= */
.star-field { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 1; }
.star-field .dot {
  position: absolute; border-radius: 50%;
}
.star-field .dot-white { background: rgba(255,255,255,0.55); }
.star-field .dot-gold  { background: #D4AF37; box-shadow: 0 0 6px 2px rgba(212,175,55,0.4), 0 0 20px 4px rgba(212,175,55,0.15); }
.star-field .dot-blue  { background: rgba(59,110,165,0.8); box-shadow: 0 0 6px 2px rgba(59,110,165,0.3), 0 0 16px 4px rgba(59,110,165,0.1); }
.star-field .dot-glow  { background: rgba(255,255,255,0.6); box-shadow: 0 0 8px 3px rgba(255,255,255,0.2), 0 0 24px 6px rgba(255,255,255,0.08); }

@keyframes twinkle {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}
.star-field .dot { animation: twinkle 4s ease-in-out infinite; }
.star-field .dot:nth-child(2n) { animation-delay: 1s; }
.star-field .dot:nth-child(3n) { animation-delay: 2s; }
.star-field .dot:nth-child(5n) { animation-delay: 0.5s; }
.star-field .dot:nth-child(7n) { animation-delay: 3s; }

/* Gradient section dividers */
.section-divider {
  height: 1px; width: 100%; position: relative;
  background: linear-gradient(90deg,
    rgba(26,26,46,0) 5%,
    rgba(26,26,46,0.08) 25%,
    rgba(26,26,46,0.15) 50%,
    rgba(26,26,46,0.08) 75%,
    rgba(26,26,46,0) 95%
  );
}
.section-divider-light {
  height: 1px; width: 100%; position: relative;
  background: linear-gradient(90deg,
    rgba(255,255,255,0) 5%,
    rgba(255,255,255,0.08) 25%,
    rgba(255,255,255,0.15) 50%,
    rgba(255,255,255,0.08) 75%,
    rgba(255,255,255,0) 95%
  );
}
.section-divider-gold {
  height: 2px; width: 60px; border-radius: 1px;
  background: linear-gradient(90deg, transparent 0%, #B8922E 50%, transparent 100%);
  margin: 0 auto;
}

/* Top borders on why-cards */
.why-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; z-index: 2;
  background: linear-gradient(90deg,
    rgba(26,26,46,0) 5%,
    rgba(26,26,46,0.08) 25%,
    rgba(26,26,46,0.15) 50%,
    rgba(26,26,46,0.08) 75%,
    rgba(26,26,46,0) 95%
  );
}

/* Circle column top decorative borders */
.circle-col { position: relative; flex: 1; display: flex; flex-direction: column; gap: 28px; padding: 36px; }
.circle-col:first-child::before {
  content: ''; position: absolute; top: 0; left: 25px; right: 25px; height: 1px;
  background: linear-gradient(90deg,
    transparent 10%, rgba(255,255,255,0.12) 30%,
    rgba(255,255,255,0.20) 50%, rgba(255,255,255,0.12) 70%, transparent 90%
  );
}
.circle-col:last-child::before {
  content: ''; position: absolute; top: 0; left: 25px; right: 25px; height: 2px; border-radius: 1px;
  background: linear-gradient(90deg, transparent 0%, #B8922E 30%, #B8922E 70%, transparent 100%);
}

/* =============================================
   GRADIENT TEXT — proper fallbacks
   ============================================= */
.section-title-gradient,
.why-card-title {
  background: linear-gradient(90deg, #1A1A2E 0%, rgba(26,26,46,0.65) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
@supports (color: oklch(0% 0 0)) {
  .section-title-gradient,
  .why-card-title {
    background: linear-gradient(90deg, oklch(22.8% 0.038 275) 0%, oklch(22.8% 0.038 275 / 0.65) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
}
.section-title-white-gradient {
  background: linear-gradient(90deg, #fff 0%, rgba(255,255,255,0.45) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.stat-box-value-gold {
  background: linear-gradient(90deg, #E2B830 0%, #C49A28 60%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

/* =============================================
   SWIPER SCROLLBAR (built-in, styled)
   ============================================= */
.programs-swiper .swiper-scrollbar {
  position: relative; margin-top: 28px; left: 0;
  width: calc(100% - 120px); max-width: 595px;
  height: 4px; border-radius: 4px;
  background: rgba(179,179,179,0.10);
}
.programs-swiper .swiper-scrollbar-drag {
  background: rgba(26,26,46,0.15); border-radius: 4px; cursor: grab;
}
.programs-swiper .swiper-scrollbar-drag:active { cursor: grabbing; }

/* Step cards use ACF images — no SVG visuals needed */

/* =============================================
   HERO GLOW EFFECTS
   ============================================= */
.hero-glow {
  position: absolute; width: 600px; height: 300px;
  bottom: 0; left: 50%; transform: translateX(-50%);
  background: radial-gradient(ellipse at 50% 100%, rgba(212,175,55,0.08) 0%, transparent 70%);
  z-index: 1; pointer-events: none;
}

/* Dark section subtle radial glows */
.circle-section::before {
  content: ''; position: absolute; top: -200px; left: 50%; transform: translateX(-50%);
  width: 800px; height: 400px;
  background: radial-gradient(ellipse, rgba(59,110,165,0.08) 0%, transparent 70%);
  pointer-events: none; z-index: 0;
}
.events-section::before {
  content: ''; position: absolute; top: 0; right: 0;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(212,175,55,0.04) 0%, transparent 60%);
  pointer-events: none; z-index: 0;
}
.pricing-section::before {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(59,110,165,0.06) 0%, transparent 70%);
  pointer-events: none; z-index: 0;
}
.events-section, .pricing-section { position: relative; overflow: hidden; }

/* =============================================
   APPLICATION POPUP FORM
   ============================================= */
.modal-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(10,10,20,0.75); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: opacity 0.35s, visibility 0.35s;
}
.modal-overlay.active { opacity: 1; visibility: visible; }

.modal {
  position: relative; width: 100%; max-width: 580px; max-height: 92vh;
  overflow-y: auto; border-radius: 8px;
  background: #FDFBF7; border: 1px solid rgba(26,26,46,0.08);
  box-shadow: 0 32px 80px rgba(0,0,0,0.35), 0 0 0 1px rgba(255,255,255,0.04) inset;
  transform: translateY(24px) scale(0.97); transition: transform 0.35s cubic-bezier(.16,1,.3,1);
}
.modal-overlay.active .modal { transform: translateY(0) scale(1); }

.modal-header {
  padding: 40px 40px 0; display: flex; flex-direction: column; gap: 8px;
}
.modal-header-top { display: flex; justify-content: space-between; align-items: flex-start; }
.modal-badge {
  text-transform: uppercase; letter-spacing: 0.18em; font-size: 11px; font-weight: 600;
  color: var(--color-gold); font-family: var(--font-body);
}
.modal-close {
  width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(26,26,46,0.10);
  display: flex; align-items: center; justify-content: center;
  background: transparent; cursor: pointer; transition: 0.2s; flex-shrink: 0;
}
.modal-close:hover { background: rgba(26,26,46,0.05); }
.modal-close svg { width: 16px; height: 16px; stroke: var(--color-primary-dark); stroke-width: 2; }
.modal-title {
  font-family: var(--font-heading); font-weight: 600; font-size: 32px;
  line-height: 1.15; color: var(--color-primary-dark); margin-top: 4px;
}
.modal-desc {
  font-size: 15px; line-height: 1.6; color: rgba(26,26,46,0.55); margin-top: 4px;
}

.modal-body { padding: 32px 40px 40px; }

/* Form fields */
.form-row { display: flex; gap: 16px; margin-bottom: 20px; }
.form-row > .form-group { flex: 1; }
.form-group { margin-bottom: 20px; position: relative; }
.form-group:last-child { margin-bottom: 0; }

.form-label {
  display: block; margin-bottom: 8px;
  font-family: var(--font-body); font-weight: 500; font-size: 13px;
  letter-spacing: 0.02em; color: var(--color-primary-dark);
}
.form-label .required { color: var(--color-gold); margin-left: 2px; }

.form-input, .form-select, .form-textarea {
  width: 100%; padding: 14px 16px; border-radius: 6px;
  border: 1px solid rgba(26,26,46,0.12); background: #fff;
  font-family: var(--font-body); font-size: 15px; color: var(--color-primary-dark);
  transition: border-color 0.2s, box-shadow 0.2s; outline: none;
}
.form-input::placeholder, .form-textarea::placeholder {
  color: rgba(26,26,46,0.30);
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(212,175,55,0.12);
}
.form-textarea { resize: vertical; min-height: 100px; }
.form-select {
  appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%231A1A2E' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center;
  padding-right: 40px;
}

/* Validation states */
.form-group.error .form-input,
.form-group.error .form-select,
.form-group.error .form-textarea {
  border-color: #C44040;
  box-shadow: 0 0 0 3px rgba(196,64,64,0.08);
}
.form-group.success .form-input,
.form-group.success .form-select,
.form-group.success .form-textarea {
  border-color: #3BA55C;
}
.form-error {
  display: none; margin-top: 6px;
  font-size: 12px; line-height: 1.4; color: #C44040; font-family: var(--font-body);
}
.form-group.error .form-error { display: block; }

/* Validation icon */
.form-group.error::after,
.form-group.success::after {
  position: absolute; right: 16px; top: 40px; font-size: 14px; pointer-events: none;
}
.form-group.error::after { content: '✕'; color: #C44040; }
.form-group.success::after { content: '✓'; color: #3BA55C; }

/* Phone field with prefix */
.phone-field { display: flex; gap: 8px; }
.phone-prefix {
  width: 80px; flex-shrink: 0; padding: 14px 12px; border-radius: 6px;
  border: 1px solid rgba(26,26,46,0.12); background: rgba(26,26,46,0.03);
  font-family: var(--font-body); font-size: 15px; color: rgba(26,26,46,0.6);
  text-align: center;
}

/* Checkbox / consent */
.form-checkbox { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 20px; cursor: pointer; }
.form-checkbox input[type="checkbox"] {
  width: 20px; height: 20px; flex-shrink: 0; margin-top: 2px;
  accent-color: var(--color-gold); cursor: pointer;
}
.form-checkbox-text {
  font-size: 13px; line-height: 1.5; color: rgba(26,26,46,0.55);
}
.form-checkbox-text a { color: var(--color-gold); text-decoration: underline; text-underline-offset: 2px; }
.form-group.error .form-checkbox-text { color: #C44040; }

/* Submit */
.form-submit {
  width: 100%; padding: 18px; border-radius: 6px; border: none; cursor: pointer;
  font-family: var(--font-ui); font-size: 16px; font-weight: 500; color: #fff;
  background: linear-gradient(180deg, #CBA63A 0%, #B8922E 100%);
  border: 1px solid rgba(255,232,179,0.18);
  box-shadow: 0 0 18px rgba(212,175,55,0.18);
  transition: all 0.3s; display: flex; align-items: center; justify-content: center; gap: 10px;
}
.form-submit:hover { box-shadow: 0 0 28px rgba(212,175,55,0.3); transform: translateY(-1px); }
.form-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.form-submit .spinner {
  width: 18px; height: 18px; border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #fff; border-radius: 50%;
  animation: spin 0.6s linear infinite; display: none;
}
.form-submit.loading .spinner { display: block; }
.form-submit.loading .btn-text { display: none; }
@keyframes spin { to { transform: rotate(360deg); } }

/* Divider in form */
.form-divider { height: 1px; background: rgba(26,26,46,0.08); margin: 28px 0; }

/* Form trust badges */
.form-trust {
  display: flex; justify-content: center; gap: 24px; padding-top: 20px;
  border-top: 1px solid rgba(26,26,46,0.06); margin-top: 28px;
}
.form-trust-item {
  display: flex; align-items: center; gap: 6px;
  font-size: 11px; letter-spacing: 0.04em;
  color: rgba(26,26,46,0.40); font-family: var(--font-body);
}
.form-trust-item svg { width: 14px; height: 14px; flex-shrink: 0; }

/* =============================================
   404 PAGE
   ============================================= */
.page-404 {
  min-height: 100vh; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
  background: var(--color-primary-dark); padding: 40px 24px; position: relative; overflow: hidden;
}
.page-404-number {
  font-family: var(--font-heading); font-weight: 300; font-size: 180px; line-height: 1;
  background: linear-gradient(180deg, rgba(212,175,55,0.25) 0%, rgba(212,175,55,0.05) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  letter-spacing: 0.05em;
}
.page-404-title {
  font-family: var(--font-heading); font-weight: 500; font-size: 36px;
  color: #fff; margin-top: -20px;
}
.page-404-desc {
  font-size: 16px; line-height: 1.7; color: rgba(255,255,255,0.50);
  max-width: 420px; margin-top: 16px;
}
.page-404-buttons { display: flex; gap: 16px; margin-top: 40px; }

/* =============================================
   THANK YOU PAGE
   ============================================= */
.page-thankyou {
  min-height: 100vh; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
  background: var(--color-primary-dark); padding: 40px 24px; position: relative; overflow: hidden;
}
.thankyou-icon {
  width: 80px; height: 80px; border-radius: 50%; margin-bottom: 32px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(212,175,55,0.15) 0%, rgba(212,175,55,0.05) 100%);
  border: 1px solid rgba(212,175,55,0.20);
}
.thankyou-icon svg { width: 36px; height: 36px; }
.thankyou-title {
  font-family: var(--font-heading); font-weight: 500; font-size: 42px;
  line-height: 1.15; color: #fff;
}
.thankyou-desc {
  font-size: 17px; line-height: 1.7; color: rgba(255,255,255,0.55);
  max-width: 480px; margin-top: 16px;
}
.thankyou-details {
  margin-top: 40px; padding: 28px 36px; border-radius: 8px;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  display: flex; flex-direction: column; gap: 12px; text-align: left; max-width: 420px; width: 100%;
}
.thankyou-detail {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px; color: rgba(255,255,255,0.65);
}
.thankyou-detail svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--color-gold); }
.thankyou-buttons { display: flex; gap: 16px; margin-top: 40px; }

@media (max-width: 768px) {
  .modal { margin: 16px; max-height: 96vh; }
  .modal-header { padding: 28px 24px 0; }
  .modal-body { padding: 24px 24px 28px; }
  .modal-title { font-size: 26px; }
  .form-row { flex-direction: column; gap: 0; }
  .form-row > .form-group { margin-bottom: 20px; }
  .page-404-number { font-size: 100px; }
  .page-404-title { font-size: 28px; }
  .page-404-buttons { flex-direction: column; }
  .thankyou-title { font-size: 32px; }
  .thankyou-buttons { flex-direction: column; }
  .form-trust { flex-direction: column; align-items: center; gap: 12px; }
}
