/* ============================================================
   Skills & Employment Australia — Site Styles
   Brand: Deep Teal #0E6B6B · Warm Amber #F5A623 · Ink Navy #102A33
          Support Sky #4FB0A8 · Coral #EE6C4D · Soft Cloud #F4F7F6
   Type:  Poppins (headings/UI) · Source Sans 3 (body)
   ============================================================ */

:root {
  --teal: #0E6B6B;
  --teal-dark: #0A5252;
  --amber: #F5A623;
  --amber-dark: #DD8F0F;
  --navy: #102A33;
  --sky: #4FB0A8;
  --coral: #EE6C4D;
  --cloud: #F4F7F6;
  --white: #FFFFFF;
  --ink: #102A33;
  --ink-soft: #3E5560;
  --line: #DCE7E5;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 6px 24px rgba(16, 42, 51, 0.10);
  --shadow-lg: 0 14px 40px rgba(16, 42, 51, 0.16);
  --font-head: "Poppins", "Segoe UI", sans-serif;
  --font-body: "Source Sans 3", "Segoe UI", sans-serif;
  --maxw: 1160px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.5;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

h1, h2, h3, h4 { font-family: var(--font-head); color: var(--navy); line-height: 1.15; }
h1 { font-weight: 700; font-size: clamp(2.1rem, 5vw, 3.6rem); letter-spacing: -0.5px; }
h2 { font-weight: 700; font-size: clamp(1.6rem, 3.4vw, 2.1rem); }
h3 { font-weight: 600; font-size: clamp(1.15rem, 2.4vw, 1.4rem); }
p  { color: var(--ink-soft); }

a { color: var(--teal); text-decoration: none; }
a:hover { text-decoration: underline; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* Labels — Poppins SemiBold, uppercase, tracked (per brand guide) */
.eyebrow {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--teal);
  display: block;
  margin-bottom: 10px;
}

/* ---------- Buttons ---------- */
.btn {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-block;
  padding: 14px 28px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  text-align: center;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-primary { background: var(--amber); color: var(--navy); }
.btn-primary:hover { background: var(--amber-dark); }
.btn-secondary { background: var(--teal); color: var(--white); }
.btn-secondary:hover { background: var(--teal-dark); color: var(--white); }
.btn-outline { background: transparent; color: var(--teal); border-color: var(--teal); }
.btn-outline:hover { background: var(--teal); color: var(--white); }
.btn-ghost-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,.7); }
.btn-ghost-light:hover { background: rgba(255,255,255,.14); color: var(--white); }
.btn-block { display: block; width: 100%; }
.btn[disabled] { opacity: .5; cursor: not-allowed; transform: none; box-shadow: none; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.site-header .container {
  display: flex; align-items: center; justify-content: space-between;
  height: 76px; gap: 20px;
}
.logo { display: flex; align-items: center; gap: 12px; }
.logo:hover { text-decoration: none; }
.logo-mark { height: 46px; width: auto; flex: none; }
.logo-text {
  font-family: var(--font-head); font-weight: 700;
  font-size: 1.06rem; line-height: 1.1; color: var(--navy);
  letter-spacing: -0.2px; white-space: nowrap;
}
.logo-text em {
  display: block; font-style: normal; font-weight: 600;
  font-size: 0.6rem; letter-spacing: 4.5px; text-transform: uppercase;
  color: var(--teal); margin-top: 3px;
}
.logo-text.light { color: var(--white); }
.logo-text.light em { color: var(--sky); }
@media (max-width: 400px) { .logo-text { font-size: .92rem; } }
.main-nav { display: flex; align-items: center; gap: 26px; }
.main-nav a {
  font-family: var(--font-head); font-weight: 600; font-size: .92rem;
  color: var(--navy);
}
.main-nav a:hover { color: var(--teal); text-decoration: none; }
.main-nav .btn { padding: 10px 22px; }
.nav-toggle {
  display: none; background: none; border: 0; cursor: pointer;
  width: 44px; height: 44px; border-radius: 8px;
}
.nav-toggle span {
  display: block; width: 24px; height: 2.5px; margin: 5px auto;
  background: var(--navy); border-radius: 2px; transition: .2s;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--navy) 0%, var(--teal) 78%, var(--sky) 130%);
  color: var(--white);
  overflow: hidden;
}
.hero .photo {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: .28;
}
.hero::after { /* approved teal duotone / navy overlay treatment */
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(16,42,51,.55), rgba(14,107,107,.35));
  pointer-events: none;
}
.hero .container { position: relative; z-index: 2; padding: 96px 24px 104px; max-width: 900px; text-align: center; }
.hero h1 { color: var(--white); margin: 14px 0 18px; }
.hero p.lead { color: rgba(255,255,255,.92); font-size: 1.22rem; max-width: 640px; margin: 0 auto 34px; }
.hero .eyebrow { color: var(--amber); }
.hero-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-stats {
  display: flex; gap: 40px; justify-content: center; flex-wrap: wrap;
  margin-top: 52px; padding-top: 30px; border-top: 1px solid rgba(255,255,255,.25);
}
.hero-stats .stat b { font-family: var(--font-head); font-size: 1.6rem; display: block; color: var(--amber); }
.hero-stats .stat span { font-size: .9rem; color: rgba(255,255,255,.85); }

