:root {
  --navy: #183652;
  --teal: #18B8C4;
  --teal-dark: #0E8B95;
  --teal-pale: #C8F5F8;
  --teal-bg: #F3FAFB;
  --gold: #FDBA12;
  --gold-hover: #E8AB00;
  --pink: #E62C8B;
  --pink-bg: #FBE0EF;
  --ink: #183652;
  --body-text: #4A5A68;
  --muted: #8CA0AB;
  --border: #DCE6EA;
  --border-soft: #F0F4F6;
  --white: #fff;
  --max-width: 1080px;
  --max-width-wide: 1200px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 14px;
  --font: 'Manrope', Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

html { -webkit-font-smoothing: antialiased; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
}

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

a { color: var(--teal); }
a:hover { color: var(--teal-dark); }

h1, h2, h3, p { margin: 0; }

.site-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

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

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

.container-narrow {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 14.5px;
  text-decoration: none;
  text-align: center;
  border: none;
  cursor: pointer;
  font-family: var(--font);
}
.btn-primary { background: var(--gold); color: var(--ink); }
.btn-primary:hover { background: var(--gold-hover); }
.btn-outline { background: var(--white); color: var(--ink); border: 2px solid var(--ink); padding: 10px 18px; }
.btn-outline:hover { background: var(--teal-pale); }
.btn-on-dark { background: var(--gold); color: var(--ink); }
.btn-on-dark:hover { background: var(--white); }
.btn-large { padding: 14px 24px; font-size: 15px; }

/* ---------- Nav ---------- */
.navlink { text-decoration: none; color: var(--body-text); font-weight: 500; }
.navlink:hover { color: var(--teal); }
.navlink[aria-current="page"] { color: var(--ink); font-weight: 700; }

/* ---------- Cards ---------- */
.card {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
}
.card:hover { border-color: var(--teal); }

.pill {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 12.5px;
  font-weight: 500;
  background: var(--teal-bg);
  color: var(--ink);
}

.tag-row { display: flex; flex-wrap: wrap; gap: 6px; }

/* ---------- Grids ---------- */
.grid-auto { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 18px; }
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }

/* ---------- Section rhythm ---------- */
.section { padding: 40px 0; }
.section-border { border-top: 1px solid var(--border); }
.section-dark { background: var(--navy); color: var(--white); padding: 52px 20px; text-align: center; }
.eyebrow {
  font-size: 12.5px;
  color: var(--teal);
  letter-spacing: 0.8px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 8px;
}

/* ---------- Logo marquee ---------- */
.marquee {
  overflow: hidden;
  margin: 0 -20px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #fff 6%, #fff 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #fff 6%, #fff 94%, transparent);
}
.marquee-track {
  display: flex;
  gap: 16px;
  width: max-content;
  align-items: center;
  padding: 0 20px;
  animation: logoScroll 46s linear infinite;
  animation-play-state: running;
}
.marquee-track.is-paused { animation-play-state: paused; }

.logo-tile {
  width: 130px;
  flex-shrink: 0;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--white);
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}
.logo-tile img { max-width: 100%; max-height: 40px; object-fit: contain; }

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

@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}

/* ---------- FAQ accordion ---------- */
.faq-item { border-bottom: 1px solid var(--border-soft); }
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 16px 0;
  text-decoration: none;
  color: var(--ink);
  font-weight: 700;
  font-size: 15.5px;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
  font-family: var(--font);
}
.faq-icon { font-size: 20px; flex-shrink: 0; color: var(--teal); }
.faq-answer {
  padding: 0 0 18px;
  font-size: 14.5px;
  color: var(--body-text);
  max-width: 640px;
  display: none;
}
.faq-item[data-open="true"] .faq-answer { display: block; }

