/* ============================================================
   talentvoll Personal GmbH — Design System
   Warm + human, energetic, modern grotesk.
   Primary brand blue #3A8FB7. Four area accents.
   ============================================================ */

/* ---- Fonts (loaded via <link rel="preconnect"> + stylesheet in each page head,
   with display=swap so text is never invisible during load) ---- */

:root {
  /* Brand */
  --blue:        #3A8FB7;
  --blue-600:    #2F7C9F;
  --blue-700:    #266A8A;
  --blue-800:    #1D526C;
  --blue-tint:   #EAF3F8;
  --blue-tint-2: #DCEBF2;

  /* Depth / ink */
  --navy:    #0E2A37;
  --navy-2:  #143A4B;
  --ink:     #16292F;
  --ink-60:  #4A5A60;
  --ink-45:  #6E7C81;
  --line:    #E4E0D8;
  --line-2:  #EFEBE3;

  /* Warm neutrals (human) */
  --paper:   #FBF8F3;
  --paper-2: #F4EEE4;
  --sand:    #F0E8DB;
  --white:   #FFFFFF;

  /* Four area accents (harmonised set) */
  --tech:      #2F6E97;  --tech-tint:    #E7EFF5;
  --it:        #6A5BC9;  --it-tint:      #ECE9F8;
  --health:    #1C9C84;  --health-tint:  #E2F2EE;
  --hosp:      #D5873A;  --hosp-tint:    #F8EEE0;

  /* Type */
  --font-display: 'Hanken Grotesk', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body:    'Hanken Grotesk', system-ui, -apple-system, 'Segoe UI', sans-serif;

  /* Radius */
  --r-sm: 10px;
  --r:    16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --r-pill: 999px;

  /* Shadow (warm-tinted, soft) */
  --sh-sm: 0 1px 2px rgba(20,42,55,.05), 0 2px 6px rgba(20,42,55,.05);
  --sh:    0 4px 14px rgba(20,42,55,.07), 0 2px 4px rgba(20,42,55,.04);
  --sh-lg: 0 18px 50px rgba(14,42,55,.13), 0 6px 16px rgba(14,42,55,.06);
  --sh-blue: 0 12px 30px rgba(58,143,183,.28);

  /* Layout */
  --maxw: 1200px;
  --gutter: clamp(20px, 5vw, 56px);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  font-size: 17px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "ss01";
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; }
:focus-visible { outline: 3px solid var(--blue); outline-offset: 3px; border-radius: 4px; }

