/* ============================================================
   HAPPYFLEX — Marketing site  ·  mobile-first
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce){ html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }
:focus-visible { outline: 2.5px solid var(--coral); outline-offset: 2px; border-radius: 4px; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: 56px; position: relative; }
.section--tight { padding-block: 40px; }
.section--navy { background: var(--navy); color: #fff; }
.section--navy50 { background: var(--navy-50); }
.section--white { background: var(--panel); }
.eyebrow {
  font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted); display: inline-flex; align-items: center; gap: 8px;
}
.section--navy .eyebrow { color: #9db7d6; }
.sec-head { max-width: 640px; }
.sec-head h2 {
  font-size: clamp(26px, 6.4vw, 40px); line-height: 1.12; letter-spacing: -.02em;
  font-weight: 700; margin: 12px 0 0; text-wrap: balance;
}
.sec-head p { color: var(--ink-soft); margin: 14px 0 0; font-size: 17px; text-wrap: pretty; }
.section--navy .sec-head p { color: #c4d4e6; }
.center { text-align: center; margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  --h: 52px;
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  min-height: var(--h); padding: 0 22px; border-radius: var(--r-pill);
  font-size: 15.5px; font-weight: 600; letter-spacing: -.01em; cursor: pointer;
  border: 1px solid transparent; transition: transform .16s ease, background .16s ease, box-shadow .16s ease, border-color .16s ease;
  white-space: nowrap;
}
.btn svg { width: 19px; height: 19px; }
.btn-primary { background: var(--coral); color: #fff; box-shadow: 0 6px 16px rgba(255,107,61,.28); }
.btn-primary:hover { background: var(--coral-hover); transform: translateY(-2px); box-shadow: 0 10px 22px rgba(255,107,61,.34); }
.btn-ghost { background: #fff; color: var(--navy); border-color: var(--line); }
.btn-ghost:hover { background: var(--panel-2); border-color: #cfd8e6; transform: translateY(-2px); }
.section--navy .btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.28); }
.section--navy .btn-ghost:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.5); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-deep); transform: translateY(-2px); }
.btn-sm { --h: 44px; padding: 0 16px; font-size: 14.5px; }
.btn-block { width: 100%; }
.link-arrow {
  display: inline-flex; align-items: center; gap: 7px; font-weight: 600; color: var(--navy);
  font-size: 15.5px;
}
.link-arrow svg { width: 18px; height: 18px; transition: transform .18s ease; }
.link-arrow:hover svg { transform: translateX(4px); }
.section--navy .link-arrow { color: #fff; }

/* ---------- Pills / badges ---------- */
.pill {
  display: inline-flex; align-items: center; gap: 6px; padding: 5px 11px; border-radius: var(--r-pill);
  font-size: 12.5px; font-weight: 600; background: #fff; border: 1px solid var(--line); color: var(--ink-soft);
}
.pill svg { width: 14px; height: 14px; }
.pill--navy { background: var(--navy-50); border-color: var(--navy-100); color: var(--navy); }
.pill--coral { background: var(--coral-soft); border-color: #ffd9c7; color: var(--coral-hover); }
.badge {
  display: inline-flex; align-items: center; gap: 6px; padding: 3px 9px; border-radius: 7px;
  font-size: 11.5px; font-weight: 600;
}
.badge--ok   { background: var(--ok-bg);   color: var(--ok);   border: 1px solid var(--ok-bd); }
.badge--info { background: var(--info-bg); color: var(--info); border: 1px solid var(--info-bd); }
.badge--warn { background: var(--warn-bg); color: var(--warn); border: 1px solid var(--warn-bd); }

/* ---------- Cards ---------- */
.card {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--r-lg);
  box-shadow: var(--sh-1); transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.card:hover { box-shadow: var(--sh-2); }

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,.82); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent; transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
}
.header.is-stuck { border-color: var(--line); box-shadow: 0 1px 0 rgba(22,38,59,.03), 0 6px 20px rgba(22,38,59,.05); }
.header__bar { display: flex; align-items: center; gap: 16px; height: 72px; transition: height .25s ease; }
.header.is-stuck .header__bar { height: 62px; }

