/* ═══════════════════════════════════════════════════════════
   CMT — Connect Move Together
   ═══════════════════════════════════════════════════════════ */

:root {
  /* Palette (unchanged) */
  --navy:    #0D1B2A;
  --navy2:   #132236;
  --navy3:   #0a1520;
  --teal:    #2BBFB3;
  --coral:   #E8503A;
  --white:   #FFFFFF;
  --muted:   #7A9BB5;
  --body:    #A9C3D6;

  --line:    rgba(255,255,255,0.08);
  --line-2:  rgba(43,191,179,0.22);
  --glow:    rgba(43,191,179,0.10);

  /* Rhythm */
  --gutter:  1.5rem;
  --max:     1180px;
  --sec:     clamp(3.5rem, 8vw, 7rem);
  --radius:  6px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--navy);
  color: var(--body);
  line-height: 1.7;
  font-size: 1.0625rem;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* ── TYPE ────────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  line-height: 1.02;
  text-transform: uppercase;
  letter-spacing: 0.005em;
  color: var(--white);
  text-wrap: balance;
}
h1 { font-size: clamp(2.75rem, 7vw, 5.25rem); }
h2 { font-size: clamp(2rem, 4.4vw, 3.25rem); }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.6rem); }
h4 { font-size: 1.0625rem; }

p { text-wrap: pretty; }
em { font-style: normal; }
strong { color: var(--white); font-weight: 600; }

.teal  { color: var(--teal); }
.coral { color: var(--coral); }

.lead {
  font-size: clamp(1.0625rem, 1.6vw, 1.25rem);
  line-height: 1.7;
  color: var(--body);
  max-width: 62ch;
}

/* ── LAYOUT ──────────────────────────────────────────────── */
.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }
.narrow    { max-width: 820px; }

.section       { padding: var(--sec) 0; }
.section--band { background: var(--navy2); border-block: 1px solid var(--line); }
.section--tight{ padding: calc(var(--sec) * 0.6) 0; }

/* Section heading block */
.sec-head { margin-bottom: clamp(2.5rem, 5vw, 4rem); max-width: 780px; }
.sec-head.is-centred { margin-inline: auto; text-align: center; }
.sec-head .lead { margin-top: 1.25rem; }
.sec-head.is-centred .lead { margin-inline: auto; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1.1rem;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--teal);
  flex-shrink: 0;
}
.is-centred .eyebrow::before { display: none; }

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.95rem 2rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.0625rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  border: 2px solid transparent;
  border-radius: 3px;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
  white-space: nowrap;
  text-align: center;
}
.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-coral   { background: var(--coral); color: var(--white); border-color: var(--coral); }
.btn-coral:hover { background: #f15c46; border-color: #f15c46; }
.btn-teal    { background: var(--teal); color: var(--navy); border-color: var(--teal); }
.btn-teal:hover  { background: #35d4c7; border-color: #35d4c7; }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.24); }
.btn-outline:hover { border-color: var(--teal); color: var(--teal); }
.btn-sm { padding: 0.6rem 1.25rem; font-size: 0.9375rem; }
.btn-block { width: 100%; }

.btn-row { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-top: 2rem; }

/* Text link with arrow */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.0625rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  transition: gap .18s ease;
}
.link-arrow:hover { gap: 0.85rem; }

/* ── ICONS ───────────────────────────────────────────────── */
.icon { width: 1em; height: 1em; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }

/* ── NAV ─────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(10,21,32,0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-inner { display: flex; align-items: center; gap: 1.5rem; height: 76px; }
.nav-logo { display: flex; align-items: center; height: 100%; padding: 12px 0; margin-right: auto; }
.nav-logo img { height: 100%; width: auto; object-fit: contain; max-width: 190px; }

.nav-links { display: flex; align-items: center; gap: 0.15rem; }
.nav-links a {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0.5rem 0.9rem;
  border-radius: 3px;
  transition: color .18s ease;
  position: relative;
}
.nav-links a:hover { color: var(--white); }
.nav-links a.active { color: var(--white); }
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0.9rem; right: 0.9rem; bottom: 0.1rem;
  height: 2px;
  background: var(--teal);
}
.nav-cta { margin-left: 0.75rem; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 210;
}
.hamburger span { display: block; width: 26px; height: 2px; background: var(--white); border-radius: 2px; transition: transform .28s, opacity .2s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── PAGES ───────────────────────────────────────────────── */
.page { display: none; }
.page.active { display: block; animation: fade .35s ease; }
@keyframes fade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  position: relative;
  padding: clamp(3.5rem, 8vw, 6.5rem) 0 clamp(3rem, 6vw, 5rem);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -30%; right: -15%;
  width: 780px; height: 780px;
  background: radial-gradient(circle, var(--glow) 0%, transparent 62%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(43,191,179,0.09);
  border: 1px solid var(--line-2);
  color: var(--teal);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.45rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.75rem;
}
.hero h1 { margin-bottom: 1.5rem; }
.hero .lead { font-size: clamp(1.0625rem, 1.7vw, 1.3rem); }

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.75rem;
  margin-top: 2.25rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--line);
}
.trust-strip li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  color: var(--muted);
}
.trust-strip .icon { color: var(--teal); width: 1.05em; height: 1.05em; }

