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

:root {
  --navy: #0D1B2A;
  --navy-mid: #152338;
  --navy-light: #1E3351;
  --gold: #C9A84C;
  --gold-light: #E2C06E;
  --cream: #F5F0E8;
  --white: #FFFFFF;
  --text-muted: #8A9BB5;
  --border: rgba(201,168,76,0.2);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Sora', sans-serif;
  background: var(--navy);
  color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── NAV ── */
nav.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 5%;
  background: rgba(13,27,42,0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.logo { display: flex; align-items: center; gap: 0.6rem; text-decoration: none; }
.logo-icon {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'DM Serif Display', serif;
  font-size: 1.1rem; color: var(--navy); font-weight: 700;
}
.logo-text { font-size: 1.05rem; font-weight: 700; color: var(--white); letter-spacing: 0.02em; }
.logo-text span { color: var(--gold); }
.nav-links { display: flex; gap: 1.9rem; list-style: none; align-items: center; }
.nav-links > li { position: relative; }
.nav-links a {
  text-decoration: none; color: var(--text-muted);
  font-size: 0.88rem; font-weight: 500; letter-spacing: 0.04em;
  transition: color 0.25s;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-cta {
  background: var(--gold);
  color: var(--navy) !important;
  padding: 0.5rem 1.2rem;
  border-radius: 6px;
  font-weight: 600 !important;
  transition: background 0.25s !important;
}
.nav-cta:hover { background: var(--gold-light) !important; }

/* dropdown */
.has-dropdown > a::after { content: ' ▾'; font-size: 0.7em; }
.dropdown {
  position: absolute; top: calc(100% + 0.8rem); left: -1rem;
  min-width: 240px;
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.6rem;
  display: none;
  flex-direction: column;
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
  list-style: none;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown,
.has-dropdown.open .dropdown { display: flex; }
.dropdown a {
  display: block; padding: 0.6rem 0.9rem; border-radius: 7px;
  font-size: 0.86rem;
}
.dropdown a:hover { background: rgba(201,168,76,0.08); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: 0.3s; }

/* ── HERO (home) ── */
.hero {
  min-height: 92vh;
  display: flex; align-items: center;
  padding: 9rem 5% 5rem;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 70% 60% at 70% 40%, rgba(201,168,76,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 10% 80%, rgba(30,51,81,0.6) 0%, transparent 60%),
    linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 100%);
}
.hero-gridlines {
  position: absolute; inset: 0; z-index: 0;
  background-image: linear-gradient(var(--border) 1px, transparent 1px),
                    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 60% 40%, black 20%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 60% 40%, black 20%, transparent 80%);
}
.hero-inner { position: relative; z-index: 1; width: 100%; max-width: 1200px; margin: 0 auto; }
.hero-tag {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(201,168,76,0.1);
  border: 1px solid var(--border);
  color: var(--gold); font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.35rem 0.9rem; border-radius: 50px;
  margin-bottom: 1.8rem;
  animation: fadeUp 0.7s ease both;
}
.hero-tag::before { content: '◆'; font-size: 0.5rem; }
h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  line-height: 1.12; font-weight: 400;
  color: var(--white);
  animation: fadeUp 0.7s 0.15s ease both;
  max-width: 800px;
}
h1 em, .section-title em { color: var(--gold); font-style: italic; }
.hero-sub {
  margin-top: 1.5rem; font-size: 1.08rem; color: var(--text-muted);
  max-width: 640px; font-weight: 300;
  animation: fadeUp 0.7s 0.3s ease both;
}
.hero-sub strong { color: var(--white); font-weight: 600; }

.hero-paths {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem;
  margin-top: 2.8rem; max-width: 760px;
  animation: fadeUp 0.7s 0.45s ease both;
}
.path-card {
  display: block; text-decoration: none;
  background: rgba(21,35,56,0.75);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.6rem 1.7rem;
  transition: all 0.3s;
  position: relative; overflow: hidden;
}
.path-card::before, .card-topline::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s ease;
}
.path-card:hover::before, .card-topline:hover::before { transform: scaleX(1); }
.path-card:hover { transform: translateY(-4px); border-color: rgba(201,168,76,0.45); box-shadow: 0 16px 40px rgba(0,0,0,0.35); }
.path-eyebrow, .pillar-eyebrow {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--gold);
}
.path-card h3 { font-family: 'DM Serif Display', serif; font-weight: 400; font-size: 1.35rem; color: var(--white); margin: 0.4rem 0 0.5rem; }
.path-card p { font-size: 0.86rem; color: var(--text-muted); line-height: 1.65; }
.path-link, .pillar-cta {
  display: inline-block; margin-top: 0.9rem; font-size: 0.86rem; font-weight: 600;
  color: var(--gold); text-decoration: none;
}
.path-link::after, .pillar-cta::after { content: ' →'; transition: margin 0.25s; }
.path-card:hover .path-link::after, .pillar-cta:hover::after { margin-left: 4px; }

