/* ZAF Engineering Services. Palette from CLAUDE.md, sampled from the logo. */

@font-face {
  font-family: "Archivo";
  src: url("/fonts/archivo-latin.woff2") format("woff2");
  font-weight: 100 900;
  font-stretch: 62% 125%;
  font-style: normal;
  font-display: swap;
}

:root {
  --zaf-blue: #0056A4;
  --zaf-blue-deep: #0B2D6A;
  --zaf-blue-bright: #0A6FD0;
  --zaf-ink: #1A1A1A;
  --zaf-steel-800: #404040;
  --zaf-steel-500: #808080;
  --zaf-steel-300: #C0C0C0;
  --zaf-steel-100: #E0E0E0;
  --zaf-white: #FFFFFF;
  --zaf-grey-50: #F4F4F4; /* lightest step of the neutral ramp, section fills */
  --zaf-night: #07183A;   /* a shade under blue-deep, for the hero fade */

  --font: "Archivo", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --wide: 118%;            /* headings echo the logo's wide wordmark */

  --gutter: 20px;
  --max: 1200px;
  --radius: 4px;
  --header-h: 72px;
  --section-y: clamp(64px, 9vw, 120px);
}

*, *::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 { transition: none !important; animation: none !important; }
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.6;
  color: var(--zaf-ink);
  background: var(--zaf-white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }

img { display: block; max-width: 100%; height: auto; }
a { color: var(--zaf-blue); }
a:hover { color: var(--zaf-blue-bright); }
:focus-visible { outline: 3px solid var(--zaf-blue-bright); outline-offset: 3px; }

h1, h2, h3 {
  font-stretch: var(--wide);
  line-height: 1.1;
  margin: 0;
  letter-spacing: -0.01em;
}
h2 { font-size: clamp(30px, 4.2vw, 46px); font-weight: 780; color: var(--zaf-ink); }
h3 { font-size: 20px; font-weight: 700; }
p { margin: 0 0 1em; }

.wrap {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
@media (min-width: 720px) { :root { --gutter: 32px; } }

.skip {
  position: absolute; left: -9999px; top: 8px;
  background: var(--zaf-white); color: var(--zaf-ink);
  padding: 8px 14px; z-index: 100;
}
.skip:focus { left: 8px; }

/* Eyebrow with the logo's rule: blue then grey, like the line under ZAF */
.eyebrow {
  display: inline-flex;
  flex-direction: column;
  gap: 10px;
  font-size: 13px;
  font-weight: 650;
  font-stretch: 125%;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--zaf-blue);
  margin: 0 0 18px;
}
.eyebrow::after {
  content: "";
  width: 72px; height: 2px;
  background: linear-gradient(90deg, var(--zaf-blue) 0 64%, var(--zaf-steel-500) 64% 100%);
}
.eyebrow-light { color: var(--zaf-steel-100); }
.eyebrow-light::after { background: linear-gradient(90deg, var(--zaf-blue-bright) 0 64%, var(--zaf-steel-300) 64% 100%); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 52px;
  padding: 0 26px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  font: inherit;
  font-weight: 650;
  font-stretch: 110%;
  font-size: 16px;
  text-decoration: none;
  cursor: pointer;
  transition: background-color .15s, border-color .15s, color .15s;
}
.btn-sm { min-height: 42px; padding: 0 18px; font-size: 15px; }
.btn-primary { background: var(--zaf-blue); color: var(--zaf-white); }
.btn-primary:hover { background: var(--zaf-blue-bright); color: var(--zaf-white); }
.btn-ghost { border-color: rgba(255,255,255,.55); color: var(--zaf-white); }
.btn-ghost:hover { border-color: var(--zaf-white); background: rgba(255,255,255,.08); color: var(--zaf-white); }
.btn-light { background: var(--zaf-white); color: var(--zaf-blue-deep); }
.btn-light:hover { background: var(--zaf-steel-100); color: var(--zaf-blue-deep); }

