/* ============================================================
   Felix — felixfixt.nl

   Design system measured from the Framer site (getComputedStyle,
   not eyeballed): Inter at 16px/500 with −0.48px tracking and 1.3
   line-height; headings 44/32/24 at 600; 16px cards with a 1px
   hairline and no shadow; 999px pills; one flat dark band per
   page; eyebrows small, medium-weight and sentence-case.

   Palette is the v2 decision (deck palette), applied with the
   Framer treatment. The original Framer accent was lime #DFFFA3;
   flipping --accent is the only change needed to bring it back.

   Deliberately absent, because they are how a page reads as
   generated: layered box-shadows, blueprint-grid overlays, radial
   glows, tracked-uppercase eyebrows, gradient buttons, seven
   different radii, cards floating over the hero.
   ============================================================ */

@font-face {
  font-family: 'Inter';
  src: url('/assets/fonts/inter-var.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  /* palette — v2 roles */
  --ink:        #061D13;   /* the template's deep green: header, hero, dark bands */
  --ink-2:      #1A3127;   /* cards on the dark band */
  --accent:     #DFFFA3;   /* the template's lime, on the CTA and highlights only */
  --accent-d:   #CFF57D;
  --green-600:  #1D8A63;   /* icons, links, large text only — 4.31:1 on white */
  --paper:      #FFFFFF;
  --band:       #F3F3F3;   /* alternate sections, as the template */
  --text:       #0B0B0B;
  --muted:      #3E3E3E;
  --muted-2:    #5A6A62;   /* 5.0:1 on the mint band; 6A7A72 was 4.21 */
  --line:       #E4E4E4;
  --line-dark:  rgba(255, 255, 255, .14);
  --wa:         #25D366;
  --amber:      #B45309;
  --amber-soft: #FEF3E2;

  /* shape — exactly the Framer set */
  --r-card: 16px;
  --r-lg:   20px;
  --r-pill: 999px;

  --wrap: 1180px;
  --pad:  clamp(20px, 5vw, 32px);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

body {
  margin: 0;
  font-family: var(--font);
  font-optical-sizing: auto;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.48px;     /* the most recognisable thing in the reference */
  line-height: 1.3;
  color: var(--text);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

img, svg { display: inline-block; vertical-align: middle; max-width: 100%; }

/* every anchor inherits; the reference forgot this and its nav went blue */
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--ink); }

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

.wrap { max-width: var(--wrap); margin-inline: auto; padding-inline: var(--pad); }
.wrap--narrow { max-width: 800px; }

.skip-link {
  position: absolute; left: 16px; top: -64px; z-index: 60;
  background: var(--ink); color: #fff; padding: 10px 18px; border-radius: 0 0 10px 10px;
  transition: top .15s ease;
}
.skip-link:focus { top: 0; color: #fff; }

/* ---------- type ---------- */
h1, h2, h3 { color: var(--ink); font-weight: 600; letter-spacing: -0.02em; margin: 0 0 .5em; text-wrap: balance; }
h1 { font-size: clamp(32px, 5vw, 44px); line-height: 1.1; }
h2 { font-size: clamp(26px, 3.6vw, 32px); line-height: 1.2; }
h3 { font-size: 24px; line-height: 1.2; letter-spacing: -0.015em; }
p  { margin: 0 0 1em; max-width: 64ch; }

/* Framer eyebrow: small, medium, muted, sentence-case. Not tracked caps. */
.eyebrow { font-size: 14px; font-weight: 600; letter-spacing: 0; color: var(--muted-2); margin: 0 0 14px; }
.eyebrow--light { color: rgba(255, 255, 255, .6); }
.eyebrow a { color: inherit; }

.fineprint { font-size: 15px; color: var(--muted); letter-spacing: -0.2px; }
.h-gap { margin-top: 2rem; }

/* ---------- buttons: pills, flat ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--ink); color: #fff;
  font: inherit; font-weight: 600; font-size: 16px; letter-spacing: -0.3px;
  padding: 13px 24px; border-radius: var(--r-pill);
  text-decoration: none; border: 1px solid var(--ink); cursor: pointer;
  transition: background-color .15s ease, border-color .15s ease, color .15s ease;
}
.btn:hover { background: var(--ink-2); border-color: var(--ink-2); color: #fff; }
.btn .icon { width: 19px; height: 19px; }

.btn--whatsapp { background: var(--wa); border-color: var(--wa); color: var(--ink); }
.btn--whatsapp:hover { background: #1fbf5e; border-color: #1fbf5e; color: var(--ink); }

.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { background: var(--band); color: var(--ink); border-color: var(--line); }
.btn__note { font-weight: 500; font-size: 13px; opacity: .7; letter-spacing: -0.2px; }

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

.btn--light { background: var(--accent); border-color: var(--accent); color: var(--ink); }
.btn--light:hover { background: var(--accent-d); border-color: var(--accent-d); color: var(--ink); }

.btn--sm { padding: 9px 18px; font-size: 15px; }
.btnrow { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 1.4rem; }

.icon { width: 24px; height: 24px; flex: none; }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--ink); color: #fff;
}
.site-header__in { display: flex; align-items: center; gap: 26px; height: 76px; }
.site-logo { text-decoration: none; }

.wordmark { font-weight: 600; font-size: 22px; letter-spacing: -0.5px; color: #fff; display: inline-flex; align-items: baseline; }
.wordmark--light { color: #fff; }

.site-nav { display: flex; gap: 34px; margin-inline: auto; }
.site-nav a { text-decoration: none; color: #fff; font-weight: 500; font-size: 16px; padding: 6px 0; opacity: .92; }
.site-nav a:hover { opacity: 1; color: var(--accent); }
.site-nav a.is-active { opacity: 1; }

.site-header__cta { display: flex; align-items: center; gap: 18px; }
.site-phone { display: inline-flex; align-items: center; gap: 8px; text-decoration: none; font-weight: 500; font-size: 16px; color: var(--muted); }
.site-phone:hover { color: var(--ink); }
.site-phone .icon { width: 17px; height: 17px; color: var(--green-600); }
.btn--accent { background: var(--accent); border-color: var(--accent); color: var(--ink); }
.btn--accent:hover { background: var(--accent-d); border-color: var(--accent-d); color: var(--ink); }
.btn__arrow { display: inline-grid; place-items: center; width: 24px; height: 24px; border-radius: 50%; background: var(--ink); color: var(--accent); margin-left: 2px; }
.btn__arrow .icon { width: 13px; height: 13px; }
.btn--lg { padding: 16px 28px; font-size: 17px; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; padding: 12px 8px; cursor: pointer; margin-left: auto; }
.nav-toggle span { width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: transform .15s ease, opacity .15s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav { display: none; flex-direction: column; border-top: 1px solid var(--line); background: #fff; padding: 8px var(--pad) 16px; }
.mobile-nav a { padding: 13px 0; text-decoration: none; color: var(--text); font-weight: 500; font-size: 17px; border-bottom: 1px solid var(--line); }
.mobile-nav a:last-child { border-bottom: 0; }

/* ---------- hero / pagehead: one flat dark band ---------- */
.hero, .pagehead { background: var(--ink); color: #fff; }
.pagehead { padding: clamp(56px, 8vw, 96px) 0 clamp(48px, 7vw, 88px); }
.pagehead { padding: clamp(48px, 6vw, 72px) 0; }
.hero h1, .pagehead h1 { color: #fff; max-width: 18ch; }
.hero__sub, .pagehead__sub { color: rgba(255, 255, 255, .78); font-size: 18px; font-weight: 500; letter-spacing: normal; line-height: 1.3; max-width: 54ch; }
.pagehead__sub { margin-bottom: 0; }

/* ---------- audience cards: a section of their own, not floating ---------- */
.audience { padding: clamp(28px, 4vw, 44px) 0 0; }
.audience__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-card); padding: 26px 24px; }
.card h2 { font-size: 24px; line-height: 1.2; margin-bottom: .45em; }
.card > p { color: var(--muted); }
.card__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 4px; }
.card__alt { font-size: 15px; color: var(--muted-2); margin: 14px 0 0; letter-spacing: -0.2px; }

/* ---------- trust strip: plain, small, muted ---------- */
.trust-strip {
  list-style: none; margin: 28px 0 0; padding: 18px 0;
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 0;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.trust-strip li { font-size: 15px; font-weight: 600; color: var(--ink); letter-spacing: -0.2px; display: flex; align-items: center; }
.trust-strip li + li::before { content: ""; width: 1px; height: 14px; background: var(--line); margin: 0 22px; }

/* ---------- sections ---------- */
.section { padding: clamp(48px, 6.5vw, 84px) 0; }
.section--mint { background: var(--band); }
.section--dark { background: var(--ink); color: rgba(255, 255, 255, .78); }
.section--dark h2, .section--dark h3 { color: #fff; }
.section--center { text-align: center; }
.section--center p { margin-inline: auto; }
.section--center .btnrow { justify-content: center; }
.section__lead { font-size: 18px; letter-spacing: normal; color: var(--muted); }

.cols-3, .cols-4 { list-style: none; margin: clamp(26px, 4vw, 42px) 0 0; padding: 0; display: grid; gap: 16px; }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-4 { grid-template-columns: repeat(4, 1fr); }
.cols-3 h3, .cols-4 h3 { font-size: 20px; margin-bottom: .45em; }
.cols-3 p, .cols-4 p { margin: 0; color: var(--muted); font-size: 16px; }

/* pains + values: hairline cards, same as everything else */
.pains li, .values li { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-card); padding: 24px 22px; }
.section--mint .pains li, .section--mint .values li { border-color: transparent; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(26px, 5vw, 60px); }
.split--center { align-items: center; }

/* ---------- threshold diagram ---------- */
.threshold { margin: 2.2rem 0 1.8rem; max-width: 720px; }
.threshold__bar { position: relative; height: 12px; border-radius: var(--r-pill); background: var(--amber-soft); overflow: visible; }
.threshold__fill { position: absolute; inset: 0 42% 0 0; background: var(--accent-d); border-radius: var(--r-pill); }
.threshold__mark { position: absolute; left: 58%; top: -6px; bottom: -6px; width: 2px; background: var(--ink); }
.threshold__label {
  position: absolute; bottom: calc(100% + 8px); left: 50%; transform: translateX(-50%);
  font-size: 13px; font-weight: 600; letter-spacing: -0.2px; color: var(--ink); white-space: nowrap;
  background: #fff; border: 1px solid var(--line); padding: 4px 12px; border-radius: var(--r-pill);
}
.threshold__axis { display: flex; justify-content: space-between; margin-top: 10px; font-size: 14px; color: var(--muted-2); }

.outcomes li { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-card); padding: 24px 22px; }
.section--mint .outcomes li { border-color: transparent; }
.outcomes h3 { display: flex; align-items: center; gap: 10px; }
.outcomes h3::before { content: ""; width: 10px; height: 10px; border-radius: 50%; background: var(--green-600); flex: none; }
.outcomes li:nth-child(2) h3::before { background: var(--amber); }
.outcomes li:nth-child(3) h3::before { background: var(--ink); }
.outcomes li:nth-child(4) h3::before { background: #9CA3AF; }

/* ---------- dashboard mock: a hairline card ---------- */
.dashmock { margin: 0; background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-card); padding: 20px 22px 8px; }
.dashmock figcaption { font-size: 14px; font-weight: 600; letter-spacing: 0; color: var(--muted-2); margin-bottom: 14px; }
.dashmock__head { display: flex; justify-content: space-between; align-items: baseline; border-bottom: 1px solid var(--line); padding-bottom: 12px; margin-bottom: 4px; font-weight: 600; color: var(--ink); }
.dashmock__month { font-weight: 500; color: var(--muted-2); font-size: 14px; }
.dashmock__row { display: grid; grid-template-columns: 1.2fr 1fr auto; align-items: center; gap: 14px; padding: 13px 0; border-bottom: 1px solid var(--line); font-size: 15px; font-weight: 500; }
.dashmock__row:last-child { border-bottom: 0; }
.dashmock__bar { height: 8px; background: var(--band); border-radius: var(--r-pill); overflow: hidden; }
.dashmock__bar > span { display: block; height: 100%; background: var(--green-600); border-radius: var(--r-pill); }
.chip { font-size: 13px; font-weight: 600; letter-spacing: -0.2px; padding: 4px 12px; border-radius: var(--r-pill); white-space: nowrap; }
.chip--ok { background: var(--accent); color: var(--ink); }
.chip--warn { background: var(--amber-soft); color: var(--amber); }

/* ---------- service tiles ---------- */
.tiles { list-style: none; margin: clamp(26px, 4vw, 42px) 0 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.tile a { display: block; height: 100%; background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-card); padding: 26px 24px; text-decoration: none; transition: border-color .15s ease; }
.section--mint .tile a { border-color: transparent; }
.tile a:hover { border-color: var(--ink); color: inherit; }
.tile .icon { width: 28px; height: 28px; color: var(--green-600); margin-bottom: 14px; }
.tile h3 { font-size: 20px; margin-bottom: .35em; }
.tile p { color: var(--muted); font-size: 16px; margin: 0 0 16px; }
.tile__more { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: 15px; color: var(--ink); border-bottom: 2px solid var(--accent); padding-bottom: 1px; }
.tile__more .icon { width: 16px; height: 16px; margin: 0; color: currentColor; }
.tile a:hover .tile__more { border-color: currentColor; }

/* ---------- steps ---------- */
.steps { counter-reset: step; }
.steps li { position: relative; }
.steps__n { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: var(--r-pill); background: var(--accent); color: var(--ink); font-weight: 700; font-size: 15px; letter-spacing: 0; margin-bottom: 14px; }

/* ---------- FAQ: hairline rows, not boxes ---------- */
.faq__item { border-bottom: 1px solid var(--line); }
.faq__item:first-of-type { border-top: 1px solid var(--line); }
.faq__item summary { cursor: pointer; list-style: none; padding: 19px 40px 19px 0; position: relative; font-weight: 600; font-size: 18px; letter-spacing: -0.3px; color: var(--ink); }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: ""; position: absolute; right: 8px; top: 50%; width: 11px; height: 11px;
  border-right: 2.5px solid var(--muted-2); border-bottom: 2.5px solid var(--muted-2);
  transform: translateY(-70%) rotate(45deg); transition: transform .18s ease;
}
.faq__item[open] summary::after { transform: translateY(-25%) rotate(225deg); }
.faq__item p { padding: 0 40px 20px 0; margin: 0; color: var(--muted); }

