/* ============================================================
   rec2rec — design system
   Warm cream base, brand orange (logo), deep navy ink.
   Montserrat (display/CTA) + Inter (body) — client specified.
   ============================================================ */

/* ---------- Fonts (variable, latin subset, self-hosted) ---------- */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('../fonts/montserrat-latin.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('../fonts/inter-latin.woff2') format('woff2');
}

/* ---------- Tokens ---------- */
:root {
  /* Warm neutrals */
  --cream: #FAF4EE;          /* hero + tinted sections */
  --cream-deep: #F5EDE3;     /* deeper warm tint */
  --peach: #FBEDE0;          /* CTA banner */
  --border: #EDE3D7;         /* hairlines on cream */
  --border-card: #F0E9DF;    /* hairlines on white */

  /* Navy ink (headings, dark panel) */
  --navy-900: #1F2547;       /* dark panel bg */
  --navy-800: #262D56;
  --ink-900: #222A4E;        /* headings, strong text */
  --ink-600: #4E5670;        /* secondary text — AA on cream & white */
  --on-navy-muted: #B9BEDA;  /* muted text on navy-900 */

  /* Brand orange (from logo) */
  --orange-400: #EE6A2C;     /* logo orange — decorative, large display only */
  --orange-500: #E4581F;     /* icons, big numerals */
  --orange-600: #CC4E0D;     /* buttons, links, text accents — AA with white */
  --orange-100: #FCE4D4;     /* pastel icon circle */
  --orange-on-navy: #F08A56; /* orange accents on navy panel */

  /* Pastel icon accents (help cards) */
  --purple-100: #E9E5F8;
  --purple-600: #5A4BD1;
  --green-100: #DEF2E6;
  --green-600: #1F7A50;

  --success: #15803D;
  --success-bg: #EAF6EE;
  --error: #C22323;
  --error-bg: #FBEDED;

  --font-display: 'Montserrat', 'Segoe UI', system-ui, sans-serif;
  --font-body: 'Inter', 'Segoe UI', system-ui, sans-serif;

  --container: 73.75rem;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --section-y: clamp(3.5rem, 8vw, 6rem);

  --radius-btn: 10px;
  --radius-card: 16px;
  --radius-panel: 24px;
  --radius-pill: 999px;

  --shadow-1: 0 1px 3px rgb(34 42 78 / .06), 0 1px 2px rgb(34 42 78 / .04);
  --shadow-2: 0 10px 28px rgb(34 42 78 / .10), 0 2px 6px rgb(34 42 78 / .05);
  --shadow-3: 0 20px 48px rgb(34 42 78 / .16);

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1); /* quint */

  /* z-scale */
  --z-sticky: 100;
  --z-drawer: 200;
  --z-float: 300;
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 5.5rem;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink-900);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.18;
  text-wrap: balance;
  color: var(--ink-900);
}
h1 { font-size: clamp(2.15rem, 5vw, 3.4rem); font-weight: 700; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.55rem, 3.2vw, 2.2rem); font-weight: 700; letter-spacing: -0.015em; }
h3 { font-size: 1.2rem; font-weight: 700; }
.accent { color: var(--orange-600); }

p, li { max-width: 68ch; }
.lead { font-size: clamp(1.05rem, 1.5vw, 1.2rem); line-height: 1.65; color: var(--ink-600); text-wrap: pretty; }

a { color: var(--orange-600); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--orange-500); }

:focus-visible {
  outline: 3px solid var(--navy-900);
  outline-offset: 2px;
  border-radius: 4px;
}

::selection { background: var(--orange-500); color: #fff; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: calc(var(--z-float) + 1);
  background: var(--navy-900);
  color: #fff;
  padding: .75rem 1.25rem;
  border-radius: 0 0 var(--radius-btn) 0;
}
.skip-link:focus { left: 0; }