.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 700; font-size: 19px; letter-spacing: -.02em; color: var(--navy); }
.brand__mark { width: 32px; height: 32px; border-radius: 9px; background: var(--navy); display: grid; place-items: center; box-shadow: var(--sh-1); flex: none; }
.brand__mark span { color: #fff; font-weight: 700; font-size: 17px; }
.brand__mark i { width: 9px; height: 9px; border-radius: 50%; background: var(--coral); position: absolute; transform: translate(11px, -11px); }

.nav { display: none; }
.nav__list { display: flex; align-items: center; gap: 2px; list-style: none; margin: 0; padding: 0; }
.nav__link {
  display: inline-flex; align-items: center; gap: 5px; padding: 9px 13px; border-radius: 9px; white-space: nowrap;
  font-size: 15px; font-weight: 500; color: var(--ink-soft); cursor: pointer; transition: background .15s, color .15s;
}
.nav__link:hover, .nav__item.open .nav__link { background: var(--navy-50); color: var(--navy); }
.nav__link svg { width: 16px; height: 16px; opacity: .7; transition: transform .2s ease; }
.nav__item.open .nav__link svg { transform: rotate(180deg); }
.nav__item { position: relative; }

/* dropdown */
.dropdown {
  position: absolute; top: calc(100% + 10px); left: 50%; transform: translateX(-50%) translateY(6px);
  min-width: 290px; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  box-shadow: var(--sh-3); padding: 8px; opacity: 0; visibility: hidden; transition: opacity .18s ease, transform .18s ease;
}
.nav__item.open .dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown a { display: flex; gap: 11px; align-items: flex-start; padding: 10px 11px; border-radius: var(--r-md); transition: background .14s; }
.dropdown a:hover { background: var(--navy-50); }
.dropdown__ic { width: 34px; height: 34px; border-radius: 9px; background: var(--navy-50); color: var(--navy); display: grid; place-items: center; flex: none; }
.dropdown__ic svg { width: 18px; height: 18px; }
.dropdown__t { font-weight: 600; font-size: 14.5px; color: var(--ink); }
.dropdown__d { font-size: 12.5px; color: var(--muted); line-height: 1.4; }

.header__actions { margin-left: auto; display: none; align-items: center; gap: 10px; }
.header__login { font-size: 14.5px; font-weight: 600; color: var(--navy); padding: 9px 12px; border-radius: 9px; display: inline-flex; align-items: center; gap: 6px; }
.header__login:hover { background: var(--navy-50); }
.header__login svg { width: 16px; height: 16px; }

/* hamburger */
.burger {
  margin-left: auto; width: 46px; height: 46px; border-radius: 11px; border: 1px solid var(--line);
  background: #fff; display: grid; place-items: center; cursor: pointer; gap: 0;
}
.burger span { display: block; width: 19px; height: 2px; background: var(--navy); border-radius: 2px; transition: transform .25s ease, opacity .2s ease; }
.burger span + span { margin-top: 4.5px; }
body.menu-open .burger span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
body.menu-open .burger span:nth-child(2) { opacity: 0; }
body.menu-open .burger span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* mobile sheet */
.msheet {
  position: fixed; inset: 0 0 0 0; top: 0; z-index: 55;
  background: var(--bg); transform: translateY(-100%); visibility: hidden;
  transition: transform .32s cubic-bezier(.4,0,.2,1), visibility .32s;
  display: flex; flex-direction: column; padding-top: 72px;
}
body.menu-open .msheet { transform: translateY(0); visibility: visible; }
.msheet__scroll { overflow-y: auto; padding: 14px var(--gutter) 24px; flex: 1; }
.macc { border-bottom: 1px solid var(--line); }
.macc__top {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 8px;
  background: none; border: 0; padding: 16px 4px; font-size: 18px; font-weight: 600; color: var(--ink); cursor: pointer; text-align: left;
}
.macc__top svg { width: 20px; height: 20px; color: var(--muted); transition: transform .22s ease; }
.macc.open .macc__top svg { transform: rotate(180deg); }
.macc__panel { max-height: 0; overflow: hidden; transition: max-height .28s ease; }
.macc.open .macc__panel { max-height: 420px; }
.macc__panel a { display: flex; align-items: center; gap: 10px; padding: 11px 4px 11px 8px; color: var(--ink-soft); font-size: 15.5px; }
.macc__panel a svg { width: 17px; height: 17px; color: var(--navy); opacity: .8; }
.macc__panel { padding-bottom: 8px; }
.msheet__cta { padding: 18px var(--gutter) calc(20px + env(safe-area-inset-bottom)); border-top: 1px solid var(--line); background: #fff; display: grid; gap: 10px; }
.msheet__login { text-align: center; font-weight: 600; color: var(--navy); padding-top: 4px; }

/* ============================================================
   HERO
   ============================================================ */
.hero { padding-top: 34px; padding-bottom: 8px; position: relative; overflow: hidden; }
.hero__glow {
  position: absolute; top: -180px; right: -160px; width: 520px; height: 520px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,107,61,.10), rgba(255,107,61,0) 70%); pointer-events: none; z-index: 0;
}
.hero__inner { position: relative; z-index: 1; display: grid; gap: 34px; }
.hero__copy { max-width: 560px; }
.hero h1 {
  font-size: clamp(33px, 8.6vw, 58px); line-height: 1.05; letter-spacing: -.025em; font-weight: 700;
  margin: 18px 0 0; text-wrap: balance;
}
.hero h1 .accent { color: var(--coral); }
.hero__sub { font-size: clamp(16.5px, 4.4vw, 19px); color: var(--ink-soft); margin: 18px 0 0; max-width: 480px; text-wrap: pretty; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.hero__cta .btn { flex: 1 1 auto; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 8px 18px; margin-top: 26px; }
.hero__trust .t { display: inline-flex; align-items: center; gap: 7px; font-size: 13.5px; font-weight: 500; color: var(--ink-soft); }
.hero__trust .t svg { width: 17px; height: 17px; color: var(--ok); }

/* hero visual — app preview mock */
.hero__visual { position: relative; }
.appcard {
  background: #fff; border: 1px solid var(--line); border-radius: 20px; box-shadow: var(--sh-3);
  padding: 16px; position: relative; max-width: 380px; margin-inline: auto;
}
.appcard__bar { display: flex; align-items: center; gap: 8px; padding: 2px 4px 14px; }
.appcard__bar .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--line); }
.appcard__bar .ttl { margin-left: 6px; font-size: 12.5px; font-weight: 600; color: var(--muted); }
.appcard__bar .live { margin-left: auto; }
.match {
  border: 1px solid var(--line); border-radius: var(--r-lg); padding: 14px; background: var(--panel-2);
}
.match__row { display: flex; align-items: center; gap: 12px; }
.match__av { width: 46px; height: 46px; border-radius: 12px; background: var(--navy-50); color: var(--navy); display: grid; place-items: center; font-weight: 700; font-size: 16px; flex: none; }
.match__name { font-weight: 600; font-size: 15px; }
.match__meta { font-size: 12.5px; color: var(--muted); }
.match__div { height: 1px; background: var(--line); margin: 13px -2px; }
.match__line { display: flex; align-items: center; gap: 9px; font-size: 13px; color: var(--ink-soft); padding: 4px 0; }
.match__line svg { width: 16px; height: 16px; color: var(--navy); opacity: .7; }
.match__confirm {
  margin-top: 13px; display: flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--ok-bg); color: var(--ok); border: 1px solid var(--ok-bd); border-radius: var(--r-md);
  padding: 11px; font-weight: 600; font-size: 14px;
}
.match__confirm svg { width: 18px; height: 18px; }
.appcard__float {
  position: absolute; background: #fff; border: 1px solid var(--line); border-radius: var(--r-md);
  box-shadow: var(--sh-2); padding: 10px 13px; display: none; align-items: center; gap: 10px; font-size: 13px; font-weight: 600;
}
.appcard__float.one { top: -22px; left: -34px; }
.appcard__float.two { bottom: 30px; right: -30px; }
.appcard__float .ic { width: 30px; height: 30px; border-radius: 8px; display: grid; place-items: center; flex: none; }
.appcard__float .ic svg { width: 17px; height: 17px; }
.appcard__float small { display: block; font-size: 11px; font-weight: 500; color: var(--muted); }