/* ---------- Responsive helpers ---------- */
@media (max-width: 720px) {
  .hero-grid { grid-template-columns: 1fr !important; }
}
@media (max-width: 920px) {
  .cat-feature-grid { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 480px) {
  .cat-feature-grid { grid-template-columns: 1fr !important; }
}
@media (max-width: 640px) {
  .sticker-cluster { display: none !important; }
}

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ===== Header ===== */
  .site-header {
    border-bottom: 1px solid var(--border);
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    position: sticky;
    top: 0;
    background: var(--white);
    z-index: 10;
  }
  .site-header__logo { display: flex; align-items: center; text-decoration: none; }
  .site-header__logo img { height: 48px; width: auto; }

  .site-header__nav { display: none; gap: 22px; font-size: 15px; align-items: center; }
  .site-header__login { text-decoration: none; color: var(--ink); font-weight: 500; font-size: 14px; }

  .site-header__mobile { display: flex; align-items: center; gap: 10px; }
  .site-header__toggle {
    border: none;
    background: var(--navy);
    color: var(--white);
    font-size: 18px;
    padding: 8px 14px;
    line-height: 1;
    border-radius: var(--radius-sm);
    cursor: pointer;
  }

  .mobile-nav {
    position: fixed;
    top: 77px;
    left: 0;
    right: 0;
    max-height: calc(100vh - 77px);
    overflow-y: auto;
    border-bottom: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    background: var(--white);
    z-index: 9;
  }
  .mobile-nav[hidden] {
    display: none;
  }
  .mobile-nav__link {
    padding: 14px 20px;
    border-bottom: 1px solid var(--border-soft);
    text-decoration: none;
    color: var(--body-text);
    font-size: 16px;
    font-weight: 500;
  }
  .mobile-nav__link[aria-current='page'] { color: var(--ink); font-weight: 700; }
  .mobile-nav__link--cta { color: var(--ink); font-weight: 700; border-bottom: none; }

  @media (min-width: 860px) {
    .site-header__nav { display: flex; }
    .site-header__mobile { display: none; }
    .mobile-nav { display: none !important; }
  }

/* ===== Footer ===== */
  .site-footer {
    border-top: 1px solid var(--border);
    background: var(--teal-bg);
    padding: 32px 20px;
    font-size: 13px;
    color: var(--body-text);
    margin-top: auto;
  }
  .site-footer__row {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: space-between;
    align-items: center;
  }
  .site-footer__logo img { height: 32px; width: auto; }
  .site-footer__nav { display: flex; gap: 24px; flex-wrap: wrap; }
  .site-footer__nav a { color: var(--body-text); text-decoration: none; }
  .site-footer__legal { display: flex; gap: 18px; flex-wrap: wrap; }
  .site-footer__legal a { text-decoration: underline; color: var(--body-text); }
  .site-footer__copyright {
    max-width: var(--max-width);
    margin: 20px auto 0;
    text-align: center;
    color: var(--muted);
  }

/* ===== Testimonial card ===== */
  .testimonial {
    border-radius: var(--radius-lg);
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  .testimonial__quote {
    font-size: 14.5px;
    font-style: italic;
    color: var(--ink);
  }
  .testimonial__person { display: flex; align-items: center; gap: 12px; }
  .testimonial__person img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
  .testimonial__name { font-size: 13.5px; font-weight: 700; color: var(--ink); }
  .testimonial__role { font-size: 12.5px; color: var(--body-text); }

/* ===== Form link (MS Forms CTA) ===== */
  .form-link { display: inline-flex; align-items: center; gap: 8px; }
  .form-link__note { font-size: 12.5px; color: var(--muted); margin-top: 8px; }

/* ===== Legal page layout ===== */
  .legal { padding-top: clamp(32px, 6vw, 56px); padding-bottom: 60px; }
  .legal h1 { font-size: clamp(26px, 4vw, 34px); margin: 0 0 20px; font-weight: 800; }
  .legal__body { display: flex; flex-direction: column; gap: 18px; font-size: 14.5px; color: var(--body-text); }
  .legal__body h3 { font-size: 16px; margin: 0 0 6px; color: var(--ink); }
  .legal__body p { margin: 0 0 8px; }
  .legal__body p:last-child { margin-bottom: 0; }
  .legal__body strong { color: var(--ink); }
  .legal__body h2 { font-size: 20px; margin: 8px 0 2px; color: var(--ink); font-weight: 800; }
  .legal__body ul { margin: 0 0 8px; padding-left: 20px; }
  .legal__body li { margin-bottom: 4px; }
  .legal-kicker { font-size: 12.5px; color: var(--teal); letter-spacing: 0.8px; font-weight: 700; text-transform: uppercase; margin: 0 0 8px; }
  .legal-subtitle { font-size: 15px; color: var(--body-text); margin: 0 0 8px; }
  .table-scroll { overflow-x: auto; margin: 0 0 8px; }
  .legal-table { width: 100%; border-collapse: collapse; font-size: 13.5px; }
  .legal-table tr { border-bottom: 1px solid var(--border-soft); }
  .legal-table th, .legal-table td { text-align: left; padding: 8px 10px; vertical-align: top; }
  .legal-table th { color: var(--ink); font-weight: 700; width: 32%; white-space: nowrap; }
  .legal-note { background: var(--border-soft); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 14px 16px; font-size: 13.5px; color: var(--body-text); margin: 0 0 8px; }

/* ===== Mock application form ===== */
  .apply-form { display: flex; flex-direction: column; gap: 18px; margin-top: 28px; }
  .form-field { display: flex; flex-direction: column; gap: 6px; }
  .form-field label { font-weight: 700; font-size: 14px; color: var(--ink); }
  .form-field input[type="text"],
  .form-field input[type="email"],
  .form-field input[type="tel"],
  .form-field select,
  .form-field textarea {
    font-family: var(--font);
    font-size: 14.5px;
    color: var(--ink);
    padding: 11px 14px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--white);
  }
  .form-field textarea { resize: vertical; }
  .form-field input[type="text"]:focus,
  .form-field input[type="email"]:focus,
  .form-field input[type="tel"]:focus,
  .form-field select:focus,
  .form-field textarea:focus { outline: 2px solid var(--teal); outline-offset: 1px; }
  .form-field__hint { font-size: 12.5px; color: var(--muted); }
  .form-checkbox { display: flex; align-items: flex-start; gap: 10px; font-size: 13.5px; color: var(--body-text); }
  .form-checkbox input[type="checkbox"] { margin-top: 3px; width: 16px; height: 16px; flex-shrink: 0; }
  .form-checkbox a { color: var(--teal); font-weight: 600; }
  .apply-form__submit { align-self: flex-start; }
  .apply-form__note { font-size: 12.5px; color: var(--muted); }
  .form-status { font-size: 13.5px; margin: 0; min-height: 1.2em; }
  .form-status[data-state="error"] { color: #C0392B; }
  .form-status[data-state="success"] { color: #1E7E52; font-weight: 700; }
  .form-status[data-state="sending"] { color: var(--muted); }
  .form-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 12px; }
  .form-fieldset { border: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
  .form-fieldset legend { font-weight: 700; font-size: 14px; color: var(--ink); padding: 0; margin-bottom: 2px; }
  .form-fieldset__hint { font-size: 13.5px; color: var(--body-text); margin: -4px 0 2px; }
  .form-checkbox-list { display: flex; flex-direction: column; gap: 6px; }
  .form-checkbox-list .form-checkbox { font-size: 13.5px; color: var(--ink); }
  .form-section-title { font-weight: 700; font-size: 14px; color: var(--ink); margin: 0; }
  form[data-state="success"] .form-fields { opacity: 0.5; pointer-events: none; }

/* ===== Home page ===== */
  .hero {
    position: relative;
    background: var(--navy);
    overflow: hidden;
    padding: clamp(32px, 6vw, 72px) 0;
  }
  .hero-grid {
    display: grid;
    grid-template-columns: minmax(280px, 560px) minmax(240px, 1fr);
    gap: 32px;
    align-items: center;
    position: relative;
    z-index: 1;
  }
  .hero__copy { display: flex; flex-direction: column; gap: 18px; }
  .hero h1 { font-size: clamp(30px, 5vw, 48px); font-weight: 800; letter-spacing: -0.5px; color: var(--white); }
  .hero__lede { font-size: clamp(17px, 2.2vw, 20px); color: var(--white); font-weight: 700; }
  .hero__body { font-size: 15.5px; color: rgba(255,255,255,0.82); }
  .hero__tags { display: flex; gap: 10px; flex-wrap: wrap; }
  .hero__tag { padding: 9px 18px; border-radius: 20px; font-size: 14px; font-weight: 700; }
  .hero__tag--gold { background: var(--gold); color: var(--ink); }
  .hero__tag--teal { background: var(--teal); color: var(--white); }
  .hero__tag--pink { background: var(--pink); color: var(--white); }
  .hero__image {
    position: absolute;
    top: 0;
    left: 612px;
    right: 0;
    height: 100%;
    width: auto;
    max-width: none;
    object-fit: cover;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 22%);
    mask-image: linear-gradient(90deg, transparent, #000 22%);
    opacity: 0.55;
  }
  @media (max-width: 720px) {
    .hero__image {
      position: static;
      width: 100%;
      height: 200px;
      margin-top: 18px;
      opacity: 0.85;
      -webkit-mask-image: linear-gradient(180deg, transparent, #000 30%);
      mask-image: linear-gradient(180deg, transparent, #000 30%);
    }
  }

  .card--employer { background: var(--teal-bg); display: flex; flex-direction: column; gap: 10px; border-radius: var(--radius-lg); padding: 24px; }
  .card--partner { background: var(--pink-bg); display: flex; flex-direction: column; gap: 10px; border-radius: var(--radius-lg); padding: 24px; }
  .eyebrow--teal { color: var(--teal); }
  .eyebrow--pink { color: var(--pink); }
  .eyebrow--light { color: #4FD8E2; }
  .card__title { font-weight: 800; font-size: 20px; }
  .card__title--sm { font-size: 16px; }
  .card__body { font-size: 14.5px; color: var(--body-text); }
  .card__body--sm { font-size: 14px; }
  .card__cta { margin-top: 6px; width: fit-content; }

  .platform-section { display: flex; flex-direction: column; gap: 24px; }
  .platform-section__intro { max-width: 660px; }
  .platform-section h2 { font-size: clamp(24px, 3.4vw, 32px); font-weight: 800; margin: 0 0 10px; }
  .platform-section__intro p { color: var(--body-text); font-size: 15.5px; }
  .feature-icon { width: 32px; height: 32px; background: var(--teal-pale); border-radius: 8px; margin-bottom: 8px; }
  .card--image { padding: 0; overflow: hidden; display: flex; }
  .card--image img { width: 100%; height: 100%; object-fit: cover; min-height: 150px; }

  .app-section { display: flex; flex-direction: column; gap: 20px; }
  .app-section__intro { text-align: center; display: flex; flex-direction: column; gap: 10px; align-items: center; }
  .app-section__intro h2 { font-size: clamp(22px, 3.2vw, 28px); font-weight: 800; }
  .app-section__intro p { font-size: 15px; color: var(--body-text); max-width: 520px; }
  .app-section__image { width: 100%; max-width: 780px; height: auto; margin: 0 auto; }
  .app-section__stores { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; justify-content: center; }

  .dp-section { background: var(--navy); padding: 40px 0; color: var(--white); }
  .dp-section__inner { display: flex; flex-direction: column; gap: 26px; }
  .dp-section__top { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 32px; align-items: center; }
  .dp-section__copy { max-width: 680px; display: flex; flex-direction: column; gap: 10px; }
  .dp-section h2 { font-size: clamp(24px, 3.4vw, 32px); font-weight: 800; color: var(--white); }
  .dp-section__copy p { color: rgba(255,255,255,0.82); font-size: 15.5px; }
  .dp-section__copy strong { color: var(--white); }
  .dp-section__image { width: 100%; height: auto; border-radius: var(--radius-lg); max-width: 460px; margin: 0 auto; }
  .dp-card { border: 1px solid rgba(255,255,255,0.18); border-radius: var(--radius-md); padding: 22px; }
  .dp-card__title { font-weight: 700; font-size: 16px; margin-bottom: 12px; color: var(--white); }
  .dp-card__body { font-size: 14px; color: rgba(255,255,255,0.78); margin-bottom: 18px; }
  .dp-list { margin: 0; padding-left: 18px; font-size: 14px; color: rgba(255,255,255,0.78); display: flex; flex-direction: column; gap: 8px; }
  .support-scale { position: relative; padding-top: 26px; }
  .support-scale__track { height: 8px; border-radius: 4px; background: linear-gradient(90deg, #4FD8E2, var(--pink)); margin-top: 20px; }
  .support-scale__labels { display: flex; justify-content: space-between; margin-top: 10px; font-size: 12.5px; color: rgba(255,255,255,0.78); gap: 12px; }
  .support-scale__labels strong { color: var(--white); display: block; }
  .support-scale__labels span { max-width: 160px; }
  .support-scale__label--right { text-align: right; }
  .dp-section__tagline { font-size: 15.5px; font-weight: 700; color: var(--white); }

  .steps-grid { margin-top: 24px; }
  .step { display: flex; flex-direction: column; gap: 8px; }
  .step__number { width: 36px; height: 36px; background: var(--navy); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; color: var(--white); }
  .step__title { font-weight: 700; font-size: 15px; }
  .step__body { font-size: 13.5px; color: var(--body-text); }

  .trial-section { background: var(--teal-bg); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 44px 20px; }
  .trial-section h2 { font-size: clamp(24px, 3.4vw, 30px); font-weight: 800; margin-bottom: 8px; }
  .trial-section__lede { color: var(--body-text); font-size: 15.5px; margin-bottom: 4px; }
  .trial-section__body { color: var(--body-text); font-size: 15.5px; margin-bottom: 24px; }
  .trial-section__footnote { font-size: 12.5px; color: var(--muted); }

  .section-lede { font-size: 15px; color: var(--body-text); max-width: 620px; margin-bottom: 20px; }
  .section h2 { font-size: clamp(24px, 3.4vw, 30px); font-weight: 800; margin-bottom: 8px; }
  .faq-heading { margin-bottom: 20px; }

  .section-dark__inner { max-width: 560px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; align-items: center; }
  .section-dark h2 { font-size: clamp(24px, 3.6vw, 32px); font-weight: 800; }
  .section-dark p { font-size: 15px; color: #C8D8E0; }

/* ===== Courses page ===== */
  .courses-hero {
    display: grid;
    grid-template-columns: minmax(260px, 1fr) minmax(180px, 260px);
    gap: 24px;
    align-items: center;
    padding-top: clamp(32px, 6vw, 64px);
  }
  .courses-hero h1 { font-size: clamp(28px, 4.6vw, 40px); margin: 0 0 12px; max-width: 700px; font-weight: 800; }
  .courses-hero p { font-size: 16px; color: var(--body-text); max-width: 640px; }
  .sticker-cluster { position: relative; height: 220px; }
  .sticker { position: absolute; border-radius: 10px; box-shadow: 0 10px 24px rgba(24,54,82,0.22); border: 4px solid var(--white); object-fit: cover; }
  .sticker--1 { width: 130px; height: 130px; transform: rotate(-9deg); top: 6px; left: 4px; }
  .sticker--2 { width: 120px; height: 120px; transform: rotate(7deg); top: 40px; left: 110px; }
  .sticker--3 { width: 110px; height: 110px; transform: rotate(-4deg); top: 120px; left: 30px; }

  .section h2 { font-size: clamp(22px, 3.2vw, 28px); font-weight: 800; margin: 0 0 20px; }
  .section-lede { font-size: 15px; color: var(--body-text); max-width: 640px; margin-bottom: 20px; }

  .category-list { display: flex; flex-direction: column; gap: 16px; margin-bottom: 22px; }
  .category-card { display: flex; align-items: stretch; gap: 0; padding: 0; overflow: hidden; }
  .category-card img { width: 160px; min-width: 120px; height: auto; object-fit: cover; flex-shrink: 0; }
  .category-card__body { padding: 22px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
  .category-card__title { font-weight: 700; font-size: 17px; }
  .category-card__desc { font-size: 14px; color: var(--body-text); }
  @media (max-width: 560px) {
    .category-card { flex-direction: column; }
    .category-card img { width: 100%; height: 140px; }
  }

  .section-dark__inner { max-width: 560px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; align-items: center; }
  .section-dark h2 { font-size: clamp(24px, 3.6vw, 32px); font-weight: 800; }
  .section-dark p { font-size: 15px; color: #C8D8E0; }

/* ===== Course catalogue page ===== */
  .catalogue-hero { padding-top: clamp(32px, 6vw, 56px); padding-bottom: 20px; }
  .back-link { font-size: 13px; color: var(--body-text); text-decoration: none; }
  .catalogue-hero h1 { font-size: clamp(26px, 4.4vw, 38px); margin: 14px 0 12px; max-width: 720px; font-weight: 800; }
  .course-search {
    width: 100%;
    max-width: 420px;
    padding: 12px 16px;
    border: 2px solid var(--gold);
    border-radius: var(--radius-sm);
    font-size: 15px;
    margin: 4px 0 12px;
    display: block;
    outline: none;
    font-family: var(--font);
  }
  .course-search:focus { box-shadow: 0 0 0 3px rgba(253,186,18,0.35); }
  .catalogue-hero__note { font-size: 13px; color: var(--muted); }

  .cat-block { border-top: 1px solid var(--border); padding-top: 24px; margin-bottom: 32px; }
  .cat-block h2 { font-size: clamp(19px, 2.6vw, 23px); margin: 0 0 4px; font-weight: 800; }
  .cat-block__count { font-size: 13px; color: var(--muted); margin-bottom: 14px; }
  .cat-block__list {
    margin: 0; padding: 0; list-style: none;
    display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 6px 24px; font-size: 14px; color: var(--body-text);
  }
  .cat-block__list li { padding: 4px 0; border-bottom: 1px solid var(--border-soft); }

  .no-results { color: var(--body-text); font-size: 15px; padding: 20px 0; }

  .section-dark__inner { max-width: 560px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; align-items: center; }
  .section-dark h2 { font-size: clamp(24px, 3.6vw, 30px); font-weight: 800; }
  .section-dark p { font-size: 15px; color: #C8D8E0; }

/* ===== Pricing page ===== */
  .pricing-intro { font-size: 16px; color: var(--body-text); max-width: 640px; margin: 12px 0 24px; }
  h1 { font-size: clamp(28px, 4.6vw, 40px); margin: 0 0 12px; max-width: 700px; font-weight: 800; }

  .pricing-controls { display: flex; flex-wrap: wrap; gap: 20px; align-items: flex-start; }
  .control-label { font-size: 12.5px; color: var(--body-text); font-weight: 600; margin-bottom: 6px; }
  .segmented { display: inline-flex; flex-wrap: wrap; border: 2px solid var(--navy); border-radius: 10px; overflow: hidden; }
  .segmented__btn {
    padding: 10px 16px; border: none; font-weight: 700; font-size: 14px; cursor: pointer;
    background: var(--white); color: var(--navy); font-family: var(--font);
    border-left: 2px solid var(--navy);
  }
  .segmented__btn:first-child { border-left: none; }
  .segmented__btn.is-active { background: var(--navy); color: var(--white); }
  .annual-note { font-size: 13px; color: var(--body-text); margin-top: 12px; }

  .pricing-panel {
    border: 2px solid var(--navy); border-radius: var(--radius-lg); padding: 28px;
    display: flex; flex-wrap: wrap; gap: 28px; justify-content: space-between;
  }
  .pricing-panel__main { flex: 1 1 340px; min-width: 260px; }
  .pricing-panel__main h3 { font-size: 20px; margin: 0 0 6px; font-weight: 800; color: var(--navy); }
  .pricing-panel__main p { font-size: 14px; color: var(--body-text); margin: 0 0 18px; }
  .pricing-panel__features { display: flex; flex-direction: column; gap: 10px; }
  .feature-row { display: flex; align-items: baseline; gap: 8px; font-size: 14px; color: var(--navy); }
  .feature-check { color: var(--teal); font-weight: 700; flex-shrink: 0; }
  .pricing-panel__price { display: flex; flex-direction: column; gap: 14px; align-items: flex-start; justify-content: center; }
  .price-value { font-size: 24px; font-weight: 800; color: var(--navy); }

/* ===== Partners page ===== */
  .hero { position: relative; background: var(--navy); overflow: hidden; padding: clamp(32px, 6vw, 72px) 0; }
  .hero-grid { display: grid; grid-template-columns: minmax(280px, 560px) minmax(240px, 1fr); gap: 32px; align-items: center; position: relative; z-index: 1; }
  .hero__copy { display: flex; flex-direction: column; gap: 16px; }
  .hero h1 { font-size: clamp(28px, 4.6vw, 40px); max-width: 760px; font-weight: 800; color: var(--white); }
  .hero__lede { font-size: 17px; color: rgba(255,255,255,0.82); max-width: 620px; }
  .hero__tags { display: flex; gap: 10px; flex-wrap: wrap; font-size: 13px; }
  .hero__tag { background: var(--pink); padding: 7px 16px; border-radius: 20px; color: var(--white); font-weight: 600; }
  .hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 6px; align-items: center; }
  .btn-outline-dark { border: 2px solid var(--white); background: transparent; padding: 12px 22px; text-decoration: none; color: var(--white); font-weight: 700; font-size: 15px; border-radius: var(--radius-sm); }
  .section-dark__ctas { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; justify-content: center; margin-top: 4px; }
  .hero__portal-link { color: rgba(255,255,255,0.82); font-size: 14px; text-decoration: underline; }
  .hero__image {
    position: absolute; top: 0; left: 612px; right: 0; height: 100%; width: auto; max-width: none;
    object-fit: cover; -webkit-mask-image: linear-gradient(90deg, transparent, #000 22%);
    mask-image: linear-gradient(90deg, transparent, #000 22%); opacity: 0.65;
  }
  @media (max-width: 720px) {
    .hero__image { position: static; width: 100%; height: 200px; margin-top: 18px; opacity: 0.85; -webkit-mask-image: linear-gradient(180deg, transparent, #000 30%); mask-image: linear-gradient(180deg, transparent, #000 30%); }
  }

  .partners-eyebrow { font-size: 13px; color: var(--muted); margin-bottom: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
  .directory-link { margin-top: 16px; }
  .directory-link a { text-decoration: underline; font-size: 14px; font-weight: 600; }

  .section h2 { font-size: clamp(22px, 3.2vw, 28px); font-weight: 800; margin: 30px 0 20px; }
  .section-lede { font-size: 15px; color: var(--body-text); max-width: 660px; margin-bottom: 8px; }
  .section-lede strong { color: var(--ink); }

  .kicker { font-size: 11.5px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.6px; margin-bottom: 6px; font-weight: 700; }
  .card__title--sm { font-weight: 700; font-size: 16px; margin-bottom: 8px; }
  .card__body--sm { font-size: 14px; color: var(--body-text); }

  .why-card { border-radius: var(--radius-lg); padding: 20px; display: flex; flex-direction: column; gap: 8px; }
  .why-card__number { width: 34px; height: 34px; background: var(--navy); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; }
  .why-card__title { font-weight: 700; font-size: 15px; }
  .why-card__body { font-size: 13.5px; }

  .cta-strip { background: var(--gold); padding: 26px 20px; text-align: center; }
  .cta-strip__inner { max-width: 720px; margin: 0 auto; display: flex; flex-wrap: wrap; gap: 14px; align-items: center; justify-content: center; }
  .cta-strip__text { font-size: 16px; font-weight: 800; color: var(--navy); }
  .cta-strip__btn { background: var(--navy); color: var(--white); padding: 12px 22px; font-weight: 700; font-size: 14.5px; }
  .cta-strip__btn--secondary { background: transparent; color: var(--navy); border: 2px solid var(--navy); padding: 10px 20px; font-weight: 700; font-size: 14.5px; text-decoration: none; border-radius: var(--radius-sm); }

  .plain-list { margin: 0; padding-left: 18px; font-size: 14px; color: var(--body-text); display: flex; flex-direction: column; gap: 8px; }

  .pathway { position: relative; }
  .pathway__line { position: absolute; top: 17px; left: 17px; right: 17px; height: 2px; background: var(--border); z-index: 0; }
  .pathway__grid { display: grid; grid-template-columns: repeat(5, minmax(140px, 1fr)); gap: 20px; position: relative; z-index: 1; }
  .pathway__step { display: flex; flex-direction: column; gap: 8px; }
  .pathway__number { width: 34px; height: 34px; background: var(--navy); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; flex-shrink: 0; }
  .pathway__title { font-weight: 700; font-size: 14.5px; }
  .pathway__body { font-size: 13px; color: var(--body-text); }
  .pathway__timeframe { display: inline-block; background: var(--pink-bg); color: var(--ink); font-size: 12px; font-weight: 700; padding: 4px 10px; border-radius: 20px; margin-top: 4px; align-self: flex-start; }
  @media (max-width: 720px) {
    .pathway__line { display: none; }
    .pathway__grid { grid-template-columns: 1fr; }
  }

  .benefit { display: flex; flex-direction: column; gap: 8px; }

  .section-dark__inner { max-width: 560px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; align-items: center; }
  .section-dark h2 { font-size: clamp(22px, 3.4vw, 28px); font-weight: 800; }
  .section-dark p { font-size: 14.5px; color: #C8D8E0; }

/* ===== Partner directory page ===== */
  .directory-hero { padding-top: clamp(32px, 6vw, 56px); padding-bottom: 20px; }
  .back-link { font-size: 13px; color: var(--body-text); text-decoration: none; }
  .directory-hero h1 { font-size: clamp(26px, 4.4vw, 38px); margin: 14px 0 12px; max-width: 720px; font-weight: 800; }
  .directory-hero p { font-size: 16px; color: var(--body-text); max-width: 640px; }

  .directory-list { display: flex; flex-direction: column; gap: 20px; }
  .directory-card { display: flex; flex-wrap: wrap; gap: 18px; padding: 22px; }
  .directory-card img { width: 130px; height: 60px; object-fit: contain; flex-shrink: 0; }
  .directory-card__body { flex: 1 1 260px; min-width: 0; }
  .directory-card__name { font-weight: 800; font-size: 16px; }
  .directory-card__meta { font-size: 13px; color: var(--body-text); margin: 2px 0 8px; }
  .directory-card__desc { font-size: 14px; color: var(--body-text); margin-bottom: 10px; }
  .directory-card__link { font-size: 13.5px; text-decoration: underline; }
  .directory-card__tags { margin-top: 10px; }

  .section h2 { font-size: clamp(20px, 2.8vw, 24px); font-weight: 800; margin: 30px 0 18px; }
  .more-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 14px; }
  .more-card { border: 1px solid var(--border); border-radius: 10px; padding: 14px; display: flex; flex-direction: column; align-items: center; gap: 8px; text-align: center; }
  .more-card img { height: 44px; object-fit: contain; }
  .more-card__name { font-size: 12.5px; font-weight: 600; color: var(--ink); }

  .section-dark__inner { max-width: 560px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; align-items: center; }
  .section-dark h2 { font-size: clamp(22px, 3.4vw, 28px); font-weight: 800; }

/* ===== Contact page ===== */
  h1 { font-size: clamp(28px, 4.6vw, 40px); margin: 0 0 12px; max-width: 700px; font-weight: 800; }
  .contact-lede { font-size: 16px; color: var(--body-text); max-width: 620px; }

  .contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 40px; padding-bottom: 60px; }
  .contact-details { display: flex; flex-direction: column; gap: 24px; }
  .contact-details__label { font-weight: 700; font-size: 14px; margin-bottom: 6px; }
  .contact-details__value { font-size: 14.5px; color: var(--body-text); }

  .contact-form-card { border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px; }
  .contact-form-card p { font-size: 14.5px; color: var(--body-text); margin-bottom: 16px; }

