/* ============================================================
   Australian Qualification Pathways — style system
   Solid colour blocks, pointy corners, offset-block signature
   ============================================================ */

:root {
  --ink: #101018;
  --cream: #FFF5E1;
  --blue: #005DFF;
  --lime: #8CFF00;
  --pink: #C2185B;
  --white: #FFFFFF;

  --pale-blue: #EAF1FF;
  --pale-lime: #F3FFDF;
  --ink-soft: rgba(16, 16, 24, 0.72);
  --ink-line: rgba(16, 16, 24, 0.14);
  --white-soft: rgba(255, 255, 255, 0.78);
  --white-line: rgba(255, 255, 255, 0.18);

  --radius: 6px;
  --radius-sm: 4px;
  --border: 2px solid var(--ink);
  --shadow-offset: 6px 6px 0 var(--ink);
  --shadow-offset-sm: 4px 4px 0 var(--ink);

  --font-display: "Bricolage Grotesque", sans-serif;
  --font-body: "DM Sans", sans-serif;

  --container: 1200px;
  --nav-h: 76px;
}

/* ---------- Reset & base ---------- */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: #6604ce;
  background: var(--white);
  overflow-x: clip;
}

::selection {
  background: var(--lime);
  color: var(--ink);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.12;
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(30px, 3.8vw, 48px); font-weight: 700; }
h2 { font-size: clamp(27px, 3.2vw, 38px); font-weight: 700; }
h3 { font-size: 20px; font-weight: 600; }

p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

a { color: inherit; }

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

ul { padding: 0; margin: 0; list-style: none; }

button {
  font: inherit;
  color: inherit;
  cursor: pointer;
  background: none;
  border: none;
}

fieldset {
  border: none;
  padding: 0;
  margin: 0;
}

:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 2px;
}

.section--ink :focus-visible,
.footer :focus-visible {
  outline-color: var(--lime);
}

.skip-link {
  position: absolute;
  top: -60px;
  left: 12px;
  z-index: 200;
  padding: 10px 16px;
  background: var(--ink);
  color: var(--white);
  border-radius: var(--radius-sm);
  transition: top 0.2s;
}
.skip-link:focus { top: 12px; }

/* ---------- Layout helpers ---------- */

.container {
  width: min(100%, var(--container));
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: 24px;
}

.section { padding-block: 96px; }

.section--white { background: var(--white); }
.section--cream { background: var(--cream); }
.section--paleblue { background: var(--pale-blue); }
.section--palelime { background: var(--pale-lime); }
.section--ink { background: var(--ink); color: var(--white); }

main section[id] { scroll-margin-top: calc(var(--nav-h) + 12px); }

.section-head {
  max-width: 720px;
  margin-bottom: 56px;
}
.section-head__sub {
  color: var(--ink-soft);
  font-size: 18px;
}
.section--ink .section-head__sub { color: var(--white-soft); }

/* ---------- Eyebrows & accents ---------- */

.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: var(--radius-sm);
  margin: 0 0 18px;
  white-space: nowrap;
}
.eyebrow--pink { background: var(--pink); color: var(--white); }
.eyebrow--blue { background: var(--blue); color: var(--white); }
.eyebrow--lime { background: var(--lime); color: var(--ink); }

.accent-pink { color: var(--pink); }
.accent-blue { color: var(--blue); }
.accent-lime { color: var(--lime); }

.underline-blue {
  box-shadow: inset 0 -0.28em 0 rgba(0, 93, 255, 0.28);
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  padding: 12px 22px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
  will-change: transform;
}
.btn--lg { padding: 15px 28px; font-size: 17px; }

.btn--pink { background: var(--pink); color: var(--white); border-color: var(--pink); }
.btn--blue { background: var(--blue); color: var(--white); border-color: var(--blue); }
.btn--lime { background: var(--lime); color: var(--ink); border-color: var(--lime); }

.btn--pink:hover, .btn--blue:hover, .btn--lime:hover {
  transform: translate(-2px, -2px);
  box-shadow: var(--shadow-offset-sm);
}
.btn--lime:hover { box-shadow: 4px 4px 0 var(--white); }

.btn--pink:active, .btn--blue:active, .btn--lime:active {
  transform: translate(0, 0);
  box-shadow: none;
}

.btn--outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn--outline:hover { background: var(--ink); color: var(--white); }

.section--ink .btn--outline {
  color: var(--white);
  border-color: var(--white);
}
.section--ink .btn--outline:hover { background: var(--white); color: var(--ink); }

/* ---------- Chips ---------- */

.chip {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
}
.chip--blue { background: var(--blue); color: var(--white); }
.chip--cream { background: var(--cream); color: var(--ink); border: 1px solid var(--ink-line); }

/* ---------- Nav ---------- */

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: var(--border);
}

/* Pathway progress line — fills as the reader travels the page */
.nav__progress {
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 3px;
  background: var(--pink);
  transform: scaleX(0);
  transform-origin: left center;
  z-index: 1;
  pointer-events: none;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: var(--nav-h);
}

.nav__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.nav__logo img {
  display: block;
  width: 156px;
  height: auto;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav__link {
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.15s ease, color 0.15s ease;
}
.nav__link:hover { color: var(--blue); }
.nav__link.is-active { border-bottom-color: var(--pink); }

.nav__cta { margin-left: 6px; }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--ink);
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- Hero ---------- */

.hero {
  background: var(--cream);
  padding-block: 80px 96px;
  overflow: hidden;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 56px;
  align-items: center;
}

.hero__lead {
  font-size: 19px;
  font-weight: 500;
  max-width: 560px;
  margin-bottom: 14px;
}

.hero__support {
  font-size: 16px;
  color: var(--ink-soft);
  max-width: 540px;
  margin-bottom: 30px;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 24px;
}

.hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* Headline line-splitting (added by JS for the load reveal, then removed) */
.split-line {
  display: block;
  overflow: hidden;
}
.split-line__inner {
  display: block;
  will-change: transform;
}

/* Hero visual — one contained composition: Australia panel + certificate card + tags.
   Aspect-ratio locked so the pieces never drift apart on wide screens. */

.hero__visual {
  position: relative;
  width: 100%;
  max-width: 500px;
  margin-left: auto;
  aspect-ratio: 50 / 46;
}

.hv__map-block {
  position: absolute;
  top: 0;
  right: 0;
  width: 76%;
  padding: 22px;
  background: var(--pale-blue);
  border: var(--border);
  border-radius: var(--radius);
}

.hv__cert {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  width: 58%;
  background: var(--white);
  border: var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-offset);
  padding: 22px;
}

.hv__cert-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.hv__seal {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  background: var(--lime);
  color: var(--ink);
  border: var(--border);
  border-radius: var(--radius-sm);
}
.hv__seal svg { width: 24px; height: 24px; }

.hv__bar {
  display: block;
  height: 10px;
  background: var(--pale-blue);
  border: 1.5px solid var(--ink);
  border-radius: var(--radius-sm);
  margin-bottom: 8px;
  width: 75%;
}
.hv__bar--wide { width: 100%; background: var(--cream); }
.hv__bar--short { width: 50%; }

.hv__cert-note {
  margin-top: 14px;
  font-size: 12px;
  line-height: 1.5;
  color: var(--ink-soft);
}

.hv__tile {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-offset-sm);
}
.hv__tile svg { width: 28px; height: 28px; }
.hv__tile--pink { background: var(--pink); color: var(--white); top: 18px; left: 26px; }
.hv__tile--blue { background: var(--blue); color: var(--white); bottom: 8px; right: 64px; }
.hv__tile--lime { background: var(--lime); color: var(--ink); top: 46%; left: 46%; }

.hero__tag {
  position: absolute;
  z-index: 3;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  border: var(--border);
  box-shadow: var(--shadow-offset-sm);
}
.hero__tag--ink {
  background: var(--ink);
  color: var(--lime);
  top: 240px;
  right: 0;
  transform: rotate(2deg);
}
.hero__tag--pink {
  background: var(--pink);
  color: var(--white);
  top: 110px;
  left: 0;
  transform: rotate(-3deg);
}