/* ---------- Layout utilities ---------- */
.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section { padding-block: var(--section-y); }
.section--grey { background: var(--cream); }
.section--blue-tint { background: var(--cream); }
.section--dark { background: var(--navy-900); color: #fff; }
.section--dark h2, .section--dark h3 { color: #fff; }
.section--dark p { color: var(--on-navy-muted); }

.section-head { max-width: 46rem; margin-bottom: clamp(2rem, 4vw, 3rem); }
.section-head > p { margin-top: .75rem; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .lead { margin-inline: auto; }

/* Section head with action on the right (h2 + button row) */
.section-head--row {
  max-width: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem 2rem;
}

/* ---------- Logo ---------- */
.logo { display: inline-flex; align-items: center; flex: none; }
.logo img { width: auto; height: 2.4rem; }
.logo--footer img { height: 2.2rem; }
@media (max-width: 26rem) { .logo img { height: 2rem; } }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .95rem;
  text-decoration: none;
  border: 0;
  border-radius: var(--radius-btn);
  padding: .85rem 1.5rem;
  cursor: pointer;
  transition: background-color .18s var(--ease-out), color .18s var(--ease-out),
              transform .18s var(--ease-out), box-shadow .18s var(--ease-out);
}
.btn:active { transform: translateY(1px); }
.btn--sm { padding: .6rem 1.1rem; font-size: .875rem; }
.btn .icon { flex: none; transition: transform .18s var(--ease-out); }
.btn:hover .icon { transform: translateX(3px); }

.btn--primary, .btn--accent { background: var(--orange-600); color: #fff; }
.btn--primary:hover, .btn--accent:hover { background: var(--orange-500); color: #fff; box-shadow: var(--shadow-2); }

.btn--outline {
  background: #fff;
  color: var(--ink-900);
  box-shadow: inset 0 0 0 1.5px var(--border);
}
.btn--outline:hover { color: var(--ink-900); box-shadow: inset 0 0 0 1.5px var(--ink-900); }

.btn--ghost-light { background: transparent; color: #fff; box-shadow: inset 0 0 0 1.5px rgb(255 255 255 / .55); }
.btn--ghost-light:hover { background: rgb(255 255 255 / .1); color: #fff; box-shadow: inset 0 0 0 1.5px rgb(255 255 255 / .85); }

/* ---------- Pills ---------- */
.pill {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  background: var(--cream);
  color: var(--ink-600);
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 500;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: .22rem .75rem;
  white-space: nowrap;
}

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: var(--z-sticky);
  background: #fff;
  border-bottom: 1px solid transparent;
  transition: box-shadow .2s var(--ease-out), border-color .2s var(--ease-out);
}
.site-header.is-scrolled { box-shadow: var(--shadow-1); border-color: var(--border-card); }

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 4.5rem;
}

.site-nav__list {
  display: flex;
  align-items: center;
  gap: clamp(.9rem, 1.8vw, 1.7rem);
  list-style: none;
  padding: 0;
}
.site-nav__list a:not(.btn) {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: .9rem;
  color: var(--ink-900);
  text-decoration: none;
  padding-block: .5rem;
}
.site-nav__list a:not(.btn):hover { color: var(--orange-600); }
.site-nav__list a[aria-current="page"] {
  color: var(--orange-600);
  font-weight: 600;
}

.nav-toggle {
  display: none;
  align-items: center;
  gap: .55rem;
  background: none;
  border: 0;
  padding: .5rem;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--ink-900);
}
.nav-toggle__bar {
  position: relative;
  width: 22px;
  height: 2px;
  background: currentColor;
  transition: background .15s;
}
.nav-toggle__bar::before, .nav-toggle__bar::after {
  content: '';
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  background: currentColor;
  transition: transform .2s var(--ease-out);
}
.nav-toggle__bar::before { top: -7px; }
.nav-toggle__bar::after { top: 7px; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar::before { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar::after { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 56rem) {
  .nav-toggle { display: inline-flex; z-index: calc(var(--z-drawer) + 1); }
  .site-nav {
    position: fixed;
    inset: 0;
    z-index: var(--z-drawer);
    background: var(--navy-900);
    display: grid;
    place-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s var(--ease-out), visibility 0s linear .25s;
  }
  .site-nav.is-open { opacity: 1; visibility: visible; transition-delay: 0s; }
  .site-nav__list { flex-direction: column; gap: 1.4rem; text-align: center; }
  .site-nav__list a:not(.btn) { color: #fff; font-size: 1.3rem; }
  .site-nav__list a:not(.btn):hover { color: var(--orange-on-navy); }
  .site-nav__list a[aria-current="page"] { color: var(--orange-on-navy); }
  .site-nav__cta { margin-top: .75rem; }
  body.nav-open { overflow: hidden; }
  body.nav-open .site-header { background: transparent; box-shadow: none; border-color: transparent; }
  body.nav-open .nav-toggle { color: #fff; }
  body.nav-open .logo { position: relative; z-index: calc(var(--z-drawer) + 1); }
  body.nav-open .logo img { background: #fff; border-radius: 6px; padding: .25rem .4rem; height: 2.6rem; }
}

/* ---------- Hero (home) ---------- */
.hero {
  background: var(--cream);
  overflow: clip;
}
.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 6fr) minmax(0, 6fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  padding-block: clamp(2.75rem, 6vw, 5rem) clamp(3.25rem, 7vw, 5.5rem);
}
.hero h1 { max-width: 14ch; }
.hero__sub {
  margin-top: 1.15rem;
  max-width: 34rem;
  font-size: clamp(1rem, 1.4vw, 1.125rem);
  color: var(--ink-600);
  text-wrap: pretty;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.8rem; }
.hero__trust { margin-top: clamp(1.75rem, 4vw, 2.75rem); }
.hero__trust-label { font-size: .85rem; color: var(--ink-600); }
.hero__trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1.6rem;
  align-items: center;
  margin-top: .8rem;
  padding: 0;
  list-style: none;
}
.hero__trust-row li {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .95rem;
  color: var(--ink-600);
  display: inline-flex;
  align-items: center;
  gap: .45rem;
}
.hero__trust-row .icon { color: var(--orange-500); }

.hero__media { position: relative; padding-bottom: 3.5rem; }
.hero__photo {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-2);
}
.hero__photo img { width: 100%; aspect-ratio: 10 / 9; object-fit: cover; }

/* Stats card overlapping the hero photo */
.stats-card {
  position: absolute;
  left: clamp(-2.5rem, -3vw, -1rem);
  right: clamp(.5rem, 2vw, 2rem);
  bottom: 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  background: #fff;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-2);
  padding: 1.35rem .5rem;
}
.stat {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: .3rem;
  padding-inline: .75rem;
}
.stat + .stat { border-left: 1px solid var(--border-card); }
.stat .icon { color: var(--orange-500); }
.stat__value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  letter-spacing: -0.01em;
  color: var(--ink-900);
  line-height: 1.1;
}
.stat__label { font-size: .78rem; color: var(--ink-600); }

@media (max-width: 56rem) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__media { padding-bottom: 0; }
  .hero__photo img { aspect-ratio: 16 / 11; }
  .stats-card {
    position: static;
    margin: -2.25rem .75rem 0;
    padding: 1.1rem .25rem;
  }
  .stat { padding-inline: .5rem; }
}

/* ---------- Help cards (home: three paths) ---------- */
.help-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(16.5rem, 1fr));
  gap: 1.4rem;
}
.help-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-card);
  padding: 1.9rem 1.7rem 1.7rem;
  display: flex;
  flex-direction: column;
  gap: .8rem;
  transition: transform .18s var(--ease-out), box-shadow .18s var(--ease-out);
}
.help-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); }
.help-card__icon {
  width: 3.2rem;
  height: 3.2rem;
  border-radius: var(--radius-pill);
  display: grid;
  place-items: center;
  margin-bottom: .4rem;
}
.help-card__icon--orange { background: var(--orange-100); color: var(--orange-500); }
.help-card__icon--purple { background: var(--purple-100); color: var(--purple-600); }
.help-card__icon--green  { background: var(--green-100); color: var(--green-600); }
.help-card h3 { font-size: 1.15rem; }
.help-card p { font-size: .95rem; color: var(--ink-600); }
.help-card__link {
  margin-top: auto;
  padding-top: .5rem;
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .9rem;
  color: var(--orange-600);
  text-decoration: none;
}
.help-card__link::after { content: ''; position: absolute; inset: 0; border-radius: var(--radius-card); }
.help-card__link .icon { transition: transform .18s var(--ease-out); }
.help-card:hover .help-card__link .icon { transform: translateX(4px); }