/* ---------- Sections ---------- */
.section { padding: 84px 0; }
.section.tint { background: var(--cloud); }
.section.dark { background: var(--navy); color: var(--white); }
.section.dark h2, .section.dark h3 { color: var(--white); }
.section.dark p { color: rgba(255,255,255,.85); }
.section-head { max-width: 720px; margin: 0 auto 52px; text-align: center; }

/* ---------- Course cards ---------- */
.course-grid {
  display: grid; gap: 28px;
  grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
  align-items: stretch;
}
.course-card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: var(--shadow);
  transition: transform .18s ease, box-shadow .18s ease;
}
.course-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.card-media { position: relative; aspect-ratio: 16/10; background: linear-gradient(135deg, var(--teal), var(--sky)); }
.card-media img { width: 100%; height: 100%; object-fit: cover; }
.card-media .fallback-mark {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
}
.card-media .fallback-mark img { width: 68px; height: 68px; object-fit: contain; opacity: .9; }
.badge {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  font-family: var(--font-head); font-weight: 600; font-size: .68rem;
  letter-spacing: 2px; text-transform: uppercase;
  background: var(--amber); color: var(--navy);
  padding: 6px 12px; border-radius: 999px;
}
.badge.coral { background: var(--coral); color: var(--white); }
.badge.navy { background: var(--navy); color: var(--white); }
.card-body { padding: 24px 24px 28px; display: flex; flex-direction: column; gap: 14px; flex: 1; }
.card-body h3 { font-size: 1.22rem; }
.card-meta { list-style: none; display: grid; gap: 7px; font-size: .95rem; color: var(--ink-soft); }
.card-meta li { padding-left: 24px; position: relative; }
.card-meta li::before {
  content: ""; position: absolute; left: 0; top: 6px;
  width: 12px; height: 12px; border-radius: 3px;
  background: var(--sky);
}
.price-compare { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: auto; }
.price-opt {
  border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  padding: 12px 12px 14px; text-align: center; background: var(--cloud);
}
.price-opt.best { border-color: var(--amber); background: #FFF8EA; }
.price-opt .tag {
  font-family: var(--font-head); font-weight: 600; font-size: .64rem;
  letter-spacing: 1.6px; text-transform: uppercase; color: var(--ink-soft); display: block;
}
.price-opt .amount { font-family: var(--font-head); font-weight: 700; font-size: 1.28rem; color: var(--navy); display: block; margin-top: 3px; }
.price-opt .sub { font-size: .78rem; color: var(--ink-soft); display: block; margin-top: 2px; line-height: 1.3; }
.card-actions { display: grid; gap: 10px; }

/* ---------- Comparison table ---------- */
.table-wrap { overflow-x: auto; border-radius: var(--radius); box-shadow: var(--shadow); }
table.compare { width: 100%; border-collapse: collapse; background: var(--white); min-width: 780px; }
table.compare th, table.compare td { padding: 16px 18px; text-align: left; border-bottom: 1px solid var(--line); vertical-align: top; font-size: .95rem; }
table.compare thead th {
  background: var(--teal); color: var(--white);
  font-family: var(--font-head); font-weight: 600; font-size: .82rem;
  letter-spacing: 1.5px; text-transform: uppercase;
}
table.compare tbody th { font-family: var(--font-head); font-weight: 600; color: var(--navy); background: var(--cloud); white-space: nowrap; }
table.compare td { color: var(--ink-soft); }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 24px; counter-reset: step; }
.step { background: var(--white); border-radius: var(--radius); padding: 28px 24px; box-shadow: var(--shadow); position: relative; }
.step::before {
  counter-increment: step; content: counter(step);
  font-family: var(--font-head); font-weight: 700; font-size: 1.05rem;
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--amber); color: var(--navy); margin-bottom: 14px;
}
.step h3 { font-size: 1.05rem; margin-bottom: 8px; }
.step p { font-size: .95rem; }