/* ============================================================
   STAT STRIP
   ============================================================ */
.stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; }
.stat { background: #fff; padding: 22px 18px; text-align: center; }
.stat .n { font-size: clamp(26px, 7vw, 34px); font-weight: 700; color: var(--navy); letter-spacing: -.02em; line-height: 1; }
.stat .n .u { color: var(--coral); }
.stat .l { font-size: 13px; color: var(--muted); margin-top: 7px; }

/* ============================================================
   STEPS — Zo werkt het
   ============================================================ */
.steps { display: grid; gap: 16px; margin-top: 34px; }
.step { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 22px; box-shadow: var(--sh-1); position: relative; overflow: hidden; }
.step__num { font-size: 13px; font-weight: 700; color: var(--coral); letter-spacing: .04em; }
.step__ic { width: 48px; height: 48px; border-radius: 12px; background: var(--navy-50); color: var(--navy); display: grid; place-items: center; margin: 14px 0 16px; }
.step__ic svg { width: 24px; height: 24px; }
.step h3 { font-size: 18px; font-weight: 600; margin: 0 0 7px; letter-spacing: -.01em; }
.step p { font-size: 14.5px; color: var(--ink-soft); margin: 0; }

/* ============================================================
   SPLIT — voor wie
   ============================================================ */
.split { display: grid; gap: 16px; margin-top: 34px; }
.audience { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 26px; box-shadow: var(--sh-1); display: flex; flex-direction: column; }
.audience--navy { background: var(--navy); color: #fff; border-color: transparent; }
.audience__tag { font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.audience--navy .audience__tag { color: #9db7d6; }
.audience h3 { font-size: 23px; font-weight: 700; letter-spacing: -.02em; margin: 12px 0 0; }
.audience p { font-size: 15px; color: var(--ink-soft); margin: 12px 0 0; }
.audience--navy p { color: #c4d4e6; }
.audience ul { list-style: none; margin: 18px 0 0; padding: 0; display: grid; gap: 11px; }
.audience li { display: flex; gap: 10px; align-items: flex-start; font-size: 14.5px; }
.audience li svg { width: 19px; height: 19px; flex: none; color: var(--ok); margin-top: 1px; }
.audience--navy li svg { color: #6fd3a3; }
.audience__foot { margin-top: auto; padding-top: 22px; }

/* ============================================================
   HIGHLIGHT — AI binnen een uur
   ============================================================ */
.highlight { display: grid; gap: 26px; align-items: center; }
.highlight__media {
  border-radius: var(--r-lg); overflow: hidden; border: 1px solid rgba(255,255,255,.14);
  box-shadow: var(--sh-3); position: relative;
}
.highlight .eyebrow { color: #ffb79c; }
.highlight h2 { font-size: clamp(26px, 6.4vw, 38px); letter-spacing: -.02em; line-height: 1.12; margin: 12px 0 0; font-weight: 700; }
.highlight p { color: #c4d4e6; margin: 14px 0 0; font-size: 16.5px; }
.highlight__metrics { display: flex; gap: 26px; margin-top: 24px; flex-wrap: wrap; }
.highlight__metrics .m .n { font-size: 30px; font-weight: 700; letter-spacing: -.02em; }
.highlight__metrics .m .l { font-size: 13px; color: #9db7d6; }

/* ============================================================
   VACANCIES
   ============================================================ */
.vac-filters { display: flex; gap: 8px; overflow-x: auto; padding: 4px 0 8px; margin-top: 24px; scrollbar-width: none; }
.vac-filters::-webkit-scrollbar { display: none; }
.chip {
  flex: none; padding: 9px 15px; border-radius: var(--r-pill); border: 1px solid var(--line); background: #fff;
  font-size: 14px; font-weight: 500; color: var(--ink-soft); cursor: pointer; transition: all .15s;
}
.chip:hover { border-color: #cfd8e6; }
.chip.active { background: var(--navy); color: #fff; border-color: var(--navy); }
.vac-grid { display: grid; gap: 16px; margin-top: 18px; }
.vac {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 20px; box-shadow: var(--sh-1);
  display: flex; flex-direction: column; transition: transform .18s, box-shadow .18s, border-color .18s;
}
.vac:hover { transform: translateY(-3px); box-shadow: var(--sh-2); border-color: #d6deea; }
.vac__top { display: flex; align-items: flex-start; gap: 13px; }
.vac__logo { width: 50px; height: 50px; border-radius: 12px; display: grid; place-items: center; font-weight: 700; color: #fff; flex: none; font-size: 18px; }
.vac__school { font-weight: 600; font-size: 16px; letter-spacing: -.01em; }
.vac__place { font-size: 13px; color: var(--muted); display: flex; align-items: center; gap: 5px; margin-top: 2px; }
.vac__place svg { width: 14px; height: 14px; }
.vac__tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 16px; }
.vac__foot { margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--line-2); display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.vac__rate { font-size: 13px; color: var(--muted); }
.vac__rate b { color: var(--ink); font-size: 16px; font-weight: 700; }
.is-hidden { display: none !important; }

/* ============================================================
   BENEFITS
   ============================================================ */
.benefits { display: grid; gap: 14px; margin-top: 34px; }
.benefit { display: flex; gap: 15px; align-items: flex-start; padding: 6px 2px; }
.benefit__ic { width: 50px; height: 50px; border-radius: 13px; background: var(--coral-soft); color: var(--coral-hover); display: grid; place-items: center; flex: none; }
.benefit__ic svg { width: 24px; height: 24px; }
.benefit h3 { font-size: 17px; font-weight: 600; margin: 4px 0 5px; letter-spacing: -.01em; }
.benefit p { font-size: 14.5px; color: var(--ink-soft); margin: 0; }

/* ============================================================
   STORIES
   ============================================================ */
.stories { display: grid; gap: 16px; margin-top: 34px; }
.story { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-1); display: flex; flex-direction: column; transition: transform .18s, box-shadow .18s; }
.story:hover { transform: translateY(-3px); box-shadow: var(--sh-2); }
.story__photo { aspect-ratio: 4/3; position: relative; }
.story__body { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.story__stars { display: flex; gap: 2px; color: var(--warn); }
.story__stars svg { width: 16px; height: 16px; fill: currentColor; }
.story__quote { font-size: 16px; line-height: 1.5; color: var(--ink); margin: 12px 0 0; letter-spacing: -.01em; text-wrap: pretty; }
.story__person { display: flex; align-items: center; gap: 11px; margin-top: auto; padding-top: 18px; }
.story__av { width: 40px; height: 40px; border-radius: 50%; background: var(--navy-50); color: var(--navy); display: grid; place-items: center; font-weight: 700; font-size: 14px; flex: none; }
.story__name { font-weight: 600; font-size: 14.5px; }
.story__role { font-size: 12.5px; color: var(--muted); }

/* placeholder media */
.ph {
  background-image: repeating-linear-gradient(135deg, var(--navy-50), var(--navy-50) 11px, #e6eef8 11px, #e6eef8 22px);
  position: relative; display: grid; place-items: center;
}
.ph__label {
  font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace; font-size: 11px; letter-spacing: .03em;
  color: var(--navy); background: rgba(255,255,255,.78); padding: 5px 10px; border-radius: 6px; border: 1px solid var(--navy-100);
}
.ph--dark { background-image: repeating-linear-gradient(135deg, #1d4a82, #1d4a82 11px, #234f88 11px, #234f88 22px); }
.ph--dark .ph__label { color: #cfe0f5; background: rgba(22,38,59,.5); border-color: rgba(255,255,255,.18); }

/* ============================================================
   PARTNERS / LOGO BAR
   ============================================================ */
.logos { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 28px; }
.logo-item {
  height: 64px; border: 1px solid var(--line); border-radius: var(--r-md); background: #fff; display: grid; place-items: center;
  filter: grayscale(1); opacity: .62; transition: opacity .2s, filter .2s;
}
.logo-item:hover { opacity: 1; filter: grayscale(0); }
.logo-item .lg { font-weight: 700; color: var(--navy); font-size: 15px; letter-spacing: -.01em; display: flex; align-items: center; gap: 7px; }
.logo-item .lg .sq { width: 16px; height: 16px; border-radius: 4px; background: var(--navy); }

/* ============================================================
   FAQ
   ============================================================ */
.faq { display: grid; gap: 10px; margin-top: 30px; max-width: 760px; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden; }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 18px 18px; background: none; border: 0; cursor: pointer; text-align: left; font-size: 16px; font-weight: 600; color: var(--ink); }
.faq-q svg { width: 20px; height: 20px; color: var(--navy); flex: none; transition: transform .22s ease; }
.faq-item.open .faq-q svg { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .28s ease; }
.faq-a__in { padding: 0 18px 18px; color: var(--ink-soft); font-size: 15px; }
.faq-item.open .faq-a { max-height: 240px; }

/* ============================================================
   FINAL CTA
   ============================================================ */
.finalcta { text-align: center; }
.finalcta__card {
  background: var(--navy); color: #fff; border-radius: 22px; padding: 44px 24px; position: relative; overflow: hidden;
  box-shadow: var(--sh-3);
}
.finalcta__glow { position: absolute; bottom: -120px; left: 50%; transform: translateX(-50%); width: 420px; height: 300px; background: radial-gradient(circle, rgba(255,107,61,.22), transparent 70%); pointer-events: none; }
.finalcta__card .eyebrow { color: #ffb79c; position: relative; }
.finalcta h2 { font-size: clamp(27px, 7vw, 42px); letter-spacing: -.02em; line-height: 1.1; margin: 14px 0 0; font-weight: 700; position: relative; text-wrap: balance; }
.finalcta p { color: #c4d4e6; margin: 14px auto 0; max-width: 440px; font-size: 16.5px; position: relative; }
.finalcta__btns { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 26px; position: relative; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--navy-deep); color: #b9c6d6; padding-block: 48px 0; }
.footer a { color: #b9c6d6; transition: color .15s; }
.footer a:hover { color: #fff; }
.footer__grid { display: grid; gap: 32px; }
.footer__brand .brand { color: #fff; }
.footer__brand .brand__mark { background: #fff; }
.footer__brand .brand__mark span { color: var(--navy-deep); }
.footer__brand p { font-size: 14px; color: #8ea0b4; margin: 16px 0 0; max-width: 280px; }
.footer__socials { display: flex; gap: 10px; margin-top: 18px; }
.footer__socials a { width: 40px; height: 40px; border-radius: 10px; border: 1px solid rgba(255,255,255,.12); display: grid; place-items: center; }
.footer__socials a:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.3); }
.footer__socials svg { width: 19px; height: 19px; }
.footer__col h4 { font-size: 12px; text-transform: uppercase; letter-spacing: .08em; color: #7f93a8; margin: 0 0 14px; font-weight: 600; }
.footer__col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.footer__col a { font-size: 14.5px; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 40px; padding: 22px 0 28px; display: flex; flex-wrap: wrap; gap: 10px 18px; align-items: center; justify-content: space-between; }
.footer__bottom .lg { display: flex; flex-wrap: wrap; gap: 8px 18px; }
.footer__bottom small, .footer__bottom a { font-size: 13px; color: #7f93a8; }

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce){ .reveal { opacity: 1; transform: none; transition: none; } }

/* sticky mobile CTA bar */
.mobilebar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 50; background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-top: 1px solid var(--line);
  padding: 10px var(--gutter) calc(10px + env(safe-area-inset-bottom)); display: flex; gap: 10px;
  transform: translateY(120%); transition: transform .3s ease;
}
.mobilebar.show { transform: translateY(0); }
.mobilebar .btn { flex: 1; }

/* ============================================================
   RESPONSIVE  — tablet & desktop
   ============================================================ */
@media (min-width: 600px) {
  .hero__cta .btn { flex: 0 1 auto; }
  .stats { grid-template-columns: repeat(4, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .vac-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits { grid-template-columns: repeat(2, 1fr); column-gap: 28px; }
  .stories { grid-template-columns: repeat(2, 1fr); }
  .logos { grid-template-columns: repeat(3, 1fr); }
  .split { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {
  :root { --gutter: 32px; }
  .section { padding-block: 88px; }
  .section--tight { padding-block: 56px; }
  .nav { display: block; }
  .nav__list { gap: 0; }
  .nav__link { padding: 9px 10px; font-size: 14.5px; }
  .header__bar { gap: 10px; }
  .header__actions { display: flex; }
  .header__login { display: none; }
  .burger { display: none; }
  .mobilebar { display: none; }
  .hero { padding-top: 56px; padding-bottom: 16px; }
  .hero__inner { grid-template-columns: 1.05fr .95fr; align-items: center; gap: 48px; }
  .hero__visual .appcard { margin-right: 0; }
  .appcard__float { display: flex; }
  .steps { grid-template-columns: repeat(4, 1fr); }
  .vac-grid { grid-template-columns: repeat(3, 1fr); }
  .stories { grid-template-columns: repeat(3, 1fr); }
  .benefits { grid-template-columns: repeat(2, 1fr); column-gap: 40px; row-gap: 26px; }
  .logos { grid-template-columns: repeat(6, 1fr); }
  .highlight { grid-template-columns: 1fr 1fr; gap: 56px; }
  .highlight__media { aspect-ratio: 4/3.1; }
  .footer__grid { grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
  .sec-head--row { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; max-width: none; }
  .finalcta__card { padding: 72px 40px; }
}

@media (min-width: 1100px) {
  .step { padding: 26px; }
  .audience { padding: 34px; }
  .nav__link { padding: 9px 13px; font-size: 15px; }
}

@media (min-width: 1360px) {
  .header__login { display: inline-flex; }
}