/* ---------- Feature panel (photo + content on tinted rounded panel) ---------- */
.feature-panel {
  background: var(--cream);
  border-radius: var(--radius-panel);
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(1.75rem, 4vw, 3.5rem);
  align-items: center;
  padding: clamp(1.25rem, 3vw, 2.5rem);
}
.feature-panel__media { border-radius: var(--radius-card); overflow: hidden; align-self: stretch; }
.feature-panel__media img { width: 100%; height: 100%; min-height: 16rem; object-fit: cover; }
.feature-panel__body { padding: clamp(.5rem, 2vw, 1.5rem) clamp(.25rem, 2vw, 1.5rem) clamp(.5rem, 2vw, 1.5rem) 0; }
.feature-panel__kicker {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--orange-600);
  margin-bottom: .8rem;
}
.feature-panel h2 { max-width: 20ch; }
.feature-panel .lead { margin-top: .9rem; font-size: 1rem; }
.feature-panel .checklist { margin-top: 1.3rem; }
.feature-panel .btn { margin-top: 1.6rem; }
@media (max-width: 56rem) {
  .feature-panel { grid-template-columns: 1fr; }
  .feature-panel__media img { min-height: 0; aspect-ratio: 16 / 10; }
  .feature-panel__body { padding: .5rem .75rem 1rem; }
}