/* ---------- spoed ---------- */
.spoed { margin-top: 18px; background: var(--amber-soft); border: 1px solid #F3D9B6; border-radius: var(--r-card); }
.spoed summary { cursor: pointer; list-style: none; padding: 12px 16px; font-weight: 600; font-size: 15px; letter-spacing: -0.2px; color: var(--amber); display: flex; align-items: center; gap: 10px; }
.spoed summary::-webkit-details-marker { display: none; }
.spoed summary::before { content: "!"; display: inline-flex; align-items: center; justify-content: center; width: 20px; height: 20px; border-radius: 50%; background: var(--amber); color: #fff; font-size: 12.5px; font-weight: 700; flex: none; }
.spoed ul { margin: 0; padding: 0 16px 14px 46px; font-size: 15px; color: var(--text); }
.spoed li { margin-top: 4px; }
.section > .wrap > .spoed, .pagehead + .wrap > .spoed { margin-top: 28px; }

/* ---------- checklists ---------- */
.checklist { list-style: none; margin: 1.2rem 0 0; padding: 0; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; padding: 7px 0; font-weight: 500; }
.checklist .icon { width: 20px; height: 20px; color: var(--green-600); margin-top: 1px; }
.checklist a { font-weight: 600; }

/* ---------- contact ---------- */
.contactgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ---------- prose (legal) ---------- */
.prose h2 { font-size: 22px; margin-top: 2.2em; }
.prose p, .prose li { color: var(--muted); }
.prose ul { padding-left: 22px; }
.prose li { margin: 6px 0; }

/* ---------- factbox (over) ---------- */
.factbox { background: var(--ink-2); border: 1px solid var(--line-dark); border-radius: var(--r-card); padding: 26px 28px; color: rgba(255, 255, 255, .85); }
.factbox p { margin: 0 0 .6em; }
.factbox p:last-child { margin: 0; }
.factbox strong { color: #fff; }

/* ---------- closing CTA: the Framer dark rounded panel ---------- */
.closing-cta { padding: 0 var(--pad) clamp(40px, 5vw, 64px); }
.closing-cta__in {
  background: var(--ink); color: rgba(255, 255, 255, .78);
  border-radius: var(--r-lg); padding: clamp(48px, 6.5vw, 84px) var(--pad);
  max-width: var(--wrap); margin-inline: auto; text-align: center;
}
.closing-cta h2 { color: #fff; }
.closing-cta p { font-size: 18px; letter-spacing: normal; margin-inline: auto; }
.closing-cta__actions { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 14px 22px; margin-top: 26px; }
.closing-cta__tel { display: inline-flex; align-items: center; gap: 9px; color: #fff; font-weight: 600; font-size: 16px; text-decoration: none; }
.closing-cta__tel .icon { width: 18px; height: 18px; color: var(--accent); }
.closing-cta__tel:hover { color: var(--accent); }

/* ---------- footer: light, hairline top ---------- */
.site-footer { background: var(--paper); color: var(--text); border-top: 1px solid var(--line); padding: clamp(38px, 5vw, 56px) 0 0; }
.site-footer .wordmark--light { color: var(--ink); }
.site-footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 32px; padding-bottom: clamp(28px, 4vw, 44px); }
.site-footer__brand p { font-size: 16px; color: var(--muted); margin-top: 14px; }
.site-footer__cert { font-size: 14px !important; color: var(--muted-2) !important; }
.site-footer__h { color: var(--muted-2); font-size: 14px; font-weight: 600; letter-spacing: 0; text-transform: none; margin: 0 0 13px; }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 9px; }
.site-footer li { margin: 0; }
.site-footer a { color: var(--text); text-decoration: none; }
.site-footer a:hover { color: var(--muted); }
.site-footer__contact li { display: flex; gap: 10px; align-items: flex-start; }
.site-footer__contact .icon { width: 17px; height: 17px; color: var(--green-600); margin-top: 2px; }
.site-footer__legal-name { margin-top: 18px; font-size: 14px; color: var(--muted-2); }
.site-footer__base { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px; border-top: 1px solid var(--line); padding-block: 20px; font-size: 15px; color: var(--muted-2); }
.site-footer__base p { margin: 0; }

/* ---------- sticky WhatsApp bar (mobile) ---------- */
.sticky-wa {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 55;
  display: none; align-items: center; justify-content: center; gap: 10px;
  min-height: 56px; background: var(--wa); color: var(--ink);
  font-weight: 600; font-size: 16px; letter-spacing: -0.3px; text-decoration: none;
  border-top: 1px solid rgba(0, 0, 0, .08);
}
.sticky-wa .icon { width: 22px; height: 22px; }
.sticky-wa:hover { color: var(--ink); background: #1fbf5e; }

/* ---------- template compositions (screens 2 to 5 of the reference) ---------- */
img[width][height] { height: auto; }

/* eyebrow as a light chip */
.eyebrow--chip { display: inline-block; background: var(--band); color: var(--ink); padding: 6px 12px; border-radius: var(--r-pill); font-size: 14px; font-weight: 500; margin-bottom: 18px; }
.eyebrow--chip-dark { background: rgba(255, 255, 255, .08); color: #fff; }

/* arrow-circle links */
.link-arrow { display: inline-flex; align-items: center; gap: 10px; font-weight: 600; text-decoration: none; color: var(--ink); }
.link-arrow .btn__arrow, .tile__more .btn__arrow { background: var(--ink); color: var(--accent); }

/* hero (unchanged composition) */
.hero { padding: clamp(40px, 6vw, 72px) 0 0; overflow: hidden; }
.hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(24px, 4vw, 56px); align-items: end; }
.hero__in { padding-bottom: clamp(48px, 7vw, 96px); }
.hero h1 { font-size: clamp(40px, 5.6vw, 68px); line-height: 1.04; letter-spacing: -0.03em; max-width: 14ch; margin-bottom: .45em; }
.hero__sub { margin-bottom: 0; }
.hero__cta { margin-top: 28px; }
.hero__checks { list-style: none; margin: 26px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 12px 32px; color: rgba(255, 255, 255, .9); font-size: 16px; }
.hero__checks li { display: flex; align-items: center; gap: 10px; }
.hero__checks .icon { width: 18px; height: 18px; color: var(--accent); }
.hero__visual { position: relative; align-self: end; min-height: 420px; }
.hero__art { margin: 0; height: 100%; display: flex; align-items: flex-end; justify-content: center; }
.hero__art img[width][height] { width: min(100%, 640px); height: auto; display: block; object-fit: contain; object-position: bottom center; }
.hero__card { position: absolute; right: 0; bottom: clamp(24px, 4vw, 48px); background: #fff; color: var(--ink); border-radius: var(--r-card); padding: 22px 26px; min-width: 240px; }
.hero__card p { margin: 0; }
.hero__card-num { font-size: 44px; font-weight: 600; letter-spacing: -0.03em; line-height: 1; }
.hero__card-label { font-weight: 600; font-size: 16px; margin-top: 6px; letter-spacing: -0.3px; }
.hero__card-foot { font-size: 14px; color: var(--muted); margin-top: 14px; padding-top: 12px; border-top: 1px solid var(--line); }
.trust-band { background: var(--paper); padding: clamp(28px, 4vw, 44px) 0 8px; text-align: center; }
.trust-band__title { font-weight: 600; font-size: 18px; letter-spacing: -0.3px; color: var(--ink); margin: 0 0 10px; }
.trust-band .trust-strip { border: 0; margin-top: 0; padding-top: 6px; }

/* section headings at the template's scale */
.section h2, .benefit h2 { font-size: clamp(30px, 4vw, 52px); line-height: 1.08; letter-spacing: -0.03em; }
.audience .card h2 { font-size: 28px; }

/* about: centred statement, then four staggered photos */
.about-block__in { text-align: center; max-width: 900px; }
.statement { font-size: clamp(24px, 3vw, 38px); font-weight: 600; line-height: 1.22; letter-spacing: -0.025em; color: var(--ink); margin: 0 auto; max-width: 30ch; }
.photorow { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; align-items: start; margin-top: clamp(36px, 5vw, 64px); }
.photorow img { width: 100%; object-fit: cover; display: block; border-radius: var(--r-card); }
.photorow__a { aspect-ratio: 1200 / 904; margin-top: 90px; }
.photorow__b { aspect-ratio: 1052 / 1264; }
.photorow__c { aspect-ratio: 1052 / 1000; margin-top: 90px; }
.photorow__d { aspect-ratio: 1052 / 1264; }

/* why: intro left, hairline rows right with a photo each */
.why__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(32px, 6vw, 96px); align-items: start; }
.why__intro h2 { margin-bottom: 28px; }
.why__rows { list-style: none; margin: 0; padding: 0; }
.why__row { display: grid; grid-template-columns: 1fr 1.1fr; gap: 28px; align-items: center; padding: 28px 0; border-top: 1px solid var(--line); }
.why__row:first-child { border-top: 0; padding-top: 0; }
.why__icon { display: inline-grid; place-items: center; width: 52px; height: 52px; border-radius: 12px; background: var(--band); color: var(--ink); margin-bottom: 22px; }
.why__icon .icon { width: 22px; height: 22px; }
.why__text h3 { font-size: 24px; margin-bottom: .4em; }
.why__text p { margin: 0; color: var(--muted); }
.why__photo { width: 100%; aspect-ratio: 906 / 648; object-fit: cover; display: block; border-radius: var(--r-card); }

/* services: centred head, image cards that overlap the dark band below */
.services { padding-bottom: 0; position: relative; z-index: 2; }
.services__head { text-align: center; max-width: 720px; }
.services__head .section__lead { margin-inline: auto; }
.tiles { grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: clamp(28px, 4vw, 48px); }
.tile a { padding: 0; overflow: hidden; background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-card); }
.tile__img { margin: 0; border-radius: 0; aspect-ratio: 1233 / 840; }
.tile__body { padding: 22px 24px 26px; }
.tile__rule { display: block; width: 24px; height: 2px; background: var(--ink); margin-bottom: 18px; }
.tile h3 { font-size: 24px; margin-bottom: .4em; }
.tile p { color: var(--muted); font-size: 16px; margin: 0 0 22px; }
.tile__more { border: 0; padding: 0; display: inline-flex; align-items: center; gap: 10px; font-weight: 600; color: var(--ink); }
.tile a:hover .tile__more { border: 0; }

/* dark band: starts behind the last row of service cards */
.benefit { background: var(--ink); color: rgba(255, 255, 255, .78); margin-top: -180px; padding: 240px 0 clamp(56px, 7vw, 96px); }
.benefit h2, .benefit h3 { color: #fff; }
.benefit__cols { list-style: none; margin: 0; padding: 0 0 clamp(36px, 5vw, 56px); display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; border-bottom: 1px solid var(--line-dark); }
.benefit__icon { display: inline-grid; place-items: center; width: 92px; height: 92px; border-radius: 50%; background: var(--ink-2); color: var(--accent); margin-bottom: 26px; }
.benefit__icon .icon { width: 28px; height: 28px; }
.benefit__cols h3 { font-size: 24px; margin-bottom: .45em; }
.benefit__cols p { margin: 0; font-size: 16px; }
.benefit__split { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(32px, 6vw, 96px); align-items: start; padding-top: clamp(56px, 7vw, 96px); }
.benefit__text > p { font-size: 18px; letter-spacing: normal; margin: 0 0 28px; }
.benefit__text .hero__checks { margin-top: 26px; }
.benefit__card { margin-top: 36px; background: #fff; color: var(--text); }
.photo-stack { position: relative; min-height: 560px; }
.photo-stack img { position: absolute; object-fit: cover; display: block; border-radius: var(--r-card); }
.photo-stack__a { left: 0; top: 0; width: 66%; aspect-ratio: 992 / 1200; }
.photo-stack__b { right: 0; bottom: 0; width: 66%; aspect-ratio: 1200 / 673; }

/* ---------- responsive ---------- */
@media (max-width: 1023px) {
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
  .cols-4 { grid-template-columns: repeat(2, 1fr); }
  .tiles { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 880px) {
  .site-nav, .site-header__cta { display: none; }
  .nav-toggle { display: flex; }
  .mobile-nav.is-open { display: flex; }
  .hero__grid { grid-template-columns: 1fr; gap: 12px; }
  .photorow { grid-template-columns: 1fr 1fr; }
  .photorow__a, .photorow__c { margin-top: 0; }
  .why__grid, .why__row, .benefit__split { grid-template-columns: 1fr; }
  .why__row { gap: 18px; }
  .benefit__cols { grid-template-columns: 1fr; gap: 28px; }
  .benefit { margin-top: -120px; padding-top: 170px; }
  .photo-stack { min-height: 0; }
  .photo-stack img { position: static; width: 100%; }
  .photo-stack__b { margin-top: 12px; }
  .hero__in { padding-bottom: 8px; }
  .hero__visual { min-height: 0; }
  .hero__art img[width][height] { width: min(100%, 420px); margin-inline: auto; }
  .hero__card { position: static; margin: -40px auto 28px; width: min(100%, 420px); }
  .site-nav a[href$="/login"] { display: none; }
  .benefit__grid { grid-template-columns: 1fr; }
  .pains--photo li img { aspect-ratio: 16 / 9; }
}

@media (max-width: 767px) {
  body { padding-bottom: 56px; }
  .sticky-wa { display: flex; }
  .audience__grid, .split, .contactgrid, .cols-3 { grid-template-columns: 1fr; }
  .card { padding: 22px 20px; }
  .card__actions .btn, .btnrow .btn { width: 100%; justify-content: center; }
  .dashmock__row { grid-template-columns: 1fr; gap: 6px; padding: 14px 0; }
  .trust-strip li + li::before { margin: 0 14px; }
  .closing-cta { padding-inline: 12px; }
}

@media (max-width: 520px) {
  .tiles, .cols-4 { grid-template-columns: 1fr; }
  .site-footer__grid { grid-template-columns: 1fr; gap: 26px; }
  .trust-strip { flex-direction: column; align-items: flex-start; gap: 8px; }
  .trust-strip li + li::before { display: none; }
}

/* ---------- print ---------- */
@media print {
  .site-header, .sticky-wa, .closing-cta, .nav-toggle { display: none !important; }
  .hero, .pagehead { background: none; color: var(--text); padding: 24px 0; }
  .hero h1, .pagehead h1, .hero__sub, .pagehead__sub { color: var(--text); }
}