/* Header */
/* White header: the logo was designed on white, and its blue wordmark disappears on navy. */
.site-header {
  position: fixed; inset: 0 0 auto 0;
  z-index: 50;
  background: var(--zaf-white);
  box-shadow: 0 1px 0 var(--zaf-steel-100);
  transition: box-shadow .25s;
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: calc(var(--header-h) + 36px);
  transition: height .25s;
}
.brand img { width: auto; height: 84px; transition: height .25s; }
.site-header.scrolled { box-shadow: 0 6px 24px rgba(11,45,106,.12); }
.site-header.scrolled .header-inner { height: var(--header-h); }
.site-header.scrolled .brand img { height: 58px; }

.header-actions { display: flex; align-items: center; gap: 14px; }
.header-cta { display: none; }
@media (min-width: 720px) { .header-cta { display: inline-flex; } }

.burger {
  width: 48px; height: 48px;
  display: inline-flex; flex-direction: column; justify-content: center; align-items: center; gap: 6px;
  background: var(--zaf-white);
  border: 1px solid var(--zaf-steel-300);
  border-radius: var(--radius);
  cursor: pointer;
}
.burger:hover { border-color: var(--zaf-blue); }
.burger span {
  display: block; width: 22px; height: 2px; background: var(--zaf-blue-deep);
  transition: transform .2s, opacity .2s;
}
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Menu overlay */
.menu {
  position: fixed; inset: 0;
  z-index: 40;
  background: var(--zaf-blue-deep);
  padding-top: calc(var(--header-h) + 36px);
  overflow-y: auto;
}
.menu[hidden] { display: none; }
.menu-inner { padding-top: 24px; padding-bottom: 48px; }
.menu-links { list-style: none; margin: 0; padding: 0; }
.menu-links li { border-bottom: 1px solid rgba(255,255,255,.12); }
.menu-links a {
  display: flex; align-items: baseline; gap: 18px;
  padding: 18px 0;
  color: var(--zaf-white);
  text-decoration: none;
  font-size: clamp(30px, 6vw, 52px);
  font-weight: 760;
  font-stretch: var(--wide);
  line-height: 1.1;
}
.menu-links a:hover { color: #9CC7F2; }
.menu-num { font-size: 14px; font-weight: 600; letter-spacing: .12em; color: var(--zaf-steel-300); }
.menu-contact { display: flex; flex-direction: column; gap: 10px; margin-top: 32px; }
.menu-contact a { color: var(--zaf-steel-100); text-decoration: none; font-size: 17px; overflow-wrap: anywhere; }
.menu-contact a:hover { color: var(--zaf-white); text-decoration: underline; }

/* Hero */
.hero {
  position: relative;
  min-height: min(94svh, 860px);
  display: flex; flex-direction: column; justify-content: flex-end;
  background: var(--zaf-night);
  color: var(--zaf-white);
  isolation: isolate;
  overflow: hidden;
}
.hero-media, .hero-media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
}
.hero-media { z-index: -2; }
.hero-media img { object-fit: cover; object-position: 72% 50%; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(0deg, rgba(7,24,58,.97) 0%, rgba(7,24,58,.82) 45%, rgba(7,24,58,.2) 80%);
}
@media (min-width: 900px) {
  .hero::before {
    background: linear-gradient(90deg, rgba(7,24,58,.97) 0%, rgba(7,24,58,.88) 34%, rgba(7,24,58,.25) 62%, rgba(7,24,58,0) 80%);
  }
  .hero-media img { object-position: 60% 50%; }
}
.hero-inner { padding-top: 200px; padding-bottom: 48px; }
.hero h1 {
  font-size: clamp(38px, 6.4vw, 76px);
  font-weight: 800;
  max-width: 13ch;
  color: var(--zaf-white);
}
.hero-lede {
  margin-top: 22px;
  max-width: 34rem;
  font-size: clamp(17px, 1.7vw, 20px);
  color: #D6DEEA;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
@media (max-width: 479px) { .hero-ctas .btn { width: 100%; } }

.hero-strip { border-top: 1px solid rgba(255,255,255,.14); background: rgba(7,24,58,.55); }
.strip-list {
  list-style: none; margin: 0 auto;
  display: grid; grid-template-columns: 1fr;
  padding-top: 18px; padding-bottom: 18px;
  gap: 8px;
}
.strip-list li {
  display: flex; align-items: center; gap: 12px;
  font-size: 13px; font-weight: 600; font-stretch: 120%;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--zaf-steel-100);
}
.strip-list li::before { content: ""; width: 14px; height: 2px; background: var(--zaf-blue-bright); flex: none; }
@media (min-width: 720px) { .strip-list { grid-template-columns: repeat(3, auto); justify-content: space-between; } }