/* ---------- Quote panel (navy, rounded) ---------- */
.quote-panel {
  background: var(--navy-900);
  color: #fff;
  border-radius: var(--radius-panel);
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  padding: clamp(2rem, 5vw, 3.75rem);
}
.quote-panel h2 { color: #fff; max-width: 14ch; }
.quote-panel__intro { position: relative; }
.quote-panel__intro::after {
  content: '';
  position: absolute;
  top: 8%;
  bottom: 8%;
  right: calc(-1 * clamp(1rem, 2.5vw, 2rem));
  width: 1px;
  background: rgb(255 255 255 / .15);
}
.quote-panel .btn { margin-top: 1.5rem; }
.quote-panel blockquote {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  line-height: 1.6;
  color: #fff;
  text-wrap: pretty;
  max-width: 52ch;
}
.quote-panel__mark {
  color: var(--orange-on-navy);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 3.25rem;
  line-height: .5;
  display: block;
  margin-bottom: 1.1rem;
}
.quote-panel footer {
  margin-top: 1.4rem;
  display: flex;
  align-items: center;
  gap: .9rem;
}
.quote-panel__avatar {
  width: 2.9rem;
  height: 2.9rem;
  flex: none;
  border-radius: var(--radius-pill);
  background: var(--orange-500);
  color: #fff;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
}
.quote-panel footer strong { font-family: var(--font-display); font-size: .95rem; display: block; }
.quote-panel footer span { font-size: .85rem; color: var(--on-navy-muted); }
.quote-panel__stars { margin-left: auto; }
@media (max-width: 56rem) {
  .quote-panel { grid-template-columns: 1fr; }
  .quote-panel__intro::after { display: none; }
  .quote-panel__stars { display: none; }
}

/* ---------- CTA banner (peach, rounded) ---------- */
.cta-banner {
  background: var(--peach);
  border-radius: var(--radius-panel);
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 3vw, 2rem);
  padding: clamp(1.75rem, 4vw, 2.5rem) clamp(1.5rem, 4vw, 3rem);
}
.cta-banner__icon {
  width: 3.6rem;
  height: 3.6rem;
  flex: none;
  border-radius: var(--radius-pill);
  background: #fff;
  color: var(--orange-500);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-1);
}
.cta-banner h2 { font-size: clamp(1.3rem, 2.4vw, 1.65rem); }
.cta-banner p { margin-top: .3rem; font-size: .95rem; color: var(--ink-600); }
.cta-banner .btn { margin-left: auto; flex: none; }
@media (max-width: 56rem) {
  .cta-banner { flex-direction: column; align-items: flex-start; }
  .cta-banner .btn { margin-left: 0; }
}

/* ---------- Subpage hero ---------- */
.page-hero { background: var(--cream); padding-block: clamp(3rem, 7vw, 5rem) clamp(2.5rem, 5vw, 4rem); }
.page-hero__kicker {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--orange-600);
  margin-bottom: .8rem;
}
.page-hero h1 { max-width: 18ch; }
.page-hero .lead { margin-top: 1.1rem; max-width: 40rem; }
.page-hero__actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.8rem; }

.page-hero--split .container {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.page-hero__media { border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-2); }
.page-hero__media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3; }
@media (max-width: 47.5rem) {
  .page-hero--split .container { grid-template-columns: 1fr; }
  .page-hero__media { order: -1; }
  .page-hero__media img { aspect-ratio: 16 / 9; }
}