/* ---- Typography ---- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 800; line-height: 1.04; letter-spacing: -.022em; color: var(--ink); text-wrap: balance; }
.display { font-size: clamp(2.7rem, 6.4vw, 5.2rem); font-weight: 900; letter-spacing: -.034em; line-height: .98; }
h1 { font-size: clamp(2.1rem, 4.4vw, 3.5rem); }
h2 { font-size: clamp(1.7rem, 3.3vw, 2.7rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.55rem); letter-spacing: -.012em; }
p { text-wrap: pretty; }
.lead { font-size: clamp(1.12rem, 1.6vw, 1.4rem); line-height: 1.5; color: var(--ink-60); font-weight: 400; }
strong { font-weight: 700; color: var(--ink); }

.eyebrow {
  display: inline-flex; align-items: center; gap: .55em;
  font-size: .8rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--blue-700);
}
.eyebrow::before {
  content: ""; width: 22px; height: 2px; background: var(--blue); border-radius: 2px;
}
.eyebrow.center::before { display: none; }

.grad-text { color: var(--blue-700); }

/* ---- Layout ---- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.container-wide { max-width: 1340px; }
.section { padding-block: clamp(64px, 9vw, 130px); }
.section-tight { padding-block: clamp(48px, 6vw, 84px); }
.bg-paper2 { background: var(--paper-2); }
.bg-white  { background: var(--white); }
.bg-blue-tint { background: var(--blue-tint); }
.bg-navy { background: var(--navy); color: #DCE7EC; }
.bg-navy h1, .bg-navy h2, .bg-navy h3 { color: #fff; }
.bg-navy .lead { color: #A9C2CC; }

.stack > * + * { margin-top: 1.1rem; }
.center { text-align: center; }
.center .eyebrow { justify-content: center; }
.measure { max-width: 62ch; }
.measure-sm { max-width: 46ch; }
.mx-auto { margin-inline: auto; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  font-family: var(--font-body); font-weight: 600; font-size: 1rem;
  padding: .92em 1.5em; border-radius: var(--r-pill); border: 1.5px solid transparent;
  transition: transform .16s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
  white-space: nowrap; line-height: 1;
}
.btn svg { width: 1.1em; height: 1.1em; }
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--blue); color: #fff; box-shadow: var(--sh-blue); }
.btn-primary:hover { background: var(--blue-600); transform: translateY(-2px); box-shadow: 0 16px 34px rgba(58,143,183,.36); }
.btn-dark { background: var(--navy); color: #fff; }
.btn-dark:hover { background: var(--navy-2); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-outline:hover { border-color: var(--blue); color: var(--blue-700); background: var(--white); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--blue-700); padding-inline: .4em; }
.btn-ghost:hover { color: var(--blue-800); gap: .85em; }
.btn-accent { background: #d5873a; color: #fff; box-shadow: 0 12px 28px rgba(213,135,58,.30); }
.btn-accent:hover { background: #c2772d; transform: translateY(-2px); box-shadow: 0 16px 34px rgba(213,135,58,.38); }
.hl-marker { position: relative; }
.hl-marker::after {
  content: ""; position: absolute; z-index: -1;
  left: -.05em; right: -.05em; bottom: .03em; height: .26em;
  background: #b6d4df; border-radius: 7px;
}
.btn-white { background: #fff; color: var(--navy); }
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--sh-lg); }
.btn-lg { font-size: 1.06rem; padding: 1.06em 1.8em; }
.btn-arrow svg { transition: transform .2s ease; }
.btn:hover .btn-arrow svg, .btn-arrow:hover svg { transform: translateX(3px); }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---- Header / Nav ---- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251,248,243,.82);
  backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s, background .25s, box-shadow .25s;
}
.site-header.scrolled { border-bottom-color: var(--line); box-shadow: 0 2px 20px rgba(14,42,55,.05); }
.nav { display: flex; align-items: center; gap: 28px; height: 76px; }
.nav__logo { display: flex; align-items: center; flex-shrink: 0; }
.nav__logo img { height: 38px; width: auto; }
.nav__links { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav__link {
  position: relative; font-weight: 500; font-size: .98rem; color: var(--ink);
  padding: .55em .85em; border-radius: var(--r-sm); transition: color .18s, background .18s;
}
.nav__link:hover { color: var(--blue-700); background: var(--blue-tint); }
.nav__link.is-active { color: var(--blue-700); font-weight: 600; }
.nav__link.is-active::after {
  content: ""; position: absolute; left: .85em; right: .85em; bottom: -1px; height: 2px;
  background: var(--blue); border-radius: 2px;
}
.nav__cta { margin-left: 10px; }
.nav__toggle { display: none; margin-left: auto; width: 46px; height: 46px; border-radius: var(--r-sm); border: 1px solid var(--line); background: var(--white); align-items: center; justify-content: center; }
.nav__toggle span, .nav__toggle span::before, .nav__toggle span::after {
  content: ""; display: block; width: 20px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .25s, opacity .2s;
}
.nav__toggle span::before { transform: translateY(-6px); }
.nav__toggle span::after { transform: translateY(4px); }
body.menu-open .nav__toggle span { background: transparent; }
body.menu-open .nav__toggle span::before { transform: rotate(45deg); }
body.menu-open .nav__toggle span::after { transform: rotate(-45deg) translateY(-1.5px); }

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 76px 0 0; z-index: 90; background: var(--paper);
  padding: 24px var(--gutter) 40px; display: flex; flex-direction: column; gap: 6px;
  transform: translateX(100%); transition: transform .32s cubic-bezier(.4,0,.1,1); overflow-y: auto;
}
body.menu-open .mobile-menu { transform: translateX(0); }
.mobile-menu a { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; padding: .5em 0; border-bottom: 1px solid var(--line-2); }
.mobile-menu a.is-active { color: var(--blue-700); }
.mobile-menu .btn { margin-top: 18px; }

/* ---- Cards ---- */
.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: clamp(22px, 3vw, 34px); box-shadow: var(--sh-sm);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s;
}
.card-hover:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); border-color: var(--blue-tint-2); }

.grid { display: grid; gap: clamp(16px, 2vw, 26px); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 80px); align-items: center; }
.split-text { max-width: 540px; }

/* Icon chip */
.chip-icon {
  width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center;
  background: var(--blue-tint); color: var(--blue-700); flex-shrink: 0;
}
.chip-icon svg { width: 26px; height: 26px; }

