/* ============================================================
   Online First Aid — onlinefirstaid.co.nz
   Layout follows the OnlineFirstAid wireframe.
   Visual styling from the First Aid Check / First Aid Ready
   design system: brand green #058B41, red #C8102E accent,
   Poppins marketing type.
   ============================================================ */

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

:root {
  --brand: #058B41;
  --brand-dark: #046C33;
  --brand-light: #EFF7F3;
  --accent: #C8102E;
  --accent-dark: #A00C24;
  --ink: #2E2E2E;
  --ink-2: #555555;
  --ink-3: #909090;
  --surface: #FFFFFF;
  --surface-2: #F5F5F5;
  --surface-3: #EBEBEB;
  --border: #E3E3E3;
  --border-strong: #C0C0C0;
  --radius: 8px;
  --radius-lg: 12px;
  --shadow: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.05);
  --shadow-lg: 0 12px 32px rgba(0,0,0,0.12), 0 4px 12px rgba(0,0,0,0.06);
}

html, body {
  font-family: 'Poppins', 'Inter', 'Helvetica Neue', Arial, sans-serif;
  background: var(--surface);
  color: var(--ink);
  font-size: 14px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}

.home-page { min-height: 100vh; background: var(--surface); }
.grn { color: var(--brand); }
.red { color: var(--accent); }

/* ─── Topbar ─────────────────────────────────────────── */
.home-topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  width: 100%;
  border-bottom: 3px solid var(--brand);
  background: rgba(255,255,255,0.96);
  backdrop-filter: saturate(180%) blur(8px);
}
.home-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 32px;
  max-width: 1240px;
  margin: 0 auto;
}
.home-topbar-logo { display: inline-flex; align-items: center; gap: 9.6px; text-decoration: none; }
.brand-logo {
  width: 44px;
  height: auto;
  flex-shrink: 0;
  display: block;
}
.brand-name {
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.3px;
  color: var(--ink);
  line-height: 1.05;
}
.brand-name span { color: var(--brand); }
.brand-name small {
  display: block;
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: var(--ink-3);
  text-transform: uppercase;
}