.hero-stats { display: flex; gap: 2.5rem; margin-top: 3.5rem; animation: fadeUp 0.7s 0.6s ease both; }
.stat { border-left: 2px solid var(--border); padding-left: 1.2rem; }
.stat-num { font-family: 'DM Serif Display', serif; font-size: 2rem; color: var(--gold); }
.stat-label { font-size: 0.78rem; color: var(--text-muted); letter-spacing: 0.05em; margin-top: 0.1rem; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  padding: 10rem 5% 4rem;
  position: relative; overflow: hidden;
  background:
    radial-gradient(ellipse 60% 70% at 80% 20%, rgba(201,168,76,0.07) 0%, transparent 60%),
    linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 100%);
}
.page-hero .breadcrumb { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 1.2rem; }
.page-hero .breadcrumb a { color: var(--text-muted); text-decoration: none; }
.page-hero .breadcrumb a:hover { color: var(--gold); }
.page-hero h1 { font-size: clamp(2.2rem, 4.5vw, 3.4rem); }
.page-hero .hero-sub { animation: none; }
.page-hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2.2rem; }

/* ── COMMON ── */
section { padding: 5.5rem 5%; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.alt-bg { background: var(--navy-mid); }
.section-label {
  display: inline-block;
  color: var(--gold); font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  margin-bottom: 0.8rem;
}
.section-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.9rem, 3.5vw, 2.7rem);
  font-weight: 400; line-height: 1.2;
  color: var(--white);
  max-width: 680px;
}
.section-sub { color: var(--text-muted); font-size: 1rem; font-weight: 300; max-width: 580px; margin-top: 1rem; }
.section-header { margin-bottom: 3rem; }

.btn-primary {
  background: var(--gold); color: var(--navy);
  padding: 0.85rem 2rem; border-radius: 8px;
  font-weight: 700; font-size: 0.92rem; letter-spacing: 0.02em;
  text-decoration: none; transition: all 0.25s;
  display: inline-block; border: none; cursor: pointer;
  font-family: 'Sora', sans-serif;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,0.3); }