/* Sections */
.section { padding: var(--section-y) 0; scroll-margin-top: calc(var(--header-h) - 1px); }
.section-grey { background: var(--zaf-grey-50); }
.section-head { max-width: 44rem; margin-bottom: clamp(36px, 5vw, 60px); }
.section-lede { margin-top: 18px; font-size: 18px; color: var(--zaf-steel-800); }

/* Service cards */
.cards {
  list-style: none; margin: 0; padding: 0;
  display: grid; gap: 20px;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .cards { grid-template-columns: repeat(3, 1fr); gap: 24px; } }
.card {
  background: var(--zaf-white);
  border: 1px solid var(--zaf-steel-100);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex; flex-direction: column;
}
.card picture { aspect-ratio: 4 / 3; overflow: hidden; background: var(--zaf-steel-100); }
.card img { width: 100%; height: 100%; object-fit: cover; }
.card-body { padding: 22px 22px 26px; border-top: 3px solid var(--zaf-blue); }
.card h3 { margin-bottom: 10px; }
.card p { margin: 0; color: var(--zaf-steel-800); font-size: 16px; }

/* Process */
.steps {
  list-style: none; margin: 0; padding: 0;
  display: grid; gap: 16px;
  grid-template-columns: 1fr;
  counter-reset: none;
}
@media (min-width: 720px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .steps { grid-template-columns: repeat(4, 1fr); } }
.step {
  background: var(--zaf-white);
  border-radius: var(--radius);
  padding: 28px 24px 30px;
  border-top: 3px solid var(--zaf-blue);
}
.step-num {
  display: block;
  font-size: 44px; font-weight: 800; font-stretch: 125%;
  line-height: 1;
  color: var(--zaf-blue);
  margin-bottom: 20px;
}
.step h3 { margin-bottom: 10px; }
.step p { margin: 0; font-size: 16px; color: var(--zaf-steel-800); }

/* About */
.about { display: grid; gap: 40px; }
@media (min-width: 960px) { .about { grid-template-columns: 1.15fr 1fr; gap: 72px; align-items: start; } }
.about-text h2 { margin-bottom: 24px; }
.about-text p:not(.eyebrow) { font-size: 18px; color: var(--zaf-steel-800); max-width: 38rem; }
.points { list-style: none; margin: 0; padding: 0; display: grid; gap: 0; }
.points li { padding: 24px 0; border-top: 1px solid var(--zaf-steel-100); }
.points li:last-child { border-bottom: 1px solid var(--zaf-steel-100); }
.points h3 { font-size: 19px; margin-bottom: 8px; color: var(--zaf-blue-deep); }
.points p { margin: 0; color: var(--zaf-steel-800); font-size: 16px; }