/* Hero panel */
.hero-panel {
  background: linear-gradient(160deg, var(--navy2), var(--navy3));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
}
.hero-panel-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1.1rem;
  margin-bottom: 1.35rem;
  border-bottom: 1px solid var(--line);
}
.hero-panel-head h3 { font-size: 1.2rem; }
.hero-panel-head span {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal);
}
.hero-facts { display: grid; gap: 1.05rem; }
.hero-fact { display: flex; gap: 0.95rem; align-items: flex-start; }
.hero-fact .icon { color: var(--teal); width: 1.2rem; height: 1.2rem; margin-top: 0.28rem; }
.hero-fact p { font-size: 0.9375rem; line-height: 1.6; margin: 0; }
.hero-fact strong { display: block; color: var(--white); font-weight: 600; font-size: 0.9688rem; }

.hero-panel-foot {
  margin-top: 1.6rem;
  padding-top: 1.35rem;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.hero-metric { text-align: center; flex: 1; }
.hero-metric b {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
  color: var(--teal);
}
.hero-metric.is-coral b { color: var(--coral); }
.hero-metric span {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.4rem;
  line-height: 1.35;
}
.hero-metric-div { width: 1px; align-self: stretch; background: var(--line); }

/* ── PAGE HEADER (inner pages) ───────────────────────────── */
.page-head {
  position: relative;
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(2.5rem, 5vw, 3.5rem);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.page-head::before {
  content: "";
  position: absolute;
  top: -60%; left: -10%;
  width: 620px; height: 620px;
  background: radial-gradient(circle, var(--glow) 0%, transparent 65%);
  pointer-events: none;
}
.page-head > .container { position: relative; }
.page-head h1 { font-size: clamp(2.25rem, 5.2vw, 4rem); margin-bottom: 1.25rem; }

/* ── VALUE CARDS ─────────────────────────────────────────── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.vcard {
  background: var(--navy2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.25rem 1.85rem;
  transition: transform .22s ease, border-color .22s ease;
}
.vcard:hover { transform: translateY(-5px); border-color: var(--line-2); }
.vcard-icon {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(43,191,179,0.11);
  color: var(--teal);
  margin-bottom: 1.35rem;
}
.vcard-icon .icon { width: 1.35rem; height: 1.35rem; }
.vcard.is-coral .vcard-icon { background: rgba(232,80,58,0.13); color: var(--coral); }
.vcard h3 { margin-bottom: 0.7rem; }
.vcard p { font-size: 0.9688rem; margin: 0; }

/* ── PATHWAYS ────────────────────────────────────────────── */
.pathways { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.pathway {
  position: relative;
  background: var(--navy2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.5rem 1.85rem 2.15rem;
  overflow: hidden;
  transition: transform .22s ease, border-color .22s ease;
}
.pathway::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: var(--teal);
}
.pathway.is-coral::before { background: var(--coral); }
.pathway:hover { transform: translateY(-5px); border-color: var(--line-2); }
.pathway-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--teal);
  margin-bottom: 0.65rem;
}
.pathway.is-coral .pathway-num { color: var(--coral); }
.pathway h3 { font-size: clamp(1.5rem, 2.4vw, 1.85rem); margin-bottom: 0.6rem; }
.pathway-for {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--white);
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--line);
  line-height: 1.5;
}
.pathway p { font-size: 0.9375rem; margin: 0; }

/* ── PROMISE BANNER ──────────────────────────────────────── */
.promise {
  position: relative;
  background: linear-gradient(135deg, var(--navy2) 0%, var(--navy3) 100%);
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  padding: clamp(2.5rem, 5vw, 4rem);
  text-align: center;
  overflow: hidden;
}
.promise::before {
  content: "";
  position: absolute;
  top: -50%; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, var(--glow) 0%, transparent 60%);
  pointer-events: none;
}
.promise > * { position: relative; }
.promise h2 { max-width: 20ch; margin: 0 auto 1.25rem; }
.promise .lead { margin: 0 auto 2rem; }
.promise-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 2rem;
}
.promise-tags li {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 0.4rem 1rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
}
.promise-tags .icon { color: var(--teal); width: 0.95rem; height: 0.95rem; }