.btn-outline {
  border: 1px solid var(--border); color: var(--white);
  padding: 0.85rem 2rem; border-radius: 8px;
  font-weight: 500; font-size: 0.92rem;
  text-decoration: none; transition: all 0.25s;
  display: inline-block; background: transparent; cursor: pointer;
  font-family: 'Sora', sans-serif;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

/* ── PILLARS / CARDS ── */
.pillar-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.pillar {
  background: var(--navy);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.5rem;
  position: relative; overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
  display: flex; flex-direction: column;
}
.alt-bg .pillar { background: var(--navy); }
.pillar:hover { border-color: rgba(201,168,76,0.45); transform: translateY(-3px); }
.pillar h3, .pillar h2.card-title {
  font-family: 'DM Serif Display', serif; font-weight: 400;
  font-size: 1.65rem; color: var(--white); margin: 0.5rem 0 0.9rem; line-height: 1.25;
}
.pillar > p { font-size: 0.93rem; color: var(--text-muted); line-height: 1.75; }
.pillar-list { list-style: none; margin-top: 1.4rem; display: flex; flex-direction: column; gap: 0.55rem; }
.pillar-list li { font-size: 0.88rem; color: var(--text-muted); display: flex; align-items: flex-start; gap: 0.55rem; }
.pillar-list li::before { content: '→'; color: var(--gold); font-size: 0.8rem; margin-top: 0.1rem; }
.pillar-list li strong { color: var(--white); font-weight: 600; }
.pillar .pillar-cta { margin-top: auto; padding-top: 1.4rem; }

/* AI journey strip */
.ai-journey { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 0.8rem; margin-top: 1.5rem; }
.ai-step {
  background: rgba(201,168,76,0.06);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.1rem 1rem;
  position: relative;
}
.ai-step:not(:last-child)::after {
  content: '›'; position: absolute; right: -0.72rem; top: 50%;
  transform: translateY(-50%);
  color: var(--gold); font-size: 1.1rem; z-index: 1;
}
.ai-step .step-name { font-size: 0.9rem; font-weight: 700; color: var(--gold); }
.ai-step .step-desc { font-size: 0.78rem; color: var(--text-muted); margin-top: 0.3rem; line-height: 1.55; }

/* generic feature cards */
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.2rem; }
.feature-card {
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.8rem;
  transition: all 0.3s;
  position: relative; overflow: hidden;
}
.alt-bg .feature-card { background: var(--navy); }
.feature-card:hover { transform: translateY(-3px); border-color: rgba(201,168,76,0.4); }
.feature-card .f-icon { font-size: 1.4rem; margin-bottom: 0.8rem; }
.feature-card h3, .feature-card h4 { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 0.5rem; }
.feature-card p { font-size: 0.86rem; color: var(--text-muted); line-height: 1.7; }
.feature-card .num-badge {
  font-family: 'DM Serif Display', serif; font-size: 2rem;
  color: rgba(201,168,76,0.25); line-height: 1; margin-bottom: 0.6rem;
}

/* ── RESULTS & TESTIMONIALS ── */
.results-strip { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.2rem; margin-bottom: 3.5rem; }
.result-card {
  background: var(--navy);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.8rem;
}
.result-card .r-num { font-family: 'DM Serif Display', serif; font-size: 2.4rem; color: var(--gold); line-height: 1.1; }
.result-card .r-what { font-size: 0.92rem; color: var(--white); font-weight: 600; margin-top: 0.5rem; }
.result-card .r-who { font-size: 0.8rem; color: var(--text-muted); margin-top: 0.3rem; }

.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.4rem; }
.testimonial {
  background: var(--navy);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 2rem;
  display: flex; flex-direction: column;
}
.testimonial .t-mark { font-family: 'DM Serif Display', serif; font-size: 2.6rem; color: var(--gold); line-height: 0.6; margin-bottom: 1rem; }
.testimonial p { font-size: 0.92rem; color: var(--white); font-weight: 300; line-height: 1.75; font-style: italic; flex-grow: 1; }
.testimonial .t-who { margin-top: 1.4rem; padding-top: 1.1rem; border-top: 1px solid var(--border); }
.testimonial .t-name { font-size: 0.9rem; font-weight: 700; color: var(--gold); }
.testimonial .t-role { font-size: 0.78rem; color: var(--text-muted); margin-top: 0.1rem; }

/* ── LEAD MAGNET ── */
.magnet {
  background:
    radial-gradient(ellipse 60% 90% at 85% 50%, rgba(201,168,76,0.1) 0%, transparent 60%),
    var(--navy-mid);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.magnet-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 3.5rem; align-items: center; }