.home-nav-actions { display: inline-flex; align-items: center; gap: 22px; }
/* mobile hamburger + dropdown menu (shown < 760px) */
.home-nav-burger { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 44px; height: 44px; padding: 0 11px; border: 1.5px solid var(--border-strong); border-radius: 11px; background: #fff; cursor: pointer; flex: none; }
.home-nav-burger span { display: block; height: 2.5px; width: 100%; background: var(--ink); border-radius: 2px; transition: transform .22s ease, opacity .18s ease; }
body.menu-open .home-nav-burger span:nth-child(1){ transform: translateY(7.5px) rotate(45deg); }
body.menu-open .home-nav-burger span:nth-child(2){ opacity: 0; }
body.menu-open .home-nav-burger span:nth-child(3){ transform: translateY(-7.5px) rotate(-45deg); }
.mobile-menu { display: none; }
.home-nav-link {
  background: none; border: none;
  font-family: inherit;
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: 0.8px;
  color: var(--ink-2);
  cursor: pointer;
  padding: 6px 2px;
  transition: color 0.15s ease;
  white-space: nowrap;
}
.home-nav-link:hover { color: var(--brand); }
.home-nav-assess {
  font-family: inherit;
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 1px;
  margin-left: 16px;
  padding: 11px 20px;
  border-radius: 8px;
  cursor: pointer;
  white-space: nowrap;
  min-width: 176px;
  text-align: center;
  background: var(--accent);
  color: #fff;
  border: 1.5px solid var(--accent);
  box-shadow: 0 4px 14px rgba(200,16,46,0.22);
  transition: background 0.18s ease, transform 0.15s ease, box-shadow 0.18s ease;
}
.home-nav-assess:hover { background: var(--accent-dark); border-color: var(--accent-dark); transform: translateY(-1px); }
.home-nav-demo {
  font-family: inherit;
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 1px;
  margin-left: 16px;
  padding: 11px 18px;
  border-radius: 8px;
  cursor: pointer;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 176px;
  background: #fff;
  color: #5b6168;
  border: 1.5px solid #d3d7da;
  transition: background 0.18s ease, transform 0.15s ease, border-color 0.18s ease;
}
.home-nav-demo:hover { background: #f3f4f5; border-color: #c2c7cb; color: #43474c; transform: translateY(-1px); }

/* ─── Hero ───────────────────────────────────────────── */
.hero {
  text-align: center;
  padding: 94px 24px 97px;
  max-width: 1000px;
  margin: 0 auto;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2.6px;
  color: var(--ink);
  text-transform: uppercase;
  margin-bottom: 24px;
}
.eyebrow-cross {
  display: inline-grid;
  place-items: center;
  width: 24px; height: 24px;
  background: var(--brand);
  border-radius: 50%;
  margin-right: 10px;
  flex-shrink: 0;
  box-shadow: 0 2px 5px rgba(5,139,65,0.30);
  opacity: 0;
  transform: scale(0);
  animation: crossPop 0.3s cubic-bezier(.34,1.5,.5,1) 0.04s forwards;
}
.eyebrow-cross svg { width: 13px; height: 13px; fill: #fff; }
@keyframes crossPop {
  0%   { opacity: 0; transform: scale(0.4); }
  70%  { opacity: 1; transform: scale(1.08); }
  100% { opacity: 1; transform: scale(1); }
}

/* Hero title — subtle, quick fade-up */
.ht-1, .ht-2, .ht-pop1, .ht-pop2 { display: inline-block; opacity: 0; transform: translateY(14px); }
.ht-1    { animation: htFadeUp 0.32s ease 0.10s forwards; }
.ht-pop1 { animation: htFadeUp 0.32s ease 0.17s forwards; }
.ht-2    { animation: htFadeUp 0.32s ease 0.26s forwards; }
.ht-pop2 { animation: htFadeUp 0.32s ease 0.33s forwards; }
@keyframes htFadeIn   { from { opacity: 0; } to { opacity: 1; } }
.hero-headline {
  font-size: 64px;
  font-weight: 700;            /* grey base is BOLD */
  line-height: 1.12;
  letter-spacing: -1px;
  color: #6E6E6E;             /* grey base */
  margin-bottom: 24px;
}
.hero-headline .hl-grn { color: var(--brand); font-weight: 800; }  /* First Aid */
.hero-headline .hl-blk { color: #111111; font-weight: 800; }       /* Online */
.hero-headline .hl-line2 { white-space: nowrap; }                  /* keep line 2 together */
.hero-strap {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.hero-strap .pop {
  display: inline-block;
  white-space: nowrap;
  color: var(--brand);
  opacity: 0;
  transform: translateY(12px);
  animation: htFadeUp 0.3s ease forwards;
}
.hero-strap .pop:nth-child(1) { animation-delay: 0.40s; }
.hero-strap .pop:nth-child(3) { animation-delay: 0.45s; }
.hero-strap .pop:nth-child(5) { animation-delay: 0.50s; }
.hero-strap .sep {
  display: inline-block;
  color: #CBCBCB;
  font-weight: 400;
  padding: 0 16px;
  opacity: 0;
  animation: htFadeIn 0.3s ease forwards;
}
.hero-strap .sep:nth-child(2) { animation-delay: 0.42s; }
.hero-strap .sep:nth-child(4) { animation-delay: 0.47s; }
@keyframes strapPop {
  0%   { opacity: 0; transform: scale(0.4); }
  60%  { opacity: 1; transform: scale(1.18); }
  100% { opacity: 1; transform: scale(1); }
}

/* ─── Green band — "A right-sized solution for" ───────── */
.hero-band {
  position: relative;
  overflow: visible;             /* allow the "…and more" tooltip to escape the band */
  background: var(--brand);      /* one flat, uniform green */
  color: #fff;
  padding: 29px 24px 27px;
}
/* "…and more" hover tooltip */
.band-circle.has-tip { position: relative; cursor: default; outline: none; }
.band-tip {
  position: absolute;
  bottom: calc(100% + 14px);
  right: -6px;
  left: auto;
  width: 280px;
  max-width: 78vw;
  transform: translateY(8px);
  background: #fff;
  color: var(--ink);
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1.5;
  text-align: left;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 18px 44px rgba(0,0,0,0.26);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 40;
}
.band-tip::after {
  content: "";
  position: absolute;
  top: 100%;
  right: 64px;
  border: 9px solid transparent;
  border-top-color: #fff;
}
.band-circle.has-tip:hover .band-tip,
.band-circle.has-tip:focus-visible .band-tip {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.hero-band-inner {
  position: relative;
  z-index: 1;
  max-width: 1040px;
  margin: 0 auto;
  text-align: center;
}

.band-title {
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.4px;
  color: #fff;
  margin-bottom: 40px;
}

/* Single horizontal row of five circles */
.band-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  justify-items: center;
  align-items: start;
  gap: 26px 12px;
  max-width: 1120px;
  margin: 0 auto;
}
.band-circle {
  width: 100%;
  max-width: 170px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  transition: transform 0.2s ease;
}
.band-circle:hover { transform: translateY(-4px); }
.band-disc {
  width: 92px; height: 92px;
  border-radius: 50%;
  background: radial-gradient(circle at 34% 28%, #ffffff 0%, #E9F4EE 100%);
  display: grid; place-items: center;
  color: var(--brand);
  flex-shrink: 0;
  box-shadow: 0 0 0 8px rgba(255,255,255,0.10),   /* soft halo ring for depth */
              0 8px 18px rgba(0,0,0,0.18);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.band-circle:hover .band-disc {
  box-shadow: 0 0 0 10px rgba(255,255,255,0.16),
              0 14px 26px rgba(0,0,0,0.24);
}
.band-disc svg { width: 58px; height: 58px; }
.band-disc svg.icon-case { width: 51px; height: 51px; }
.band-disc svg.icon-laptop { width: 58px; height: 58px; margin-top: 0; }
.band-circle-label { font-size: 16px; font-weight: 600; color: #fff; text-align: center; line-height: 1.3; }
.band-circle-label em { font-style: italic; font-weight: 500; color: rgba(255,255,255,0.92); }

.band-find { font-size: 16px; font-weight: 500; color: rgba(255,255,255,0.95); }
.band-find a { color: #fff; font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.band-find a:hover { text-decoration: none; }

/* ── Scroll-triggered entrance (subtle, staggered) ── */
/* Two-stage entrance: circle pops in, then the icon pops up, then the label */
.band-disc {
  opacity: 0;
  transform: scale(0.2);
  transition: opacity 0.35s ease, transform 0.55s cubic-bezier(.34,1.65,.5,1), box-shadow 0.18s ease;
}
.band-disc svg {
  opacity: 0;
  transform: translateY(10px) scale(0.4);
  transition: opacity 0.35s ease, transform 0.5s cubic-bezier(.34,1.8,.5,1);
}
.band-circle-label {
  opacity: 0;
  transform: translateY(7px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.reveal-band.in .band-disc { opacity: 1; transform: scale(1); }
.reveal-band.in .band-disc svg { opacity: 1; transform: none; }
.reveal-band.in .band-circle-label { opacity: 1; transform: none; }

.reveal-band.in .band-circle:nth-child(1) .band-disc { transition-delay: 0.85s; }
.reveal-band.in .band-circle:nth-child(1) .band-disc svg { transition-delay: 0.95s; }
.reveal-band.in .band-circle:nth-child(1) .band-circle-label { transition-delay: 1.02s; }
.reveal-band.in .band-circle:nth-child(2) .band-disc { transition-delay: 0.97s; }
.reveal-band.in .band-circle:nth-child(2) .band-disc svg { transition-delay: 1.07s; }
.reveal-band.in .band-circle:nth-child(2) .band-circle-label { transition-delay: 1.14s; }
.reveal-band.in .band-circle:nth-child(3) .band-disc { transition-delay: 1.09s; }
.reveal-band.in .band-circle:nth-child(3) .band-disc svg { transition-delay: 1.19s; }
.reveal-band.in .band-circle:nth-child(3) .band-circle-label { transition-delay: 1.26s; }
.reveal-band.in .band-circle:nth-child(4) .band-disc { transition-delay: 1.21s; }
.reveal-band.in .band-circle:nth-child(4) .band-disc svg { transition-delay: 1.31s; }
.reveal-band.in .band-circle:nth-child(4) .band-circle-label { transition-delay: 1.38s; }
.reveal-band.in .band-circle:nth-child(5) .band-disc { transition-delay: 1.33s; }
.reveal-band.in .band-circle:nth-child(5) .band-disc svg { transition-delay: 1.43s; }
.reveal-band.in .band-circle:nth-child(5) .band-circle-label { transition-delay: 1.50s; }
.reveal-band.in .band-circle:nth-child(6) .band-disc { transition-delay: 1.45s; }
.reveal-band.in .band-circle:nth-child(6) .band-disc svg { transition-delay: 1.55s; }
.reveal-band.in .band-circle:nth-child(6) .band-circle-label { transition-delay: 1.62s; }

.hero-cta {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  padding: 28px 24px 10px;
}
.cta-item {
  display: inline-block;
  opacity: 0;
  transform: translateY(16px);
  animation: htFadeUp 0.5s ease forwards;
}
.cta-item { animation-duration: 0.55s; }
.cta-item:nth-child(1) { animation-delay: 0.92s; }   /* small pause after the strap, then stagger in */
.cta-item:nth-child(2) { animation-delay: 1.12s; }
@keyframes htFadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }

/* Closing green CTA band — full-bleed */
.cta-band {
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #fff;
  padding: 64px 24px;
  text-align: center;
}
.cta-band-inner { max-width: 720px; margin: 0 auto; }
.cta-band-title { font-size: 30px; font-weight: 800; letter-spacing: -0.4px; margin-bottom: 14px; }
.cta-band-text { font-size: 16px; font-weight: 300; line-height: 1.7; color: rgba(255,255,255,0.92); margin-bottom: 28px; }

/* ─── Buttons ────────────────────────────────────────── */
.btn-primary, .btn-light-outline, .btn-white, .btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: inherit;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1.2px;
  padding: 14px 28px;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  border: 1.5px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}
.btn-lg { padding: 17px 38px; font-size: 15px; min-width: 280px; }
.btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  box-shadow: 0 6px 18px rgba(200,16,46,0.24);
}
.btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(200,16,46,0.32);
}
.btn-light-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}
.btn-light-outline:hover { background: rgba(255,255,255,0.12); border-color: #fff; }
.btn-white {
  background: #fff;
  color: var(--brand-dark);
  border-color: #fff;
  box-shadow: 0 8px 22px rgba(0,0,0,0.18);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(0,0,0,0.26); }
.btn-secondary {
  background: #fff;
  color: var(--ink);
  border-color: var(--border-strong);
}
.btn-secondary:hover { border-color: var(--ink); background: var(--surface-2); transform: translateY(-2px); }

.section-cta { text-align: center; margin-top: 44px; }
.section-cta-row { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.section-cta-row .cta-eq { flex: 1 1 0; max-width: 320px; justify-content: center; }
.btn-demo {
  display: inline-flex; align-items: center; justify-content: center; gap: 4px;
  font-family: inherit; font-weight: 800; letter-spacing: 1px; text-decoration: none;
  background: var(--ink); color: #fff; border: 1.5px solid var(--ink); border-radius: 10px;
  cursor: pointer; white-space: nowrap; transition: background .18s ease, transform .15s ease;
}
.btn-demo:hover { background: #000; transform: translateY(-1px); }
/* demo tour pop-up window */
.demo-modal { position: fixed; inset: 0; z-index: 1000; background: rgba(14,20,17,0.6); backdrop-filter: blur(4px); display: none; align-items: center; justify-content: center; padding: 22px; transition: opacity 0.42s ease; }
.demo-modal.open { display: flex; }
.demo-window { width: min(1040px, 96vw); height: min(740px, 90vh); background: #fff; border: 4px solid var(--brand); border-radius: 16px; overflow: hidden; box-shadow: 0 34px 90px rgba(0,0,0,0.45), 0 0 0 6px rgba(5,139,65,0.18); display: flex; flex-direction: column; animation: dwpop .26s ease; }
@keyframes dwpop { from { transform: scale(.95); opacity: .3 } to { transform: scale(1); opacity: 1 } }
.dw-bar { display: flex; align-items: center; gap: 12px; padding: 9px 14px; background: var(--brand-light); border-bottom: 2px solid var(--brand); flex: none; }
.dw-left { display: flex; align-items: center; gap: 12px; flex: none; }
.dw-logo { height: 22px; width: auto; display: block; }
.dw-dots { display: flex; gap: 6px; flex: none; }
.dw-dots i { width: 11px; height: 11px; border-radius: 50%; background: #d2d6d9; }
.dw-dots i:nth-child(1){ background:#ff5f57 } .dw-dots i:nth-child(2){ background:#febc2e } .dw-dots i:nth-child(3){ background:#28c840 }
.dw-title { flex: 1; text-align: center; display: flex; align-items: center; justify-content: center; gap: 9px; font-family: 'Poppins', inherit; font-weight: 800; font-size: 14px; letter-spacing: 2.5px; color: var(--accent); }
.dw-blink { width: 9px; height: 9px; border-radius: 50%; background: var(--accent); animation: dwblink 1.4s infinite; }
@keyframes dwblink { 0% { box-shadow: 0 0 0 0 rgba(200,16,46,0.5) } 70% { box-shadow: 0 0 0 9px rgba(200,16,46,0) } 100% { box-shadow: 0 0 0 0 rgba(200,16,46,0) } }
.dw-x { flex: none; border: none; background: none; font-size: 22px; line-height: 1; color: #6b7177; cursor: pointer; width: 30px; height: 30px; border-radius: 7px; }
.dw-x:hover { background: rgba(0,0,0,0.07); }
.demo-window iframe, .demo-window video { flex: 1; width: 100%; min-height: 0; border: none; display: block; background: #f7f8f8; object-fit: contain; }
.section-cta-left { text-align: left; margin-top: 30px; }

.section-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 18px;
}

/* ─── How it works ───────────────────────────────────── */
.how {
  background: #fff;
  border-top: 1px solid #DCEBE3;
  padding: 76px 24px 0;
}
/* "Everything You Need" sits in its own full-bleed light-green band */
.how-need {
  background: var(--brand-light);
  margin: 0 -24px;
  padding: 72px 24px 84px;
}
.how-head {
  max-width: 1120px;
  margin: 0 auto 100px;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 48px;
  align-items: stretch;
  text-align: left;
}
.how-head .section-eyebrow { display: block; }
.how-title {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 34px;
}
.how-intro { max-width: none; margin: 0; text-align: left; }

/* Right-side balancing visual */
.how-head-visual { display: flex; flex-direction: column; align-items: center; align-self: stretch; }
/* START (left) + WATCH DEMO (right): equal width, side by side, pushed to the bottom of the column */
.how-demo-actions { display: flex; gap: 14px; justify-content: center; width: 100%; margin-top: auto; }
.how-demo-actions .h-act { flex: 1 1 0; min-width: 0; width: auto; justify-content: center; padding: 15px 16px; font-size: 14px; white-space: nowrap;
  opacity: 0; transform: translateY(16px); transition: opacity 0.4s ease, transform 0.4s ease; }
.how-head.in .how-demo-actions .h-act { opacity: 1; transform: none; }
.how-head.in .how-demo-actions .h-act:nth-child(1) { transition-delay: 0.5s; }
.how-head.in .how-demo-actions .h-act:nth-child(2) { transition-delay: 0.62s; }

/* ── Device mockups with animated screens ── */
.device-stage {
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 36px;
}

/* Laptop */
.laptop { flex: 0 1 340px; min-width: 0; filter: drop-shadow(0 22px 30px rgba(20,40,30,0.16)); }
.laptop-screen {
  border: 9px solid #5A5A5A;
  border-radius: 18px 18px 6px 6px;
  background: #fff;
  overflow: hidden;
}
.laptop-base {
  position: relative;
  width: 112%; left: -6%;
  height: 15px;
  background: #5A5A5A;
  border-radius: 0 0 6px 6px / 0 0 4px 4px;
}
.laptop-base::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, #6a6a6a, #4a4a4a);
  border-radius: inherit;
}
.laptop-base::after {
  content: "";
  position: absolute; top: 0; left: 50%;
  transform: translateX(-50%);
  width: 16%; height: 5px;
  background: #4a4a4a;
  border-radius: 0 0 6px 6px;
  z-index: 1;
}

/* Laptop screen UI */
.lui { display: flex; flex-direction: column; background: #FAFCFB; }
.lui-top {
  display: flex; align-items: center; justify-content: space-between;
  padding: 9px 13px;
  background: #fff;
  border-bottom: 1px solid #ECEFEE;
}
.lui-brand { display: flex; align-items: center; gap: 7px; }
.lui-brand img { width: 17px; height: auto; }
.lui-brand span { font-size: 12px; font-weight: 700; color: #222; letter-spacing: -0.2px; }
.lui-brand b { color: var(--brand); }
.lui-pill {
  display: inline-flex; align-items: center; gap: 4px;
  background: var(--brand-light); color: var(--brand-dark);
  font-size: 9px; font-weight: 800; letter-spacing: 0.2px;
  padding: 4px 9px; border-radius: 99px;
}
.lui-pill svg { width: 9px; height: 9px; }
.lui-body { flex: 1; padding: 13px 15px; display: flex; flex-direction: column; }
.lui-headrow { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 8px; }
.lui-h { font-size: 13px; font-weight: 800; color: #1f2a24; letter-spacing: -0.3px; }
.lui-count { font-size: 10px; font-weight: 700; color: var(--brand-dark); }
.lui-bar { height: 6px; border-radius: 99px; background: #E7EEEA; overflow: hidden; margin-bottom: 13px; }
.lui-bar i { display: block; height: 100%; width: 0; border-radius: 99px; background: linear-gradient(90deg, var(--brand), #2FBE6B); transition: width 1.1s cubic-bezier(.2,.7,.3,1); }
.how-head.in .lui-bar i { width: 100%; transition-delay: 0.7s; }
.lui-list { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.lui-item { display: flex; align-items: center; gap: 10px; }
.lui-tick {
  width: 18px; height: 18px; border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #fff; display: grid; place-items: center; flex-shrink: 0;
  box-shadow: 0 2px 5px rgba(5,139,65,0.30);
}
.lui-tick svg { width: 10px; height: 10px; }
.lui-label { font-size: 11.5px; font-weight: 600; color: #34403a; }

/* Phone */
.phone {
  position: relative;
  flex: 0 0 156px;
  aspect-ratio: 1 / 2.05;
  border: 8px solid #5A5A5A;
  border-radius: 28px;
  background: #fff;
  overflow: hidden;
  margin-bottom: 10px;
  zoom: 0.77;                 /* scaled-down phone (frame + UI) */
  filter: drop-shadow(0 18px 26px rgba(20,40,30,0.18));
}
.phone-notch {
  position: absolute; top: 0; left: 50%;
  transform: translateX(-50%);
  width: 38%; height: 13px;
  background: #5A5A5A;
  border-radius: 0 0 9px 9px;
  z-index: 3;
}
.phone-screen { height: 100%; background: #FAFCFB; display: flex; flex-direction: column; overflow: hidden; }
.pui { height: 100%; display: flex; flex-direction: column; min-height: 0; }
.pui-status {
  display: flex; align-items: center; justify-content: space-between;
  padding: 7px 13px 4px;
  font-size: 9px; font-weight: 700; color: #2E2E2E;
}
.pui-bars { display: inline-flex; align-items: flex-end; gap: 1.5px; }
.pui-bars i { width: 2.5px; background: #2E2E2E; border-radius: 1px; }
.pui-bars i:nth-child(1) { height: 5px; } .pui-bars i:nth-child(2) { height: 7px; } .pui-bars i:nth-child(3) { height: 9px; }
.pui-head {
  display: flex; align-items: center; gap: 6px;
  padding: 5px 13px 9px; border-bottom: 1px solid #ECEFEE; background: #fff;
}
.pui-head img { width: 15px; height: auto; }
.pui-head-t { font-size: 10px; font-weight: 700; color: #222; line-height: 1.15; }
.pui-head-t b { color: var(--brand); }
.pui-title { font-size: 15px; font-weight: 800; color: #1f2a24; padding: 11px 13px 7px; letter-spacing: -0.3px; }
.pui-list {
  list-style: none; display: flex; flex-direction: column; gap: 7px;
  padding: 0 11px 4px;
  flex: 1 1 auto; min-height: 0;
  overflow-y: auto;
  scrollbar-width: none;
}
.pui-list::-webkit-scrollbar { display: none; }
.pui-mod {
  display: flex; align-items: center; gap: 8px;
  background: #fff; border: 1px solid #E7EEEA;
  border-radius: 10px; padding: 8px 9px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
}
.pui-ic {
  width: 22px; height: 22px; border-radius: 7px;
  background: var(--brand-light); color: var(--brand);
  display: grid; place-items: center; flex-shrink: 0;
}
.pui-ic svg { width: 11px; height: 11px; }
.pui-txt { display: flex; flex-direction: column; line-height: 1.2; min-width: 0; }
.pui-txt b { font-size: 10px; font-weight: 700; color: #28332d; line-height: 1.2; }
.pui-txt i { font-size: 8.5px; font-style: normal; color: #97a39c; font-weight: 600; margin-top: 1px; }
.pui-start {
  flex-shrink: 0;
  margin: 10px 16px 12px; padding: 7px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff; border: none; border-radius: 8px;
  font-family: inherit; font-size: 9.5px; font-weight: 800; letter-spacing: 0.5px;
  box-shadow: 0 4px 10px rgba(200,16,46,0.24);
}

/* Screen-content entrance (plays when section enters view) */
.lui-top, .lui-headrow, .lui-item, .pui-status, .pui-head, .pui-title, .pui-mod, .pui-start {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}
.how-head.in .lui-top    { opacity: 1; transform: none; transition-delay: 0.30s; }
.how-head.in .lui-headrow{ opacity: 1; transform: none; transition-delay: 0.55s; }
.how-head.in .lui-item   { opacity: 1; transform: none; }
.how-head.in .lui-item:nth-child(1) { transition-delay: 0.85s; }
.how-head.in .lui-item:nth-child(2) { transition-delay: 1.05s; }
.how-head.in .lui-item:nth-child(3) { transition-delay: 1.25s; }
.how-head.in .lui-item:nth-child(4) { transition-delay: 1.45s; }
.how-head.in .lui-item:nth-child(5) { transition-delay: 1.65s; }
.how-head.in .pui-status { opacity: 1; transform: none; transition-delay: 1.75s; }
.how-head.in .pui-head   { opacity: 1; transform: none; transition-delay: 1.85s; }
.how-head.in .pui-title  { opacity: 1; transform: none; transition-delay: 1.98s; }
.how-head.in .pui-mod    { opacity: 1; transform: none; }
.how-head.in .pui-mod:nth-child(1) { transition-delay: 2.12s; }
.how-head.in .pui-mod:nth-child(2) { transition-delay: 2.27s; }
.how-head.in .pui-mod:nth-child(3) { transition-delay: 2.42s; }
.how-head.in .pui-mod:nth-child(4) { transition-delay: 2.57s; }
.how-head.in .pui-start  { opacity: 1; transform: none; transition-delay: 2.75s; }
.how-intro p {
  font-size: 16px;
  color: var(--ink-2);
  line-height: 1.7;
  margin-bottom: 16px;
}
.how-intro strong { color: var(--ink); font-weight: 700; }
.how-intro em { font-style: italic; }
.how-intro .hl-red { color: var(--accent); font-weight: 700; }
.how-intro .how-intro-lead { margin-bottom: 30px; }
.how-intro-list { list-style: none; margin: 0; padding: 0; }
.how-intro-list li {
  position: relative;
  padding-left: 33px;
  font-size: 19.2px;
  color: var(--ink-2);
  line-height: 1.5;
  margin-bottom: 12px;
}
.how-intro-list li:last-child { margin-bottom: 0; }
.how-intro-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.78em;
  transform: translateY(-50%);
  width: 22px; height: 22px;
  background: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%3E%3Ccircle%20cx='12'%20cy='12'%20r='12'%20fill='%23058B41'/%3E%3Cpath%20d='M12%206.3v11.4M6.3%2012h11.4'%20stroke='%23ffffff'%20stroke-width='2.6'%20stroke-linecap='round'/%3E%3C/svg%3E") center/contain no-repeat;
}
.how-intro-list li strong { color: var(--brand); font-weight: 700; }

/* Section eyebrow + title above the steps */
.how-need-head { text-align: center; margin-bottom: 43px; }
.how-need-head .section-eyebrow { display: block; margin-bottom: 10px; }
.how-everything {
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 40px;
  letter-spacing: -0.5px;
  color: var(--ink);
  margin: 0;
}

/* Vertically stacked steps: content box (left) + image/graphic (right) */
.how-steps {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 896px;
  margin: 0 auto;
}
.how-step {
  background: #fff;
  border: 1.5px solid #DCEBE3;
  border-radius: 16px;
  padding: 34px 44px;
  box-shadow: var(--shadow-md);
}
/* Each paragraph gets its own image slot */
.how-prow {
  display: grid;
  grid-template-columns: 1fr 210px;
  gap: 32px;
  align-items: center;
}
.how-prow + .how-prow {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--border);
}
.how-prow-text p { margin: 0; }
.how-prow-media { display: grid; place-items: center; }
.how-prow-media .how-ph { width: 70%; max-width: 110px; height: auto; color: #A6C7B4; }
.how-prow-media .how-art { width: 100%; max-width: 200px; height: auto; display: block; }
.how-prow-media .prow-devices { width: 100%; max-width: 190px; height: auto; }
.how-prow-media img { width: 100%; border-radius: 12px; display: block; box-shadow: var(--shadow); }
.how-prow-media img.how-shot { border: 1px solid var(--border); box-shadow: var(--shadow-md); }
.how-prow-media img.how-bare { box-shadow: none; border: none; border-radius: 0; background: none; }
@media (min-width: 781px){ .how-prow-media.media-phones { max-width: 250px; } }

/* step 3: trim 20% of the space above the grey line (separator after the paper-trail prow) */
/* step 3: text vertically centred (default), with doubled spacing above + below the grey line */
.how-prow:has(.media-fan) + .how-prow { margin-top: 16px; padding-top: 20px; }
/* 33% more space above the email-notifications box (up to the grey line) */
.media-notify { margin-top: 7px; }
/* step 1: grey-line spacing in line with steps 2 & 3 (more space below the line) */
.how-steps .how-step:nth-of-type(1) .how-prow + .how-prow { margin-top: 32px; padding-top: 30px; }
/* step 2 only: triple the space above + below its grey lines (base is 10px) */
.how-steps .how-step:nth-of-type(2) .how-prow + .how-prow { margin-top: 30px; padding-top: 30px; }
/* step 1 only: 20% more space at the bottom of the box (34px → 41px) */
.how-steps .how-step:nth-of-type(1) { padding-bottom: 41px; }
/* step 2 only: 20% more space at the bottom of the box (34px → 41px) */
.how-steps .how-step:nth-of-type(2) { padding-bottom: 41px; }
/* step 3 only: 20% more space at the bottom of the box (34px → 41px) */
.how-steps .how-step:nth-of-type(3) { padding-bottom: 41px; }
/* step 2: lift the phones to the top of the box; bottom gap to the grey line matched to step 3 */
.how-prow-media.media-phones { align-self: start; margin-top: -42px; margin-bottom: 0; }
/* step 1: lift the assessment monitor up like the other sections (more space down to the grey line) */
.how-prow-media.media-monitor { align-self: start; margin-top: -64px; }

/* step 1 checklist: first-aid-kit image pops in over the bottom-right after 2s */
.media-checklist { position: relative; overflow: visible; }
/* shrink the checklist card a little, anchored top-left, to make room for the kit + PDF bottom-right */
.media-checklist .mon-screen { transform: scale(.85); transform-origin: top left; }

/* first-aid kit — front, on the LEFT of the pair */
.media-checklist .ckit-pop {
  position: absolute; right: 18%; bottom: -11%;
  width: 42%; max-width: 145px; height: auto;
  border-radius: 0; box-shadow: none;
  filter: drop-shadow(0 4px 7px rgba(20,40,30,0.16)) drop-shadow(0 14px 24px rgba(20,40,30,0.22));
  opacity: 0; transform: translateY(22px) scale(.85) rotate(-3deg);
  transition: opacity .5s ease, transform .6s cubic-bezier(.34,1.45,.5,1);
  pointer-events: none; z-index: 4;
}
.media-checklist .ckit-pop.show { opacity: 1; transform: translateY(0) scale(1) rotate(0deg); }
@media (max-width: 760px) { .media-checklist .ckit-pop { width: 46%; max-width: 140px; right: 16%; bottom: -7%; } }

/* editable comms A4 PDF page — behind, on the RIGHT, fine print like a real page */
.media-checklist .ckcomm-pop {
  position: absolute; right: -4%; bottom: -10%;
  width: 31%; max-width: 112px; aspect-ratio: 1 / 1.414;
  background: #fff; border: 1px solid var(--border); border-radius: 3px;
  box-shadow: 0 3px 7px rgba(20,40,30,0.10), 0 12px 26px rgba(20,40,30,0.18);
  overflow: hidden; z-index: 3; pointer-events: none;
  display: flex; flex-direction: column; padding: 5px 5px 0; box-sizing: border-box;
  opacity: 0; transform: translateY(18px) scale(.9);
  transition: opacity .5s ease, transform .6s cubic-bezier(.34,1.45,.5,1);
}
.media-checklist .ckcomm-pop.show { opacity: 1; transform: translateY(0) scale(1); }
.ckcomm-pop .cc-brand { display: flex; align-items: center; gap: 1.5px; font-size: 3px; font-weight: 800; letter-spacing: .2px; color: var(--brand); }
.ckcomm-pop .cc-brand svg { width: 4px; height: 4px; }
.ckcomm-pop .cc-title { font-size: 5px; font-weight: 800; color: var(--ink); margin-top: 2.5px; line-height: 1.1; }
.ckcomm-pop .cc-sub { font-size: 2.7px; color: var(--ink-3); margin-top: 1px; }
.ckcomm-pop .cc-rule { height: 1px; background: var(--brand); opacity: .55; margin: 2.5px 0; }
.ckcomm-pop .cc-strong { font-size: 3.4px; font-weight: 800; color: var(--brand-dark); margin-bottom: 2px; line-height: 1.25; }
.ckcomm-pop .cc-row { display: flex; justify-content: space-between; gap: 3px; font-size: 2.9px; color: var(--ink-3); padding: 1.3px 0; border-bottom: 1px solid #F2F5F3; }
.ckcomm-pop .cc-row b { color: var(--ink); font-weight: 700; }
.ckcomm-pop .cc-h2 { font-size: 3.2px; font-weight: 800; color: var(--ink); margin: 3px 0 1.5px; }
.ckcomm-pop .cc-li { font-size: 2.9px; line-height: 1.5; color: var(--ink-3); }
.ckcomm-pop .cc-spacer { flex: 1; min-height: 2px; }
.ckcomm-pop .cc-foot { font-size: 2.6px; font-weight: 700; letter-spacing: .2px; text-transform: uppercase; color: var(--ink-3); text-align: center; padding: 2.5px 0; border-top: 1px solid var(--border); }
@media (max-width: 760px) { .media-checklist .ckcomm-pop { right: -4%; bottom: -6%; width: 34%; max-width: 108px; } }

/* ── animated documents fan ── */
.how-prow-media.media-fan { align-self: start; margin-top: -52px; margin-bottom: -8px; }
.docfan { position: relative; display: block; width: 80%; max-width: 200px; margin: 0 auto; aspect-ratio: 1 / 1.16; }
.docfan .dpg { position: absolute; left: 13%; top: 0; width: 74%; height: auto; box-shadow: none; border: 0; border-radius: 0;
  transform-origin: 50% 90%; opacity: 0; transform: rotate(0deg) translateY(8px) scale(.95);
  transition: transform .75s cubic-bezier(.2,.85,.25,1), opacity .5s ease; will-change: transform, opacity; }
.docfan.in .dpg { opacity: 1; }
.docfan.in .dpg-b { transform: rotate(-11deg) translateX(-11%); transition-delay: .04s; }
.docfan.in .dpg-m { transform: rotate(-3deg)  translateX(-2%);  transition-delay: .12s; }
.docfan.in .dpg-f { transform: rotate(4deg)   translateX(7%);   transition-delay: .20s; }

/* ── animated notification stack (fade-up + pop) ── */
.notifstack { display: flex; flex-direction: column; gap: 0; width: 100%; max-width: 250px; margin: 0 auto; }
.notifstack .ncard { width: 100%; display: block; box-shadow: none; border: 0; border-radius: 0;
  opacity: 0; transform: translateY(20px) scale(.94);
  transition: transform .55s cubic-bezier(.18,1.4,.32,1), opacity .4s ease; will-change: transform, opacity; }
.notifstack .ncard + .ncard { margin-top: -16px; }
.notifstack.in .ncard { opacity: 1; transform: none; }
.notifstack.in .ncard:nth-child(1) { transition-delay: .05s; }
.notifstack.in .ncard:nth-child(2) { transition-delay: .19s; }
.notifstack.in .ncard:nth-child(3) { transition-delay: .33s; }

/* ── email-notifications panel (live toggles, animate on one-by-one) ── */
/* zoom (not transform:scale) so the SMALLER size also shrinks the layout box — keeps the row tight */
.emailpanel { background: #fff; border: 1px solid #e6e8e9; border-radius: 16px; box-shadow: 0 12px 30px rgba(0,0,0,.09);
  padding: 14px 16px; width: 100%; max-width: 250px; margin: 0 auto; zoom: 0.72; transform-origin: center;
  opacity: 0; transform: translateY(22px) scale(.96); transition: transform .5s cubic-bezier(.2,1,.3,1), opacity .4s ease; }
.emailpanel.in { opacity: 1; transform: translateY(0) scale(1); }
.ep-head { display: flex; align-items: center; gap: 8px; padding-bottom: 10px; border-bottom: 1px solid #eceeef; }
.ep-ic { width: 27px; height: 27px; border-radius: 7px; background: var(--brand, #058B41); display: grid; place-items: center; flex-shrink: 0; }
.ep-ic svg { display: block; width: 15px; height: 15px; }
.ep-title { font-weight: 800; font-size: 12px; color: #262a2c; line-height: 1.2; white-space: nowrap; }
.ep-sub { font-size: 9px; color: #7a7e81; margin-top: 1px; line-height: 1.25; }
.ep-row { display: flex; align-items: center; gap: 8px; padding: 8px 0; }
.ep-row + .ep-row { border-top: 1px solid #f1f2f3; }
.ep-rmain { flex: 1; min-width: 0; }
.ep-rt { font-weight: 700; font-size: 11px; color: #2a2e30; line-height: 1.2; white-space: nowrap; }
.ep-rs { font-size: 9px; color: #8a8e91; margin-top: 1px; line-height: 1.2; }
.ep-tog { width: 36px; height: 21px; border-radius: 99px; background: #ccced0; position: relative; flex-shrink: 0;
  transition: background .3s ease; }
.ep-tog::after { content: ''; position: absolute; top: 2.5px; left: 2.5px; width: 16px; height: 16px; border-radius: 50%;
  background: #fff; box-shadow: 0 1px 2px rgba(0,0,0,.28); transition: left .35s cubic-bezier(.34,1.5,.5,1); }
/* flick ON, staggered, after the panel has popped in */
.emailpanel.in .ep-row .ep-tog { background: var(--brand, #058B41); }
.emailpanel.in .ep-row .ep-tog::after { left: 17.5px; }
.emailpanel.in .ep-row:nth-child(2) .ep-tog, .emailpanel.in .ep-row:nth-child(2) .ep-tog::after { transition-delay: .35s; }
.emailpanel.in .ep-row:nth-child(3) .ep-tog, .emailpanel.in .ep-row:nth-child(3) .ep-tog::after { transition-delay: .58s; }
.emailpanel.in .ep-row:nth-child(4) .ep-tog, .emailpanel.in .ep-row:nth-child(4) .ep-tog::after { transition-delay: .81s; }

/* ── training phones: two real phones, each a SINGLE clean frame, raw screen inside ──
   NOTE: own class (.tphone) so it does NOT inherit the hero .phone rule (aspect-ratio/border/zoom). */
.phones { position: relative; display: flex; justify-content: center; align-items: flex-start; gap: 9px; width: 100%; max-width: 300px; margin: 0 auto; }
/* the device body = ONE dark rounded bezel; it sizes itself to the screenshot inside (no fixed aspect) */
.tphone { position: relative; flex: 0 0 46%; box-sizing: border-box; background: #70757b; border-radius: 16px;
  padding: 2.5px; box-shadow: 0 18px 34px rgba(0,0,0,.26), 0 3px 9px rgba(0,0,0,.16); opacity: 0; will-change: transform, opacity; }
/* white phone screen; fixed phone aspect so the live UI inside scales to it (cqh) */
.tphone .tphone-scr { display: block; position: relative; background: #fff; border-radius: 13.5px; overflow: hidden; aspect-ratio: 9 / 16.4; container-type: size; }
/* side by side, no overlap, small gap — second (right) phone sits higher up */
.tphone-front { order: 0; transform: none; }
.tphone-back  { order: 1; margin-top: -24px; transform: none; }
.phones.in .tphone-front { animation: phIn .55s cubic-bezier(.2,1,.3,1) forwards; }
.phones.in .tphone-back  { animation: phIn .55s cubic-bezier(.2,1,.3,1) .18s forwards; }
@keyframes phIn { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: translateY(0); } }

/* ── simplified live phone screens (scale to the phone via cqh) ── */
.psc { position: absolute; inset: 0; display: flex; flex-direction: column; font-family: 'Inter', sans-serif; font-size: 4.1cqh; line-height: 1.3; opacity: 0; transform: translateY(4%); }
.psc-top { display: flex; align-items: center; gap: .5em; padding: .9em 1em; border-bottom: 1.5px solid #e9f3ec; }
.psc-back { color: #666; font-weight: 700; border: 1px solid #e2e4e6; border-radius: .5em; padding: .05em .6em; font-size: .95em; }
.psc-brand { display: flex; align-items: center; gap: .3em; font-weight: 700; font-size: .92em; color: #2E2E2E; margin-left: auto; white-space: nowrap; }
.psc-brand-c { margin: 0 auto; }
.psc-brand b { color: #058B41; }
/* .psc .psc-logo specificity beats the generic .how-prow-media img { width:100% } rule */
.psc .psc-logo { height: 1.45em; width: auto; flex: none; display: block; border-radius: 0; box-shadow: none; border: none; }
.psc-body { flex: 1; display: flex; flex-direction: column; padding: 1.2em 1.15em; gap: 1.05em; }
/* contact footer pinned to the bottom of the course screen */
.psc-foot { margin-top: auto; display: flex; align-items: center; justify-content: center; gap: .5em; padding-top: .9em; border-top: 1px solid #eef0f1; }
/* phone 1 (dashboard): squeeze content up so the green button lifts off the bottom edge */
.psc-course .psc-body { gap: .55em; }
.psc-course .psc-mod { padding-top: .5em; padding-bottom: .5em; }
.psc-course .psc-mod:first-of-type { margin-top: .4em; }
.psc-course .psc-foot { margin-top: .85em; padding-top: .8em; }
.psc-fl { font-size: .82em; color: #8a9097; font-weight: 600; }
.psc-fbtn { background: #058B41; color: #fff; font-size: .8em; font-weight: 700; padding: .45em .9em; border-radius: .55em; white-space: nowrap; }
.psc-eyebrow { font-size: .7em; font-weight: 800; letter-spacing: .4px; color: #058B41; }
.psc-h { font-family: 'Poppins', sans-serif; font-size: 1.18em; font-weight: 700; color: #374151; line-height: 1.1; margin-top: -.1em; white-space: nowrap; }
.psc-h2 { font-family: 'Poppins', sans-serif; font-size: 1.18em; font-weight: 800; color: #374151; line-height: 1.16; margin-top: -.05em; }
.psc-prog { display: flex; align-items: center; gap: .6em; }
.psc-bar { flex: 1; height: .55em; border-radius: 99px; background: #eceef0; overflow: hidden; }
.psc-bar > i { display: block; width: 40%; height: 100%; background: #058B41; border-radius: 99px; }
.psc-prog span { font-size: .8em; color: #8a9097; font-weight: 600; white-space: nowrap; }
.psc-mod { display: flex; align-items: center; gap: .55em; padding: .62em .8em; border: 1px solid #eef0f1; border-radius: .7em; }
.psc-course .psc-mod:first-of-type { margin-top: .9em; }
.psc-mi { width: .55em; height: .55em; border-radius: 50%; flex: none; }
.psc-mi.done { background: #058B41; } .psc-mi.now { background: #F0A132; }
.psc-mt { font-size: .9em; font-weight: 700; color: #2a2e30; white-space: nowrap; }
.psc-video { position: relative; border-radius: .7em; overflow: hidden; aspect-ratio: 16/10; background: #0c1f17; }
.psc-video img { width: 100%; height: 100%; object-fit: cover; display: block; }
.psc-play { position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); width: 2.6em; height: 2.6em; border-radius: 50%; background: rgba(255,255,255,.92); box-shadow: 0 .2em .6em rgba(0,0,0,.25); }
.psc-play::after { content: ""; position: absolute; left: 56%; top: 50%; transform: translate(-50%,-50%); border-left: .75em solid #15171b; border-top: .48em solid transparent; border-bottom: .48em solid transparent; }
.psc-pt { font-size: .86em; font-weight: 700; color: #2a2e30; margin-top: .15em; }
.psc-3p { display: flex; align-items: flex-start; gap: .55em; font-size: .92em; color: #4a4f55; font-weight: 600; }
.psc-3p .p-dot { width: .5em; height: .5em; border-radius: 50%; background: #058B41; flex: none; margin-top: .34em; }
/* entrance: content fades/rises in — first phone, then the second — at half the previous speed */
.phones.in .tphone-front .psc { animation: pscIn 1.2s cubic-bezier(.2,1,.3,1) .5s both; }
.phones.in .tphone-back  .psc { animation: pscIn 1.2s cubic-bezier(.2,1,.3,1) 1.7s both; }
@keyframes pscIn { from { opacity: 0; transform: translateY(4%); } to { opacity: 1; transform: none; } }

/* ── clean white card (like the email-notifications box) holding the live animated UI ── */
.media-monitor, .media-checklist { max-width: 250px; }
.monitor { position: relative; width: 100%; max-width: 250px; margin: 0 auto;
  opacity: 0; transform: translateY(52px) scale(.66); transform-origin: center;
  transition: transform .85s cubic-bezier(.34,1.56,.64,1), opacity .55s ease; }
.monitor.in { opacity: 1; transform: none; }
/* stagger between the two cards is handled in JS (sequential .in) */
.mon-screen { width: 100%; aspect-ratio: 4 / 3; box-sizing: border-box; display: flex; flex-direction: column;
  overflow: hidden; background: #fff; border: 1px solid #e6e8e9; border-radius: 16px; box-shadow: 0 12px 30px rgba(0,0,0,.09);
  container-type: size; font-family: 'Inter', sans-serif; }
/* thin green frame around the step-1 assessment + checklist mockups */
.media-monitor .mon-screen, .media-checklist .mon-screen {
  border: 1.5px solid var(--brand);
  box-shadow: 0 12px 30px rgba(5,139,65,.16);
}
/* website header bar with the real logo + green underline (like the live site) */
.web-bar { flex: none; display: flex; align-items: center; gap: 1.6cqh; padding: 2cqh 2.6cqh; border-bottom: 1.5px solid #058B41; }
.web-bar .web-logo { height: 4.8cqh; width: auto; flex: none; display: block; border-radius: 0; box-shadow: none; border: none; }
.web-name { font-size: 3.7cqh; font-weight: 700; color: #2E2E2E; white-space: nowrap; }
.web-name b { color: #058B41; }
.web-pill { margin-left: auto; font-size: 2.8cqh; font-weight: 700; color: #046C33; background: #EFF7F3; border-radius: 99px; padding: .6cqh 1.8cqh; white-space: nowrap; }
.web-body { flex: 1; position: relative; }
/* inset the content from the card edges so the UI has breathing room (not jammed to the edge) */
.ascn, .ckcn { position: absolute; inset: 5% 5.5%; font-size: 4.4cqh; line-height: 1.2; }
.ascn-s, .ckcn-s { position: absolute; inset: 0; box-sizing: border-box; opacity: 0; }

/* ===== assessment: Start screen → Q1 → Q2, driven by a clicking cursor ===== */
.ascn-start { display: flex; flex-direction: column; }
.ascn-brand { display: flex; align-items: center; gap: .55em; font-size: .9em; color: #2E2E2E; font-weight: 600; padding: .8em 1.1em; border-bottom: 1px solid #eef0f1; }
.ascn-brand b { color: #058B41; }
.ascn-bdot { width: 1.25em; height: 1.25em; border-radius: 50%; background: #058B41; flex: none; position: relative; }
.ascn-bdot::after { content: ""; position: absolute; inset: .35em; background:
  linear-gradient(#fff,#fff) center/100% .18em no-repeat, linear-gradient(#fff,#fff) center/.18em 100% no-repeat; }
.ascn-hero { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: .4em 1.3em; gap: .65em; }
.ascn-h { font-family: 'Poppins', sans-serif; font-size: 1.35em; font-weight: 800; color: #6b7177; line-height: 1.25; }
.ascn-sub { font-size: .82em; color: #8a9097; }
.ascn-cta { margin-top: .3em; background: #058B41; color: #fff; font-size: 1em; font-weight: 700; padding: .75em 1.6em; border-radius: .7em; box-shadow: 0 .4em 1em rgba(5,139,65,.32); }
.ascn-q1, .ascn-q2 { padding: 1.1em 1.2em; display: flex; flex-direction: column; }
.ascn-top { display: flex; justify-content: space-between; font-size: .78em; font-weight: 600; color: #9aa0a6; }
.ascn-pc { color: #058B41; }
.ascn-pg { height: .45em; border-radius: 99px; background: #eceef0; margin: .45em 0 .9em; overflow: hidden; }
.ascn-pg > i { display: block; height: 100%; border-radius: 99px; background: #058B41; }
.pgw1 { width: 17%; } .pgw2 { width: 33%; }
.ascn-q { font-family: 'Poppins', sans-serif; font-size: 1.15em; font-weight: 800; color: #6b7177; margin-bottom: .7em; line-height: 1.2; }
.ascn-opt { font-size: .95em; color: #82878d; border: 1px solid #e4e6e8; border-radius: .65em; padding: .62em 1em; margin-bottom: .5em; background: #fff; }
.ascn-opt.sel-a, .ascn-opt.sel-b { border-color: #058B41; background: #EFF7F3; color: #19432f; font-weight: 600; }
.ascn-nav { display: flex; gap: .6em; margin-top: auto; }
.ascn-back { font-size: .9em; color: #777; border: 1px solid #d8dadc; border-radius: .65em; padding: .55em 1.1em; }
.ascn-next { flex: 1; background: #058B41; color: #fff; font-size: .95em; font-weight: 700; text-align: center; border-radius: .65em; padding: .55em; }
.ascn-cur { position: absolute; width: 1.5em; height: 1.5em; left: 70%; top: 30%; z-index: 5; opacity: 0; filter: drop-shadow(0 1px 1px rgba(0,0,0,.3)); }
.ascn-cur svg { width: 100%; height: 100%; fill: #fff; stroke: #222; stroke-width: 1.4; }
/* timeline (~12s loop) */
.monitor.in .ascn-start { animation: scA 12s linear infinite; }
.monitor.in .ascn-q1    { animation: scB 12s linear infinite; }
.monitor.in .ascn-q2    { animation: scC 12s linear infinite; }
.monitor.in .ascn-cur   { animation: scCur 12s linear infinite; }
.monitor.in .ascn-cta   { animation: ctaPress 12s linear infinite; }
@keyframes scA { 0%,24%{opacity:1} 28%,96%{opacity:0} 100%{opacity:1} }
@keyframes scB { 0%,28%{opacity:0} 31%,52%{opacity:1} 56%,100%{opacity:0} }
@keyframes scC { 0%,56%{opacity:0} 59%,93%{opacity:1} 97%,100%{opacity:0} }
@keyframes scCur {
  0%{left:72%;top:28%;opacity:0;transform:scale(1)} 5%{opacity:1}
  19%{left:50%;top:70%;transform:scale(1)} 22%{transform:scale(.78)} 25%{transform:scale(1)}
  44%{left:60%;top:89%;transform:scale(1)} 49%{transform:scale(.78)} 52%{transform:scale(1)}
  90%{left:60%;top:89%;opacity:1} 100%{left:72%;top:28%;opacity:0} }
@keyframes ctaPress { 0%,20%{transform:scale(1)} 23%{transform:scale(.94)} 26%,100%{transform:scale(1)} }

/* ===== checklist: "building…" spinner → reveal the real-looking checklist ===== */
.ckcn-load { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .9em; padding: 1.1em; }
.ckcn-spin { width: 2.9em; height: 2.9em; border-radius: 50%; border: .33em solid #e6f0ea; border-top-color: #058B41; }
.monitor.in .ckcn-spin { animation: ckSpin .8s linear infinite; }
@keyframes ckSpin { to { transform: rotate(360deg); } }
.ckcn-lt { font-size: 1em; font-weight: 800; color: #6b7177; font-family: 'Poppins', sans-serif; }
.ckcn-ls { font-size: .78em; color: #9aa0a6; text-align: center; }
.ckcn-list { padding: 1em 1.2em; display: flex; flex-direction: column; }
.ckcn-head { display: flex; justify-content: space-between; align-items: center; gap: .9em; padding-bottom: .78em; border-bottom: 1px solid #eef0f1; }
.ckcn-eyebrow { font-size: .72em; font-weight: 800; letter-spacing: .4px; color: #058B41; }
.ckcn-title { font-family: 'Poppins', sans-serif; font-size: 1.22em; font-weight: 800; color: #6b7177; margin-top: .1em; line-height: 1.1; }
.ckcn-ring { width: 3.33em; height: 3.33em; border-radius: 50%; flex: none; display: grid; place-items: center; background: conic-gradient(#058B41 67%, #e6e8ea 0); }
.ckcn-ring span { width: 2.44em; height: 2.44em; border-radius: 50%; background: #fff; display: grid; place-items: center; font-size: .83em; font-weight: 800; color: #058B41; }
.ckcn-row { display: flex; align-items: center; gap: .78em; padding: .72em .1em; border-bottom: 1px solid #f3f4f5; font-size: .95em; font-weight: 600; color: #6b7177; }
.ckcn-row:last-child { border-bottom: none; }
.ckd { width: .67em; height: .67em; border-radius: 50%; flex: none; }
.ckd.g { background: #058B41; } .ckd.a { background: #F0A132; }
.ckl { flex: 1; min-width: 0; }
.ckt { font-size: .78em; font-weight: 700; color: #999; background: #f1f2f3; border-radius: 99px; padding: .17em .67em; }
.ckt.ok { color: #046C33; background: #EFF7F3; }
/* timeline (~9s loop) */
.monitor.in .ckcn-load { animation: ckLoad 9s ease infinite; }
.monitor.in .ckcn-list { animation: ckList 9s ease infinite; }
@keyframes ckLoad { 0%,30%{opacity:1} 36%,94%{opacity:0} 100%{opacity:1} }
@keyframes ckList { 0%,32%{opacity:0} 40%,96%{opacity:1} 100%{opacity:0} }
.ckcn-list .ckcn-row { opacity: 0; transform: translateY(4px); }
.monitor.in .ckcn-list .ckcn-row { animation: ckRow 9s ease infinite; }
.monitor.in .cr1 { animation-delay: 0s; } .monitor.in .cr2 { animation-delay: .12s; }
.monitor.in .cr3 { animation-delay: .24s; } .monitor.in .cr4 { animation-delay: .36s; }
@keyframes ckRow { 0%,36%{opacity:0;transform:translateY(4px)} 45%,92%{opacity:1;transform:none} 100%{opacity:0;transform:translateY(4px)} }

@media (prefers-reduced-motion: reduce) {
  .monitor { transition: none; opacity: 1; transform: none; }
  .ascn-s, .ckcn-s { animation: none !important; }
  .ascn-q2 { opacity: 1; } .ascn-cur { display: none; }
  .monitor.in .ckcn-spin { animation: none; }
  .ckcn-load { opacity: 0; } .ckcn-list { opacity: 1; }
  .ckcn-list .ckcn-row { animation: none !important; opacity: 1; transform: none; }
}

/* ── CPR tool: courier bag delivered → bounces into the tool ── */
.deliver { position: relative; display: block; width: 80%; max-width: 200px; margin: 0 auto; }
.deliver .df-tool { display: block; width: 100%; border-radius: 12px; box-shadow: var(--shadow-md);
  opacity: 0; transform: scale(.55); transform-origin: center;
  transition: opacity .35s ease, transform .6s cubic-bezier(.18,1.7,.4,1); }
.deliver .df-bag { position: absolute; left: 50%; top: 50%; width: 92%; height: auto;
  border-radius: 9px; box-shadow: var(--shadow-md); transform-origin: center;
  transform: translate(-50%, -50%) scale(1);
  transition: opacity .4s ease, transform .45s cubic-bezier(.5,-0.4,.7,.3); }
.deliver.in .df-tool { opacity: 1; transform: scale(1); transition-delay: 1.05s; }
.deliver.in .df-bag  { opacity: 0; transform: translate(-50%, -50%) scale(.66); transition-delay: 1.05s; }

/* ── video call: incoming → connected crossfade on entrance ── */
.callfade { position: relative; display: block; width: 100%; max-width: 240px; margin: 0 auto; }
.callfade .how-shot { display: block; width: 100%; }
.callfade .cf-connected { position: absolute; inset: 0; opacity: 0; }
.callfade .cf-incoming, .callfade .cf-connected { transition: opacity 1.1s ease; }
.callfade.in .cf-incoming { opacity: 0; transition: opacity 1.1s ease 1.2s; }
.callfade.in .cf-connected { opacity: 1; transition: opacity 1.1s ease 1.2s; }
/* soft white flash as the call connects */
.callfade .cf-flash { position: absolute; inset: 0; border-radius: 12px; background: #fff; opacity: 0; pointer-events: none; }
.callfade.in .cf-flash { animation: cfFlash 1.5s ease 1.05s both; }
@keyframes cfFlash { 0% { opacity: 0; } 42% { opacity: .55; } 100% { opacity: 0; } }

@media (prefers-reduced-motion: reduce) {
  .docfan .dpg, .notifstack .ncard, .emailpanel, .emailpanel .ep-tog, .emailpanel .ep-tog::after,
  .callfade .cf-incoming, .callfade .cf-connected { transition: none; }
  .callfade .cf-incoming { opacity: 0; } .callfade .cf-connected { opacity: 1; }
  .callfade.in .cf-flash { animation: none; }
  .tphone { opacity: 1; animation: none; }
  .phones.in .tphone-front, .phones.in .tphone-back { animation: none; }
  .psc { opacity: 1; transform: none; }
  .phones.in .tphone-front .psc, .phones.in .tphone-back .psc { animation: none; }
  .deliver .df-tool { transition: none; opacity: 1; transform: none; }
  .deliver .df-bag { display: none; }
}
.how-step-head {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 20px;
}
.how-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px; height: 52px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-weight: 800;
  font-size: 23px;
  box-shadow: 0 4px 10px rgba(5,139,65,0.22);
}
.how-step-title {
  font-weight: 800;
  letter-spacing: 0.3px;
  line-height: 1.15;
}
.how-step-title .t-top { display: block; color: var(--brand); font-size: 26px; }
.how-step-title .t-bot { display: block; color: var(--ink); font-size: 15px; margin-top: 3px; }
.how-prow-text p { font-size: 14.5px; color: var(--ink-2); line-height: 1.7; }

/* ── How It Works — scroll entrance ── */
.how-head .how-intro-list li {
  opacity: 0; transform: translateY(14px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.how-head.in .how-intro-list li { opacity: 1; transform: none; }
.how-head.in .how-intro-list li:nth-child(1) { transition-delay: 0.15s; }
.how-head.in .how-intro-list li:nth-child(2) { transition-delay: 0.30s; }
.how-head.in .how-intro-list li:nth-child(3) { transition-delay: 0.45s; }

.how-head .laptop, .how-head .phone {
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.how-head .laptop { transform: translateY(16px); }
.how-head .phone  { transform: translateX(26px); }
.how-head.in .laptop { opacity: 1; transform: none; transition-delay: 0.05s; }
.how-head.in .phone  { opacity: 1; transform: none; transition-delay: 0.32s; }  /* phone enters just after laptop */

.how-step {
  opacity: 0; transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.how-step.in { opacity: 1; transform: none; }

/* ─── Pricing & Examples ─────────────────────────────── */
.pricing { padding: 78px 24px; }
.pricing-head { text-align: center; max-width: 760px; margin: 0 auto 44px; }
.pricing-head .section-eyebrow { display: block; }
.pricing-title {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.6px;
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 30px;
}
.pricing-intro { font-size: 16px; font-weight: 300; color: var(--ink-2); line-height: 1.7; }
.pricing-intro-link {
  color: var(--ink);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(46,46,46,0.4);
  text-underline-offset: 2px;
  transition: color 0.15s ease;
}
.pricing-intro-link:hover { color: #000; }
.pricing-intro em { font-style: italic; }

.price-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 900px;
  margin: 0 auto;
}
.price-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.55s ease, box-shadow 0.25s ease;
}
.price-cards.in .price-card { opacity: 1; transform: none; }
.price-cards.in .price-card:nth-child(1) { transition-delay: 0.05s; }
.price-cards.in .price-card:nth-child(2) { transition-delay: 0.28s; }
.price-cards.in .price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.price-card-head {
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  padding: 22px 26px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.pc-head-icon {
  flex-shrink: 0;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  display: grid;
  place-items: center;
  color: #fff;
}
.pc-head-icon svg { width: 28px; height: 28px; }

/* Lighter variant — differentiates the first (Small Office) tile */
.price-card--light .price-card-head {
  background: linear-gradient(135deg, #34A866, #1E9A50);
}
.price-card--light .pc-head-icon { background: rgba(255,255,255,0.24); }
.price-card--light .pc-provided li::before { background-color: #34A866; }
.price-card--light .pc-price { color: #1E9A50; }
.price-card-head .pc-eyebrow {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 1.8px;
  color: rgba(255,255,255,0.82);
  margin-bottom: 4px;
}
.price-card-head .pc-name {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.2px;
  line-height: 1.1;
}
.price-card-body { padding: 24px 26px 24px; }
.pc-section-label {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.4px;
  color: var(--ink-3);
  margin-bottom: 12px;
}
.pc-assessed {
  list-style: none;
  display: flex; flex-direction: column; gap: 9px;
  margin-bottom: 22px; padding-bottom: 22px;
  border-bottom: 1px dashed var(--border-strong);
}
.pc-assessed li {
  position: relative; padding-left: 26px;
  font-size: 14px; color: var(--ink-2); line-height: 1.45;
}
.pc-assessed li::before {
  content: ""; position: absolute; left: 0; top: 3px;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--surface-3);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23909090' stroke-width='3'%3E%3Cpath d='M5 12h14'/%3E%3C/svg%3E");
  background-size: 11px; background-repeat: no-repeat; background-position: center;
}
.pc-provided { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.pc-provided li {
  position: relative; padding-left: 28px;
  font-size: 14px; color: var(--ink); line-height: 1.45; font-weight: 500;
}
.pc-provided li small { display: block; color: var(--ink-3); font-size: 12px; font-weight: 400; }
.pc-provided li::before {
  content: ""; position: absolute; left: 0; top: 2px;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--brand);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='3.4'%3E%3Cpath d='M5 12l4 4L19 7'/%3E%3C/svg%3E");
  background-size: 12px; background-repeat: no-repeat; background-position: center;
}
.price-card-foot {
  margin-top: auto;
  padding: 20px 26px 24px;
  display: flex; align-items: baseline; justify-content: space-between; gap: 12px;
  flex-wrap: wrap;
  border-top: 1px solid var(--border);
  background: var(--surface-2);
}
.pc-renew {
  width: 100%;
  text-align: right;
  margin-top: -4px;
  font-size: 11.5px;
  font-weight: 500;
  color: var(--ink-3);
  letter-spacing: 0.2px;
}
.pc-renew-amt { color: var(--ink); font-weight: 800; font-size: 1.2em; }
.pc-price-label { font-size: 13px; font-weight: 700; letter-spacing: 1px; color: var(--ink-3); }
.pc-price { font-size: 40px; font-weight: 800; color: var(--brand-dark); letter-spacing: -1.5px; line-height: 1; }
.pc-price small { font-size: 15px; font-weight: 600; color: var(--ink-3); letter-spacing: 0; }

/* ─── NZ Regulations ─────────────────────────────────── */
.regs {
  background: var(--surface-2);
  border-top: 1px solid var(--border);
  padding: 76px 24px;
}
.regs-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 460px;
  gap: 52px;
  align-items: start;
}
.regs-inner .section-eyebrow { display: block; }

/* FAQ accordion */
.regs-aside {
  position: sticky; top: 96px;
}
/* logo pops in first */
.regs-aside-logo {
  display: flex; align-items: center; justify-content: center; gap: 11px;
  text-decoration: none; margin: 27px 0;
  opacity: 0; transform: scale(.8);
  transition: opacity .4s ease, transform .5s cubic-bezier(.34,1.6,.5,1);
}
.regs-aside.in .regs-aside-logo { opacity: 1; transform: none; }
.regs-aside-logo { gap: 10.4px; }
.regs-aside-logo img { width: 60px; height: 48px; object-fit: contain; }
.regs-aside-logo .brand-name { font-weight: 700; font-size: 25px; letter-spacing: -.3px; color: var(--ink); }
.regs-aside-logo .brand-name span { color: var(--brand); }
/* box animates up afterwards */
.regs-aside .faq-card, .regs-aside .faq-contact {
  opacity: 0; transform: translateY(30px);
  transition: opacity .6s ease .3s, transform .6s cubic-bezier(.2,1,.3,1) .3s;
}
.regs-aside.in .faq-card, .regs-aside.in .faq-contact { opacity: 1; transform: none; }
.faq-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.faq-card-head {
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #fff;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.faq-card-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,0.18);
  color: #fff;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.faq-card-icon svg { width: 23px; height: 23px; }
.faq-card-head h3 {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  line-height: 1.25;
}

.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.5;
  transition: color 0.15s ease, background 0.15s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--brand-dark); background: var(--surface-2); }
.faq-chev {
  flex-shrink: 0;
  width: 16px; height: 16px;
  color: var(--ink-3);
  transition: transform 0.22s ease, color 0.15s ease;
}
.faq-item[open] summary { color: var(--brand-dark); }
.faq-item[open] .faq-chev { transform: rotate(180deg); color: var(--brand); }
.faq-contact { text-align: center; margin-top: 24px; }
.faq-contact-text { font-size: 14px; color: var(--ink-3); margin-bottom: 14px; }
.faq-contact .btn-secondary {
  background: #1A1A1A;
  color: #fff;
  border-color: #1A1A1A;
  padding-left: 50px;
  padding-right: 50px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.18);
}
.faq-contact .btn-secondary:hover {
  background: #000;
  border-color: #000;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.26);
}

.faq-answer { padding: 16px 24px 24px; }
.faq-answer p { font-size: 13.5px; color: var(--ink-2); line-height: 1.7; margin: 0 0 12px; }
.faq-answer p:last-child { margin-bottom: 0; }
.faq-answer p:first-child { font-weight: 600; color: var(--ink); }   /* short lead answer stands out */
.regs-title {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--ink);
  margin-bottom: 24px;
}
.regs-body p { font-size: 15.5px; color: var(--ink-2); line-height: 1.85; margin-bottom: 18px; }
.regs-body .regs-q { font-size: 19px; font-weight: 700; color: var(--ink); margin-top: 28px; margin-bottom: 14px; }
.regs-body a {
  color: #6B6B6B;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(107,107,107,0.4);
  text-underline-offset: 2px;
  transition: color 0.15s ease, text-decoration-color 0.15s ease;
}
.regs-body a:hover { color: var(--ink-2); text-decoration-color: var(--ink-2); }
.regs-sources {
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  font-size: 12.5px !important;
  color: var(--ink-3) !important;
  line-height: 1.7 !important;
}
.regs-sources a { font-weight: 600; }

/* ─── Closing CTA ────────────────────────────────────── */
.home-cta { text-align: center; padding: 80px 24px; }
.home-cta-title {
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.6px;
  color: var(--ink);
  margin-bottom: 28px;
}

/* ─── Footer ─────────────────────────────────────────── */
.home-footer { background: #1A1A1A; color: #B8B8B8; padding: 40px 24px 30px; }
.home-footer-top {
  max-width: 1140px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px; flex-wrap: wrap;
  padding-bottom: 26px; border-bottom: 1px solid #333;
}
.footer-name { color: #fff; }
.footer-name small { color: #888; }
.footer-actions { display: inline-flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.footer-actions .btn-light-outline,
.footer-actions .btn-white { box-sizing: border-box; width: 165px; height: 44px; min-width: 0; padding: 0 16px; font-size: 13px; letter-spacing: .85px; border-radius: 7px; gap: 7px; }
.home-footer-bottom {
  max-width: 1140px; margin: 20px auto 0;
  font-size: 11.5px; color: #777;
  display: flex; justify-content: space-between; align-items: center;
  gap: 8px 20px; flex-wrap: wrap;
}
.footer-legal { display: flex; align-items: center; gap: 12px; }
.footer-legal a { color: #8c8c8c; text-decoration: none; transition: color .15s ease; }
.footer-legal a:hover { color: #d4d4d4; text-decoration: underline; }
.footer-legal .dot { color: #4d4d4d; }

/* ── Legal pages (terms, privacy) ── */
.legal-topbar { max-width: 860px; margin: 0 auto; padding: 22px 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.legal-topbar .home-topbar-logo { text-decoration: none; }
.legal-back { color: var(--ink-2); text-decoration: none; font-size: 14px; font-weight: 600; white-space: nowrap; }
.legal-back:hover { color: var(--brand); }
.legal-wrap { max-width: 780px; margin: 0 auto; padding: 26px 24px 80px; }
.legal-head { border-bottom: 1px solid var(--border); padding-bottom: 24px; margin-bottom: 8px; }
.legal-eyebrow { color: var(--brand); font-weight: 800; font-size: 12px; letter-spacing: 1px; text-transform: uppercase; }
.legal-title { font-size: 36px; font-weight: 800; color: var(--ink); letter-spacing: -0.6px; line-height: 1.1; margin: 8px 0 10px; }
.legal-updated { color: #8a8a8a; font-size: 13.5px; }
.legal-intro { font-size: 16.5px; line-height: 1.65; color: var(--ink-2); margin: 26px 0 4px; }
.legal-wrap h2 { font-size: 19px; font-weight: 800; color: var(--ink); margin: 32px 0 10px; letter-spacing: -0.2px; }
.legal-wrap h2 .n { color: var(--brand); margin-right: 9px; }
.legal-wrap p { font-size: 15.5px; line-height: 1.7; color: var(--ink-2); margin: 0 0 14px; }
.legal-wrap ul { margin: 0 0 14px; padding-left: 22px; color: var(--ink-2); font-size: 15.5px; line-height: 1.7; }
.legal-wrap li { margin-bottom: 7px; }
.legal-wrap a { color: var(--brand-dark); }
.legal-wrap strong { color: var(--ink); font-weight: 700; }
.legal-note { background: var(--surface-2); border: 1px solid var(--border); border-left: 4px solid var(--brand); border-radius: 11px; padding: 15px 17px; font-size: 14.5px; color: var(--ink-2); margin: 24px 0; line-height: 1.6; }
.legal-note strong { color: var(--ink); }
@media (max-width: 560px) { .legal-title { font-size: 28px; } .legal-wrap { padding: 18px 20px 64px; } }

/* ─── Contact form popup ─────────────────────────────── */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(20,20,20,0.55);
  backdrop-filter: blur(3px);
  display: none; align-items: center; justify-content: center;
  z-index: 100; padding: 24px;
}
.modal-overlay.open { display: flex; }
.modal {
  background: #fff; border-radius: 16px; width: 100%; max-width: 460px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.35); overflow: hidden;
  animation: modalIn 0.25s cubic-bezier(.2,.85,.3,1.1);
}
@keyframes modalIn { from { opacity: 0; transform: translateY(16px) scale(0.98); } to { opacity: 1; transform: none; } }
.modal-head { background: linear-gradient(135deg, var(--brand), var(--brand-dark)); color: #fff; padding: 24px 26px; position: relative; }
.modal-head h3 { font-size: 20px; font-weight: 800; margin-bottom: 5px; }
.modal-head p { font-size: 13px; color: rgba(255,255,255,0.88); line-height: 1.5; }
.modal-close {
  position: absolute; top: 16px; right: 16px;
  width: 32px; height: 32px; border-radius: 8px;
  background: rgba(255,255,255,0.18); border: none; color: #fff;
  font-size: 20px; line-height: 1; cursor: pointer;
  display: grid; place-items: center; transition: background 0.15s ease;
}
.modal-close:hover { background: rgba(255,255,255,0.3); }
.modal-body { padding: 24px 26px 26px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 12px; font-weight: 700; color: var(--ink); margin-bottom: 7px; }
.field input, .field textarea {
  width: 100%; font-family: inherit; font-size: 14px; color: var(--ink);
  padding: 12px 14px; border: 1.5px solid var(--border-strong);
  border-radius: 9px; background: var(--surface-2);
  transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--brand); background: #fff;
  box-shadow: 0 0 0 3px rgba(5,139,65,0.12);
}
.field textarea { resize: vertical; min-height: 84px; }
.modal-body .btn-primary { width: 100%; margin-top: 4px; }
.modal-fine { text-align: center; margin-top: 14px; font-size: 11.5px; color: var(--ink-3); }
.form-success { display: none; text-align: center; padding: 12px 0 4px; }
.form-success.show { display: block; }
.form-success .fs-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--brand-light); color: var(--brand);
  display: grid; place-items: center; margin: 0 auto 14px;
}
.form-success .fs-icon svg { width: 30px; height: 30px; }
.form-success h4 { font-size: 18px; font-weight: 800; color: var(--ink); margin-bottom: 6px; }
.form-success p { font-size: 13.5px; color: var(--ink-2); line-height: 1.5; }

/* ─── Responsive ─────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-headline { font-size: 48px; }
  .how-step { padding: 32px; }
  .how-prow { grid-template-columns: 1fr 170px; gap: 24px; }
  .regs-inner { grid-template-columns: 1fr; gap: 36px; max-width: 760px; }
  .regs-aside { position: static; }
}
@media (max-width: 760px) {
  .home-nav { padding: 11px 16px; }
  .home-nav-actions { display: none; }
  .home-nav-burger { display: flex; }
  .brand-logo { width: 34px; }
  .home-topbar-logo { gap: 8px; }
  .brand-name { font-size: 15px; }
  .brand-name small { display: none; }
  .mobile-menu { display: flex; flex-direction: column; gap: 4px; position: absolute; left: 0; right: 0; top: 100%; background: #fff; border-bottom: 1px solid var(--border); box-shadow: 0 18px 34px rgba(0,0,0,.13); padding: 10px 14px 16px; transform: translateY(-10px); opacity: 0; pointer-events: none; transition: transform .22s ease, opacity .2s ease; }
  .mobile-menu.open { transform: none; opacity: 1; pointer-events: auto; }
  .mm-link { text-align: left; font-size: 15.5px; font-weight: 700; color: var(--ink); background: none; border: 0; padding: 14px 8px; border-radius: 9px; cursor: pointer; display: flex; align-items: center; gap: 9px; }
  .mm-link:active { background: var(--surface-2); }
  .mm-link svg { fill: var(--brand); }
  .mm-cta { margin-top: 8px; text-align: center; background: var(--brand); color: #fff; font-weight: 800; padding: 15px; border-radius: 12px; text-decoration: none; font-size: 15.5px; box-shadow: 0 8px 18px rgba(5,139,65,.22); }
  .hero { padding: 40px 18px 38px; }
  .hero-headline { font-size: 28px; line-height: 1.42; overflow-wrap: break-word; }
  .hero-strap { display: none; }
  .hero-band { padding: 48px 20px; }
  .band-title { font-size: 26px; margin-bottom: 30px; }
  .band-row { grid-template-columns: repeat(3, 1fr); gap: 26px 10px; max-width: 420px; }
  .band-circle { max-width: 130px; }
  .band-circle-label { font-size: 14px; }
  .band-disc { width: 74px; height: 74px; }
  .band-disc svg { width: 45px; height: 45px; }
  .band-disc svg.icon-case { width: 40px; height: 40px; }
  .band-disc svg.icon-laptop { width: 50px; height: 50px; margin-top: 4px; }
  .how-title, .pricing-title { font-size: 34px; }
  .how { padding-top: 57px; }
  .how-intro-list li { font-size: 16px; }
  .how-head { grid-template-columns: minmax(0, 1fr); gap: 48px; margin-bottom: 67px; }
  .how-head-text, .how-head-visual { min-width: 0; }
  .how-head-visual { align-self: center; }
  .device-stage { max-width: 100%; }
  .how-head .phone { display: none; }
  .how-head .laptop { flex: 0 1 auto; width: 100%; max-width: 340px; min-width: 0; }
  /* laptop = fixed, landscape-ish screen (not elongated); compact the content to fit */
  .laptop-screen { aspect-ratio: 7 / 5; display: flex; }
  .laptop-screen .lui { width: 100%; }
  .lui-top { padding: 9px 14px; }
  .lui-body { padding: 10px 14px; }
  .lui-headrow { margin-bottom: 6px; }
  .lui-bar { margin-bottom: 9px; }
  .lui-list { gap: 6px; }
  .how-demo-actions { flex-direction: column; margin-top: 36px; }
  .how-demo-actions .h-act { width: 100%; }
  .how-step { padding: 28px 24px; }
  /* demo modal: window hugs the video (no white bands above/below) */
  .demo-window { height: auto; max-height: 90vh; }
  .demo-window video { flex: none; width: 100%; height: auto; aspect-ratio: 1040 / 704; }
  /* tile header: number centred on top, title + subtitle full width under */
  .how-step-head { flex-direction: column; align-items: center; gap: 14px; text-align: center; }
  .how-step-num { width: 48px; height: 48px; font-size: 21px; }
  .how-step-title { width: 100%; }
  .how-step-title .t-top { font-size: 20.8px; }
  .how-step-title .t-bot { font-size: 12px; }
  .how-prow { grid-template-columns: 1fr; gap: 18px; justify-items: center; }
  .how-prow-text { justify-self: stretch; }
  .how-prow-media { width: 100%; max-width: 300px; }
  .how-prow-media.media-monitor, .how-prow-media.media-phones, .how-prow-media.media-checklist { margin-top: 0; }
  .how-everything { font-size: 36px; }
  .price-cards { grid-template-columns: 1fr; }
  .regs-title { font-size: 31px; }
  .home-cta-title { font-size: 29px; }
  .btn-lg { min-width: 0; width: 100%; }
  .footer-actions { width: 100%; }
  /* eyebrow on one line */
  .hero-eyebrow { font-size: clamp(10px, 3.1vw, 12.5px); letter-spacing: 0.6px; white-space: nowrap; flex-wrap: nowrap; }
  .eyebrow-cross { width: 20px; height: 20px; margin-right: 8px; }
  .eyebrow-cross svg { width: 11px; height: 11px; }
  /* hero CTAs: equal full width, stacked */
  .hero-cta { flex-direction: column; align-items: stretch; }
  .cta-item { display: block; width: 100%; }
  .cta-item .btn-lg { width: 100%; }
}

/* ── Mobile: keep it calm and clean. Show the mockups statically (no heavy
   entrance or looping motion) and remove the desktop "stagger" negative
   margins that overlap the text. ───────────────────────────────────────── */
@media (max-width: 760px) {
  /* hero text + reveal entrances → just appear, no slide/fade-in */
  .ht-1, .ht-2, .ht-pop1, .ht-pop2, .cta-item, .eyebrow-cross,
  .how-step, .how-head .laptop, .how-head .phone {
    opacity: 1 !important; transform: none !important;
    animation: none !important; transition: none !important;
  }
  .how-head.in .lui-bar i { width: 100% !important; transition: none !important; }

  /* laptop screen content → snappy, tight reveal on mobile (was a slow ~2s stagger) */
  .lui-top, .lui-headrow, .lui-item { transition-duration: 0.28s; }
  .how-head.in .lui-top    { transition-delay: 0.04s; }
  .how-head.in .lui-headrow{ transition-delay: 0.10s; }
  .how-head.in .lui-item:nth-child(1) { transition-delay: 0.16s; }
  .how-head.in .lui-item:nth-child(2) { transition-delay: 0.22s; }
  .how-head.in .lui-item:nth-child(3) { transition-delay: 0.28s; }
  .how-head.in .lui-item:nth-child(4) { transition-delay: 0.34s; }
  .how-head.in .lui-item:nth-child(5) { transition-delay: 0.40s; }

  /* audience icons → show immediately, drop the long staggered reveal */
  .reveal-band .band-disc, .reveal-band .band-disc svg, .reveal-band .band-circle-label {
    opacity: 1 !important; transform: none !important; transition: none !important;
  }

  /* step mockups → hold their final frame, no looping animation */
  .monitor { transition: none !important; opacity: 1 !important; transform: none !important; }
  .ascn-s, .ckcn-s, .ckcn-spin { animation: none !important; }
  .ascn-q2 { opacity: 1 !important; } .ascn-cur { display: none !important; }
  .ckcn-load { opacity: 0 !important; } .ckcn-list { opacity: 1 !important; }
  .ckcn-list .ckcn-row { animation: none !important; opacity: 1 !important; transform: none !important; }
  .callfade .cf-incoming, .callfade .cf-connected,
  .docfan .dpg, .notifstack .ncard, .emailpanel,
  .emailpanel .ep-tog, .emailpanel .ep-tog::after { transition: none !important; }
  .callfade .cf-incoming { opacity: 0 !important; } .callfade .cf-connected { opacity: 1 !important; }
  .callfade .cf-flash { animation: none !important; }
  .tphone, .tphone-front, .tphone-back { opacity: 1 !important; animation: none !important; }
  .psc { opacity: 1 !important; transform: none !important; animation: none !important; }
  .deliver .df-tool { transition: none !important; opacity: 1 !important; transform: none !important; }
  .deliver .df-bag { display: none !important; }

  /* no overlap: clear every negative "stagger" margin, centre each mockup */
  .how-prow-media,
  .how-prow-media.media-monitor, .how-prow-media.media-phones,
  .how-prow-media.media-fan, .how-prow-media.media-checklist {
    margin-top: 0 !important; margin-bottom: 0 !important; align-self: center !important;
  }
  .tphone-back { margin-top: 0 !important; }
  /* trim the empty space below the document fan down to the divider line */
  .media-fan .docfan { margin-bottom: -14px; }

  /* breathing room between text and image in each step */
  .how-prow { gap: 26px; }
}