/* ---------- Scroll-spread hero ---------- */

[data-ps] {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-block: 0;
  background: var(--cream);
  overflow: visible;
}

[data-ps-sticky] {
  width: 100%;
  height: 100vh;
  min-height: 620px;
  overflow: hidden;
  background: var(--cream);
  perspective: 1600px;
  perspective-origin: 50% 0%;
}

[data-ps-bg] {
  position: absolute;
  inset: 0;
  z-index: 0;
  color: var(--blue);
  opacity: 0.12;
  pointer-events: none;
}

[data-ps-bg] svg {
  width: 100%;
  height: 100%;
}

[data-ps-stage] {
  position: absolute;
  inset: 0;
  z-index: 1;
  transform-style: preserve-3d;
  will-change: transform, opacity;
}

[data-ps-intro] {
  position: absolute;
  left: 50%;
  top: clamp(56px, 11vh, 90px);
  z-index: 30;
  width: min(760px, 82vw);
  text-align: center;
  transform: translateX(-50%);
  pointer-events: none;
}

.ps-intro-kicker {
  display: inline-flex;
  margin: 0 0 12px;
  padding: 6px 11px;
  border: 2px solid var(--ink);
  border-radius: var(--radius-sm);
  background: var(--lime);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  box-shadow: 3px 3px 0 var(--ink);
}

.ps-intro-title {
  max-width: 720px;
  margin: 0 auto;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(34px, 4.2vw, 56px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.045em;
  text-wrap: balance;
  white-space: nowrap;
}

[data-ps-item] {
  position: absolute;
  left: 50%;
  top: 50%;
  overflow: hidden;
  border: var(--border);
  border-radius: var(--radius);
  box-shadow: 0 22px 52px rgba(16, 16, 24, 0.22);
  backface-visibility: hidden;
  transform: translateZ(0);
  will-change: transform, opacity, width, height;
}

[data-ps-item] > * {
  width: 100%;
  height: 100%;
}

.aqp-ps-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 6px;
  padding: clamp(10px, 1.3vw, 22px);
  isolation: isolate;
  font-family: var(--font-display);
  background: var(--ink);
}

.hero img,
.hero-card img,
[data-ps-item] img,
.aqp-ps-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.aqp-ps-card img {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.aqp-ps-card span {
  position: relative;
  z-index: 2;
  width: fit-content;
  max-width: 100%;
  padding: 4px 9px;
  border: 1.5px solid currentColor;
  border-radius: var(--radius-sm);
  font-size: clamp(10px, 0.85vw, 13px);
  font-weight: 700;
  line-height: 1;
  background: rgba(255, 255, 255, 0.22);
}

.aqp-ps-card strong {
  position: relative;
  z-index: 2;
  max-width: 100%;
  font-size: clamp(17px, 1.85vw, 30px);
  line-height: 1;
  letter-spacing: -0.03em;
  overflow-wrap: anywhere;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.85);
}

.aqp-ps-card--pink {
  color: var(--white);
  background-color: var(--pink);
}

.aqp-ps-card--blue {
  color: var(--white);
  background-color: var(--blue);
}

.aqp-ps-card--lime {
  color: var(--white);
  background-color: var(--lime);
}

.aqp-ps-card--ink {
  color: var(--white);
  background-color: var(--ink);
}

[data-ps-text] {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 20;
  width: min(720px, 54vw);
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%);
}

[data-ps-text-inner] {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.ps-kicker {
  margin-bottom: 0;
}

.ps-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(28px, 3.4vw, 46px);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.04em;
  color: var(--ink);
}

.ps-title em {
  font-style: normal;
  color: var(--blue);
}

.ps-title--mobile {
  display: none;
}

.ps-para {
  max-width: 500px;
  margin: 0;
  font-size: clamp(14px, 1.2vw, 17px);
  line-height: 1.65;
  color: var(--ink-soft);
}

.ps-para--support {
  max-width: 540px;
  font-size: clamp(13px, 1vw, 15px);
}

.ps-btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 2px;
}

.ps-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 22px;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.ps-btn--fill {
  color: var(--ink);
  background: var(--lime);
  border: 2px solid var(--lime);
}

.ps-btn--outline {
  color: var(--ink);
  background: var(--white);
  border: var(--border);
}

.ps-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-offset-sm);
}

.ps-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  max-width: 560px;
  margin-top: 2px;
}

.ps-chips span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 10px;
  border: 1px solid var(--ink-line);
  border-radius: var(--radius-sm);
  background: var(--white);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

@media (max-width: 900px) {
  [data-ps-text] {
    width: min(620px, 68vw);
  }

  .ps-title--desktop {
    display: none !important;
  }

  .ps-title--mobile {
    display: block !important;
  }
}

@media (max-width: 767px) {
  [data-ps] {
    min-height: 0;
  }

  [data-ps-sticky] {
    position: relative;
    height: auto;
    min-height: 0;
    overflow: visible;
    padding: 76px 20px;
  }

  [data-ps-bg],
  [data-ps-intro],
  [data-ps-item] {
    display: none !important;
  }

  [data-ps-stage] {
    position: static;
    inset: auto;
  }

  [data-ps-text] {
    position: static;
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  [data-ps-text-inner] {
    gap: 16px;
  }

  .ps-title {
    width: 100%;
    font-size: clamp(28px, 8vw, 36px);
    overflow-wrap: normal;
    text-wrap: balance;
    white-space: normal;
  }
  .ps-title--desktop { display: none !important; }
  .ps-title--mobile { display: block !important; }

  .ps-btns {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .ps-btn {
    width: 100%;
  }
}

/* ---------- Network strip ---------- */

.netstrip {
  background: var(--cream);
  padding-block: 16px 0;
  overflow: hidden;
}

.netstrip__heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(20px, 2vw, 27px);
  letter-spacing: 0.02em;
  text-align: center;
  margin: 0 0 8px;
}

.netstrip__scroll {
  overflow: hidden;
  background: var(--lime);
  border-block: var(--border);
  padding-block: 12px;
}

.netstrip__track {
  display: flex;
  width: max-content;
  animation: netstrip-scroll 30s linear infinite;
}

.netstrip__group {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  padding-right: 12px;
}

.netchip {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  white-space: nowrap;
  background: var(--white);
  border: var(--border);
  border-radius: var(--radius);
  padding: 8px 16px;
}

@keyframes netstrip-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- What we do ---------- */

.what__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.tile {
  background: var(--white);
  border: var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.tile:hover {
  transform: translate(-3px, -3px);
  box-shadow: var(--shadow-offset);
}

.tile__icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  border: var(--border);
  margin-bottom: 20px;
  transition: transform 0.25s ease;
}
.tile:hover .tile__icon { transform: rotate(-6deg); }

.tile__icon svg { width: 26px; height: 26px; }
.tile__icon--blue { background: var(--blue); color: var(--white); }
.tile__icon--lime { background: var(--lime); color: var(--ink); }
.tile__icon--pink { background: var(--pink); color: var(--white); }
.tile__icon--ink { background: var(--ink); color: var(--lime); }

.tile h3 { font-size: 18px; }
.tile p { color: var(--ink-soft); font-size: 15.5px; }

/* ---------- Pathways accordion grid ---------- */

.pathways__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: start;
  perspective: 1100px;
}

.pacc {
  background: var(--white);
  border: var(--border);
  border-radius: var(--radius);
  padding: 24px 22px;
  transition: box-shadow 0.2s ease;
  transform-style: preserve-3d;
}
.pacc:hover,
.pacc.is-open {
  box-shadow: var(--shadow-offset);
}
.pacc.is-open .pacc__icon {
  transform: rotate(-8deg);
}

.pacc__top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.pacc__icon {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: var(--border);
  border-radius: var(--radius);
  transition: transform 0.25s ease;
}
.pacc__icon svg { width: 24px; height: 24px; }
.pacc__icon--pink { background: var(--pink); color: var(--white); }
.pacc__icon--blue { background: var(--blue); color: var(--white); }
.pacc__icon--lime { background: var(--lime); color: var(--ink); }
.pacc__icon--ink { background: var(--ink); color: var(--lime); }