/* ---- Area cards (four stages) ---- */
.area-card {
  position: relative; overflow: hidden; border-radius: var(--r-lg);
  padding: 30px 28px 26px; min-height: 250px; display: flex; flex-direction: column;
  background: var(--white); border: 1px solid var(--line); box-shadow: var(--sh-sm);
  transition: transform .24s ease, box-shadow .24s ease;
}
.area-card:hover { transform: translateY(-5px); box-shadow: var(--sh-lg); }
.area-card .area-num { font-family: var(--font-display); font-size: .85rem; font-weight: 700; letter-spacing: .1em; color: var(--ink-45); }
.area-card h3 { margin-top: 10px; }
.area-card p { color: var(--ink-60); font-size: .98rem; margin-top: 8px; flex-grow: 1; }
.area-card .area-bar { position: absolute; left: 0; top: 0; bottom: 0; width: 6px; }
.area-card .area-tag { display: inline-flex; width: max-content; margin-top: 16px; font-size: .82rem; font-weight: 600; padding: .35em .85em; border-radius: var(--r-pill); }
.area-card .area-link { margin-top: 16px; font-weight: 600; font-size: .95rem; display: inline-flex; align-items: center; gap: .4em; transition: gap .2s; }
.area-card:hover .area-link { gap: .75em; }
.area-card .area-glow { position: absolute; right: -40px; top: -40px; width: 150px; height: 150px; border-radius: 50%; opacity: .12; filter: blur(8px); }

.area--tech   { --c: var(--tech);   --ct: var(--tech-tint); }
.area--it     { --c: var(--it);     --ct: var(--it-tint); }
.area--health { --c: var(--health); --ct: var(--health-tint); }
.area--hosp   { --c: var(--hosp);   --ct: var(--hosp-tint); }
.area-card .area-bar { background: var(--c); }
.area-card .area-glow { background: var(--c); }
.area-card .area-tag { background: var(--ct); color: var(--c); }
.area-card .area-link { color: var(--c); }
.area-card .chip-icon { background: var(--ct); color: var(--c); }

/* ---- Steps / process ---- */
.steps { counter-reset: step; }
.step {
  position: relative; background: var(--white); border: 1px solid var(--line);
  border-radius: var(--r); padding: 26px 24px 24px; box-shadow: var(--sh-sm);
}
.step__num {
  font-family: var(--font-display); font-weight: 800; font-size: 1rem; color: #fff;
  width: 38px; height: 38px; border-radius: 11px; background: var(--blue);
  display: grid; place-items: center; margin-bottom: 16px;
}
.step h3 { font-size: 1.15rem; }
.step p { color: var(--ink-60); font-size: .96rem; margin-top: 8px; }
.step__line { display: none; }