/* CTA band */
.band {
  position: relative; isolation: isolate; overflow: hidden;
  background: var(--zaf-blue-deep);
  color: var(--zaf-white);
  padding: clamp(64px, 8vw, 104px) 0;
}
.band-media, .band-media img { position: absolute; inset: 0; width: 100%; height: 100%; }
.band-media { z-index: -2; }
.band-media img { object-fit: cover; }
.band::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(11,45,106,.95) 0%, rgba(11,45,106,.85) 55%, rgba(11,45,106,.7) 100%); }
.band h2 { color: var(--zaf-white); }
.band p { margin: 14px 0 28px; font-size: 18px; color: #D6DEEA; }

/* Contact + form */
.contact { display: grid; gap: 48px; }
@media (min-width: 960px) { .contact { grid-template-columns: 0.8fr 1.2fr; gap: 72px; align-items: start; } }
.contact-info h2 { margin-bottom: 20px; }
.contact-info > p:not(.eyebrow) { color: var(--zaf-steel-800); font-size: 17px; }
.contact-list { list-style: none; margin: 28px 0 0; padding: 0; }
.contact-list li { padding: 16px 0; border-top: 1px solid var(--zaf-steel-100); display: grid; gap: 2px; }
.contact-list li:last-child { border-bottom: 1px solid var(--zaf-steel-100); }
.contact-list .label {
  font-size: 12px; font-weight: 650; font-stretch: 120%;
  letter-spacing: .16em; text-transform: uppercase; color: var(--zaf-steel-800);
}
.contact-list a { font-size: 17px; font-weight: 600; text-decoration: none; overflow-wrap: anywhere; }
.contact-list a:hover { text-decoration: underline; }

.form {
  background: var(--zaf-grey-50);
  border-radius: var(--radius);
  border-top: 3px solid var(--zaf-blue);
  padding: clamp(22px, 4vw, 40px);
}
.form-grid { display: grid; gap: 18px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .form-grid { grid-template-columns: 1fr 1fr; } .field-wide { grid-column: 1 / -1; } }
.field { display: flex; flex-direction: column; gap: 7px; min-width: 0; border: 0; margin: 0; padding: 0; }
.field label, .field legend { font-size: 15px; font-weight: 620; color: var(--zaf-ink); padding: 0; }
.req { color: var(--zaf-blue); }
.hint { display: block; font-weight: 400; font-size: 14px; color: var(--zaf-steel-800); margin-top: 2px; }
.field input[type="text"], .field input[type="email"], .field input[type="tel"], .field textarea {
  width: 100%;
  font: inherit; font-size: 16px;
  color: var(--zaf-ink);
  background: var(--zaf-white);
  border: 1px solid var(--zaf-steel-300);
  border-radius: var(--radius);
  padding: 12px 14px;
  min-height: 48px;
}
.field textarea { resize: vertical; min-height: 130px; }
.field input::placeholder, .field textarea::placeholder { color: #6E6E6E; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--zaf-blue); box-shadow: 0 0 0 3px rgba(0,86,164,.18); }
.field [aria-invalid="true"] { border-color: #B3261E; }
.field input[type="file"] {
  font: inherit; font-size: 15px;
  padding: 12px; background: var(--zaf-white);
  border: 1px dashed var(--zaf-steel-500); border-radius: var(--radius);
  width: 100%;
}
.field input[type="file"]::file-selector-button {
  font: inherit; font-weight: 600; font-size: 14px;
  margin-right: 12px; padding: 8px 14px;
  border: 0; border-radius: var(--radius);
  background: var(--zaf-blue-deep); color: var(--zaf-white); cursor: pointer;
}
.choices { display: flex; flex-wrap: wrap; gap: 10px; }
.choice { position: relative; }
.choice input { position: absolute; opacity: 0; inset: 0; margin: 0; cursor: pointer; }
.choice span {
  display: inline-flex; align-items: center; min-height: 44px; padding: 0 16px;
  background: var(--zaf-white); border: 1px solid var(--zaf-steel-300); border-radius: var(--radius);
  font-size: 15px; font-weight: 550; cursor: pointer;
}
.choice input:checked + span { background: var(--zaf-blue); border-color: var(--zaf-blue); color: var(--zaf-white); }
.choice input:focus-visible + span { outline: 3px solid var(--zaf-blue-bright); outline-offset: 2px; }
.file-list { list-style: none; margin: 4px 0 0; padding: 0; font-size: 14px; color: var(--zaf-steel-800); }
.file-list li { display: flex; justify-content: space-between; gap: 12px; padding: 4px 0; }
.file-list .err { color: #B3261E; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-note { margin: 22px 0 18px; font-size: 14px; color: var(--zaf-steel-800); }
.btn-submit { width: 100%; }
@media (min-width: 640px) { .btn-submit { width: auto; min-width: 220px; } }
.btn[disabled] { opacity: .6; cursor: progress; }
.form-status { margin: 16px 0 0; font-weight: 600; min-height: 1.6em; }
.form-status.is-error { color: #B3261E; }
.form-status.is-ok { color: var(--zaf-blue-deep); }
.form-done { text-align: left; }
.form-done h3 { font-size: 26px; margin-bottom: 12px; color: var(--zaf-blue-deep); }

/* Footer */
.site-footer { background: var(--zaf-white); color: var(--zaf-steel-800); border-top: 3px solid var(--zaf-blue); padding-top: 56px; }
.footer-inner { display: grid; gap: 32px; grid-template-columns: 1fr; }
@media (min-width: 820px) { .footer-inner { grid-template-columns: auto 1fr auto; gap: 56px; align-items: start; } }
.footer-brand img { height: 132px; width: auto; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 10px 24px; }
@media (min-width: 820px) { .footer-nav { flex-direction: column; } }
.footer-nav a { color: var(--zaf-ink); text-decoration: none; font-weight: 600; }
.footer-contact a { color: var(--zaf-blue); text-decoration: none; font-weight: 600; }
.footer-nav a:hover, .footer-contact a:hover { text-decoration: underline; color: var(--zaf-blue-bright); }
.footer-contact { display: flex; flex-direction: column; gap: 8px; font-size: 16px; overflow-wrap: anywhere; }
.footer-bar { margin-top: 48px; background: var(--zaf-blue-deep); padding: 20px 0; }
.footer-bar p { font-size: 13px; line-height: 1.6; color: #C9D3E3; margin: 0; }

/* Simple content page (privacy) */
.page { padding: calc(var(--header-h) + 72px) 0 var(--section-y); }
.page .wrap { max-width: 800px; }
.page h1 { font-size: clamp(32px, 5vw, 48px); font-weight: 800; margin-bottom: 28px; }
.page h2 { font-size: 22px; margin: 36px 0 12px; }
.page p, .page li { color: var(--zaf-steel-800); }
.site-header.solid .header-inner { height: var(--header-h); }
.site-header.solid .brand img { height: 58px; }

/* Phones: a shorter header. Kept last so it wins over the base rules above. */
@media (max-width: 719px) {
  .header-inner { height: 88px; }
  .brand img { height: 68px; }
  .site-header.scrolled .header-inner, .site-header.solid .header-inner { height: 64px; }
  .site-header.scrolled .brand img, .site-header.solid .brand img { height: 50px; }
  .menu { padding-top: 88px; }
  .hero-inner { padding-top: 150px; }
}

/* Scroll reveal. Only active once site.js adds .reveal-on, so without JS nothing is ever hidden.
   site.js also skips it entirely for people who prefer reduced motion. */
.reveal-on .reveal {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  transition: opacity .7s cubic-bezier(.2, .65, .3, 1), transform .7s cubic-bezier(.2, .65, .3, 1);
  transition-delay: var(--reveal-delay, 0ms);
}
.reveal-on .reveal.from-above { transform: translate3d(0, -28px, 0); }
.reveal-on .reveal.is-visible { opacity: 1; transform: none; }

/* ---------- Icons and WhatsApp (all sizes) ---------- */
/* WhatsApp green is WhatsApp's own brand colour, used only on its logo so people recognise it at a glance.
   It is not a second accent for the ZAF palette. */
:root { --wa-green: #25D366; }
.ico { width: 18px; height: 18px; flex: none; color: var(--zaf-steel-300); }
.ico-wa { fill: var(--wa-green); }
.menu-contact a { display: inline-flex; align-items: center; gap: 12px; }

.wa-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; margin-top: 6px;
  border-radius: 50%;
  background: var(--wa-green);
  box-shadow: 0 6px 16px rgba(37, 211, 102, .32);
  transition: transform .15s, box-shadow .15s;
}
.wa-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 22px rgba(37, 211, 102, .4); }
.wa-btn svg { width: 28px; height: 28px; fill: var(--zaf-white); }

.wa-float {
  position: fixed; z-index: 45;
  right: 22px; bottom: calc(22px + env(safe-area-inset-bottom));
  width: 60px; height: 60px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--wa-green);
  box-shadow: 0 10px 28px rgba(7, 24, 58, .28);
  transition: transform .2s;
}
.wa-float:hover { transform: scale(1.07); }
.wa-float svg { width: 32px; height: 32px; fill: var(--zaf-white); }
body.menu-open .wa-float { display: none; }

/* Phone-only extras stay hidden on larger screens */
.card-short, .point-icon, .points-dots { display: none; }

/* ---------- Phone layout (≤719px) ---------- */
@media (max-width: 719px) {
  /* Burger menu: a compact drop-down sheet with small, wide-set caps */
  .burger { width: 44px; height: 44px; gap: 5px; }
  .burger span { width: 20px; }
  .burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .menu {
    padding-top: var(--menu-top, 88px);
    background: rgba(7, 24, 58, .45);
    -webkit-backdrop-filter: blur(3px); backdrop-filter: blur(3px);
  }
  .menu-inner {
    background: var(--zaf-blue-deep);
    padding-top: 6px; padding-bottom: 22px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, .28);
    animation: menu-in .22s ease-out;
  }
  @keyframes menu-in { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }
  .menu-links a {
    font-size: 15px; font-weight: 650; font-stretch: 120%;
    letter-spacing: .1em; text-transform: uppercase;
    padding: 15px 0; gap: 14px;
  }
  .menu-num { font-size: 11px; letter-spacing: .1em; }
  .menu-contact { margin-top: 18px; gap: 2px; }
  .menu-contact a { font-size: 14px; min-height: 40px; }

  .wa-float { width: 54px; height: 54px; right: 16px; bottom: calc(16px + env(safe-area-inset-bottom)); }
  .wa-float svg { width: 29px; height: 29px; }
  .footer-bar { padding-bottom: 84px; } /* keep the legal line clear of the WhatsApp button */

  /* Services: three across, photo + title + one short line */
  .cards { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .card picture { aspect-ratio: 1 / 1; }
  .card-body { padding: 10px 8px 12px; border-top-width: 2px; }
  .card h3 { font-size: 12.5px; font-stretch: 104%; line-height: 1.22; letter-spacing: 0; margin-bottom: 5px; }
  .card .card-long { display: none; }
  .card .card-short { display: block; font-size: 11.5px; line-height: 1.4; }

  /* How we work: 2 x 2 */
  .steps { grid-template-columns: 1fr 1fr; gap: 10px; }
  .step { padding: 16px 14px 18px; }
  .step-num { font-size: 30px; margin-bottom: 12px; }
  .step h3 { font-size: 15px; margin-bottom: 6px; }
  .step p { font-size: 13.5px; line-height: 1.5; }

  /* About points: swipeable navy cards with an icon and a large ghosted number */
  .points {
    display: flex; gap: 12px;
    overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth;
    margin: 0 calc(-1 * var(--gutter)); padding: 4px var(--gutter) 6px;
    scroll-padding: 0 var(--gutter);
    scrollbar-width: none;
    counter-reset: point;
  }
  .points::-webkit-scrollbar { display: none; }
  .points li, .points li:last-child {
    flex: 0 0 80%;
    scroll-snap-align: start;
    position: relative; overflow: hidden;
    padding: 22px 20px 26px;
    border: 0; border-radius: 6px;
    background: linear-gradient(150deg, var(--zaf-blue-deep) 0%, var(--zaf-night) 100%);
    counter-increment: point;
  }
  .points li::after {
    content: "0" counter(point);
    position: absolute; right: 12px; bottom: -18px;
    font-size: 88px; font-weight: 800; font-stretch: 125%; line-height: 1;
    color: rgba(255, 255, 255, .07);
    pointer-events: none;
  }
  .point-icon {
    display: inline-flex; align-items: center; justify-content: center;
    width: 44px; height: 44px; margin-bottom: 16px;
    border-radius: 50%;
    background: var(--zaf-blue);
    box-shadow: 0 0 0 5px rgba(10, 111, 208, .18);
  }
  .point-icon svg { width: 22px; height: 22px; color: var(--zaf-white); }
  .points h3 { color: var(--zaf-white); font-size: 18px; }
  .points p { color: #C9D3E3; font-size: 15px; position: relative; z-index: 1; }
  .points-dots { display: flex; justify-content: center; gap: 8px; margin-top: 16px; }
  .points-dots span { width: 8px; height: 8px; border-radius: 4px; background: var(--zaf-steel-300); transition: width .25s, background-color .25s; }
  .points-dots span.on { width: 24px; background: var(--zaf-blue); }
}