/* ── CALLOUT ─────────────────────────────────────────────── */
.callout {
  display: flex;
  gap: 1.25rem;
  background: rgba(43,191,179,0.07);
  border: 1px solid var(--line-2);
  border-left: 3px solid var(--teal);
  border-radius: var(--radius);
  padding: 1.75rem 1.9rem;
}
.callout .icon { color: var(--teal); width: 1.5rem; height: 1.5rem; margin-top: 0.2rem; }
.callout h4 { color: var(--teal); margin-bottom: 0.5rem; font-size: 1.125rem; }
.callout p { font-size: 0.9688rem; margin: 0; }

/* ── JOURNEY TIMELINE ────────────────────────────────────── */
.journey { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.journey::before {
  content: "";
  position: absolute;
  top: 27px; left: 12%; right: 12%;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--teal) 55%, var(--coral));
  opacity: 0.35;
}
.phase { position: relative; }
.phase-node {
  position: relative;
  width: 54px; height: 54px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--navy);
  border: 2px solid var(--teal);
  color: var(--teal);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
}
.phase.is-coral .phase-node { border-color: var(--coral); color: var(--coral); }
.phase-weeks {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.5rem;
}
.phase.is-coral .phase-weeks { color: var(--coral); }
.phase h3 { font-size: 1.375rem; margin-bottom: 0.7rem; }
.phase p { font-size: 0.9375rem; margin: 0; }

/* ── SPLIT ROWS ──────────────────────────────────────────── */
.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}
.split--reverse .split-media { order: 2; }
.split-body > p + p { margin-top: 1rem; }

.mini-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-top: 2.25rem; }
.mini {
  background: var(--navy2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem 1.6rem;
}
.mini .icon { width: 1.3rem; height: 1.3rem; color: var(--teal); margin-bottom: 0.9rem; }
.mini h4 { color: var(--white); margin-bottom: 0.55rem; font-family: 'Inter', sans-serif; font-weight: 600; text-transform: none; letter-spacing: 0; font-size: 1.0313rem; line-height: 1.4; }
.mini p { font-size: 0.9375rem; margin: 0; }

/* ── CHECK LIST ──────────────────────────────────────────── */
.check-list { display: grid; gap: 0.15rem; }
.check-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.05rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.9688rem;
  line-height: 1.6;
}
.check-list li:last-child { border-bottom: none; }
.check-list .icon { color: var(--teal); width: 1.2rem; height: 1.2rem; margin-top: 0.22rem; }
.check-list strong { display: block; }

/* ── ASSESSMENT PANEL ────────────────────────────────────── */
.assess-panel {
  background: var(--navy2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.75rem, 3.5vw, 2.5rem);
}
.assess-panel h4 {
  font-family: 'Barlow Condensed', sans-serif;
  letter-spacing: 0.14em;
  color: var(--teal);
  font-size: 0.8125rem;
  margin-bottom: 1.15rem;
}

/* ── TIMETABLE ───────────────────────────────────────────── */
.timetable { display: grid; gap: 0.85rem; }
.tt-row {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 1.5rem;
  align-items: center;
  background: var(--navy2);
  border: 1px solid var(--line);
  border-left: 3px solid var(--teal);
  border-radius: var(--radius);
  padding: 1.35rem 1.75rem;
  transition: border-color .2s ease;
}
.tt-row:hover { border-color: var(--line-2); border-left-color: var(--teal); }
.tt-row.is-coral { border-left-color: var(--coral); }
.tt-day {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.375rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--white);
}
.tt-day small {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.2rem;
}
.tt-slots { display: flex; flex-wrap: wrap; gap: 0.7rem; }
.tt-slot {
  background: rgba(43,191,179,0.08);
  border: 1px solid var(--line-2);
  border-radius: 4px;
  padding: 0.65rem 1.05rem;
  min-width: 0;
}
.tt-time {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--white);
  white-space: nowrap;
}
.tt-detail { display: block; font-size: 0.8125rem; color: var(--muted); margin-top: 0.1rem; }