/* ---------- Feature / pillar band ---------- */
.pillars { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 26px; }
.pillar { border-left: 4px solid var(--amber); padding: 6px 0 6px 20px; }
.pillar h3 { margin-bottom: 6px; }

/* ---------- Course detail pages ---------- */
.page-hero {
  position: relative; background: linear-gradient(130deg, var(--navy), var(--teal));
  color: var(--white); overflow: hidden;
}
.page-hero .photo { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: .30; }
.page-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(120deg, rgba(16,42,51,.6), rgba(14,107,107,.35)); }
.page-hero .container { position: relative; z-index: 2; padding: 72px 24px 80px; }
.page-hero h1 { color: var(--white); font-size: clamp(1.9rem, 4.5vw, 2.9rem); max-width: 760px; }
.page-hero p.lead { color: rgba(255,255,255,.92); font-size: 1.15rem; max-width: 660px; margin-top: 14px; }
.page-hero .eyebrow { color: var(--amber); }
.crumbs { font-size: .85rem; margin-bottom: 26px; color: rgba(255,255,255,.8); }
.crumbs a { color: rgba(255,255,255,.9); }

.facts-bar { background: var(--navy); color: var(--white); }
.facts-bar .container { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: 4px; padding: 0 24px; }
.fact { padding: 20px 18px; border-left: 1px solid rgba(255,255,255,.12); }
.fact:first-child { border-left: 0; }
.fact .tag { font-family: var(--font-head); font-weight: 600; font-size: .64rem; letter-spacing: 2px; text-transform: uppercase; color: var(--sky); display: block; margin-bottom: 4px; }
.fact b { font-family: var(--font-head); font-weight: 600; font-size: .98rem; }

.detail-grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: 56px; align-items: start; }
.detail-main h2 { margin: 44px 0 16px; }
.detail-main h2:first-child { margin-top: 0; }
.detail-main ul.ticks { list-style: none; display: grid; gap: 12px; margin: 18px 0; }
.detail-main ul.ticks li { padding-left: 34px; position: relative; color: var(--ink-soft); }
.detail-main ul.ticks li::before {
  content: "✓"; position: absolute; left: 0; top: -1px;
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--teal); color: var(--white);
  font-size: .8rem; display: flex; align-items: center; justify-content: center;
}
.detail-photo { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); margin: 26px 0; aspect-ratio: 16/9; background: linear-gradient(135deg, var(--teal), var(--sky)); }
.detail-photo img { width: 100%; height: 100%; object-fit: cover; }