.magnet-visual {
  background: var(--navy);
  border: 1px solid rgba(201,168,76,0.35);
  border-radius: 14px;
  padding: 2rem;
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
  transform: rotate(-1.5deg);
}
.magnet-visual .mv-tag { font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.magnet-visual h3 { font-family: 'DM Serif Display', serif; font-weight: 400; font-size: 1.5rem; color: var(--white); margin: 0.5rem 0 1rem; }
.magnet-visual ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.magnet-visual li { font-size: 0.84rem; color: var(--text-muted); display: flex; gap: 0.5rem; }
.magnet-visual li::before { content: '☐'; color: var(--gold); }
.magnet-form { display: flex; flex-direction: column; gap: 0.9rem; margin-top: 1.6rem; max-width: 440px; }
.magnet-form input[type=email] {
  background: var(--navy);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.85rem 1rem;
  color: var(--white); font-family: 'Sora', sans-serif; font-size: 0.92rem;
  outline: none; transition: border-color 0.25s;
}
.magnet-form input[type=email]:focus { border-color: var(--gold); }
.magnet-note { font-size: 0.76rem; color: var(--text-muted); }

/* ── FAQ ── */
.faq-list { max-width: 780px; display: flex; flex-direction: column; gap: 0.9rem; }
.faq-item {
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}
.alt-bg .faq-item { background: var(--navy); }
.faq-item summary {
  cursor: pointer; list-style: none;
  padding: 1.1rem 1.4rem;
  font-size: 0.95rem; font-weight: 600; color: var(--white);
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; color: var(--gold); font-size: 1.2rem; transition: transform 0.25s; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-body { padding: 0 1.4rem 1.2rem; font-size: 0.88rem; color: var(--text-muted); line-height: 1.75; }

/* ── WHY / ABOUT ── */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; margin-top: 3rem; }
.why-items { display: flex; flex-direction: column; gap: 2rem; }
.why-item { display: flex; gap: 1.2rem; align-items: flex-start; }
.why-num { font-family: 'DM Serif Display', serif; font-size: 2.5rem; color: rgba(201,168,76,0.2); line-height: 1; min-width: 40px; }
.why-text h3 { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 0.4rem; }
.why-text p { font-size: 0.9rem; color: var(--text-muted); }
.why-visual { background: var(--navy); border: 1px solid var(--border); border-radius: 16px; padding: 2.5rem; }
.why-quote { font-family: 'DM Serif Display', serif; font-size: 1.5rem; color: var(--white); line-height: 1.4; font-style: italic; }
.why-quote span { color: var(--gold); }
.why-bar-wrap { margin-top: 2rem; display: flex; flex-direction: column; gap: 1rem; }
.why-bar-label { display: flex; justify-content: space-between; font-size: 0.8rem; color: var(--text-muted); margin-bottom: 0.3rem; }
.bar-track { height: 6px; background: rgba(255,255,255,0.08); border-radius: 99px; overflow: hidden; }
.bar-fill { height: 100%; border-radius: 99px; background: linear-gradient(90deg, var(--gold), var(--gold-light)); }

.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; margin-top: 3rem; }
.about-text p { color: var(--text-muted); font-size: 0.97rem; margin-bottom: 1.2rem; line-height: 1.8; }
.about-text strong { color: var(--white); font-weight: 600; }
.about-badges, .badge-row { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 1.8rem; }
.badge {
  background: rgba(201,168,76,0.08);
  border: 1px solid var(--border);
  color: var(--gold); font-size: 0.78rem; font-weight: 600;
  padding: 0.4rem 0.9rem; border-radius: 50px; letter-spacing: 0.04em;
}
.about-card-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.about-card { background: var(--navy-mid); border: 1px solid var(--border); border-radius: 12px; padding: 1.6rem; text-align: center; }
.about-card .num { font-family: 'DM Serif Display', serif; font-size: 2.2rem; color: var(--gold); }
.about-card .lbl { font-size: 0.8rem; color: var(--text-muted); margin-top: 0.3rem; }

/* ── COURSES ── */
.course-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.4rem; }
.course-card {
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 2rem;
  transition: all 0.3s;
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
}
.course-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.3); border-color: rgba(201,168,76,0.4); }
.course-icon {
  width: 48px; height: 48px;
  background: rgba(201,168,76,0.1);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.35rem; margin-bottom: 1.2rem;
}
.course-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--white); margin-bottom: 0.7rem; }
.course-card p { font-size: 0.87rem; color: var(--text-muted); line-height: 1.7; flex-grow: 1; }
.course-meta { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.2rem; }
.course-tag {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.04em;
  color: var(--gold); background: rgba(201,168,76,0.08);
  border: 1px solid var(--border);
  padding: 0.25rem 0.7rem; border-radius: 50px;
}