.tt-note {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  margin-top: 1.75rem;
  padding: 1.25rem 1.5rem;
  background: var(--navy2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 0.9375rem;
}
.tt-note .icon { color: var(--teal); width: 1.2rem; height: 1.2rem; margin-top: 0.2rem; }
.tt-note a { color: var(--teal); text-decoration: underline; text-underline-offset: 3px; }

/* ── PRICING ─────────────────────────────────────────────── */
.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; align-items: stretch; }
.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--navy2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.5rem 1.85rem 2rem;
  transition: transform .22s ease, border-color .22s ease;
}
.price-card:hover { transform: translateY(-5px); }
.price-card.is-popular {
  border-color: var(--coral);
  background: linear-gradient(170deg, rgba(232,80,58,0.07), var(--navy2) 55%);
}
.price-badge {
  position: absolute;
  top: -0.8125rem; left: 50%;
  transform: translateX(-50%);
  background: var(--coral);
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: 100px;
  white-space: nowrap;
}
.price-card h3 { font-size: 1.5rem; margin-bottom: 1.15rem; }
.price-amount {
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  line-height: 1;
  color: var(--teal);
  margin-bottom: 0.35rem;
}
.price-card.is-popular .price-amount { color: var(--coral); }
.price-currency { font-size: 1.75rem; }
.price-value { font-size: 3.75rem; }
.price-period { font-size: 0.8125rem; color: var(--muted); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 1.35rem; }
.price-classes {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9688rem;
  font-weight: 600;
  color: var(--white);
  padding: 1rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 1.15rem;
}
.price-classes .icon { color: var(--teal); width: 1.1rem; height: 1.1rem; }
.price-card.is-popular .price-classes .icon { color: var(--coral); }
.price-card p { font-size: 0.9375rem; flex: 1; margin-bottom: 1.75rem; }

.guarantees {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin: 2.25rem 0 0.9rem;
}
.guarantees li {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 0.42rem 1rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
}
.guarantees .icon { color: var(--teal); width: 0.95rem; height: 0.95rem; }
.gst-note { text-align: center; font-size: 0.8125rem; color: var(--muted); }

/* ── STEPS ───────────────────────────────────────────────── */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; counter-reset: s; }
.step {
  counter-increment: s;
  background: var(--navy2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
}
.step::before {
  content: counter(s, decimal-leading-zero);
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1;
  color: rgba(43,191,179,0.28);
  margin-bottom: 0.9rem;
}
.step h4 { color: var(--white); font-family: 'Inter', sans-serif; text-transform: none; letter-spacing: 0; font-weight: 600; font-size: 1.0313rem; margin-bottom: 0.4rem; }
.step p { font-size: 0.9375rem; margin: 0; }

/* ── ABOUT ───────────────────────────────────────────────── */
.about-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
.about-photo {
  position: sticky;
  top: 100px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--navy2);
}
.about-photo img { width: 100%; height: auto; object-fit: cover; }
.photo-placeholder {
  display: none;
  aspect-ratio: 4/5;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--muted);
  font-family: 'Barlow Condensed', sans-serif;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.8125rem;
}
.photo-placeholder .ph-icon { font-size: 2rem; }

.pull-quote {
  border-left: 3px solid var(--teal);
  padding: 0.4rem 0 0.4rem 1.75rem;
  margin: 2rem 0;
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  line-height: 1.6;
  color: var(--white);
  font-style: italic;
}
.bio-placeholder {
  border: 1px dashed rgba(232,80,58,0.55);
  background: rgba(232,80,58,0.05);
  border-radius: var(--radius);
  padding: 1.15rem 1.4rem;
  color: var(--muted);
  font-style: italic;
  font-size: 0.9375rem;
}
.values { display: grid; gap: 0.15rem; margin-top: 1.5rem; }