/* ---------- Fact band (numbers as design) ---------- */
.facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr));
  gap: 1.25rem 2.5rem;
}
.fact { padding-block: .25rem; }
.fact__value {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.7rem, 3.2vw, 2.3rem);
  letter-spacing: -0.02em;
  color: var(--ink-900);
  line-height: 1.1;
}
.fact__value--orange { color: var(--orange-600); }
.fact__label { display: block; margin-top: .35rem; font-size: .95rem; color: var(--ink-600); max-width: 24ch; }
.section--dark .fact__value { color: #fff; }
.section--dark .fact__value--orange { color: var(--orange-on-navy); }
.section--dark .fact__label { color: var(--on-navy-muted); }

/* ---------- Salary display ---------- */
.salary-display { display: inline-flex; flex-direction: column; align-items: flex-start; gap: .15rem; }
.salary-display__label {
  font-size: .78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--ink-600);
}
.salary-display__range {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--ink-900);
}
.salary-display__bonus { font-size: .95rem; font-weight: 600; color: var(--orange-600); }
.section--dark .salary-display__label { color: var(--on-navy-muted); }
.section--dark .salary-display__range { color: #fff; }
.section--dark .salary-display__bonus { color: var(--orange-on-navy); }

/* ---------- Bonus badge & LinkedIn callout ---------- */
.bonus-badge {
  display: inline-flex;
  align-items: center;
  gap: .9rem;
  background: var(--orange-600);
  color: #fff;
  border-radius: var(--radius-card);
  padding: 1rem 1.35rem;
  max-width: 100%;
}
.bonus-badge__icon { flex: none; }
.bonus-badge__text { display: grid; gap: .1rem; }
.bonus-badge__text strong { font-family: var(--font-display); font-size: 1rem; line-height: 1.3; }
.bonus-badge__text span { font-size: .84rem; color: rgb(255 255 255 / .92); }

.li-callout {
  display: flex;
  align-items: flex-start;
  gap: .9rem;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 1rem 1.35rem;
}
.li-callout__icon { flex: none; color: var(--orange-500); margin-top: .1rem; }
.li-callout__text { display: grid; gap: .15rem; }
.li-callout__text strong { font-family: var(--font-display); font-size: 1rem; color: var(--ink-900); }
.li-callout__text span { font-size: .9rem; color: var(--ink-600); }

.perk-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(19rem, 1fr));
  gap: 1.25rem;
  align-items: stretch;
}
.perk-row .bonus-badge, .perk-row .li-callout { width: 100%; }

/* ---------- Profile cards ---------- */
.profiles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(17rem, 1fr));
  gap: 1.4rem;
}
.profile {
  background: #fff;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-card);
  padding: 1.8rem 1.7rem;
  display: flex;
  flex-direction: column;
  gap: .65rem;
  transition: transform .18s var(--ease-out), box-shadow .18s var(--ease-out);
}
.profile:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); }
.profile__icon {
  width: 3.2rem;
  height: 3.2rem;
  border-radius: var(--radius-pill);
  display: grid;
  place-items: center;
  background: var(--orange-100);
  color: var(--orange-500);
  margin-bottom: .4rem;
}
.profile--starter .profile__icon { background: var(--purple-100); color: var(--purple-600); }
.profile h3 { font-size: 1.15rem; }
.profile p { font-size: .95rem; color: var(--ink-600); }
.profile__link {
  margin-top: auto;
  padding-top: .5rem;
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .9rem;
  color: var(--orange-600);
  text-decoration: none;
}
.profile__link:hover { color: var(--orange-500); }

/* ---------- Checklist ---------- */
.checklist { list-style: none; padding: 0; display: grid; gap: .7rem; }
.checklist li { display: flex; gap: .7rem; align-items: flex-start; }
.checklist .icon { flex: none; color: var(--orange-500); margin-top: .22rem; }
.section--dark .checklist .icon, .quote-panel .checklist .icon { color: var(--orange-on-navy); }
.section--dark .checklist li { color: var(--on-navy-muted); }