/* ── CTA BANNER ── */
.cta-banner {
  background:
    radial-gradient(ellipse 70% 100% at 50% 0%, rgba(201,168,76,0.12) 0%, transparent 65%),
    var(--navy-mid);
  border-top: 1px solid var(--border);
  text-align: center;
}
.cta-banner .section-title { margin: 0 auto; }
.cta-banner .section-sub { margin: 1rem auto 0; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 2.2rem; }

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; margin-top: 3rem; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 1.8rem; }
.contact-item { display: flex; align-items: flex-start; gap: 1rem; }
.contact-icon {
  width: 44px; height: 44px; min-width: 44px;
  background: rgba(201,168,76,0.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.contact-item h3 { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 0.2rem; font-weight: 600; }
.contact-item p { font-size: 0.95rem; color: var(--white); font-weight: 500; }
.contact-form { display: flex; flex-direction: column; gap: 1.1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label { font-size: 0.8rem; color: var(--text-muted); font-weight: 600; letter-spacing: 0.05em; }
.form-group input, .form-group textarea, .form-group select {
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.85rem 1rem;
  color: var(--white); font-family: 'Sora', sans-serif; font-size: 0.92rem;
  outline: none; transition: border-color 0.25s;
  width: 100%;
}
.alt-bg .form-group input, .alt-bg .form-group textarea, .alt-bg .form-group select { background: var(--navy); }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.audience-toggle { display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem; }
.audience-toggle input { position: absolute; opacity: 0; pointer-events: none; }
.audience-toggle label {
  text-align: center; cursor: pointer;
  border: 1px solid var(--border); border-radius: 8px;
  padding: 0.7rem; font-size: 0.86rem; font-weight: 600;
  color: var(--text-muted); transition: all 0.25s;
}
.audience-toggle input:checked + label { background: rgba(201,168,76,0.12); border-color: var(--gold); color: var(--gold); }
.audience-toggle input:focus-visible + label { outline: 2px solid var(--gold); outline-offset: 2px; }

.submit-btn {
  background: var(--gold); color: var(--navy);
  border: none; border-radius: 8px; cursor: pointer;
  padding: 0.95rem; font-family: 'Sora', sans-serif;
  font-weight: 700; font-size: 0.95rem; letter-spacing: 0.02em;
  transition: all 0.25s; margin-top: 0.4rem;
}
.submit-btn:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,0.3); }
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }
.form-msg { display: none; font-size: 0.92rem; margin-top: 0.8rem; padding: 0.9rem 1.2rem; border-radius: 8px; }
.form-msg.ok { display: block; background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.35); color: var(--gold); }
.form-msg.err { display: block; background: rgba(220,50,50,0.08); border: 1px solid rgba(220,50,50,0.3); color: #e07070; }

/* ── FOOTER ── */
footer {
  background: var(--navy-mid);
  border-top: 1px solid var(--border);
  padding: 3rem 5% 2rem;
}
.footer-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2.5rem;
}
.footer-logo { font-family: 'DM Serif Display', serif; font-size: 1.2rem; color: var(--white); }
.footer-logo span { color: var(--gold); }
.footer-about { font-size: 0.83rem; color: var(--text-muted); margin-top: 0.8rem; max-width: 280px; }
.footer-col h4 { font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; font-weight: 600; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; }
.footer-col a { font-size: 0.85rem; color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  max-width: 1200px; margin: 2.5rem auto 0; padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.8rem;
  font-size: 0.78rem; color: var(--text-muted);
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001s !important; transition-duration: 0.001s !important; }
}
:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .why-grid, .about-grid, .contact-grid, .pillar-grid, .magnet-grid { grid-template-columns: 1fr; }
  .why-visual { order: -1; }
  .magnet-visual { transform: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column; gap: 1.2rem;
    position: fixed; top: 66px; left: 0; right: 0;
    background: var(--navy-mid); padding: 2rem 5%;
    border-bottom: 1px solid var(--border);
    align-items: flex-start;
  }
  .nav-links.open .dropdown {
    position: static; display: flex; box-shadow: none;
    border: none; background: transparent; padding: 0.4rem 0 0 1rem; min-width: 0;
  }
  .has-dropdown > a::after { content: ''; }
  .ai-step:not(:last-child)::after { display: none; }
}
@media (max-width: 560px) {
  .hero-paths { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 1.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .about-card-grid { grid-template-columns: 1fr 1fr; }
  .ai-journey { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}