/* Vertical timeline */
.timeline { position: relative; padding-left: 0; }
.tl-item { position: relative; display: grid; grid-template-columns: 64px 1fr; gap: 22px; padding-bottom: 34px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-marker { position: relative; display: grid; place-items: start center; }
.tl-dot {
  width: 52px; height: 52px; border-radius: 50%; background: var(--white);
  border: 2px solid var(--blue); color: var(--blue-700); display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 800; font-size: 1.15rem; z-index: 2; box-shadow: var(--sh-sm);
}
.tl-item:not(:last-child) .tl-marker::after {
  content: ""; position: absolute; top: 52px; bottom: -34px; left: 50%; width: 2px;
  background: linear-gradient(var(--blue-tint-2), var(--blue-tint-2)); transform: translateX(-50%);
}
.tl-body { padding-top: 6px; }
.tl-body h3 { font-size: 1.2rem; }
.tl-body p { color: var(--ink-60); margin-top: 6px; }

/* ---- Stats ---- */
.stat { text-align: left; }
.stat__num { font-family: var(--font-display); font-weight: 800; font-size: clamp(2.4rem, 4vw, 3.4rem); line-height: 1; letter-spacing: -.03em; color: var(--blue-700); }
.bg-navy .stat__num { color: #fff; }
.stat__label { margin-top: 8px; color: var(--ink-60); font-size: .96rem; font-weight: 500; }
.bg-navy .stat__label { color: #A9C2CC; }

/* ---- Pills / badges ---- */
.pill {
  display: inline-flex; align-items: center; gap: .5em; font-size: .85rem; font-weight: 600;
  padding: .5em 1em; border-radius: var(--r-pill); background: var(--white);
  border: 1px solid var(--line); color: var(--ink-60);
}
.pill svg { width: 1.05em; height: 1.05em; color: var(--blue); }
.badge { display: inline-flex; align-items: center; gap: .45em; font-size: .82rem; font-weight: 700; padding: .42em .9em; border-radius: var(--r-pill); background: var(--blue-tint); color: var(--blue-700); }
.badge-amber { background: var(--hosp-tint); color: var(--hosp); }

/* ---- Feature list ---- */
.feature-list { display: grid; gap: 14px; }
.feature-list li { display: grid; grid-template-columns: 28px 1fr; gap: 12px; align-items: start; }
.feature-list .fl-ico { width: 26px; height: 26px; border-radius: 50%; background: var(--blue-tint); color: var(--blue-700); display: grid; place-items: center; margin-top: 2px; }
.feature-list .fl-ico svg { width: 15px; height: 15px; }
.feature-list strong { display: block; }
.feature-list span.fl-sub { color: var(--ink-60); font-size: .96rem; }

/* ---- FAQ ---- */
/* Two-column layout: sticky intro left, accordion right (matches site split rhythm) */
.faq-layout {
  display: grid; grid-template-columns: minmax(0, .84fr) minmax(0, 1.16fr);
  gap: clamp(36px, 5vw, 84px); align-items: start;
}
.faq-intro { position: sticky; top: 104px; }
.faq-intro h2 { margin-top: 14px; }
.faq-intro p { margin-top: 14px; }
.faq-ask {
  display: inline-flex; align-items: center; gap: 14px; margin-top: 28px;
  padding: 16px 20px; border-radius: var(--r); background: var(--white);
  border: 1px solid var(--line); box-shadow: var(--sh-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.faq-ask:hover { transform: translateY(-2px); box-shadow: var(--sh); border-color: var(--blue-tint-2); }
.faq-ask .fa-ico {
  width: 42px; height: 42px; border-radius: 12px; flex-shrink: 0; display: grid; place-items: center;
  background: var(--blue-tint); color: var(--blue-700);
}
.faq-ask .fa-ico svg { width: 21px; height: 21px; }
.faq-ask .fa-txt { font-size: .9rem; color: var(--ink-60); line-height: 1.35; }
.faq-ask .fa-txt strong { display: block; font-family: var(--font-display); font-size: 1rem; color: var(--ink); }
.faq-ask .fa-arrow { margin-left: auto; color: var(--blue-700); display: grid; place-items: center; transition: transform .2s ease; }
.faq-ask .fa-arrow svg { width: 20px; height: 20px; }
.faq-ask:hover .fa-arrow { transform: translateX(4px); }
@media (max-width: 880px) {
  .faq-layout { grid-template-columns: 1fr; gap: 36px; }
  .faq-intro { position: static; }
}

.faq { display: flex; flex-direction: column; gap: 14px; counter-reset: faq; }
.faq__item {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg);
  box-shadow: var(--sh-sm); overflow: hidden;
  transition: border-color .22s, box-shadow .22s, transform .22s;
}
.faq__item:hover { border-color: color-mix(in oklab, var(--blue) 45%, var(--line)); box-shadow: var(--sh); }
.faq__item.open { border-color: var(--blue); box-shadow: var(--sh); }
.faq__q {
  width: 100%; text-align: left; display: flex; align-items: center; gap: 16px;
  padding: 22px clamp(18px,2.2vw,26px); font-family: var(--font-display); font-weight: 600;
  font-size: clamp(1.04rem, 1.5vw, 1.22rem); color: var(--ink); line-height: 1.32;
}
.faq__q::before {
  counter-increment: faq; content: counter(faq, decimal-leading-zero);
  flex-shrink: 0; width: 36px; height: 36px; border-radius: 11px;
  display: grid; place-items: center;
  font-size: .82rem; font-weight: 800; letter-spacing: .03em;
  background: var(--blue-tint); color: var(--blue-700);
  transition: background .22s, color .22s;
}
.faq__q:hover { color: var(--blue-700); }
.faq__item.open .faq__q::before { background: var(--blue); color: #fff; }
.faq__icon { flex-shrink: 0; margin-left: auto; width: 36px; height: 36px; border-radius: 50%; border: 1.5px solid var(--line); display: grid; place-items: center; position: relative; transition: border-color .2s, background .2s, transform .25s; }
.faq__q:hover .faq__icon { border-color: var(--blue); }
.faq__icon::before, .faq__icon::after { content: ""; position: absolute; background: var(--blue-700); border-radius: 2px; transition: transform .25s, background .2s; }
.faq__icon::before { width: 13px; height: 2px; }
.faq__icon::after { width: 2px; height: 13px; }
.faq__item.open .faq__icon { background: var(--blue); border-color: var(--blue); transform: rotate(180deg); }
.faq__item.open .faq__icon::before, .faq__item.open .faq__icon::after { background: #fff; }
.faq__item.open .faq__icon::after { transform: rotate(90deg); }
.faq__a { overflow: hidden; height: 0; transition: height .3s ease; }
.faq__a-inner { padding: 0 clamp(18px,2.2vw,26px) 24px calc(clamp(18px,2.2vw,26px) + 52px); color: var(--ink-60); max-width: 64ch; text-align: left; }

/* ---- Team ---- */
.team-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-sm); transition: transform .22s, box-shadow .22s; }
.team-card:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); }
.team-card .photo { width: 100%; height: auto; aspect-ratio: 1/1; background: var(--paper-2); }
.team-card image-slot { width: 100%; height: auto; aspect-ratio: 1/1; }
.team-card .info { padding: 18px 20px 22px; }
.team-card .info h3 { font-size: 1.2rem; }
.team-card .role { color: var(--blue-700); font-weight: 600; font-size: .92rem; margin-top: 2px; }
.team-card .dept { display: inline-block; margin-top: 10px; font-size: .76rem; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; padding: .35em .8em; border-radius: var(--r-pill); background: var(--paper-2); color: var(--ink-60); }
.team-card .bio { color: var(--ink-60); font-size: .94rem; margin-top: 12px; }
.team-card .contact { display: inline-flex; align-items: center; gap: .5em; margin-top: 14px; font-weight: 600; font-size: .9rem; color: var(--blue-700); }

/* ---- Image placeholders / slots ---- */
image-slot { display: block; box-shadow: var(--sh); }
.img-ph {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  background:
    repeating-linear-gradient(135deg, rgba(58,143,183,.06) 0 14px, rgba(58,143,183,.02) 14px 28px),
    var(--blue-tint);
  display: grid; place-items: center; color: var(--blue-700);
}
.img-ph .img-ph__label { font-family: 'SF Mono', ui-monospace, monospace; font-size: .8rem; letter-spacing: .03em; opacity: .7; }

/* ---- Quote ---- */
.quote { font-family: var(--font-display); font-weight: 500; font-size: clamp(1.4rem, 2.8vw, 2.2rem); line-height: 1.28; letter-spacing: -.015em; text-wrap: balance; }
.quote .q-accent { color: var(--blue-700); }

/* ---- Logo strip / partner ---- */
.partner-card { display: grid; grid-template-columns: auto 1fr; gap: clamp(28px, 4vw, 56px); align-items: center; }
.partner__logo img { max-width: 100%; }
@media (max-width: 760px) { .partner-card { grid-template-columns: 1fr; gap: 24px; } .partner__logo { justify-self: stretch; } }

/* ---- Forms ---- */
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-weight: 600; font-size: .92rem; }
.field label .req { color: var(--hosp); }
.field .hint { font-size: .82rem; color: var(--ink-45); }
.input, .textarea, .select {
  font: inherit; font-size: 1rem; padding: .85em 1em; border-radius: var(--r-sm);
  border: 1.5px solid var(--line); background: var(--white); color: var(--ink);
  transition: border-color .18s, box-shadow .18s; width: 100%;
}
.input:focus, .textarea:focus, .select:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 4px var(--blue-tint); }
.input.invalid, .textarea.invalid { border-color: #D4574E; box-shadow: 0 0 0 4px rgba(212,87,78,.12); }
.textarea { resize: vertical; min-height: 130px; }
.field .err { font-size: .82rem; color: #C44A41; display: none; }
.field.show-err .err { display: block; }

/* segmented tabs */
.seg { display: inline-flex; background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--r-pill); padding: 5px; gap: 4px; }
.seg button { border-radius: var(--r-pill); padding: .6em 1.3em; font-weight: 600; font-size: .96rem; color: var(--ink-60); transition: color .2s; background: transparent; border: none; }
.seg button.active { background: var(--white); color: var(--blue-700); box-shadow: var(--sh-sm); }

/* file dropzone */
.dropzone { border: 2px dashed var(--blue-tint-2); border-radius: var(--r); padding: 28px; text-align: center; background: var(--blue-tint); color: var(--ink-60); transition: border-color .2s, background .2s; }
.dropzone:hover, .dropzone.is-drag { border-color: var(--blue); }
.dropzone.is-drag { background: var(--blue-tint-2); }
.dropzone svg { width: 30px; height: 30px; color: var(--blue); margin: 0 auto 10px; }

.checkbox { display: grid; grid-template-columns: 22px 1fr; gap: 12px; align-items: start; font-size: .92rem; color: var(--ink-60); }
.checkbox input { width: 20px; height: 20px; margin-top: 2px; accent-color: var(--blue); }

/* form success */
.input-file { padding: 12px 14px; font-size: .92rem; color: var(--ink-60); cursor: pointer; }
.input-file::file-selector-button { appearance: none; border: 1px solid var(--line); background: var(--paper); color: var(--ink); font: inherit; font-weight: 600; font-size: .86rem; padding: 7px 12px; border-radius: 8px; margin-right: 12px; cursor: pointer; transition: background .2s, border-color .2s; }
.input-file::file-selector-button:hover { background: var(--blue-tint); border-color: var(--blue-tint-2); }
.form-success { display: none; text-align: center; padding: 40px 20px; }
.form-error { display: none; margin-top: 14px; color: #b42318; font-size: .92rem; line-height: 1.4; }
.form-error.show { display: block; }
.form-success.show { display: block; animation: pop .4s ease; }
.form-success .check { width: 68px; height: 68px; border-radius: 50%; background: var(--health-tint); color: var(--health); display: grid; place-items: center; margin: 0 auto 18px; }
.form-success .check svg { width: 34px; height: 34px; }
@keyframes pop { from { transform: scale(.9); opacity: 0; } to { transform: scale(1); opacity: 1; } }

/* ---- Page hero (subpages) ---- */
.page-hero { padding-block: clamp(56px, 8vw, 100px) clamp(40px, 6vw, 72px); }
.page-hero .eyebrow { margin-bottom: 18px; }

/* ---- Footer ---- */
.site-footer { background: var(--navy); color: #A9C2CC; padding-block: clamp(54px, 7vw, 84px) 32px; }
.site-footer a { color: #C3D6DE; transition: color .18s; }
.site-footer a:hover { color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand img { height: 40px; filter: brightness(0) invert(1); opacity: .95; }
.footer-brand p { margin-top: 18px; max-width: 32ch; color: #8FAAB4; font-size: .95rem; }
.footer-col h4 { font-family: var(--font-body); font-size: .82rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: #6E8C97; margin-bottom: 16px; }
.footer-col ul { display: grid; gap: 11px; font-size: .96rem; }
.footer-contact { display: grid; gap: 11px; font-size: .96rem; }
.footer-contact .fc-row { display: flex; gap: 10px; align-items: flex-start; }
.footer-contact svg { width: 18px; height: 18px; color: var(--blue); flex-shrink: 0; margin-top: 3px; }
.footer-bottom { margin-top: 48px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1); display: flex; flex-wrap: wrap; gap: 16px 28px; align-items: center; justify-content: space-between; font-size: .88rem; color: #7E9AA4; }
.footer-bottom .fb-links { display: flex; flex-wrap: wrap; gap: 8px 22px; }

/* ---- Reveal animation ---- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s cubic-bezier(.2,.6,.2,1), transform .7s cubic-bezier(.2,.6,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .08s; }
.reveal[data-d="2"] { transition-delay: .16s; }
.reveal[data-d="3"] { transition-delay: .24s; }
.reveal[data-d="4"] { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---- Helpers ---- */
.tcenter { text-align: center; }
.mt-s { margin-top: 14px; } .mt-m { margin-top: 28px; } .mt-l { margin-top: 48px; }
.hide-desk { display: none; }
.dot-sep { color: var(--ink-45); }
.relative { position: relative; }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 880px) {
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__toggle { display: flex; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; gap: 36px; }
  .split.reverse .split-media { order: -1; }
}
@media (max-width: 600px) {
  body { font-size: 16px; }
  .grid-2, .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .tl-item { grid-template-columns: 48px 1fr; gap: 16px; }
  .tl-dot { width: 44px; height: 44px; font-size: 1rem; }
  .tl-item:not(:last-child) .tl-marker::after { top: 44px; }
  .btn { width: 100%; }
  .btn-row .btn { width: auto; flex: 1 1 auto; }
}