/* ---------- Process steps ---------- */
.steps {
  list-style: none;
  padding: 0;
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  gap: 1.75rem 1.5rem;
}
.steps__item { display: grid; gap: .8rem; align-content: start; }
.steps__num {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: var(--radius-pill);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  background: var(--orange-100);
  color: var(--orange-600);
}
.section--dark .steps__num { background: #fff; color: var(--navy-900); }
.steps__body h3 { font-size: 1.1rem; margin-bottom: .3rem; }
.steps__body p { font-size: .95rem; color: var(--ink-600); }
.section--dark .steps__body p { color: var(--on-navy-muted); }

/* ---------- Insights Discovery quadrant ---------- */
.insights { display: grid; grid-template-columns: minmax(0, 6fr) minmax(0, 5fr); gap: clamp(2rem, 5vw, 4rem); align-items: center; }
@media (max-width: 47.5rem) { .insights { grid-template-columns: 1fr; } }

.quadrant {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .6rem;
  aspect-ratio: 1;
  max-width: 24rem;
  margin-inline: auto;
}
.quadrant__cell {
  border-radius: var(--radius-card);
  padding: 1.1rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: .15rem;
  color: #fff;
  transition: transform .2s var(--ease-out);
}
.quadrant__cell:hover { transform: scale(1.03); }
.quadrant__cell strong { font-family: var(--font-display); font-size: 1rem; }
.quadrant__cell span { font-size: .8rem; opacity: .92; }
.quadrant__cell--red    { background: #C0392B; border-top-left-radius: 40%; }
.quadrant__cell--yellow { background: #DC9A06; border-top-right-radius: 40%; }
.quadrant__cell--green  { background: #2E7D4F; border-bottom-left-radius: 40%; }
.quadrant__cell--blue   { background: #2A6496; border-bottom-right-radius: 40%; }

/* ---------- Vacature cards ---------- */
.vac-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(18.75rem, 1fr));
  gap: 1.4rem;
}
.vac-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-card);
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: .8rem;
  transition: transform .18s var(--ease-out), box-shadow .18s var(--ease-out);
}
.vac-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); }
.vac-card--featured { background: var(--cream); border-color: var(--border); }
.vac-card__flag {
  position: absolute;
  top: -0.75rem;
  left: 1.25rem;
  background: var(--orange-600);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  border-radius: var(--radius-pill);
  padding: .25rem .8rem;
}
.vac-card__title { font-size: 1.2rem; }
.vac-card__title a { color: var(--ink-900); text-decoration: none; }
.vac-card__title a::after { content: ''; position: absolute; inset: 0; } /* full-card click */
.vac-card:hover .vac-card__title a { color: var(--orange-600); }
.vac-card__tags { list-style: none; display: flex; flex-wrap: wrap; gap: .4rem; padding: 0; }
.vac-card__excerpt { font-size: .95rem; color: var(--ink-600); }
.vac-card__salary { margin-top: auto; display: grid; gap: .05rem; padding-top: .3rem; }
.vac-card__salary strong { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; color: var(--ink-900); }
.vac-card__salary span { font-size: .85rem; color: var(--orange-600); font-weight: 600; }
.vac-card__link {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .9rem;
  color: var(--orange-600);
}
.vac-card:hover .vac-card__link .icon { transform: translateX(4px); }
.vac-card__link .icon { transition: transform .18s var(--ease-out); }

/* Filters */
.filters { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 2rem; }
.filters__label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--ink-600);
  align-self: center;
  margin-right: .35rem;
}
.filter-btn {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: .875rem;
  background: #fff;
  color: var(--ink-900);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: .45rem 1.05rem;
  cursor: pointer;
  transition: background-color .15s, color .15s, border-color .15s;
}
.filter-btn:hover { border-color: var(--ink-900); }
.filter-btn[aria-pressed="true"] { background: var(--navy-900); border-color: var(--navy-900); color: #fff; }
.vac-empty {
  border: 1px dashed var(--border);
  border-radius: var(--radius-card);
  padding: 2.5rem 1.5rem;
  text-align: center;
  color: var(--ink-600);
}
.vac-empty a { font-weight: 600; }

/* ---------- Testimonials ---------- */
.quotes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(17rem, 1fr));
  gap: 1.4rem;
}
.quote {
  background: #fff;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-card);
  padding: 1.7rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: .9rem;
}
.quote blockquote { font-size: .98rem; color: var(--ink-900); text-wrap: pretty; }
.quote blockquote::before { content: '“'; }
.quote blockquote::after { content: '”'; }
.quote footer { margin-top: auto; display: grid; gap: .1rem; font-size: .9rem; }
.quote footer strong { font-family: var(--font-display); font-size: .95rem; }
.quote footer span { color: var(--ink-600); font-size: .85rem; }
.stars { display: inline-flex; gap: .15rem; }
.star { fill: var(--border); }
.star.is-filled { fill: var(--orange-500); }