.note {
  border-radius: var(--radius-sm); padding: 18px 20px; font-size: .95rem;
  margin: 22px 0; border-left: 4px solid;
}
.note.amber { background: #FFF8EA; border-color: var(--amber); color: #5C4708; }
.note.teal { background: #EAF4F3; border-color: var(--teal); color: var(--teal-dark); }
.note.coral { background: #FDEEE9; border-color: var(--coral); color: #8A3520; }
.note a { font-weight: 600; }

/* Sidebar payment panel */
.buy-panel { position: sticky; top: 100px; display: grid; gap: 18px; }
.pay-card {
  background: var(--white); border: 2px solid var(--line);
  border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow);
  position: relative;
}
.pay-card.featured { border-color: var(--amber); }
.pay-card .flag {
  position: absolute; top: -13px; left: 22px;
  background: var(--amber); color: var(--navy);
  font-family: var(--font-head); font-weight: 600; font-size: .66rem;
  letter-spacing: 1.8px; text-transform: uppercase;
  padding: 5px 12px; border-radius: 999px;
}
.pay-card h3 { font-size: 1.02rem; margin-bottom: 6px; }
.pay-card .price { font-family: var(--font-head); font-weight: 700; font-size: 2rem; color: var(--navy); }
.pay-card .price small { font-size: .95rem; font-weight: 600; color: var(--ink-soft); }
.pay-card ul { list-style: none; margin: 14px 0 18px; display: grid; gap: 8px; font-size: .9rem; color: var(--ink-soft); }
.pay-card ul li { padding-left: 22px; position: relative; }
.pay-card ul li::before { content: "•"; color: var(--amber); font-weight: 700; position: absolute; left: 6px; }

/* Schedule table */
.sched { width: 100%; border-collapse: collapse; margin: 18px 0 8px; font-size: .95rem; }
.sched th, .sched td { padding: 12px 14px; border-bottom: 1px solid var(--line); text-align: left; }
.sched th { font-family: var(--font-head); font-weight: 600; font-size: .78rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--teal); }
.sched td { color: var(--ink-soft); }
.sched td:first-child { font-weight: 600; color: var(--navy); white-space: nowrap; }

/* ---------- Industry demand ---------- */
.demand-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 26px; }
.demand-stat {
  border-top: 3px solid var(--amber);
  background: rgba(255,255,255,.06);
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  padding: 24px 22px;
}
.demand-stat b { font-family: var(--font-head); font-weight: 700; font-size: 2.1rem; color: var(--amber); display: block; margin-bottom: 8px; }
.demand-stat span { font-size: .93rem; color: rgba(255,255,255,.85); line-height: 1.45; }
.demand-src { text-align: center; font-size: .78rem; color: rgba(255,255,255,.5); margin-top: 34px; }

/* ---------- Map ---------- */
.map-wrap {
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg);
  border: 1px solid var(--line); line-height: 0;
}
.map-wrap iframe { width: 100%; height: 420px; border: 0; }
@media (max-width: 720px) { .map-wrap iframe { height: 300px; } }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 0 auto; display: grid; gap: 14px; }
.faq details {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-sm); padding: 0; overflow: hidden;
}
.faq summary {
  font-family: var(--font-head); font-weight: 600; font-size: 1rem;
  padding: 18px 22px; cursor: pointer; color: var(--navy);
  list-style: none; position: relative; padding-right: 52px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 20px; top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem; color: var(--teal); font-weight: 400;
}
.faq details[open] summary::after { content: "–"; }
.faq .faq-body { padding: 0 22px 20px; font-size: .97rem; color: var(--ink-soft); }