.pacc h3 {
  font-size: 17.5px;
  margin: 0;
  line-height: 1.25;
}

.pacc__desc {
  font-size: 14.5px;
  color: var(--ink-soft);
  margin-bottom: 16px;
}

.pacc__toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  color: var(--blue);
  white-space: nowrap;
  padding: 4px 0;
}

.pacc__chevron {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  font-size: 16px;
  font-weight: 700;
  background: var(--pale-blue);
  color: var(--ink);
  border: 1.5px solid var(--ink);
  border-radius: var(--radius-sm);
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}
.pacc__toggle[aria-expanded="true"] .pacc__chevron {
  transform: rotate(45deg);
  background: var(--pink);
  color: var(--white);
}

.pacc__panel {
  height: 0;
  overflow: hidden;
}

.pacc__list {
  padding-top: 16px;
}
.pacc__list li {
  position: relative;
  font-size: 14.5px;
  padding: 7px 0 7px 22px;
  border-bottom: 1px solid var(--ink-line);
}
.pacc__list li:last-child { border-bottom: none; }
.pacc__list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--pink);
  font-weight: 700;
}

.pathways__cta {
  margin-top: 56px;
  text-align: center;
}

.pathways__cta-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 20px;
}

.pathways__note {
  margin-top: 22px;
  font-size: 13.5px;
  color: var(--ink-soft);
  max-width: 520px;
  margin-inline: auto;
}

/* ---------- Pathway course ticker ---------- */

.pathways {
  position: relative;
  color: var(--white);
  background: #260a63;
  overflow: hidden;
}

.pathways > .container {
  position: relative;
  z-index: 1;
}

.pathways .section-head__sub {
  color: rgba(255, 255, 255, 0.76);
}

.pathways .accent-blue {
  color: var(--lime);
}

.pathways .pathways__grid,
.pathways .pathways__cta {
  display: none;
}

.course-ticker {
  position: relative;
  margin-inline: calc(50% - 50vw);
}

.course-ticker__controls {
  position: absolute;
  top: -48px;
  right: clamp(18px, 3vw, 42px);
  z-index: 5;
}

.course-ticker__toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 7px 15px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  backdrop-filter: blur(10px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.course-ticker__toggle svg {
  width: 13px;
  height: 13px;
  fill: currentColor;
}

.course-ticker__icon-play,
.course-ticker__toggle[data-state="paused"] .course-ticker__icon-pause {
  display: none;
}

.course-ticker__toggle[data-state="paused"] .course-ticker__icon-play {
  display: block;
}

.course-ticker__band {
  position: relative;
  min-height: clamp(470px, 34vw, 560px);
  overflow: hidden;
  border-block: 1px solid rgba(255, 255, 255, 0.12);
  background: #1c0e64;
  box-shadow:
    inset 90px 0 80px -70px rgba(0, 0, 0, 0.58),
    inset -90px 0 80px -70px rgba(0, 0, 0, 0.58);
}

.course-ticker__track {
  display: flex;
  align-items: stretch;
  width: max-content;
  min-height: inherit;
  animation: course-row-scroll 88s linear infinite;
  will-change: transform;
}

.course-ticker__clone {
  display: flex;
  align-items: stretch;
}

.course-ticker:hover .course-ticker__track,
.course-ticker:focus-within .course-ticker__track,
.course-ticker.is-paused .course-ticker__track {
  animation-play-state: paused;
}

.course-card {
  position: relative;
  display: flex;
  flex-direction: column;
  width: clamp(390px, 28vw, 470px);
  min-height: clamp(470px, 34vw, 560px);
  padding: clamp(26px, 2.2vw, 34px);
  color: var(--white);
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  isolation: isolate;
}

.course-card::before {
  content: "";
  position: absolute;
  inset: 15px;
  z-index: -1;
  border-radius: var(--radius);
  background: #f4f0ff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.88),
    0 20px 42px -28px rgba(0, 0, 0, 0.7);
}

.course-card__icon {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  margin-bottom: 18px;
  border: 2px solid currentColor;
  border-radius: var(--radius);
  color: var(--course-accent, var(--blue));
  background: var(--white);
  box-shadow: 0 10px 22px -16px rgba(0, 0, 0, 0.72);
}

.course-card__icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.course-card h3 {
  color: #1313c6;
  font-size: clamp(21px, 1.55vw, 26px);
  line-height: 1.05;
  margin-bottom: 9px;
}

.course-card p {
  color: rgba(16, 16, 24, 0.68);
  font-size: 14px;
  line-height: 1.45;
  margin-bottom: 14px;
}

.course-card ul {
  display: block;
  margin-top: 20px;
  padding-top: 4px;
  padding-bottom: 58px;
  border-top: 1px solid rgba(16, 16, 24, 0.12);
}

.course-card li {
  display: flex;
  align-items: center;
  min-height: 31px;
  padding: 7px 0;
  border-bottom: 1px solid rgba(16, 16, 24, 0.12);
  background: transparent;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.course-card li::before {
  content: "✸";
  flex: 0 0 auto;
  width: 15px;
  height: 15px;
  margin-right: 9px;
  color: #6604ce;
  font-size: 15px;
  line-height: 1;
  transform: translateY(-1px);
}

.course-card ul::after {
  content: "More certificates available  /  Ask for the full list";
  position: absolute;
  left: clamp(26px, 2.2vw, 34px);
  bottom: clamp(26px, 2.2vw, 34px);
  display: inline-flex;
  width: fit-content;
  max-width: calc(100% - clamp(52px, 4.4vw, 68px));
  padding: 8px 12px;
  border-radius: 4px;
  background: var(--blue);
  color: var(--white);
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.01em;
  white-space: nowrap;
  box-shadow: 3px 3px 0 rgba(16, 16, 24, 0.18);
}

.course-card--pink { --course-accent: var(--pink); }
.course-card--blue { --course-accent: var(--blue); }
.course-card--lime { --course-accent: #4d9700; }
.course-card--gold { --course-accent: #d68a00; }

.course-ticker__note {
  max-width: 620px;
  margin: 22px auto 0;
  padding-inline: 24px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13.5px;
  text-align: center;
}

@keyframes course-row-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- How it works ---------- */

.how__steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.how__line {
  position: absolute;
  top: 26px;
  left: 0;
  width: 100%;
  height: 40px;
  color: var(--blue);
  z-index: 0;
}

.step {
  position: relative;
  z-index: 1;
  background: var(--white);
  border: var(--border);
  border-radius: var(--radius);
  padding: 22px 18px;
}

.step__num {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  border: var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
}
.step__num--blue { background: var(--blue); color: var(--white); }
.step__num--pink { background: var(--pink); color: var(--white); }
.step__num--lime { background: var(--lime); color: var(--ink); }
.step__num--ink { background: var(--ink); color: var(--lime); }

.step h3 { font-size: 16.5px; }
.step p { color: var(--ink-soft); font-size: 14px; }

.how__note {
  margin-top: 40px;
  font-size: 14px;
  color: var(--ink-soft);
  border-left: 3px solid var(--pink);
  padding-left: 12px;
  max-width: 560px;
}

/* ---------- Evidence section ---------- */

.evidence-process {
  background: var(--white);
  padding-block: 16px;
}

.evidence-process .container {
  max-width: 1420px;
}

.evidence-process__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(0, 1.02fr);
  gap: 64px;
  align-items: start;
  padding: 56px 34px;
  background: var(--white);
}

.evidence-process__left {
  position: sticky;
  top: calc(var(--nav-h) + 24px);
  min-height: 620px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.evidence-process__kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  color: #11131a;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.evidence-process__kicker::before {
  content: "";
  width: 11px;
  height: 11px;
  background: #8cff00;
}

.evidence-process__title h2 {
  margin: 0;
  color: #080b13;
  font-family: var(--font-display);
  max-width: 630px;
  font-size: clamp(38px, 4.1vw, 60px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.055em;
}

.evidence-process__copy p {
  margin: 0 0 20px;
  color: rgba(8, 11, 19, 0.64);
  font-size: 14.5px;
  line-height: 1.65;
  max-width: 560px;
}

.evidence-process__btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  min-height: 58px;
  padding: 16px 24px 18px 66px;
  border-radius: 6px;
  background: #202c3a;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  box-shadow:
    0 3px 3px rgba(0, 0, 0, 0.1),
    28px 34px 56px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.6),
    inset 0 -5px 0 #1a1a1a,
    inset 0 -6px 0 1px rgba(255, 255, 255, 0.1);
}

.evidence-process__btn:hover {
  background: #101b28;
}

.evidence-process__btn:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 3px;
}

.evidence-process__btn-icon {
  position: absolute;
  left: 8px;
  top: 8px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 6px;
  background: var(--lime);
  color: #11131a;
}

.evidence-process__btn-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}

