/* ============================================================
   AUFIWI TRAINING SERVICES — Design System
   Field-grade industrial: navy authority, gold action, clean white trust.
   ============================================================ */

:root {
  /* Brand palette (from logo) */
  --navy:        #1B3A6B;
  --navy-deep:   #122847;
  --navy-ink:    #0C1B33;
  --gold:        #F2A81D;
  --gold-deep:   #D4901A;
  --red:         #D63426;

  /* Neutrals */
  --white:       #FFFFFF;
  --paper:       #F7F8FA;
  --mist:        #EDF0F4;
  --line:        #E1E6ED;
  --slate:       #5B6677;
  --ink:         #1A2230;

  /* Type */
  --display: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  --body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Scale */
  --container: 1200px;
  --gutter: clamp(20px, 5vw, 48px);
  --radius: 4px;
  --shadow-sm: 0 1px 3px rgba(12,27,51,0.08), 0 1px 2px rgba(12,27,51,0.04);
  --shadow-md: 0 8px 28px rgba(12,27,51,0.10);
  --shadow-lg: 0 20px 60px rgba(12,27,51,0.16);
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: inherit; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--display); font-weight: 700; line-height: 1.04; color: var(--navy-ink); letter-spacing: -0.01em; }
h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); font-weight: 800; text-transform: uppercase; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); text-transform: uppercase; }
h3 { font-size: clamp(1.3rem, 2.4vw, 1.7rem); }
h4 { font-size: 1.15rem; }
p { margin: 0 0 1rem; }
p:last-child { margin-bottom: 0; }

.eyebrow {
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.eyebrow::before {
  content: '';
  width: 32px; height: 2px;
  background: var(--gold);
  display: inline-block;
}
.eyebrow.center { justify-content: center; }
.lead { font-size: 1.18rem; color: var(--slate); line-height: 1.7; }

/* ---------- Layout ---------- */
.container { max-width: var(--container); margin: 0 auto; padding-left: var(--gutter); padding-right: var(--gutter); }
.section { padding: clamp(64px, 9vw, 120px) 0; }
.section--tight { padding: clamp(48px, 6vw, 80px) 0; }
.section--paper { background: var(--paper); }
.section--navy { background: var(--navy-ink); color: #DDE4EE; }
.section--navy h1, .section--navy h2, .section--navy h3, .section--navy h4 { color: var(--white); }

.grid { display: grid; gap: clamp(24px, 3vw, 36px); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.section-head { max-width: 720px; margin-bottom: clamp(40px, 5vw, 64px); }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.02rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 15px 32px;
  border-radius: var(--radius);
  transition: transform 0.18s var(--ease), background 0.18s var(--ease), box-shadow 0.18s var(--ease), color 0.18s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--gold); color: var(--navy-ink); }
.btn-primary:hover { background: var(--gold-deep); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-deep); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-ghost { background: transparent; color: var(--navy); box-shadow: inset 0 0 0 2px var(--line); }
.btn-ghost:hover { box-shadow: inset 0 0 0 2px var(--navy); transform: translateY(-2px); }
.btn-light { background: var(--white); color: var(--navy-ink); }
.btn-light:hover { background: var(--mist); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline-light { background: transparent; color: var(--white); box-shadow: inset 0 0 0 2px rgba(255,255,255,0.35); }
.btn-outline-light:hover { box-shadow: inset 0 0 0 2px var(--white); transform: translateY(-2px); }
.btn-lg { padding: 18px 40px; font-size: 1.12rem; }
.btn-block { width: 100%; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.25s var(--ease);
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}
.nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.nav-logo img { height: 46px; width: auto; }
.nav-menu { display: flex; align-items: center; gap: 4px; }
.nav-menu > li { position: relative; }
.nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.06rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--navy-ink);
  padding: 10px 16px;
  border-radius: var(--radius);
  transition: color 0.18s, background 0.18s;
}
.nav-link:hover, .nav-link.active { color: var(--navy); background: var(--mist); }
.nav-link .chev { width: 14px; height: 14px; transition: transform 0.2s; }
.nav-item-has-children:hover .chev { transform: rotate(180deg); }