/* ---------- FAQ ---------- */
.faq { max-width: 46rem; }
.faq details { border-bottom: 1px solid var(--border); }
.faq summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--ink-900);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--orange-600); }
.faq summary .icon { flex: none; color: var(--orange-600); transition: transform .2s var(--ease-out); }
.faq details[open] summary .icon { transform: rotate(180deg); }
.faq details p { padding: 0 0 1.25rem; color: var(--ink-600); }

/* ---------- Forms ---------- */
.form-tabs { display: flex; gap: .5rem; margin-bottom: 1.75rem; flex-wrap: wrap; }
.form-tab {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .9rem;
  background: #fff;
  color: var(--ink-900);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: .65rem 1.4rem;
  cursor: pointer;
  text-decoration: none;
  transition: background-color .15s, color .15s, border-color .15s;
}
.form-tab:hover { border-color: var(--ink-900); color: var(--ink-900); }
.form-tab[aria-current="true"] { background: var(--navy-900); border-color: var(--navy-900); color: #fff; }

.form-card {
  background: #fff;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-card);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  box-shadow: var(--shadow-1);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem 1.25rem; }
.form-grid .field--full { grid-column: 1 / -1; }
@media (max-width: 40rem) { .form-grid { grid-template-columns: 1fr; } }

.field { display: grid; gap: .35rem; }
.field label { font-weight: 500; font-size: .9rem; }
.field label .req { color: var(--error); }
.field input, .field select, .field textarea {
  font: inherit;
  font-size: .95rem;
  color: var(--ink-900);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-btn);
  padding: .7rem .85rem;
  width: 100%;
  transition: border-color .15s, box-shadow .15s;
}
.field textarea { min-height: 7rem; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--orange-500);
  box-shadow: 0 0 0 3px var(--orange-100);
}
.field input[aria-invalid="true"], .field textarea[aria-invalid="true"], .field select[aria-invalid="true"] {
  border-color: var(--error);
}
.field__error { display: flex; gap: .35rem; align-items: center; font-size: .85rem; color: var(--error); font-weight: 500; }
.field__hint { font-size: .82rem; color: var(--ink-600); }

.form-alert {
  border-radius: var(--radius-card);
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
  font-weight: 500;
}
.form-alert--error { background: var(--error-bg); color: var(--error); border: 1px solid currentColor; }

.form-success {
  background: var(--success-bg);
  border: 1px solid var(--success);
  border-radius: var(--radius-card);
  padding: 2rem;
  display: grid;
  gap: .5rem;
  justify-items: start;
}
.form-success h2 { font-size: 1.4rem; color: var(--success); }
.form-success p { color: var(--ink-900); }

.honeypot { position: absolute; left: -999rem; width: 1px; height: 1px; overflow: hidden; }

/* ---------- Contact layout ---------- */
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 4fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
@media (max-width: 56rem) { .contact-layout { grid-template-columns: 1fr; } }

/* ---------- Contact info block ---------- */
.contact-aside { display: grid; gap: 1.25rem; align-content: start; }
.contact-aside__item { display: flex; gap: .85rem; align-items: flex-start; }
.contact-aside__item .icon { flex: none; color: var(--orange-500); margin-top: .2rem; }
.contact-aside__item strong { font-family: var(--font-display); display: block; font-size: .95rem; }
.contact-aside__item a { font-size: .95rem; }
.contact-aside__item p { font-size: .9rem; color: var(--ink-600); }

/* ---------- CTA band ---------- */
.cta-band { text-align: left; }
.cta-band__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr));
  gap: 2.5rem;
  align-items: center;
}
.cta-band h2 { max-width: 20ch; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: .8rem; }

/* ---------- Footer ---------- */
.site-footer { background: #fff; border-top: 1px solid var(--border-card); color: var(--ink-600); }
.site-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 2.5rem;
  padding-block: clamp(2.75rem, 6vw, 4rem) 2rem;
}
@media (max-width: 56rem) { .site-footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 34rem) { .site-footer__grid { grid-template-columns: 1fr; } }