/* ---------- CTA band ---------- */
.cta-band { background: linear-gradient(120deg, var(--teal), var(--teal-dark)); color: var(--white); text-align: center; }
.cta-band .container { padding: 72px 24px; }
.cta-band h2 { color: var(--white); margin-bottom: 12px; }
.cta-band p { color: rgba(255,255,255,.9); max-width: 560px; margin: 0 auto 30px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy); color: rgba(255,255,255,.82); font-size: .93rem; }
.site-footer .container { padding: 64px 24px 34px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 40px; margin-bottom: 44px; }
.site-footer h4 { color: var(--white); font-size: .82rem; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 16px; font-weight: 600; }
.site-footer ul { list-style: none; display: grid; gap: 9px; }
.site-footer a { color: rgba(255,255,255,.82); }
.site-footer a:hover { color: var(--amber); }
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-logo .logo-mark { height: 46px; }
.footer-tagline { color: var(--sky); font-family: var(--font-head); font-weight: 600; font-size: .95rem; }
.footer-legal { border-top: 1px solid rgba(255,255,255,.14); padding-top: 24px; font-size: .82rem; color: rgba(255,255,255,.6); display: grid; gap: 8px; }

/* ---------- Checkout ---------- */
.checkout-wrap { display: grid; grid-template-columns: 1.5fr 1fr; gap: 48px; align-items: start; }
.panel { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow); }
.panel + .panel { margin-top: 26px; }
.panel h2 { font-size: 1.3rem; margin-bottom: 20px; }
.panel h2 .num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--teal); color: var(--white);
  font-size: .95rem; margin-right: 12px; vertical-align: middle;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-grid .full { grid-column: 1 / -1; }
label.field { display: grid; gap: 6px; font-family: var(--font-head); font-weight: 600; font-size: .82rem; color: var(--navy); }
label.field input, label.field select, label.field textarea {
  font-family: var(--font-body); font-size: 1rem; color: var(--ink);
  padding: 12px 14px; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  background: var(--white); width: 100%;
}
label.field input:focus, label.field select:focus, label.field textarea:focus {
  outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(14,107,107,.14);
}
.plan-picker { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.plan-option { position: relative; }
.plan-option input { position: absolute; opacity: 0; }
.plan-option .plan-box {
  display: block; border: 2px solid var(--line); border-radius: var(--radius);
  padding: 20px; cursor: pointer; height: 100%;
  transition: border-color .15s, background .15s;
}
.plan-option input:checked + .plan-box { border-color: var(--teal); background: #EAF4F3; }
.plan-option input:focus-visible + .plan-box { box-shadow: 0 0 0 3px rgba(14,107,107,.25); }
.plan-box .tag { font-family: var(--font-head); font-weight: 600; font-size: .66rem; letter-spacing: 1.6px; text-transform: uppercase; color: var(--teal); display: block; }
.plan-box .amount { font-family: var(--font-head); font-weight: 700; font-size: 1.5rem; color: var(--navy); display: block; margin: 4px 0 2px; }
.plan-box .sub { font-size: .85rem; color: var(--ink-soft); display: block; }
.checks { display: grid; gap: 13px; }
.checks label { display: grid; grid-template-columns: 22px 1fr; gap: 12px; font-size: .93rem; color: var(--ink-soft); align-items: start; cursor: pointer; }
.checks input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--teal); }

.summary-card { position: sticky; top: 100px; background: var(--navy); color: var(--white); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow-lg); }
.summary-card h2 { color: var(--white); font-size: 1.15rem; margin-bottom: 18px; }
.summary-card .row { display: flex; justify-content: space-between; gap: 14px; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,.14); font-size: .95rem; }
.summary-card .row span:first-child { color: rgba(255,255,255,.75); }
.summary-card .row.total { border-bottom: 0; padding-top: 16px; font-family: var(--font-head); font-weight: 700; font-size: 1.15rem; }
.summary-card .row.total span:first-child { color: var(--white); }
.summary-card .amount-due { color: var(--amber); }
.gateway-note { margin-top: 18px; font-size: .8rem; color: rgba(255,255,255,.65); line-height: 1.45; }
.gateway-logos { display: flex; gap: 10px; margin-top: 12px; flex-wrap: wrap; }
.gateway-logos span {
  border: 1px solid rgba(255,255,255,.3); border-radius: 6px;
  padding: 5px 12px; font-family: var(--font-head); font-weight: 600; font-size: .74rem;
  color: rgba(255,255,255,.85);
}