/* ── CONTACT ─────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.contact-items { display: grid; gap: 0.15rem; margin-top: 2rem; }
.ci { display: flex; gap: 1.1rem; align-items: flex-start; padding: 1.15rem 0; border-bottom: 1px solid var(--line); }
.ci-icon {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(43,191,179,0.10);
  color: var(--teal);
  flex-shrink: 0;
}
.ci-icon .icon { width: 1.15rem; height: 1.15rem; }
.ci-text strong { display: block; font-size: 0.75rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); font-weight: 600; margin-bottom: 0.2rem; }
.ci-text span { font-size: 0.9688rem; color: var(--white); line-height: 1.55; }
.ci-text a { color: var(--teal); }

.socials { display: flex; gap: 0.6rem; }
.socials a {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--muted);
  transition: color .18s, border-color .18s;
}
.socials a:hover { color: var(--teal); border-color: var(--teal); }
.socials .icon { width: 1.05rem; height: 1.05rem; }

/* Form */
.form-card {
  background: var(--navy2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.75rem, 3.5vw, 2.5rem);
}
.form-card h3 { margin-bottom: 0.4rem; }
.form-card .sub { font-size: 0.9375rem; color: var(--muted); margin-bottom: 1.85rem; }
.fg { margin-bottom: 1.15rem; }
.fg-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.15rem; }
.fg label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.5rem;
}
.fg input, .fg select, .fg textarea {
  width: 100%;
  background: var(--navy3);
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.9688rem;
  padding: 0.8rem 0.95rem;
  transition: border-color .18s;
}
.fg textarea { min-height: 130px; resize: vertical; }
.fg input:focus, .fg select:focus, .fg textarea:focus { outline: none; border-color: var(--teal); }
.fg input::placeholder, .fg textarea::placeholder { color: #4a6a85; }
.fg select { appearance: none; cursor: pointer; background-image: linear-gradient(45deg, transparent 50%, var(--muted) 50%), linear-gradient(135deg, var(--muted) 50%, transparent 50%); background-position: calc(100% - 18px) 50%, calc(100% - 13px) 50%; background-size: 5px 5px, 5px 5px; background-repeat: no-repeat; }
.fg select option { background: var(--navy3); }

.form-success { display: none; text-align: center; padding: 2.5rem 1rem; }
.form-success .tick { font-size: 2.75rem; margin-bottom: 0.85rem; }
.form-success h3 { margin-bottom: 0.5rem; }

/* ── CTA BAND ────────────────────────────────────────────── */
.cta-band {
  background: linear-gradient(135deg, var(--navy2), var(--navy3));
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  padding: clamp(2.5rem, 5vw, 3.75rem);
  text-align: center;
}
.cta-band h2 { margin-bottom: 1rem; }
.cta-band .lead { margin: 0 auto 2rem; }
.cta-band .btn-row { justify-content: center; margin-top: 0; }

/* ── FOOTER ──────────────────────────────────────────────── */
.footer { background: var(--navy3); border-top: 1px solid var(--line); padding: clamp(3rem, 6vw, 4.5rem) 0 2rem; margin-top: var(--sec); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 2.5rem; margin-bottom: 3rem; }
.footer-brand img { height: 46px; width: auto; margin-bottom: 1.25rem; }
.footer-brand p { font-size: 0.9375rem; max-width: 42ch; }
.footer-col h4 { font-size: 0.8125rem; letter-spacing: 0.16em; color: var(--teal); margin-bottom: 1.15rem; }
.footer-col li { margin-bottom: 0.65rem; }
.footer-col a { font-size: 0.9375rem; color: var(--muted); transition: color .18s; cursor: pointer; }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  flex-wrap: wrap;
  padding-top: 1.75rem;
  border-top: 1px solid var(--line);
  font-size: 0.875rem;
  color: var(--muted);
}

/* ── STATES ──────────────────────────────────────────────── */
.loading-note {
  grid-column: 1 / -1;
  text-align: center;
  padding: 3rem 1rem;
  color: var(--muted);
  font-family: 'Barlow Condensed', sans-serif;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.9375rem;
}
.loading-note a { color: var(--teal); text-decoration: underline; }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-panel { max-width: 560px; }
  .split, .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .about-photo { position: static; max-width: 420px; }
  .split--reverse .split-media { order: 0; }
}

@media (max-width: 920px) {
  .nav-links {
    position: fixed;
    inset: 76px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--navy3);
    border-bottom: 1px solid var(--line);
    padding: 0.75rem var(--gutter) 1.5rem;
    transform: translateY(-120%);
    transition: transform .3s ease;
    z-index: 199;
  }
  .nav-links.open { transform: none; }
  .nav-links a { padding: 0.9rem 0; border-bottom: 1px solid var(--line); font-size: 1.0625rem; }
  .nav-links a.active::after { left: 0; right: auto; width: 26px; bottom: 0.55rem; }
  .nav-cta { margin: 1rem 0 0; }
  .hamburger { display: flex; }
  .nav-inner { gap: 0.75rem; }

  .card-grid, .pathways, .journey, .pricing, .steps, .mini-grid { grid-template-columns: 1fr; }
  .journey::before { display: none; }
  .tt-row { grid-template-columns: 1fr; gap: 1rem; }
}

@media (max-width: 560px) {
  .fg-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .trust-strip { flex-direction: column; gap: 0.65rem; }
  .btn { width: 100%; }
  .btn-row { flex-direction: column; }
  .hero-panel-foot { flex-direction: column; gap: 1.25rem; }
  .hero-metric-div { width: 100%; height: 1px; }
  .price-value { font-size: 3.25rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .btn:hover, .vcard:hover, .pathway:hover, .price-card:hover { transform: none; }
}