/* Dropdown */
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 320px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease), visibility 0.2s;
}
.nav-item-has-children:hover .nav-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown::before { content: ''; position: absolute; top: -10px; left: 0; right: 0; height: 10px; }
.nav-dropdown-label {
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--slate);
  padding: 10px 14px 6px;
}
.nav-dropdown a {
  display: block;
  padding: 10px 14px;
  font-size: 0.96rem;
  font-weight: 500;
  color: var(--ink);
  border-radius: var(--radius);
  transition: background 0.15s, color 0.15s, padding-left 0.15s;
}
.nav-dropdown a:hover { background: var(--mist); color: var(--navy); padding-left: 20px; }
.nav-cta { margin-left: 12px; }
.nav-toggle { display: none; width: 44px; height: 44px; flex-direction: column; justify-content: center; gap: 5px; padding: 0 10px; }
.nav-toggle span { display: block; height: 2.5px; background: var(--navy-ink); border-radius: 2px; transition: transform 0.3s var(--ease), opacity 0.3s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  background: var(--navy-ink);
  color: var(--white);
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0.32;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(105deg, var(--navy-ink) 8%, rgba(12,27,51,0.78) 48%, rgba(18,40,71,0.40) 100%);
}
.hero-inner { position: relative; z-index: 2; padding: clamp(72px, 12vw, 150px) 0 clamp(64px, 10vw, 130px); }
.hero-content { max-width: 760px; }
.hero h1 { color: var(--white); margin-bottom: 24px; }
.hero h1 .accent { color: var(--gold); }
.hero p { font-size: 1.24rem; color: rgba(255,255,255,0.82); max-width: 600px; margin-bottom: 36px; font-weight: 300; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-strip {
  position: relative; z-index: 2;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.hero-stat { padding: 28px var(--gutter); border-right: 1px solid rgba(255,255,255,0.10); }
.hero-stat:last-child { border-right: none; }
.hero-stat .num { font-family: var(--display); font-weight: 800; font-size: 2.6rem; color: var(--gold); line-height: 1; }
.hero-stat .lbl { font-size: 0.82rem; letter-spacing: 0.04em; color: rgba(255,255,255,0.7); margin-top: 6px; }

/* Page hero (interior pages) */
.page-hero { position: relative; background: var(--navy-ink); color: var(--white); overflow: hidden; }
.page-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0.22; }
.page-hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(100deg, var(--navy-ink) 20%, rgba(12,27,51,0.7) 100%); }
.page-hero-inner { position: relative; z-index: 2; padding: clamp(60px, 9vw, 110px) 0; max-width: 800px; }
.page-hero h1 { color: var(--white); margin-bottom: 18px; }
.page-hero p { font-size: 1.18rem; color: rgba(255,255,255,0.82); max-width: 620px; }
.breadcrumb { font-family: var(--display); font-size: 0.92rem; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.6); margin-bottom: 20px; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--gold); }

/* ============================================================
   CARDS
   ============================================================ */
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 32px;
  transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease), border-color 0.22s;
  height: 100%;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.card-icon {
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  background: var(--mist);
  border-radius: 10px;
  margin-bottom: 20px;
  color: var(--navy);
}
.card-icon svg { width: 28px; height: 28px; }
.card:hover .card-icon { background: var(--navy); color: var(--gold); }
.card h3 { margin-bottom: 10px; }
.card p { color: var(--slate); font-size: 0.98rem; margin-bottom: 16px; }
.card-link { font-family: var(--display); font-weight: 700; font-size: 0.95rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--navy); display: inline-flex; align-items: center; gap: 7px; transition: gap 0.2s, color 0.2s; }
.card-link:hover { gap: 12px; color: var(--gold-deep); }
.card-link svg { width: 16px; height: 16px; }

/* Course card with image */
.course-card { background: var(--white); border: 1px solid var(--line); border-radius: 10px; overflow: hidden; transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease); height: 100%; display: flex; flex-direction: column; }
.course-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.course-card-img { aspect-ratio: 16/10; overflow: hidden; background: var(--mist); }
.course-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.course-card:hover .course-card-img img { transform: scale(1.06); }
.course-card-body { padding: 26px; display: flex; flex-direction: column; flex-grow: 1; }
.course-tag { align-self: flex-start; font-family: var(--display); font-weight: 700; font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--red); background: rgba(214,52,38,0.08); padding: 4px 10px; border-radius: 3px; margin-bottom: 14px; }
.course-card-body h3 { margin-bottom: 10px; }
.course-card-body p { color: var(--slate); font-size: 0.96rem; flex-grow: 1; margin-bottom: 18px; }