.site-footer__tagline { margin-top: 1rem; font-size: .9rem; line-height: 1.6; color: var(--ink-600); }
.site-footer__social { display: flex; gap: .6rem; margin-top: 1.2rem; }
.site-footer__social a {
  color: var(--orange-600);
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: border-color .15s, color .15s;
}
.site-footer__social a:hover { border-color: var(--orange-600); color: var(--orange-500); }

.site-footer__col h2 {
  font-family: var(--font-display);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .02em;
  color: var(--ink-900);
  margin-bottom: .9rem;
}
.site-footer__col ul { list-style: none; padding: 0; display: grid; gap: .55rem; }
.site-footer__col a {
  color: var(--ink-600);
  text-decoration: none;
  font-size: .9rem;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}
.site-footer__col a:hover { color: var(--orange-600); text-decoration: underline; }
.site-footer__note { margin-top: .9rem; font-size: .82rem; color: var(--ink-600); }

.site-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: .5rem 1.5rem;
  padding-block: 1.25rem;
  border-top: 1px solid var(--border-card);
  font-size: .8rem;
  color: var(--ink-600);
}
.site-footer__bottom a { color: inherit; }
.site-footer__bottom a:hover { color: var(--orange-600); }

/* ---------- WhatsApp float ---------- */
.wa-float {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: var(--z-float);
  width: 3.4rem;
  height: 3.4rem;
  border-radius: var(--radius-pill);
  display: grid;
  place-items: center;
  background: #1EBE5D;
  color: #fff;
  box-shadow: var(--shadow-2);
  transition: transform .18s var(--ease-out), box-shadow .18s var(--ease-out);
}
.wa-float:hover { color: #fff; transform: translateY(-3px); box-shadow: var(--shadow-3); }

/* ---------- Media / photo treatments ---------- */
.photo-card { border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-2); }
.photo-card img { width: 100%; height: 100%; object-fit: cover; }
.photo-card--portrait img { aspect-ratio: 3 / 4; }
.photo-card--landscape img { aspect-ratio: 16 / 10; }

/* CTA split: photo + content side by side */
.cta-split {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
@media (max-width: 47.5rem) { .cta-split { grid-template-columns: 1fr; } }

/* Wide photo band (vacature detail) */
.photo-band { border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-2); }
.photo-band img { width: 100%; height: clamp(14rem, 32vw, 22rem); object-fit: cover; }

/* ---------- Reveal motion ----------
   JS adds .reveal-init to <html> when it runs, then .in when visible.
   Without JS everything stays visible. */
@media (prefers-reduced-motion: no-preference) {
  .reveal-init [data-reveal] {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .55s var(--ease-out), transform .55s var(--ease-out);
  }
  .reveal-init [data-reveal].in { opacity: 1; transform: none; }
  .reveal-init [data-reveal-stagger] > * {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .55s var(--ease-out), transform .55s var(--ease-out);
  }
  .reveal-init [data-reveal-stagger].in > * { opacity: 1; transform: none; }
  .reveal-init [data-reveal-stagger].in > :nth-child(2) { transition-delay: .08s; }
  .reveal-init [data-reveal-stagger].in > :nth-child(3) { transition-delay: .16s; }
  .reveal-init [data-reveal-stagger].in > :nth-child(4) { transition-delay: .24s; }

  .hero__content > * { animation: hero-rise .6s var(--ease-out) both; }
  .hero__content > :nth-child(2) { animation-delay: .08s; }
  .hero__content > :nth-child(3) { animation-delay: .16s; }
  .hero__content > :nth-child(4) { animation-delay: .24s; }
  .hero__media { animation: hero-rise .7s var(--ease-out) .15s both; }
  @keyframes hero-rise {
    from { opacity: 0; transform: translateY(22px); }
    to   { opacity: 1; transform: none; }
  }
}

/* ---------- Small screens ---------- */
@media (max-width: 40rem) {
  .btn { width: auto; }
  .page-hero__actions .btn, .cta-band__actions .btn, .hero__actions .btn { width: 100%; }
}

/* ---------- Print ---------- */
@media print {
  .site-header, .wa-float, .site-footer, .nav-toggle { display: none; }
}