/* Confirmation state */
.confirm-box { max-width: 640px; margin: 0 auto; text-align: center; padding: 40px 20px; }
.confirm-box .tick {
  width: 84px; height: 84px; border-radius: 50%; background: var(--teal);
  color: var(--white); font-size: 2.4rem; display: flex; align-items: center;
  justify-content: center; margin: 0 auto 26px;
}
.hidden { display: none !important; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .detail-grid, .checkout-wrap { grid-template-columns: 1fr; }
  .buy-panel, .summary-card { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .main-nav {
    position: fixed; inset: 76px 0 auto 0;
    background: var(--white); border-bottom: 1px solid var(--line);
    flex-direction: column; align-items: stretch; text-align: center;
    padding: 18px 24px 26px; gap: 18px;
    transform: translateY(-130%); transition: transform .25s ease;
    box-shadow: var(--shadow-lg); z-index: 50;
  }
  .main-nav.open { transform: translateY(0); }
  .nav-toggle { display: block; }
  .section { padding: 60px 0; }
  .hero .container { padding: 68px 24px 76px; }
  .form-grid, .plan-picker, .price-compare { grid-template-columns: 1fr; }
  .hero-stats { gap: 22px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .facts-bar .container { grid-template-columns: 1fr 1fr; }
  .fact { border-left: 0; border-top: 1px solid rgba(255,255,255,.12); }
}

/* ---------- First Aid state cards ---------- */
.states-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(130px, 1fr)); gap: 14px; max-width: 980px; margin: 0 auto; }
.state-card {
  display: block; text-align: center; background: var(--white);
  border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  padding: 18px 10px; transition: border-color .15s, transform .15s, box-shadow .15s;
}
.state-card:hover { text-decoration: none; border-color: var(--teal); transform: translateY(-3px); box-shadow: var(--shadow); }
.state-card b { font-family: var(--font-head); font-weight: 700; font-size: 1.2rem; color: var(--teal); display: block; }
.state-card span { font-size: .82rem; color: var(--ink-soft); }

/* ---------- Course feature sections (Step 1 / Step 2) ---------- */
.course-feature {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 52px; align-items: center;
}
.course-feature.reverse .feature-photo { order: 2; }
.course-feature.reverse .feature-body { order: 1; }
.feature-photo {
  position: relative; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-lg); aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--teal), var(--sky));
}
.feature-photo img { width: 100%; height: 100%; object-fit: cover; }
.feature-photo .badge { top: 18px; left: 18px; }
.feature-body h2 { margin: 6px 0 14px; }
.feature-body .price-compare { max-width: 480px; }
.feature-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 22px; }
@media (max-width: 880px) {
  .course-feature, .course-feature.reverse { grid-template-columns: 1fr; gap: 28px; }
  .course-feature.reverse .feature-photo { order: 0; }
  .course-feature.reverse .feature-body { order: 1; }
}

/* ---------- Urgency chip ---------- */
.urgency { display: inline-block; background: #FDEEE9; color: #8A3520; border-radius: 999px; padding: 7px 18px; font-family: var(--font-head); font-weight: 600; font-size: .8rem; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 14px; }

/* ---------- Credit bridge band (Step 1 → Step 2) ---------- */
.credit-bridge { background: var(--teal); color: var(--white); position: relative; }
.credit-bridge .container { padding: 30px 24px; text-align: center; max-width: 900px; }
.credit-bridge p { color: rgba(255,255,255,.94); font-size: 1.02rem; line-height: 1.55; }
.credit-bridge strong { color: var(--amber); font-family: var(--font-head); font-weight: 600; }
.credit-bridge::after {
  content: ""; position: absolute; left: 50%; bottom: -12px;
  transform: translateX(-50%);
  border-left: 14px solid transparent; border-right: 14px solid transparent;
  border-top: 12px solid var(--teal);
}