/* ============================================================
   FEATURE / SPLIT
   ============================================================ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.split.reverse .split-media { order: 2; }
.split-media { position: relative; }
.split-media img { width: 100%; border-radius: 10px; box-shadow: var(--shadow-md); aspect-ratio: 4/3; object-fit: cover; }
.split-media .badge {
  position: absolute; bottom: -22px; left: -22px;
  background: var(--gold); color: var(--navy-ink);
  padding: 20px 26px; border-radius: 8px; box-shadow: var(--shadow-md);
  max-width: 220px;
}
.split-media .badge .big { font-family: var(--display); font-weight: 800; font-size: 2.2rem; line-height: 1; }
.split-media .badge .sm { font-size: 0.84rem; font-weight: 600; margin-top: 4px; }

.check-list { margin-top: 24px; display: grid; gap: 14px; }
.check-list li { display: flex; gap: 14px; align-items: flex-start; }
.check-list .ico { flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%; background: var(--navy); color: var(--gold); display: flex; align-items: center; justify-content: center; margin-top: 2px; }
.check-list .ico svg { width: 14px; height: 14px; }
.check-list .txt strong { display: block; color: var(--navy-ink); font-family: var(--display); font-size: 1.12rem; letter-spacing: 0.01em; }
.check-list .txt span { color: var(--slate); font-size: 0.96rem; }

/* ============================================================
   TRUST / LOGOS / STATS
   ============================================================ */
.trust-band { background: var(--paper); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 28px 0; }
.trust-band-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.trust-band p { font-family: var(--display); font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--slate); font-size: 0.92rem; margin: 0; }
.trust-tags { display: flex; gap: 28px; flex-wrap: wrap; }
.trust-tags span { font-family: var(--display); font-weight: 700; font-size: 1.06rem; letter-spacing: 0.04em; text-transform: uppercase; color: var(--navy); }

.stat-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 10px; overflow: hidden; }
.stat-cell { background: var(--white); padding: 36px 28px; text-align: center; }
.stat-cell .num { font-family: var(--display); font-weight: 800; font-size: 3rem; color: var(--navy); line-height: 1; }
.stat-cell .num .unit { color: var(--gold); }
.stat-cell .lbl { color: var(--slate); font-size: 0.95rem; margin-top: 8px; }

/* ============================================================
   PROCESS STEPS
   ============================================================ */
.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; counter-reset: step; }
.step { position: relative; padding-top: 24px; }
.step::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  font-family: var(--display); font-weight: 800; font-size: 3.4rem; color: var(--mist); line-height: 0.8; display: block; margin-bottom: 14px;
}
.step h4 { color: var(--navy-ink); margin-bottom: 8px; font-size: 1.22rem; }
.step p { color: var(--slate); font-size: 0.95rem; }
.step::after { content: ''; position: absolute; top: 8px; left: 0; width: 40px; height: 4px; background: var(--gold); }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band { position: relative; background: var(--navy); color: var(--white); border-radius: 14px; overflow: hidden; padding: clamp(44px, 6vw, 72px); }
.cta-band-bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0.16; }
.cta-band-inner { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.cta-band h2 { color: var(--white); margin-bottom: 10px; }
.cta-band p { color: rgba(255,255,255,0.84); max-width: 520px; margin: 0; }
.cta-band .cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ============================================================
   CONTACT / FORM
   ============================================================ */
.contact-layout { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(32px, 5vw, 64px); align-items: start; }
.contact-info-card { background: var(--navy-ink); color: var(--white); border-radius: 12px; padding: 40px; }
.contact-info-card h3 { color: var(--white); margin-bottom: 8px; }
.contact-info-card > p { color: rgba(255,255,255,0.75); margin-bottom: 32px; }
.contact-detail { display: flex; gap: 16px; align-items: flex-start; padding: 18px 0; border-top: 1px solid rgba(255,255,255,0.12); }
.contact-detail:first-of-type { border-top: none; }
.contact-detail .ico { flex-shrink: 0; width: 44px; height: 44px; border-radius: 9px; background: rgba(242,168,29,0.14); color: var(--gold); display: flex; align-items: center; justify-content: center; }
.contact-detail .ico svg { width: 20px; height: 20px; }
.contact-detail .lbl { font-family: var(--display); font-weight: 700; font-size: 0.76rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.55); }
.contact-detail .val { font-size: 1.05rem; color: var(--white); }
.contact-detail .val a:hover { color: var(--gold); }