.evidence-process__right {
  display: grid;
  gap: 20px;
}

.evidence-process__card {
  position: sticky;
  top: calc(var(--nav-h) + 24px);
  display: grid;
  grid-template-columns: minmax(0, 1.95fr) minmax(180px, 0.85fr);
  align-items: stretch;
  gap: 18px;
  min-height: 278px;
  padding: 16px;
  border-radius: 8px;
  background: #edf5ef;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 2px 0 rgba(3, 7, 18, 0.08),
    0 16px 34px rgba(3, 7, 18, 0.06);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.evidence-process__card:nth-child(2) { background: #eaf2f7; }
.evidence-process__card:nth-child(3) { background: #f6f0e7; }
.evidence-process__card:nth-child(4) { background: #eff0f8; }

.evidence-process__visual {
  position: relative;
  min-height: 246px;
  overflow: hidden;
  border-radius: 6px;
}

.evidence-process__visual-label {
  position: absolute;
  right: 10px;
  bottom: 10px;
  z-index: 2;
  padding: 6px 8px;
  border-radius: 4px;
  background: #101b28;
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.evidence-process__visual--work { background: #dce8e1; }
.evidence-process__visual--proof { background: #dce6ed; }
.evidence-process__visual--training { background: #eee6d7; }
.evidence-process__visual--review { background: #e5e6f0; }

.evidence-document,
.evidence-certificate,
.evidence-review-card {
  position: relative;
  background: #fffefa;
  border: 1px solid rgba(16, 27, 40, 0.16);
  box-shadow: 0 6px 14px rgba(16, 27, 40, 0.12);
}

.evidence-document { position: absolute; width: 102px; height: 130px; padding: 18px 13px 12px; }
.evidence-document--primary { left: 10%; top: 29px; transform: rotate(-5deg); }
.evidence-document--secondary { right: 6%; bottom: 35px; width: 86px; height: 108px; padding: 17px 12px; transform: rotate(7deg); background: #f6f7f2; }
.evidence-document span:not(.evidence-document__mark),
.evidence-certificate > span:not(.evidence-certificate__seal),
.evidence-review-card > span:not(.evidence-review-card__icon) {
  display: block;
  height: 5px;
  margin-top: 8px;
  background: #c3ced0;
}
.evidence-document span:nth-child(3),
.evidence-certificate > span:nth-child(3),
.evidence-review-card > span:nth-child(3) { width: 72%; }
.evidence-document span:nth-child(4),
.evidence-certificate > span:nth-child(4),
.evidence-review-card > span:nth-child(4) { width: 48%; }
.evidence-document__mark { display: block; width: 20px; height: 20px; border-radius: 50%; background: var(--lime); }

.evidence-photo { position: absolute; left: 8%; top: 38px; width: 128px; height: 93px; overflow: hidden; border: 5px solid #fffefa; background: #6f97ab; box-shadow: 0 6px 14px rgba(16, 27, 40, 0.12); transform: rotate(-5deg); }
.evidence-photo__sun { position: absolute; top: 12px; right: 16px; width: 14px; height: 14px; border-radius: 50%; background: #f5d36a; }
.evidence-photo__landscape { position: absolute; right: -8px; bottom: -22px; width: 115px; height: 72px; background: #315d53; transform: rotate(-34deg); }
.evidence-proof-note { position: absolute; right: 5%; bottom: 43px; display: flex; align-items: center; gap: 5px; padding: 7px 8px; border: 1px solid rgba(16, 27, 40, 0.14); border-radius: 4px; background: #fffefa; color: #101b28; font-size: 10px; font-weight: 700; box-shadow: 0 6px 14px rgba(16, 27, 40, 0.12); transform: rotate(5deg); white-space: nowrap; }
.evidence-proof-note__check { display: grid; place-items: center; width: 15px; height: 15px; border-radius: 50%; background: var(--lime); font-size: 10px; }

.evidence-certificate { position: absolute; left: 9%; top: 35px; width: 130px; height: 130px; padding: 32px 17px 14px; transform: rotate(-3deg); }
.evidence-certificate__seal { position: absolute; top: 12px; right: 13px; display: grid; place-items: center; width: 24px; height: 24px; border-radius: 50%; background: #d2aa58; color: #fffefa; font-size: 13px; font-weight: 700; }
.evidence-training-chip { position: absolute; right: 5%; bottom: 47px; z-index: 1; padding: 7px 8px; border: 1px solid rgba(16, 27, 40, 0.14); border-radius: 4px; background: #223e4b; color: var(--white); font-size: 9px; font-weight: 700; letter-spacing: 0.03em; text-transform: uppercase; white-space: nowrap; }

.evidence-review-card { position: absolute; left: 8%; top: 34px; width: 110px; height: 126px; padding: 20px 14px 12px; transform: rotate(-4deg); }
.evidence-review-card__icon { display: grid; place-items: center; width: 24px; height: 24px; border-radius: 50%; background: #6c739a; color: var(--white); font-size: 12px; font-weight: 700; }
.evidence-review-lines { position: absolute; right: 5%; bottom: 46px; width: 94px; padding: 12px 11px; border: 1px solid rgba(16, 27, 40, 0.14); border-radius: 4px; background: #fffefa; box-shadow: 0 6px 14px rgba(16, 27, 40, 0.1); transform: rotate(5deg); }
.evidence-review-lines span { display: block; height: 5px; margin-top: 7px; background: #bfc5d3; }
.evidence-review-lines span:first-child { margin-top: 0; width: 84%; }
.evidence-review-lines span:last-child { width: 55%; }

.evidence-process__card-copy {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  align-content: start;
  gap: 14px;
  padding: 6px 2px 4px 4px;
}

.evidence-process__num {
  margin-top: 4px;
  color: rgba(8, 11, 19, 0.7);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}

.evidence-process__card h3 {
  margin: 0 0 9px;
  color: #080b13;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.1;
}

.evidence-process__card p {
  margin: 0;
  color: rgba(8, 11, 19, 0.64);
  font-size: 13.5px;
  line-height: 1.52;
}

.evidence-process__card p + p { margin-top: 10px; }

.evidence-process__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.evidence-process__chips li {
  padding: 5px 7px;
  border: 1px solid rgba(8, 11, 19, 0.22);
  border-radius: 4px;
  color: rgba(8, 11, 19, 0.78);
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

@media (hover: hover) and (pointer: fine) {
  .evidence-process__card:hover {
    transform: translateY(-2px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 3px 0 rgba(3, 7, 18, 0.08), 0 20px 36px rgba(3, 7, 18, 0.1);
  }
}

/* ---------- Pathway fit bento ---------- */

.pathway-fit { position: relative; overflow: hidden; padding-block: 88px 96px; }
.pathway-fit__head { max-width: 700px; margin-bottom: 38px; }
.pathway-fit__head h2 { max-width: 630px; margin: 14px 0; font-size: clamp(34px, 4vw, 54px); line-height: 1.04; letter-spacing: -0.045em; }
.pathway-fit__head > p:last-child { max-width: 660px; margin: 0; color: var(--ink-soft); font-size: 17px; line-height: 1.6; }

.pathway-fit__grid { position: relative; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); grid-template-rows: repeat(2, 320px); grid-auto-rows: 320px; gap: 16px; }
.pathway-fit__route { position: absolute; z-index: 0; inset: 0; width: 100%; height: 100%; overflow: visible; pointer-events: none; }
.pathway-fit__route path { fill: none; stroke: var(--pink); stroke-width: 3; stroke-dasharray: 10 12; opacity: 0.65; animation: pathway-fit-route 9s linear infinite; }

.fit-card { position: relative; z-index: 1; display: flex; min-width: 0; overflow: hidden; border: 2px solid var(--ink); border-radius: 7px; box-shadow: var(--shadow-offset); transition: transform 220ms ease, box-shadow 220ms ease; }
.fit-card--who { grid-column: 1; grid-row: 1 / span 2; padding: 30px; background: var(--ink); color: var(--white); }
.fit-card--confidence { grid-column: 2; grid-row: 1; padding: 20px; background: var(--blue); color: var(--white); }
.fit-card--different { grid-column: 3 / span 2; grid-row: 1; padding: 25px; background: var(--pink); color: var(--white); }
.fit-card--apply { grid-column: 2 / span 2; grid-row: 2; padding: 25px; background: var(--white); color: var(--ink); }
.fit-card--support { grid-column: 4; grid-row: 2; padding: 20px; background: var(--lime); color: var(--ink); }

.fit-card__content { position: relative; z-index: 2; max-width: 100%; }
.fit-card--who .fit-card__content, .fit-card--confidence .fit-card__content, .fit-card--support .fit-card__content { max-width: 100%; }
.fit-card--different .fit-card__content, .fit-card--apply .fit-card__content { max-width: 62%; }
.fit-card__index { display: inline-grid; place-items: center; min-width: 30px; height: 24px; margin-bottom: 18px; padding: 0 7px; border: 1px solid currentColor; border-radius: 4px; font-size: 11px; font-weight: 800; letter-spacing: 0.06em; line-height: 1; }
.fit-card h3 { margin: 0 0 9px; font-size: clamp(20px, 1.7vw, 27px); line-height: 1.05; letter-spacing: -0.035em; }
.fit-card p { margin: 0; font-size: 13.5px; line-height: 1.52; }
.fit-card--confidence h3, .fit-card--support h3 { margin-bottom: 7px; font-size: 21px; }
.fit-card--confidence p, .fit-card--support p { font-size: 12.5px; line-height: 1.42; }
.fit-card--confidence .fit-card__index, .fit-card--support .fit-card__index { margin-bottom: 12px; }
.fit-card--confidence .pathway-fit__tags, .fit-card--support .pathway-fit__tags, .fit-card--confidence .fit-card__points, .fit-card--support .fit-card__points { margin-top: 12px; }
.pathway-fit__tags, .fit-card__points { display: flex; flex-wrap: wrap; gap: 7px; margin: 18px 0 0; padding: 0; list-style: none; }
.pathway-fit__tags li, .fit-card__points li { white-space: nowrap; }
.pathway-fit__tags li { padding: 5px 8px; border: 1px solid currentColor; border-radius: 4px; font-size: 11px; font-weight: 700; line-height: 1; }
.fit-card__points { display: grid; gap: 5px; }.fit-card__points li { display: flex; align-items: center; gap: 7px; font-size: 11.5px; font-weight: 700; }.fit-card__points li::before { content: ""; width: 7px; height: 7px; flex: 0 0 7px; border-radius: 50%; background: currentColor; }

.fit-profiles { position: absolute; right: 24px; bottom: 26px; width: 180px; height: 165px; }.fit-profile { position: absolute; display: block; width: 62px; height: 72px; padding: 10px; border: 2px solid var(--ink); border-radius: 6px; background: var(--pale-blue); box-shadow: 4px 4px 0 var(--lime); transition: transform 220ms ease; }.fit-profile i { display: block; width: 19px; height: 19px; margin-bottom: 7px; border-radius: 50%; background: var(--blue); }.fit-profile b { display: block; width: 37px; height: 21px; border-radius: 5px 5px 2px 2px; background: var(--ink); }.fit-profile--one { top: 0; left: 16px; transform: rotate(-7deg); }.fit-profile--two { top: 14px; right: 0; background: var(--lime); transform: rotate(6deg); }.fit-profile--three { bottom: 0; left: 0; background: var(--white); transform: rotate(5deg); }.fit-profile--four { right: 20px; bottom: 5px; background: var(--pink); transform: rotate(-5deg); }.fit-profile--four i { background: var(--lime); }.fit-profile--four b { background: var(--white); }.fit-profiles__node { position: absolute; z-index: -1; width: 12px; height: 12px; border-radius: 50%; background: var(--lime); }.fit-profiles__node--a { top: 67px; left: 0; }.fit-profiles__node--b { right: 0; bottom: 24px; }

.fit-confidence { position: absolute; right: 25px; bottom: 24px; width: 154px; padding: 13px; border: 2px solid var(--ink); border-radius: 6px; background: var(--pale-lime); color: var(--ink); box-shadow: 4px 4px 0 var(--pink); transform: rotate(3deg); }.fit-confidence__label { display: block; margin-bottom: 10px; font-size: 10px; font-weight: 800; letter-spacing: 0.05em; text-transform: uppercase; white-space: nowrap; }.fit-confidence__meter { display: flex; align-items: end; gap: 5px; height: 42px; }.fit-confidence__meter i { display: block; width: 19px; background: var(--blue); }.fit-confidence__meter i:nth-child(1) { height: 13px; }.fit-confidence__meter i:nth-child(2) { height: 22px; }.fit-confidence__meter i:nth-child(3) { height: 30px; }.fit-confidence__meter i:nth-child(4) { height: 39px; background: var(--pink); }.fit-confidence__check { position: absolute; right: 9px; top: 7px; display: grid; place-items: center; width: 21px; height: 21px; border-radius: 50%; background: var(--lime); font-size: 14px; font-weight: 800; transition: transform 220ms ease; }
.fit-card--confidence .fit-confidence { right: 8px; bottom: 8px; opacity: 0.22; transform: scale(0.66) rotate(3deg); transform-origin: right bottom; }

.fit-network { position: absolute; right: 17px; bottom: 14px; width: 110px; height: 98px; }.fit-network__line { position: absolute; display: block; height: 3px; background: var(--white); transform-origin: left center; transition: transform 300ms ease; }.fit-network__line--one { top: 25px; left: 13px; width: 76px; transform: rotate(29deg); }.fit-network__line--two { top: 59px; left: 24px; width: 54px; transform: rotate(-38deg); }.fit-network__line--three { top: 44px; left: 50px; width: 50px; transform: rotate(66deg); }.fit-network__node { position: absolute; width: 18px; height: 18px; border: 2px solid var(--ink); border-radius: 50%; background: var(--lime); box-shadow: 2px 2px 0 var(--ink); transition: transform 220ms ease; }.fit-network__node--one { top: 15px; left: 4px; }.fit-network__node--two { top: 47px; left: 39px; background: var(--white); }.fit-network__node--three { top: 33px; right: 3px; background: var(--blue); }.fit-network__node--four { bottom: 5px; right: 21px; background: var(--pale-blue); }

.fit-documents { position: absolute; right: 34px; bottom: 18px; width: 220px; height: 144px; }.fit-document { position: absolute; display: block; width: 132px; height: 144px; border: 2px solid var(--ink); border-radius: 5px; background: var(--pale-blue); box-shadow: 4px 4px 0 var(--pink); transition: transform 220ms ease; }.fit-document--back { top: 0; right: 0; background: var(--pale-lime); transform: rotate(7deg); }.fit-document--front { left: 24px; top: 4px; z-index: 1; padding: 25px 17px; background: var(--cream); transform: rotate(-5deg); }.fit-document--front i { display: block; height: 7px; margin-bottom: 10px; background: var(--ink); }.fit-document--front i:nth-child(2) { width: 74%; }.fit-document--front i:nth-child(3) { width: 49%; }.fit-document--front b { position: absolute; right: 13px; top: 12px; display: grid; place-items: center; width: 25px; height: 25px; border-radius: 50%; background: var(--lime); font-size: 16px; }.fit-documents__label { position: absolute; right: 0; bottom: 0; z-index: 2; padding: 7px 9px; border-radius: 4px; background: var(--ink); color: var(--white); font-size: 10px; font-weight: 800; letter-spacing: 0.05em; text-transform: uppercase; white-space: nowrap; transition: transform 220ms ease; }
.fit-card--support .fit-support { right: 8px; bottom: 8px; opacity: 0.22; transform: scale(0.62); transform-origin: right bottom; }

.fit-support { position: absolute; right: 26px; bottom: 20px; width: 174px; height: 110px; }.fit-support__person, .fit-support__team { position: absolute; display: block; border: 2px solid var(--ink); border-radius: 6px; background: var(--white); box-shadow: 4px 4px 0 var(--blue); transition: transform 220ms ease; }.fit-support__person { left: 0; bottom: 0; width: 68px; height: 81px; padding: 11px 17px; }.fit-support__person i { display: block; width: 25px; height: 25px; border-radius: 50%; background: var(--pink); }.fit-support__person b { display: block; width: 32px; height: 23px; margin-top: 7px; border-radius: 7px 7px 2px 2px; background: var(--ink); }.fit-support__team { right: 0; top: 0; width: 105px; height: 92px; padding: 22px 14px 12px; background: var(--pale-blue); }.fit-support__team i { display: inline-block; width: 19px; height: 19px; margin-right: 5px; border-radius: 50%; background: var(--blue); }.fit-support__team i:nth-child(2) { background: var(--pink); }.fit-support__team i:nth-child(3) { background: var(--lime); }.fit-support__team b { display: block; width: 71px; height: 24px; margin-top: 8px; border-radius: 3px 3px 0 0; background: var(--ink); }

@keyframes pathway-fit-route { to { stroke-dashoffset: -176; } }
@keyframes fit-meter-pulse { 50% { transform: translateY(-5px); } }

@media (hover: hover) and (pointer: fine) {
  .fit-card:hover { z-index: 3; }
  .fit-card--who:hover { transform: perspective(900px) rotateX(2deg) rotateY(-3deg) translate(-3px, -3px); box-shadow: 9px 9px 0 var(--blue); }.fit-card--who:hover .fit-profile--one { transform: translate(-3px, -6px) rotate(-9deg); }.fit-card--who:hover .fit-profile--two { transform: translate(4px, -5px) rotate(9deg); }
  .fit-card--confidence:hover { transform: translate(-3px, -3px); box-shadow: 9px 9px 0 var(--ink); }.fit-card--confidence:hover .fit-confidence__check { transform: scale(1.12) rotate(12deg); }.fit-card--confidence:hover .fit-confidence__meter i { animation: fit-meter-pulse 450ms ease both; }.fit-card--confidence:hover .fit-confidence__meter i:nth-child(2) { animation-delay: 45ms; }.fit-card--confidence:hover .fit-confidence__meter i:nth-child(3) { animation-delay: 90ms; }.fit-card--confidence:hover .fit-confidence__meter i:nth-child(4) { animation-delay: 135ms; }
  .fit-card--different:hover { transform: translate(-2px, -3px); box-shadow: 8px 8px 0 var(--lime); }.fit-card--different:hover .fit-network__line--one { transform: translateX(7px) rotate(29deg); }.fit-card--different:hover .fit-network__line--two { transform: translateX(7px) rotate(-38deg); }.fit-card--different:hover .fit-network__line--three { transform: translateX(7px) rotate(66deg); }.fit-card--different:hover .fit-network__node--three { transform: scale(1.2); }
  .fit-card--apply:hover { transform: translate(-3px, -3px); box-shadow: 9px 9px 0 var(--blue); }.fit-card--apply:hover .fit-document--front { transform: translate(-8px, -5px) rotate(-7deg); }.fit-card--apply:hover .fit-documents__label { transform: translateY(-4px); }
  .fit-card--support:hover { transform: translate(-4px, -4px); box-shadow: 10px 10px 0 var(--pink); }.fit-card--support:hover .fit-support__person { transform: translateX(-5px); }.fit-card--support:hover .fit-support__team { transform: translateX(4px); }
}

@media (max-width: 1080px) {
  .pathway-fit__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-auto-rows: auto; }.pathway-fit__route { display: none; }.fit-card { grid-column: auto; grid-row: auto; min-height: 300px; }.fit-card--who, .fit-card--apply { grid-column: span 2; }.fit-card--who { min-height: 380px; }.fit-card--different .fit-card__content, .fit-card--apply .fit-card__content { max-width: 100%; }
}

@media (max-width: 640px) {
  .pathway-fit { padding-block: 64px 70px; }.pathway-fit__head { margin-bottom: 30px; }.pathway-fit__head h2 { font-size: clamp(32px, 10vw, 44px); }.pathway-fit__head > p:last-child { font-size: 16px; }.pathway-fit__grid { grid-template-columns: minmax(0, 1fr); gap: 14px; }.fit-card, .fit-card--who, .fit-card--apply { grid-column: auto; min-height: 0; padding: 24px; }.fit-card--who .fit-card__content, .fit-card--confidence .fit-card__content, .fit-card--different .fit-card__content, .fit-card--apply .fit-card__content, .fit-card--support .fit-card__content { max-width: 100%; }.fit-card p { max-width: 35rem; font-size: 14px; }.fit-card--who { min-height: 420px; }.fit-card--confidence { min-height: 370px; }.fit-card--different { min-height: 360px; }.fit-card--apply { min-height: 390px; }.fit-card--support { min-height: 370px; }.fit-profiles { right: 18px; bottom: 18px; opacity: 0.25; transform: scale(0.88); transform-origin: right bottom; }.fit-confidence { right: 18px; bottom: 18px; opacity: 0.25; transform: scale(0.9) rotate(3deg); transform-origin: right bottom; }.fit-network { right: 20px; bottom: 16px; opacity: 0.25; transform: scale(0.9); transform-origin: right bottom; }.fit-documents { right: 13px; bottom: 14px; opacity: 0.25; transform: scale(0.88); transform-origin: right bottom; }.fit-support { right: 17px; bottom: 17px; opacity: 0.25; transform: scale(0.9); transform-origin: right bottom; }
}

/* ---------- For businesses ---------- */

.biz__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.bizcard {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  align-items: flex-start;
  column-gap: 16px;
  row-gap: 6px;
  background: var(--white);
  border: var(--border);
  border-radius: var(--radius);
  padding: 22px 20px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.bizcard:hover {
  transform: translate(-3px, -3px);
  box-shadow: var(--shadow-offset);
}
.bizcard h3 {
  grid-column: 2;
  margin: 0;
  line-height: 1.15;
}

.bizcard__icon {
  grid-column: 1;
  grid-row: 1 / span 2;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: var(--border);
  border-radius: var(--radius);
}
.bizcard__icon svg { width: 25px; height: 25px; }
.bizcard__icon--pink { background: var(--pink); color: var(--white); }
.bizcard__icon--blue { background: var(--blue); color: var(--white); }
.bizcard__icon--lime { background: var(--lime); color: var(--ink); }
.bizcard__icon--ink { background: var(--ink); color: var(--lime); }

.bizcard h3 { font-size: 18px; }
.bizcard p {
  grid-column: 2;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.45;
  margin: 0;
}

.biz__cta {
  margin-top: 44px;
  text-align: center;
}

/* ---------- Testimonials ---------- */

.testi__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: start;
}

.testi__card {
  margin: 0;
  background: var(--white);
  border: var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-offset);
  padding: 28px 26px;
}
.testi__card:nth-child(2) { margin-top: 26px; }
.testi__card:nth-child(3) { margin-top: 52px; }

.testi__card p {
  font-size: 16.5px;
  line-height: 1.55;
  font-weight: 500;
  margin-bottom: 22px;
}

.testi__card footer {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 14px;
  color: var(--ink-soft);
}
.testi__card footer strong { color: var(--ink); font-size: 15px; }

.testi__avatar {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  border: var(--border);
  border-radius: var(--radius-sm);
}
.testi__avatar--blue { background: var(--blue); color: var(--white); }
.testi__avatar--pink { background: var(--pink); color: var(--white); }
.testi__avatar--lime { background: var(--lime); color: var(--ink); }

.testi__editor-note {
  margin-top: 40px;
  font-size: 13px;
  font-style: italic;
  color: var(--ink-soft);
}

/* ---------- Compliance trust ---------- */

.trust { padding-block: 80px; }

.trust__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.trustcard {
  background: transparent;
  border: 2px solid var(--white-line);
  border-radius: var(--radius);
  padding: 26px 24px;
  transition: border-color 0.2s ease;
}
.trustcard:hover { border-color: var(--lime); }

.trustcard__mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  font-weight: 700;
  font-size: 17px;
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
}
.trustcard__mark--lime { background: var(--lime); color: var(--ink); }
.trustcard__mark--blue { background: var(--blue); color: var(--white); }
.trustcard__mark--pink { background: var(--pink); color: var(--white); }

.trustcard h3 { font-size: 18px; color: var(--white); }
.trustcard p { color: var(--white-soft); font-size: 15px; }

/* ---------- FAQ ---------- */

.faq__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 64px;
  align-items: start;
}

.faq__intro { position: sticky; top: calc(var(--nav-h) + 32px); }
.faq__intro p { color: var(--ink-soft); margin-bottom: 26px; }

.faq__list { display: grid; gap: 14px; }

.acc {
  background: var(--white);
  border: var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.acc__heading { margin: 0; font-size: inherit; }

.acc__btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  padding: 20px 22px;
  transition: background 0.15s ease;
}
.acc__btn:hover { background: var(--pale-lime); }

.acc__icon {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  font-size: 18px;
  font-weight: 700;
  background: var(--lime);
  border: 1.5px solid var(--ink);
  border-radius: var(--radius-sm);
  transition: transform 0.25s ease, background 0.25s ease;
}
.acc__btn[aria-expanded="true"] .acc__icon {
  transform: rotate(45deg);
  background: var(--pink);
  color: var(--white);
}

.acc__panel {
  height: 0;
  overflow: hidden;
}
.acc__panel p {
  padding: 0 22px 22px;
  color: var(--ink-soft);
  font-size: 16px;
}

/* ---------- Contact ---------- */

.contact__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 64px;
  align-items: start;
}

.contact__copy {
  position: sticky;
  top: calc(var(--nav-h) + 32px);
}

.contact__copy p { color: var(--white-soft); max-width: 460px; }

.contact__details {
  margin: 30px 0;
  display: grid;
  gap: 14px;
}
.contact__details li {
  display: flex;
  align-items: baseline;
  gap: 16px;
  font-size: 16px;
}
.contact__details a {
  color: var(--lime);
  text-decoration: none;
  font-weight: 500;
}
.contact__details a:hover { text-decoration: underline; }

.contact__detail-label {
  flex-shrink: 0;
  width: 64px;
  font-family: var(--font-display);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white-soft);
}

.contact__fineprint {
  font-size: 13px;
  color: var(--white-soft);
  border-left: 3px solid var(--lime);
  padding-left: 12px;
  max-width: 440px;
}

.contact__form {
  background: var(--white);
  color: var(--ink);
  border: var(--border);
  border-radius: var(--radius);
  box-shadow: 8px 8px 0 var(--blue);
  padding: 34px 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.field { grid-column: 1 / -1; }
.field--half { grid-column: auto / span 1; }

.field label,
.contact__radios legend {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 6px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  font: inherit;
  font-size: 15.5px;
  color: var(--ink);
  background: var(--white);
  border: 2px solid var(--ink);
  border-radius: var(--radius-sm);
  padding: 11px 12px;
}
.field textarea { resize: vertical; min-height: 96px; }

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 3px solid var(--blue);
  outline-offset: 1px;
}

.field input::placeholder,
.field textarea::placeholder { color: rgba(16, 16, 24, 0.4); }

.radio-row {
  display: flex;
  gap: 10px;
}

.radio-pill {
  position: relative;
  cursor: pointer;
}
.radio-pill input {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.radio-pill span {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  white-space: nowrap;
  padding: 9px 20px;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background: var(--white);
  transition: background 0.15s ease, color 0.15s ease;
}
.radio-pill input:checked + span {
  background: var(--ink);
  color: var(--lime);
}
.radio-pill input:focus-visible + span {
  outline: 3px solid var(--blue);
  outline-offset: 2px;
}

.upload-placeholder {
  display: flex;
  align-items: center;
  gap: 14px;
  border: 2px dashed var(--ink);
  border-radius: var(--radius);
  background: var(--pale-blue);
  padding: 16px;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--ink-soft);
}
.upload-placeholder strong { color: var(--ink); font-size: 14px; }
.upload-placeholder svg {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  color: var(--blue);
}

.contact__submit {
  grid-column: 1 / -1;
  justify-self: start;
}

.contact__privacy {
  grid-column: 1 / -1;
  font-size: 13px;
  color: var(--ink-soft);
  margin: 0;
}

.contact__form-msg {
  grid-column: 1 / -1;
  font-size: 14.5px;
  font-weight: 500;
  min-height: 1.4em;
  margin: 0;
}
.contact__form-msg.is-error { color: var(--pink); }
.contact__form-msg.is-success { color: #1a7a00; }

/* ---------- Mobile sticky CTA ---------- */

.mobile-cta {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  background: var(--white);
  border-top: var(--border);
  padding: 12px 18px calc(12px + env(safe-area-inset-bottom));
  transform: translateY(105%);
  transition: transform 0.3s ease;
}
.mobile-cta .btn {
  display: block;
  text-align: center;
}
.mobile-cta.is-visible { transform: translateY(0); }

/* ---------- Footer ---------- */

.footer {
  background: #101722;
  color: var(--white);
  border-top: 2px solid var(--ink);
  overflow: hidden;
}

.footer__top {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.82fr) minmax(260px, 0.9fr);
  align-items: start;
  gap: clamp(32px, 4vw, 64px);
  padding-block: 64px 46px;
}

.nav__logo--footer { margin-bottom: 22px; }
.nav__logo--footer img { width: min(250px, 100%); }

.footer__brand p {
  max-width: 390px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 1.65;
}

.footer__email {
  display: inline-block;
  margin-top: 22px;
  color: var(--lime);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-decoration: none;
  text-underline-offset: 4px;
}
.footer__email:hover { text-decoration: underline; }

.footer__nav { padding-left: clamp(24px, 3vw, 48px); border-left: 1px solid rgba(255, 255, 255, 0.2); }
.footer__label { margin: 0 0 18px; color: var(--lime); font-size: 11px; font-weight: 800; letter-spacing: 0.1em; line-height: 1; text-transform: uppercase; }

.footer__links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 18px;
  row-gap: 13px;
}
.footer__links a {
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: color 180ms ease, transform 180ms ease;
}
.footer__links a:hover { color: var(--lime); transform: translateX(3px); }

.footer__cta-block {
  padding: 28px;
  border: 2px solid var(--lime);
  border-radius: 7px;
  background: var(--lime);
  color: var(--ink);
  box-shadow: 6px 6px 0 var(--pink);
}
.footer__cta-block .footer__label { margin-bottom: 16px; color: rgba(8, 11, 19, 0.66); }
.footer__cta-block h2 { max-width: 260px; margin: 0 0 11px; font-size: clamp(24px, 2vw, 31px); line-height: 1; letter-spacing: -0.045em; }
.footer__cta-block > p:not(.footer__label) { margin: 0; font-size: 13px; line-height: 1.55; }
.footer__cta { display: inline-flex; align-items: center; justify-content: space-between; gap: 24px; min-height: 44px; margin-top: 22px; padding: 0 14px; border-radius: 5px; background: var(--ink); color: var(--white); font-size: 12px; font-weight: 800; text-decoration: none; white-space: nowrap; transition: transform 180ms ease, background 180ms ease; }
.footer__cta span { font-size: 18px; line-height: 1; }
.footer__cta:hover { background: #273240; transform: translateY(-2px); }

.footer__bottom {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  gap: 32px;
  align-items: start;
  padding-block: 24px 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.footer__bottom > p { margin: 0; color: rgba(255, 255, 255, 0.6); font-size: 12px; line-height: 1.6; }
.footer__disclaimer { padding-left: 16px; border-left: 2px solid var(--pink); }

@media (hover: hover) and (pointer: fine) {
  .footer__cta:hover { box-shadow: none; }
}

/* ---------- Reveal defaults (JS adds motion) ---------- */

.js [data-reveal],
.js [data-stagger],
.js [data-step],
.js [data-tslide] {
  opacity: 0;
}

/* No-JS and reduced motion: everything visible */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js [data-reveal],
  .js [data-stagger],
  .js [data-step],
  .js [data-tslide] { opacity: 1; }
  .netstrip__track { animation: none; }
  .course-ticker__track { animation: none; }
  .pathway-fit__route path { animation: none; }
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}

/* ============================================================
   Responsive
   ============================================================ */

@media (max-width: 1080px) {
  .evidence-process__inner {
    grid-template-columns: 1fr;
    gap: 42px;
    padding: 48px 34px;
  }
  .evidence-process__left {
    position: static;
    min-height: auto;
    gap: 40px;
  }
  .evidence-process__card {
    position: relative;
    top: auto;
  }
  .how__steps { grid-template-columns: 1fr; max-width: 560px; }
  .how__steps .step { padding: 24px 22px; }
  .how__line { display: none; }
  .how__steps::before {
    content: "";
    position: absolute;
    top: 20px;
    bottom: 20px;
    left: -18px;
    border-left: 3px dashed var(--blue);
  }
  .pathways__grid { grid-template-columns: repeat(2, 1fr); }
  .what__grid { grid-template-columns: repeat(2, 1fr); }
  .biz__grid { grid-template-columns: repeat(2, 1fr); }
  .trust__grid { grid-template-columns: 1fr; max-width: 560px; }
  .testi__grid { grid-template-columns: 1fr; max-width: 560px; }
  .testi__card:nth-child(2),
  .testi__card:nth-child(3) { margin-top: 0; }
  .footer__top { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 36px; }
  .footer__cta-block { grid-column: 1 / -1; max-width: 560px; }
}

@media (max-width: 1080px) {
  .section { padding-block: 72px; }

  .nav__links {
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    background: var(--white);
    border-bottom: var(--border);
    padding: 16px 24px 24px;
    display: none;
    max-height: calc(100dvh - var(--nav-h));
    overflow-y: auto;
  }
  .nav__links.is-open { display: flex; }
  .nav__link { padding: 10px 0; font-size: 17px; }
  .nav__cta { margin: 12px 0 0; }
  .nav__burger { display: flex; }

  .hero__grid,
  .faq__grid,
  .contact__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero { padding-block: 60px 76px; }
  .hero__visual { min-height: 420px; margin-top: 8px; }
  .faq__intro { position: static; }
  .contact__copy { position: static; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }

  .container { padding-inline: 18px; }
  .section { padding-block: 58px; }
  .section-head { margin-bottom: 34px; }
  .section-head__sub { font-size: 16px; }
  .eyebrow { max-width: 100%; overflow: hidden; text-overflow: ellipsis; }

  .evidence-process {
    padding-block: 0;
  }
  .evidence-process__inner {
    margin-inline: -18px;
    padding: 42px 18px;
    border-inline: 0;
  }
  .evidence-process__title h2 {
    font-size: clamp(34px, 10vw, 46px);
  }
  .evidence-process__card {
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
    min-height: 0;
    padding: 14px;
  }
  .evidence-process__visual {
    min-height: 172px;
    height: 182px;
  }
  .evidence-process__card-copy {
    grid-template-columns: 32px minmax(0, 1fr);
    gap: 10px;
    padding: 4px 2px 0;
  }
  .evidence-process__card p { font-size: 14px; }

  .pathways__grid,
  .what__grid,
  .biz__grid { grid-template-columns: 1fr; }

  .tile,
  .pacc,
  .bizcard,
  .trustcard { padding: 22px 18px; }
  .pacc__toggle { align-items: flex-start; white-space: normal; }
  .pacc__chevron { margin-top: 1px; }
  .acc__btn { align-items: flex-start; padding: 18px; font-size: 16px; }
  .acc__panel p { padding: 0 18px 18px; font-size: 15px; }

  .hero__ctas .btn { width: 100%; text-align: center; }

  /* Mobile hero: recomposed, not squeezed */
  .hero__visual { min-height: 370px; }
  .hv__map-block {
    width: 64%;
    padding: 16px;
  }
  .hv__cert {
    width: 216px;
    bottom: 4px;
    padding: 18px;
  }
  .hv__cert-note { font-size: 11.5px; }
  .hv__tile { width: 46px; height: 46px; }
  .hv__tile svg { width: 24px; height: 24px; }
  .hv__tile--pink { top: 8px; left: 4px; }
  .hv__tile--blue { bottom: 0; right: 20px; }
  .hv__tile--lime { top: 44%; left: 56%; }
  .hero__tag { font-size: 12.5px; padding: 6px 11px; }
  .hero__tag--ink { top: 205px; right: 0; }
  .hero__tag--pink { top: 84px; left: 0; }

  /* Hero chips become a swipeable row */
  .hero__chips {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin-inline: -18px;
    padding-inline: 18px;
    padding-bottom: 4px;
  }
  .hero__chips::-webkit-scrollbar { display: none; }

  .mobile-cta { display: block; }

  /* Network strip: swipeable instead of animated on small screens */
  .netstrip__scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 6px;
  }
  .netstrip__track { animation: none; }
  .netstrip__group[aria-hidden="true"] { display: none; }

  .course-ticker__controls { position: relative; top: auto; right: auto; margin: 0 18px 14px; }
  .course-ticker__band,
  .course-card { min-height: 430px; }
  .course-card { width: min(86vw, 340px); padding: 22px; }
  .course-card::before { inset: 11px; }
  .course-card ul { margin-top: 16px; padding-bottom: 64px; }
  .course-card ul::after { left: 22px; bottom: 22px; max-width: calc(100% - 44px); white-space: normal; line-height: 1.3; }
  .course-ticker__note { padding-inline: 18px; font-size: 13px; }

  .how__steps::before { left: -12px; }

  .field--half { grid-column: 1 / -1; }
  .radio-row { flex-wrap: wrap; }
  .contact__form { grid-template-columns: 1fr; padding: 24px 18px; box-shadow: 5px 5px 0 var(--blue); }
  .field input,
  .field select,
  .field textarea { font-size: 16px; }
  .contact__submit { width: 100%; text-align: center; }
  .upload-placeholder { align-items: flex-start; padding: 14px; }

  .testi__card { padding: 24px 20px; }

  .footer__top { grid-template-columns: 1fr; gap: 30px; padding-block: 48px 34px; }
  .footer__nav { padding: 26px 0; border-block: 1px solid rgba(255, 255, 255, 0.2); border-left: 0; }
  .footer__cta-block { padding: 24px; box-shadow: 5px 5px 0 var(--pink); }
  .footer__bottom { grid-template-columns: 1fr; gap: 16px; padding-block: 22px calc(28px + env(safe-area-inset-bottom)); }
  .footer__disclaimer { padding-left: 12px; }

  .nav__logo img { width: 144px; }
  .nav__logo--footer img { width: min(220px, 100%); }
}

@media (max-width: 420px) {
  .container { padding-inline: 16px; }
  .section { padding-block: 52px; }
  .nav__inner { gap: 12px; }
  .nav__logo img { width: 130px; }
  .nav__links { padding-inline: 18px; }
  .nav__cta { width: 100%; text-align: center; }
  .course-card { width: 88vw; }
  .fit-card, .fit-card--who, .fit-card--apply { padding: 20px; }
  .footer__links { grid-template-columns: 1fr; }
  .footer__cta { width: 100%; }
}