.form-card { background: var(--white); border: 1px solid var(--line); border-radius: 12px; padding: clamp(28px, 4vw, 44px); box-shadow: var(--shadow-sm); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-family: var(--display); font-weight: 600; font-size: 0.92rem; letter-spacing: 0.05em; text-transform: uppercase; color: var(--navy-ink); margin-bottom: 7px; }
.field label .req { color: var(--red); }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 13px 15px;
  background: var(--paper);
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  transition: border-color 0.18s, background 0.18s, box-shadow 0.18s;
}
.field input::placeholder, .field textarea::placeholder { color: #9AA4B2; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--navy); background: var(--white); box-shadow: 0 0 0 3px rgba(27,58,107,0.10); }
.field textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: 0.86rem; color: var(--slate); margin-top: 6px; display: flex; gap: 8px; align-items: flex-start; }
.form-note svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 3px; color: var(--navy); }
.honeypot { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }
.form-alert { display: none; padding: 15px 18px; border-radius: var(--radius); margin-bottom: 20px; font-size: 0.96rem; }
.form-alert.show { display: block; }
.form-alert.success { background: rgba(34,150,83,0.10); border-left: 3px solid #229653; color: #15683a; }
.form-alert.error { background: rgba(214,52,38,0.08); border-left: 3px solid var(--red); color: #a3271c; }

/* ============================================================
   FAQ / ACCORDION
   ============================================================ */
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 24px 0; text-align: left; font-family: var(--display); font-weight: 700; font-size: 1.22rem; color: var(--navy-ink); }
.faq-q .pm { flex-shrink: 0; width: 28px; height: 28px; position: relative; }
.faq-q .pm::before, .faq-q .pm::after { content: ''; position: absolute; background: var(--gold-deep); transition: transform 0.25s var(--ease); }
.faq-q .pm::before { top: 13px; left: 4px; right: 4px; height: 2.5px; }
.faq-q .pm::after { left: 13px; top: 4px; bottom: 4px; width: 2.5px; }
.faq-item.open .pm::after { transform: scaleY(0); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s var(--ease); }
.faq-a-inner { padding: 0 0 24px; color: var(--slate); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--navy-ink); color: #AEB9C9; padding-top: clamp(56px, 7vw, 88px); }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 56px; }
.footer-brand img { height: 52px; margin-bottom: 20px; }
.footer-brand p { font-size: 0.96rem; color: #93A0B3; max-width: 320px; margin-bottom: 22px; }
.footer-contact-mini { display: grid; gap: 10px; font-size: 0.96rem; }
.footer-contact-mini a, .footer-contact-mini span { color: #C5CFDC; display: inline-flex; align-items: center; gap: 10px; }
.footer-contact-mini svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--gold); }
.footer-contact-mini a:hover { color: var(--gold); }
.footer-social { margin-top: 18px; display: flex; gap: 10px; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 8px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.08); color: #C5CFDC;
  transition: background 0.18s, color 0.18s, transform 0.18s;
}
.footer-social a:hover { background: var(--gold); color: var(--navy-ink); transform: translateY(-2px); }
.footer-social svg { width: 20px; height: 20px; }
.footer-col h4 { color: var(--white); font-size: 0.96rem; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 18px; font-weight: 700; }
.footer-col ul { display: grid; gap: 11px; }
.footer-col a { font-size: 0.94rem; color: #9DA9BA; transition: color 0.15s, padding-left 0.15s; }
.footer-col a:hover { color: var(--gold); padding-left: 4px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.10); padding: 26px 0; display: flex; justify-content: space-between; align-items: center; gap: 18px; flex-wrap: wrap; }
.footer-bottom p { font-size: 0.88rem; color: #7E8B9C; margin: 0; }
.footer-legal { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-legal a { font-size: 0.88rem; color: #7E8B9C; }
.footer-legal a:hover { color: var(--gold); }

/* ============================================================
   PROSE (legal pages)
   ============================================================ */
.prose { max-width: 760px; }
.prose h2 { font-size: 1.7rem; margin: 40px 0 14px; }
.prose h3 { font-size: 1.25rem; margin: 28px 0 10px; }
.prose p, .prose li { color: var(--slate); }
.prose ul { list-style: disc; padding-left: 22px; margin: 0 0 16px; }
.prose li { margin-bottom: 8px; }
.prose a { color: var(--navy); text-decoration: underline; }
.prose strong { color: var(--navy-ink); }

/* ============================================================
   UTILITIES
   ============================================================ */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.js .reveal.in { opacity: 1; transform: none; }
.skip-link { position: absolute; left: -9999px; top: 0; background: var(--gold); color: var(--navy-ink); padding: 12px 20px; font-weight: 700; z-index: 2000; }
.skip-link:focus { left: 0; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; border-radius: 2px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
  .hero-strip { grid-template-columns: repeat(2, 1fr); }
  .hero-stat:nth-child(2) { border-right: none; }
}
@media (max-width: 880px) {
  .nav-toggle { display: flex; }
  .nav-menu {
    position: fixed;
    top: 78px; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px var(--gutter) 28px;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s var(--ease), transform 0.25s var(--ease), visibility 0.25s;
    max-height: calc(100vh - 78px);
    overflow-y: auto;
  }
  .nav-menu.open { opacity: 1; visibility: visible; transform: none; }
  .nav-link { padding: 14px 12px; font-size: 1.15rem; border-radius: var(--radius); justify-content: space-between; }
  .nav-item-has-children .chev { margin-left: auto; }
  .nav-dropdown {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: none; border-left: 2px solid var(--mist);
    border-radius: 0; min-width: 0; padding: 0 0 8px 10px; margin: 0 0 6px 12px;
    max-height: 0; overflow: hidden; transition: max-height 0.3s var(--ease);
  }
  .nav-item-has-children.expanded .nav-dropdown { max-height: 600px; }
  .nav-item-has-children.expanded .chev { transform: rotate(180deg); }
  .nav-cta { margin: 12px 0 0; }
  .nav-cta .btn { width: 100%; }
}
@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .split.reverse .split-media { order: 0; }
  .split-media .badge { left: 16px; bottom: -18px; }
  .contact-layout { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: repeat(2,1fr); }
  .steps { grid-template-columns: 1fr 1fr; }
  .cta-band-inner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 520px) {
  body { font-size: 16px; }
  .form-row { grid-template-columns: 1fr; }
  .hero-strip { grid-template-columns: 1fr; }
  .hero-stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .stat-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .trust-band-inner { flex-direction: column; align-items: flex-start; gap: 14px; }
  .hero-actions .btn, .cta-band .btn { width: 100%; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ============================================================
   COURSE LAUNCH CARD (Free course -> opens in new tab)
   ============================================================ */
.course-launch {
  max-width: 860px; margin: 0 auto;
  display: flex; align-items: center; gap: 28px;
  background: var(--white); border: 1px solid var(--line);
  border-left: 5px solid var(--gold); border-radius: 12px;
  padding: 32px 36px; box-shadow: var(--shadow-md);
}
.course-launch-icon {
  flex-shrink: 0; width: 64px; height: 64px; border-radius: 12px;
  background: var(--navy-ink); color: var(--gold);
  display: flex; align-items: center; justify-content: center;
}
.course-launch-icon svg { width: 32px; height: 32px; }
.course-launch-body { flex-grow: 1; }
.course-launch-tag {
  font-family: var(--display); font-weight: 700; font-size: 0.74rem;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-deep);
  display: block; margin-bottom: 6px;
}
.course-launch-body h3 { font-size: 1.3rem; margin-bottom: 8px; }
.course-launch-body p { color: var(--slate); font-size: 0.96rem; margin: 0; }
.course-launch-btn { flex-shrink: 0; }
@media (max-width: 720px) {
  .course-launch { flex-direction: column; text-align: center; align-items: stretch; gap: 20px; }
  .course-launch-icon { align-self: center; }
  .course-launch-btn { width: 100%; }
}
