/* ═══════════════════════════════════════════════════════════
   LARAUNA — Main Stylesheet
   Light · premium · glassmorphism · automation in motion
   Type: Space Grotesk (display) + DM Sans (body)
═══════════════════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
[hidden] { display: none !important; }

:root {
  /* surfaces */
  --paper:      #FBFAF8;
  --surface:    #FFFFFF;
  --soft:       #F5F3EF;
  --line:       #ECE7DF;
  --line-2:     #E3DDD2;

  /* ink */
  --ink:        #17140F;
  --ink-2:      #514B43;
  --muted:      #8A8378;

  /* brand */
  --accent:     #FF5C2B;   /* coral-orange highlight */
  --accent-ink: #D6410F;   /* AA text on light */
  --accent-2:   #FF4D6D;   /* pink companion for gradients */

  /* node hues */
  --blue:       #2563EB;
  --violet:     #7C3AED;
  --emerald:    #10B981;   /* decorative dots/icons only — NOT small text (fails AA) */
  --amber:      #F59E0B;

  /* Unified semantic trio (§4.1) — ok=safe/verified · warn=caution · danger=errors ONLY.
     Coral (--accent) NEVER signals failure. Badges = tint fill + one-shade-darker AA text. */
  --ok:#16A34A;     --ok-tint:#F0FDF4;   --ok-text:#15803D;   /* green-700, AA small text on white */
  --warn:#D97706;   --warn-tint:#FFFBEB; --warn-text:#B45309;
  --danger:#DC2626; --danger-tint:#FEF2F2; --danger-text:#B91C1C;
  --indigo-on-dark:#A5B4FC; /* indigo-300 — the technical register on the dark band (§4.2) */

  --radius:     14px;
  --radius-lg:  22px;
  --radius-xl:  30px;

  --font-d: 'Space Grotesk', system-ui, sans-serif;
  --font-b: 'DM Sans', system-ui, sans-serif;

  --shadow-sm: 0 1px 2px rgba(23,20,15,.05), 0 2px 8px rgba(23,20,15,.04);
  --shadow:    0 4px 14px rgba(23,20,15,.06), 0 12px 40px rgba(23,20,15,.07);
  --shadow-lg: 0 8px 24px rgba(23,20,15,.08), 0 28px 70px rgba(23,20,15,.12);
  --ease: cubic-bezier(.22,.68,0,1);
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-b);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
::selection { background: rgba(255,92,43,.18); }

.container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 24px; }

h1, h2, h3, h4 { font-family: var(--font-d); font-weight: 600; letter-spacing: -0.02em; line-height: 1.08; color: var(--ink); }

/* ─── Buttons ─── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-b); font-weight: 600; font-size: .95rem;
  padding: 11px 20px; border-radius: 11px; border: 1px solid transparent;
  cursor: pointer; transition: all .2s var(--ease); white-space: nowrap;
}
.btn-lg { padding: 14px 26px; font-size: 1rem; border-radius: 13px; }

.btn-primary { background: linear-gradient(135deg, #221b15, #15110d); color: #fff; border-color: rgba(255,138,78,.28); box-shadow: 0 4px 14px rgba(23,20,15,.18), 0 0 22px rgba(255,92,43,.30); }
.btn-primary:hover { transform: translateY(-2px); border-color: rgba(255,138,78,.5); box-shadow: 0 8px 20px rgba(23,20,15,.22), 0 0 34px rgba(255,92,43,.5); }
/* On the dark CTA card: lift the fill + strengthen the glow so it still pops */
.cta-card .btn-primary { background: linear-gradient(135deg, #2c2219, #191310); border-color: rgba(255,150,90,.5); box-shadow: 0 6px 20px rgba(0,0,0,.35), 0 0 34px rgba(255,92,43,.55); }
.cta-card .btn-primary:hover { box-shadow: 0 8px 24px rgba(0,0,0,.4), 0 0 46px rgba(255,92,43,.72); }

.btn-ghost { background: var(--surface); color: var(--ink); border-color: var(--line-2); }
.btn-ghost:hover { border-color: var(--ink); transform: translateY(-2px); }

.btn-light { background: #fff; color: var(--ink); }
.btn-light:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(0,0,0,.18); }

.btn-accent { background: var(--accent-ink); color: #fff; box-shadow: 0 6px 20px rgba(214,65,15,.32); }
.btn-accent:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(214,65,15,.44); background: #e8480f; }

/* ─── Eyebrow + section heads ─── */
.eyebrow {
  display: inline-block; font-family: var(--font-d); font-weight: 600;
  font-size: .8rem; letter-spacing: .04em; color: var(--accent-ink);
  background: rgba(255,92,43,.09); border: 1px solid rgba(255,92,43,.2);
  padding: 5px 13px; border-radius: 100px; margin-bottom: 18px;
}
.eyebrow.light { color: #fff; background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.25); }

.sec-head { max-width: 680px; margin: 0 auto 56px; text-align: center; }
.sec-head h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); margin-bottom: 14px; }
.sec-head p { color: var(--ink-2); font-size: 1.08rem; }

.section { padding: 104px 0; }
.section-soft { background: var(--soft); }

/* ═══════════════════════════════════════════════════════════
   NAV
═══════════════════════════════════════════════════════════ */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 900;
  transition: background .3s, box-shadow .3s, backdrop-filter .3s;
}
.nav.scrolled {
  background: rgba(251,250,248,.8);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  box-shadow: 0 1px 0 var(--line);
}
.nav-inner { display: flex; align-items: center; height: 72px; gap: 28px; }

.brand { display: inline-flex; align-items: center; gap: 10px; flex-shrink: 0; }
.brand-mark { width: 34px; height: 34px; }
.brand-mark svg { width: 100%; height: 100%; filter: drop-shadow(0 4px 10px rgba(255,77,109,.3)); }
.brand-name { font-family: var(--font-d); font-weight: 700; font-size: 1.18rem; letter-spacing: -0.02em; }

.nav-links { display: flex; align-items: center; gap: 30px; margin-left: auto; }
.nav-links a { font-size: .95rem; font-weight: 500; color: var(--ink-2); transition: color .15s; position: relative; }
.nav-links a:hover { color: var(--ink); }
/* Active nav = coral (house rule: Coral ACTS / active nav). Scroll-spy in main.js
   adds .active to the link whose section is in view; underline indicator on desktop. */
.nav-links a.active { color: var(--accent-ink); }
.nav-links a.active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 2px;
  background: var(--accent); border-radius: 2px;
}
.nav-actions { display: flex; align-items: center; gap: 10px; }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; margin-left: auto; }
.hamburger span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: .25s; }

@media (max-width: 860px) {
  .nav-links {
    position: fixed; inset: 72px 0 auto 0; flex-direction: column; gap: 4px;
    background: rgba(251,250,248,.98); backdrop-filter: blur(16px);
    padding: 16px 24px 24px; border-bottom: 1px solid var(--line);
    transform: translateY(-12px); opacity: 0; pointer-events: none; transition: .25s var(--ease);
    align-items: stretch;
  }
  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-links a { padding: 12px 8px; border-bottom: 1px solid var(--line); }
  .nav-links a.active::after { display: none; } /* underline off in stacked mobile menu — colour only */
  .nav-actions { display: none; }
  .hamburger { display: flex; }
}

/* ═══════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════ */
.hero { position: relative; padding: 150px 0 90px; overflow: hidden; }

.hero-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.blob { position: absolute; border-radius: 50%; filter: blur(70px); opacity: .55; }
.blob-1 { width: 460px; height: 460px; background: radial-gradient(circle, #FFD9C2, transparent 68%); top: -120px; left: -80px; }
.blob-2 { width: 420px; height: 420px; background: radial-gradient(circle, #E7DAFF, transparent 68%); top: 40px; right: -100px; }
.blob-3 { width: 360px; height: 360px; background: radial-gradient(circle, #CFE6FF, transparent 70%); bottom: -120px; left: 38%; opacity: .4; }
.grid-dots {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(23,20,15,.06) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, #000 30%, transparent 80%);
}

.hero-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: center;
}

.pill {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: .85rem; font-weight: 500; color: var(--ink-2);
  background: var(--surface); border: 1px solid var(--line-2);
  padding: 7px 15px; border-radius: 100px; box-shadow: var(--shadow-sm); margin-bottom: 24px;
}
.pill-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--emerald); box-shadow: 0 0 0 0 rgba(16,185,129,.5); animation: ping 2.2s var(--ease) infinite; }
@keyframes ping { 0% { box-shadow: 0 0 0 0 rgba(16,185,129,.5); } 70%,100% { box-shadow: 0 0 0 7px rgba(16,185,129,0); } }

.hero-title { font-size: clamp(2.6rem, 5.6vw, 4.4rem); letter-spacing: -0.035em; margin-bottom: 22px; }
.hero-title .hl { position: relative; color: var(--accent-ink); white-space: nowrap; }
.hero-title .hl::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: .08em; height: .14em;
  background: linear-gradient(90deg, var(--accent), var(--accent-2)); border-radius: 4px; opacity: .35;
}
.hero-sub { font-size: 1.18rem; color: var(--ink-2); max-width: 520px; margin-bottom: 32px; }

.hero-cta { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; margin-bottom: 36px; }
.hero-cta-btns { display: flex; flex-wrap: wrap; gap: 12px; align-items: stretch; } /* equal-height row */
.hero-cta-link { display: inline-flex; align-items: center; gap: 6px; color: var(--ink-2); font-weight: 600; font-size: .95rem; transition: color .15s var(--ease); }
.hero-cta-link::after { content: "→"; transition: transform .15s var(--ease); }
.hero-cta-link:hover { color: var(--accent-ink); }
.hero-cta-link:hover::after { transform: translateX(3px); }

.hero-trust { display: flex; align-items: center; gap: 14px; }
.avatars { display: flex; }
.av {
  width: 38px; height: 38px; border-radius: 50%; margin-left: -10px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-d); font-size: .72rem; font-weight: 600; color: #fff;
  border: 2px solid var(--paper);
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}
.av:first-child { margin-left: 0; }
.av[style*="--i:1"] { background: linear-gradient(135deg, var(--blue), var(--violet)); }
.av[style*="--i:2"] { background: linear-gradient(135deg, var(--emerald), var(--blue)); }
.av[style*="--i:3"] { background: var(--ink); }
.trust-text { font-size: .85rem; color: var(--muted); line-height: 1.35; }
.stars { color: #F5A623; letter-spacing: 1px; font-size: .8rem; }

/* ─── Automation flow card ─── */
.hero-visual { position: relative; }
.flow-card {
  position: relative; z-index: 2;
  background: rgba(255,255,255,.72);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,.7);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  padding: 18px;
  outline: 1px solid var(--line);
}
.flow-head { display: flex; align-items: center; justify-content: space-between; padding: 4px 8px 14px; border-bottom: 1px solid var(--line); }
.flow-title { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-d); font-size: .82rem; font-weight: 500; color: var(--ink-2); }
.flow-live { width: 8px; height: 8px; border-radius: 50%; background: var(--emerald); box-shadow: 0 0 0 3px rgba(16,185,129,.15); }
.flow-tag { font-size: .68rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: var(--ok-text); background: rgba(16,185,129,.1); padding: 3px 9px; border-radius: 100px; }

.flow-canvas { position: relative; height: 340px; margin: 6px 0; }
.flow-wires { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }
.wire {
  fill: none; stroke: var(--line-2); stroke-width: 2.5;
  stroke-dasharray: 7 9; stroke-linecap: round;
  animation: flow 1.1s linear infinite;
}
@keyframes flow { to { stroke-dashoffset: -32; } }

.node {
  position: absolute; display: flex; align-items: center; gap: 10px;
  background: var(--surface); border: 1px solid var(--line-2);
  border-radius: 13px; padding: 10px 13px; box-shadow: var(--shadow-sm);
  width: max-content; max-width: 160px;
}
.node-ico { width: 30px; height: 30px; flex-shrink: 0; border-radius: 8px; display: grid; place-items: center; color: var(--c, var(--ink)); background: color-mix(in srgb, var(--c, #888) 12%, white); }
.node-ico svg { width: 17px; height: 17px; }
.node-txt { display: flex; flex-direction: column; font-size: .72rem; color: var(--muted); line-height: 1.25; }
.node-txt b { font-family: var(--font-d); font-size: .82rem; font-weight: 600; color: var(--ink); }

.node-trigger { top: 54px; left: 0; }
.node-ai {
  top: 158px; left: 50%; transform: translateX(-50%);
  flex-direction: column; text-align: center; gap: 6px; padding: 14px 16px; max-width: 130px;
  border-color: transparent; color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 10px 30px rgba(255,77,109,.35);
}
.node-ai .node-txt { color: rgba(255,255,255,.85); }
.node-ai .node-txt b { color: #fff; }
.ai-ico { width: 36px; height: 36px; display: grid; place-items: center; color: #fff; }
.ai-ico svg { width: 24px; height: 24px; }
.ai-ring { position: absolute; inset: -6px; border-radius: 18px; border: 2px solid var(--accent); opacity: .35; animation: pulsering 2.4s var(--ease) infinite; }
@keyframes pulsering { 0% { transform: scale(1); opacity: .5; } 70%,100% { transform: scale(1.18); opacity: 0; } }

.node-a1 { top: 50px; right: 0; }
.node-a2 { top: 158px; right: 0; }
.node-a3 { top: 266px; right: 0; }
.node-check { margin-left: auto; width: 18px; height: 18px; border-radius: 50%; background: var(--emerald); color: #fff; font-size: .68rem; display: grid; place-items: center; flex-shrink: 0; opacity: 0; transform: scale(.4); }
.node-check.show { animation: pop .4s var(--ease) forwards; }
@keyframes pop { to { opacity: 1; transform: scale(1); } }

.flow-foot { display: flex; gap: 10px; padding: 12px 6px 4px; border-top: 1px solid var(--line); }
.foot-stat { flex: 1; font-size: .76rem; color: var(--muted); background: var(--soft); border-radius: 10px; padding: 9px 12px; }
.foot-stat b { font-family: var(--font-d); font-size: 1.05rem; color: var(--ink); display: block; }
.foot-stat.alt b { color: var(--accent-ink); }

.float-chip {
  position: absolute; z-index: 3; font-size: .8rem; font-weight: 600; color: var(--ink);
  background: var(--surface); border: 1px solid var(--line-2); border-radius: 100px;
  padding: 8px 14px; box-shadow: var(--shadow); animation: bob 4s ease-in-out infinite;
}
.chip-1 { top: -16px; left: -22px; }
.chip-2 { top: 46%; left: -42px; animation-delay: .8s; }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }

/* ═══════════════════════════════════════════════════════════
   LOGO MARQUEE
═══════════════════════════════════════════════════════════ */
.logos { padding: 28px 0 44px; }
.logos-label { text-align: center; font-size: .85rem; color: var(--muted); margin-bottom: 26px; }
.marquee { position: relative; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 4%, #000 96%, transparent 100%); mask-image: linear-gradient(90deg, transparent 0, #000 4%, #000 96%, transparent 100%); }
.marquee-track { display: flex; align-items: center; width: max-content; animation: scroll 48s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes scroll { to { transform: translateX(-50%); } }
.logo-item { display: inline-flex; align-items: center; gap: 9px; padding: 0 28px; color: var(--ink-2); opacity: .55; transition: opacity .2s, filter .2s; filter: grayscale(1); }
.logo-item:hover { opacity: 1; filter: grayscale(0); }
.logo-item svg { height: 26px; width: auto; }
.logo-item .wm { font-family: var(--font-d); font-weight: 600; font-size: 1.18rem; letter-spacing: -0.01em; }

/* ═══════════════════════════════════════════════════════════
   SERVICES
═══════════════════════════════════════════════════════════ */
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.service-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 30px; transition: all .28s var(--ease);
  position: relative; overflow: hidden;
}
.service-card::after { content: ''; position: absolute; inset: 0; border-radius: inherit; box-shadow: inset 0 0 0 1px transparent; transition: .28s; }
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--line-2); }
.svc-ico { width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 20px; color: #fff; }
.svc-ico svg { width: 26px; height: 26px; }
.service-card h3 { font-size: 1.28rem; margin-bottom: 10px; }
.service-card > p { color: var(--ink-2); font-size: .98rem; margin-bottom: 18px; }
.svc-feats { display: flex; flex-direction: column; gap: 9px; }
.svc-feat { display: flex; align-items: center; gap: 10px; font-size: .9rem; color: var(--ink-2); }
.svc-feat svg { width: 16px; height: 16px; color: var(--emerald); flex-shrink: 0; }

/* ═══════════════════════════════════════════════════════════
   STEPS
═══════════════════════════════════════════════════════════ */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.step {
  position: relative; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 28px 24px;
}
.step-num { font-family: var(--font-d); font-size: 1rem; font-weight: 700; color: #fff; background: var(--ink); width: 38px; height: 38px; border-radius: 11px; display: grid; place-items: center; margin-bottom: 18px; }
.step:nth-child(1) .step-num { background: var(--amber); }
.step:nth-child(2) .step-num { background: var(--blue); }
.step:nth-child(3) .step-num { background: var(--violet); }
.step:nth-child(4) .step-num { background: var(--emerald); }
.step h3 { font-size: 1.18rem; margin-bottom: 10px; }
.step p { font-size: .94rem; color: var(--ink-2); }

/* ═══════════════════════════════════════════════════════════
   COST OF BUSYWORK (ROI)
═══════════════════════════════════════════════════════════ */
.roi-rate { max-width: 620px; margin: 0 auto 24px; display: flex; flex-direction: column; align-items: center; gap: 12px; text-align: center; }
/* P4b — live total card (approved mockup): fit-content, centred, coral→magenta tint. */
.roi-total { width: fit-content; max-width: 640px; margin: 0 auto 26px; text-align: center; padding: 14px 28px; background: linear-gradient(120deg, #FF5C2B12, #C1358410); border: 1px solid #FF5C2B2E; border-radius: 14px; box-shadow: 0 2px 8px rgba(23,20,15,.04); }
.roi-total-n { font-family: var(--font-d); font-weight: 700; font-size: clamp(1.5rem, 3.2vw, 2rem); letter-spacing: -.02em; color: var(--ink); line-height: 1.12; }
.roi-total-n em { font-style: normal; color: #C13584; }
.roi-total-t { font-size: .82rem; color: var(--ink-2); margin-top: 4px; }
.roi-total-reassure { font-size: .72rem; color: var(--muted); margin-top: 7px; font-style: italic; }
.roi-rate label { font-family: var(--font-d); font-weight: 600; font-size: .8rem; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); }
.roi-rate-row { display: flex; align-items: center; gap: 14px; width: 100%; }
.roi-rate-end { font-size: .8rem; color: var(--muted); font-weight: 600; flex-shrink: 0; }
.roi-rate input[type=range] {
  -webkit-appearance: none; appearance: none; flex: 1; height: 8px; border-radius: 100px; cursor: pointer;
  background: linear-gradient(90deg, var(--accent) 0%, var(--violet) var(--fill, 12%), var(--line) var(--fill, 12%), var(--line) 100%);
}
.roi-rate input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none; width: 26px; height: 26px; border-radius: 50%;
  background: #fff; border: 3px solid var(--accent-ink); box-shadow: var(--shadow); cursor: pointer; transition: transform .12s;
}
.roi-rate input[type=range]::-webkit-slider-thumb:hover { transform: scale(1.12); }
.roi-rate input[type=range]::-moz-range-thumb {
  width: 26px; height: 26px; border-radius: 50%; background: #fff; border: 3px solid var(--accent-ink); box-shadow: var(--shadow); cursor: pointer;
}
.roi-rate-val { font-family: var(--font-d); font-weight: 700; font-size: 1.55rem; color: var(--ink); white-space: nowrap; min-width: 96px; text-align: left; }
.roi-rate-val span { font-size: .9rem; color: var(--muted); font-weight: 600; }
.roi-rate-hint { font-size: .82rem; color: var(--muted); max-width: 460px; line-height: 1.5; }

.roi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.roi-head { display: flex; align-items: center; gap: 10px; }
.roi-ico { width: 34px; height: 34px; border-radius: 10px; background: rgba(255,92,43,.08); color: var(--accent-ink); display: grid; place-items: center; flex-shrink: 0; }
.roi-ico svg { width: 18px; height: 18px; }
.roi-card {
  display: flex; flex-direction: column; gap: 12px;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 26px 24px; transition: all .28s var(--ease);
}
.roi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--line-2); }
.roi-task { font-family: var(--font-d); font-weight: 600; font-size: 1.08rem; color: var(--ink); }
.roi-detail { font-size: .9rem; color: var(--ink-2); line-height: 1.5; }
.roi-cost { display: flex; flex-direction: column; gap: 2px; margin: 4px 0 2px; padding: 14px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.roi-time { font-family: var(--font-d); font-weight: 600; font-size: .82rem; color: var(--muted); text-transform: uppercase; letter-spacing: .04em; }
.roi-money { font-family: var(--font-d); font-size: 1.7rem; font-weight: 700; letter-spacing: -0.02em; line-height: 1.05; background: linear-gradient(120deg, var(--accent-ink), var(--violet)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.roi-fix { font-size: .9rem; color: var(--ink-2); line-height: 1.55; margin-top: auto; }
.roi-fix b { color: var(--ink); }
.roi-bottom { text-align: center; max-width: 640px; margin: 28px auto 0; display: flex; flex-direction: column; align-items: center; gap: 16px; }
.roi-bridge { font-size: 1.02rem; color: var(--ink-2); line-height: 1.6; }
.roi-bridge b { color: var(--ink); }
.roi-note { font-size: .8rem; color: var(--muted); max-width: 540px; line-height: 1.5; }

/* ── ROI rebuild (Part 3.1): 3 hero cards + draggable marquee ── */
.hero3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.hcard { position: relative; display: flex; flex-direction: column; gap: 12px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px 28px; transition: transform .28s var(--ease), box-shadow .28s var(--ease), border-color .28s var(--ease); }
.hcard:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--line-2); }
/* P4 — align across sibling maths cards (flex column, pinned stat/footer rows so the
   three $/yr figures sit on one baseline regardless of description length). */
.h-head { display: flex; align-items: flex-start; gap: 12px; min-height: 46px; } /* icon fixed-size, top-aligned; common title baseline */
.h-task { font-family: var(--font-d); font-weight: 600; font-size: 1.16rem; }
.h-detail { font-size: .93rem; color: var(--ink-2); line-height: 1.55; }
.h-cost { display: flex; flex-direction: column; gap: 2px; margin-top: auto; padding: 16px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); } /* stat row + tag + footer pinned to bottom */
.h-time { font-family: var(--font-d); font-weight: 600; font-size: .82rem; color: var(--muted); text-transform: uppercase; letter-spacing: .04em; }
.h-money { font-family: var(--font-d); font-size: 2rem; font-weight: 700; letter-spacing: -.02em; line-height: 1.05; background: linear-gradient(120deg, var(--accent-ink), var(--violet)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.h-fix { font-size: .92rem; color: var(--ink-2); line-height: 1.55; min-height: 5em; } /* uniform footer height (≥ the tallest fix line) so the $/yr row above it stays on a common baseline */
.h-fix b { color: var(--ink); }
.rev-tag { display: inline-flex; align-items: center; gap: 5px; font-size: .72rem; font-weight: 700; color: #0b7d5c; background: rgba(16,185,129,.10); border-radius: 999px; padding: 3px 10px; width: fit-content; }

/* Missed & after-hours calls — the REVENUE card (voice). Violet, distinct from the
   orange/accent hours×rate cards so "lost revenue" never muddies "hours saved". */
.hcard-rev { border-color: rgba(124,58,237,.32); background: linear-gradient(180deg, rgba(124,58,237,.05), var(--surface) 55%); }
.h-rev-badge { margin-left: auto; align-self: flex-start; font-size: .62rem; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; color: #fff; background: var(--violet); border-radius: 999px; padding: 3px 8px; }
.h-money-rev { background: none; -webkit-text-fill-color: currentColor; color: var(--violet); }
.rev-tag-rev { color: var(--violet); background: rgba(124,58,237,.10); }
/* The average-job-value slider sits just under the hourly-rate one; slightly tighter. */
.roi-rate-job { margin-top: -6px; }
.roi-rate-job label { color: var(--violet); }
.roi-rate-job input[type=range] { background: linear-gradient(90deg, var(--violet) 0%, #a855f7 var(--fill, 12%), var(--line) var(--fill, 12%), var(--line) 100%); }
.roi-rate-job input[type=range]::-webkit-slider-thumb { border-color: var(--violet); }
.roi-rate-job input[type=range]::-moz-range-thumb { border-color: var(--violet); }
.mq-wrap { margin-top: 34px; }
.mq-label { display: flex; align-items: center; justify-content: center; gap: 12px; font-family: var(--font-d); font-weight: 600; font-size: .8rem; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); margin-bottom: 16px; }
.mq-pause { border: 1px solid var(--line-2); background: var(--surface); color: var(--ink-2); font-size: .72rem; font-weight: 700; border-radius: 999px; padding: 4px 12px; cursor: pointer; }
.mq { position: relative; overflow-x: auto; overflow-y: hidden; cursor: grab; scrollbar-width: none; -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.mq::-webkit-scrollbar { display: none; }
.mq.dragging { cursor: grabbing; }
.mq-track { display: flex; gap: 14px; width: max-content; padding: 12px 2px; }
.roi-mini { position: relative; display: flex; align-items: center; gap: 12px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 14px 18px; width: 330px; flex-shrink: 0; }
.roi-mini .roi-ico { width: 30px; height: 30px; }
.roi-mini .roi-ico svg { width: 16px; height: 16px; }
.roi-mini b { font-family: var(--font-d); font-size: .9rem; display: block; line-height: 1.3; }
.roi-mini span.m { font-size: .78rem; color: var(--muted); }
.roi-mini .mv { margin-left: auto; font-family: var(--font-d); font-weight: 700; font-size: 1rem; background: linear-gradient(120deg, var(--accent-ink), var(--violet)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; white-space: nowrap; }
@media (max-width: 920px) { .hero3 { grid-template-columns: 1fr; } }
@media (prefers-reduced-motion: reduce) { .mq { -webkit-mask-image: none; mask-image: none; } }

/* ═══════════════════════════════════════════════════════════
   SLOGAN BAND
═══════════════════════════════════════════════════════════ */
.section-band { padding: 64px 0 0; }
.slogan-band {
  position: relative; overflow: hidden; border-radius: var(--radius-xl);
  background: linear-gradient(135deg, #1c1813 0%, #14110d 100%);
  padding: 34px 36px; display: flex; align-items: center; gap: 28px; flex-wrap: wrap;
}
.sb-glow { position: absolute; inset: 0; pointer-events: none; }
.sb-light { position: absolute; border-radius: 50%; filter: blur(34px); }
.sb-light.l1 { width: 360px; height: 360px; top: -130px; left: -50px; background: radial-gradient(circle, rgba(255,92,43,.5), transparent 62%); }
.sb-light.l2 { width: 300px; height: 300px; bottom: -120px; right: 20px; background: radial-gradient(circle, rgba(255,77,109,.3), transparent 62%); }
.sb-text { position: relative; z-index: 1; flex: 1; min-width: 250px; }
.sb-eyebrow { font-family: var(--font-d); font-weight: 600; font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; color: #FF8A5E; }
.sb-title { font-size: clamp(1.6rem, 3.2vw, 2.1rem); line-height: 1.15; color: #F7F4F1; margin: 12px 0 10px; }
.sb-title span { color: #FF8A5E; }
.sb-sub { color: rgba(255,255,255,.7); font-size: 1rem; line-height: 1.5; }
.sb-sub a { color: #FF8A5E; font-weight: 600; white-space: nowrap; }
.sb-diag { position: relative; z-index: 1; width: 300px; height: 170px; flex-shrink: 0; margin: 0 auto; }
.sb-wires { position: absolute; inset: 0; width: 100%; height: 100%; }
.sb-wirebase { fill: none; stroke: rgba(255,255,255,.16); stroke-width: 2.2; }
.sb-wire { fill: none; stroke: #FFB38F; stroke-width: 2.2; stroke-dasharray: 5 7; stroke-linecap: round; animation: sb-flow 1s linear infinite; }
@keyframes sb-flow { to { stroke-dashoffset: -24; } }
.sb-node { position: absolute; display: flex; align-items: center; gap: 6px; background: rgba(20,16,14,.5); border: 1px solid rgba(255,255,255,.22); border-radius: 9px; padding: 5px 8px; font-size: .66rem; color: #F2ECE5; white-space: nowrap; }
.sb-node .ni { display: inline-flex; color: #E6DDD4; }
.sb-node .ni svg { width: 13px; height: 13px; }
.sb-node .ck { display: inline-flex; color: var(--emerald); }
.sb-node .ck svg { width: 12px; height: 12px; }
.sb-trigger { left: 0; top: 69px; }
.sb-trigger .ni { color: #FF8A5E; }
.sb-a1 { left: 206px; top: 25px; }
.sb-a2 { left: 206px; top: 69px; }
.sb-a3 { left: 206px; top: 113px; }
.sb-core { position: absolute; left: 127px; top: 62px; width: 46px; height: 46px; border-radius: 12px; background: var(--accent); display: grid; place-items: center; color: #fff; box-shadow: 0 0 24px rgba(255,92,43,.7); }
.sb-core svg { width: 22px; height: 22px; }
.sb-core::after { content: ''; position: absolute; inset: 0; border-radius: 12px; border: 2px solid #FF8A5E; animation: sb-pulse 1.9s ease-out infinite; }
@keyframes sb-pulse { 0% { transform: scale(1); opacity: .6; } 100% { transform: scale(1.6); opacity: 0; } }

/* ═══════════════════════════════════════════════════════════
   LIVE AUTOMATION FEED
═══════════════════════════════════════════════════════════ */
.how-feed-wrap { margin-top: 44px; display: flex; flex-direction: column; align-items: center; gap: 16px; }
.how-feed-label { font-size: .92rem; color: var(--ink-2); text-align: center; }
.live-feed { width: 100%; max-width: 440px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); }
.lf-head { display: flex; align-items: center; justify-content: space-between; padding: 12px 16px; border-bottom: 1px solid var(--line); }
.lf-title { display: flex; align-items: center; gap: 8px; font-family: var(--font-d); font-weight: 600; font-size: .85rem; color: var(--ink); }
.lf-status { font-size: .72rem; color: var(--ok-text); font-weight: 600; }
.lf-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--emerald); position: relative; }
.lf-dot::after { content: ''; position: absolute; inset: 0; border-radius: 50%; background: var(--emerald); animation: sb-pulse 1.8s ease-out infinite; }
.lf-body { min-height: 176px; }
.lf-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 11px 16px; font-size: .88rem; color: var(--ink-2); border-bottom: 1px solid var(--line); animation: lf-slide .45s var(--ease); }
.lf-row:last-child { border-bottom: none; }
.lf-row .arrow { color: var(--muted); }
.lf-row .lf-ck { display: inline-flex; color: var(--emerald); flex-shrink: 0; }
.lf-row .lf-ck svg { width: 16px; height: 16px; }
@keyframes lf-slide { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }

/* ═══════════════════════════════════════════════════════════
   CASE STUDIES
═══════════════════════════════════════════════════════════ */
.cases-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.case-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 30px; transition: all .28s var(--ease);
  display: flex; flex-direction: column; gap: 14px;
}
.case-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.case-top { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.case-ind { font-size: .72rem; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; color: var(--accent-ink); background: rgba(255,92,43,.08); border: 1px solid rgba(255,92,43,.18); padding: 4px 10px; border-radius: 100px; }
.case-client { font-size: .82rem; color: var(--muted); }
.case-metric { font-family: var(--font-d); font-size: 2.8rem; font-weight: 700; letter-spacing: -0.03em; line-height: 1; background: linear-gradient(120deg, var(--accent-ink), var(--violet)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.case-metric-label { font-weight: 600; color: var(--ink); font-size: .92rem; margin-top: -6px; }
.case-card .lbl { font-size: .7rem; text-transform: uppercase; letter-spacing: .07em; color: var(--muted); font-weight: 600; display: block; margin-bottom: 3px; }
.case-card .body { font-size: .92rem; color: var(--ink-2); }

/* ═══════════════════════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════════════════════ */
.quotes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.quote {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 30px; display: flex; flex-direction: column; gap: 18px;
}
.quote .stars { font-size: .95rem; }
.quote-body { font-size: 1.02rem; color: var(--ink); line-height: 1.6; flex: 1; }
.quote-author { display: flex; align-items: center; gap: 12px; }
.q-av { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; font-family: var(--font-d); font-weight: 600; font-size: .82rem; color: #fff; background: linear-gradient(135deg, var(--blue), var(--violet)); flex-shrink: 0; }
.q-name { font-family: var(--font-d); font-weight: 600; font-size: .95rem; }
.q-role { font-size: .82rem; color: var(--muted); }

/* ═══════════════════════════════════════════════════════════
   FAQ
═══════════════════════════════════════════════════════════ */
.faq-layout { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 56px; align-items: start; }
.faq-intro { position: sticky; top: 100px; }
.faq-intro h2 { font-size: clamp(1.9rem, 4vw, 2.6rem); margin-bottom: 12px; }
.faq-intro p { color: var(--ink-2); }
.faq-intro a { color: var(--accent-ink); font-weight: 600; }
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: border-color .2s; }
.faq-item.open { border-color: var(--line-2); box-shadow: var(--shadow-sm); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 22px; background: none; border: none; cursor: pointer; text-align: left; font-family: var(--font-d); font-weight: 600; font-size: 1.02rem; color: var(--ink); }
.faq-icon { width: 24px; height: 24px; flex-shrink: 0; position: relative; }
.faq-icon::before, .faq-icon::after { content: ''; position: absolute; background: var(--ink); border-radius: 2px; transition: .25s var(--ease); }
.faq-icon::before { top: 11px; left: 4px; right: 4px; height: 2px; }
.faq-icon::after { left: 11px; top: 4px; bottom: 4px; width: 2px; }
.faq-item.open .faq-icon::after { transform: rotate(90deg); opacity: 0; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s var(--ease); }
.faq-a-inner { padding: 0 22px 20px; color: var(--ink-2); font-size: .98rem; }

/* ═══════════════════════════════════════════════════════════
   CTA
═══════════════════════════════════════════════════════════ */
.cta { padding: 40px 0 100px; }
.cta-card {
  position: relative; overflow: hidden; border-radius: var(--radius-xl);
  background: linear-gradient(135deg, #1c1813 0%, #14110d 100%);
  color: #fff; padding: 72px 40px; text-align: center;
}
.cta-glow { position: absolute; top: -40%; left: 50%; transform: translateX(-50%); width: 700px; height: 700px; background: radial-gradient(circle, rgba(255,92,43,.4), transparent 60%); filter: blur(40px); pointer-events: none; }
.cta-glow-2 { top: auto; bottom: -45%; left: auto; right: -10%; transform: none; width: 520px; height: 520px; background: radial-gradient(circle, rgba(255,77,109,.32), transparent 62%); }
.cta-inner { position: relative; z-index: 1; max-width: 620px; margin: 0 auto; }
.cta-card h2 { color: #fff; font-size: clamp(2rem, 4.5vw, 3rem); margin-bottom: 16px; }
.cta-card p { color: rgba(255,255,255,.7); font-size: 1.1rem; margin-bottom: 30px; }
.cta-actions { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.cta-or { font-size: .9rem; color: rgba(255,255,255,.6); }
.cta-or a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.cta-meta { margin-top: 22px; font-size: .88rem; color: rgba(255,255,255,.55); display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.dot-sep { opacity: .5; }

/* ═══════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════ */
.footer { background: var(--surface); border-top: 1px solid var(--line); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 48px; padding-bottom: 44px; }
.footer-brand .brand { margin-bottom: 16px; }
.footer-tag { color: var(--muted); font-size: .95rem; max-width: 320px; }
.footer-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.footer-col h4 { font-family: var(--font-d); font-size: .8rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-bottom: 14px; }
.footer-col a { display: block; font-size: .95rem; color: var(--ink-2); padding: 5px 0; transition: color .15s; }
.footer-col a:hover { color: var(--accent-ink); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 22px; padding-bottom: 22px; border-top: 1px solid var(--line); font-size: .82rem; color: var(--muted); flex-wrap: wrap; gap: 8px; }

/* ─── reveal on scroll ─── */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════ */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-copy { text-align: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .cap-strip { justify-content: center; }
  .hero-cta { align-items: center; }
  .hero-cta-btns { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-visual { max-width: 460px; margin: 0 auto; width: 100%; }
  .faq-layout { grid-template-columns: 1fr; gap: 32px; }
  .faq-intro { position: static; text-align: center; }
  .cases-grid, .quotes-grid { grid-template-columns: repeat(2, 1fr); }
  .steps, .roi-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .section { padding: 72px 0; }
  .hero { padding: 130px 0 70px; }
  /* Capability chips fill each row end-to-end on phones (content-sized, evenly spread). */
  .cap-strip { margin-bottom: 28px; }
  .cap-chip { flex: 1 1 auto; }
  /* Hero CTA on phones: both buttons full-width, equal height, evenly stacked; link centred. */
  .hero-cta { align-items: stretch; width: 100%; }
  .hero-cta-btns { flex-direction: column; width: 100%; gap: 12px; }
  .hero-cta-btns .btn { width: 100%; }
  .hero-cta-link { justify-content: center; }
  .services-grid, .cases-grid, .quotes-grid, .steps, .roi-grid, .footer-grid { grid-template-columns: 1fr; }
  .roi-rate-end { display: none; }
  .roi-rate-val { min-width: 0; text-align: center; }
  .roi-bottom .btn { width: 100%; } /* audit-bridge CTA full-width on phones (same rule as the hero, P2) */
  .section-band { padding-top: 44px; }
  .slogan-band { padding: 26px 22px; }
  .sb-text { text-align: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .float-chip { display: none; }
  .chip-1, .chip-2 { display: none; }

  /* Flow → clean vertical stack on phones (avoids node overlap) */
  .flow-canvas { height: auto; display: flex; flex-direction: column; gap: 10px; padding: 6px 0; }
  .flow-wires { display: none; }
  .node,
  .node-trigger, .node-ai, .node-a1, .node-a2, .node-a3 {
    position: static !important; transform: none !important;
    top: auto; left: auto; right: auto;
    width: 100%; max-width: none;
  }
  .node + .node { position: relative; }
  .node + .node::before { content: ''; position: absolute; top: -10px; left: 27px; width: 2px; height: 10px; background: repeating-linear-gradient(var(--line-2) 0 3px, transparent 3px 6px); }
  .node-ai { flex-direction: row; text-align: left; padding: 12px 14px; }
  .node-ai .ai-ico { width: 30px; height: 30px; }
  .node-ai .ai-ico svg { width: 18px; height: 18px; }
  .ai-ring { display: none; }
}

/* ═══════════════════════════════════════════════════════════
   NEW SECTIONS (pre-go-live) — hero trust chips + B/C/D/E/F
   Shares the site's design tokens; breakpoints match 980 / 640.
═══════════════════════════════════════════════════════════ */

/* ── Hero trust chips (A) ── */
.trust-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.tchip { display: inline-flex; align-items: center; gap: 7px; font-size: .83rem; font-weight: 600; color: var(--ink-2); background: var(--surface); border: 1px solid var(--line); border-radius: 999px; padding: 7px 14px; box-shadow: var(--shadow-sm); }
.tchip svg { width: 14px; height: 14px; stroke: var(--emerald); }

/* ── Hero capability strip (SITE-CONTENT) — what the platform now does, at a glance.
   Accent-tinted so it reads as "capabilities" distinct from the neutral trust chips. */
.cap-strip { display: flex; flex-wrap: wrap; gap: 8px; margin: 18px 0 24px; }
.cap-chip { font-size: .78rem; font-weight: 600; color: var(--accent-ink); background: rgba(255,92,43,.07); border: 1px solid rgba(255,92,43,.2); border-radius: 999px; padding: 5px 12px; text-align: center; }

/* ── Services "what automation catches for you" strip (SITE-CONTENT) ── */
.catch-strip { margin-top: 34px; display: flex; flex-wrap: wrap; align-items: center; gap: 12px 18px; justify-content: center; padding: 18px 22px; background: var(--soft); border: 1px solid var(--line); border-radius: var(--radius-lg); }
.catch-label { font-family: var(--font-d); font-weight: 700; font-size: .82rem; text-transform: uppercase; letter-spacing: .05em; color: var(--ink-2); }
.catch-items { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.catch-item { display: inline-flex; align-items: center; gap: 7px; font-size: .84rem; font-weight: 600; color: var(--ink); background: var(--surface); border: 1px solid var(--line); border-radius: 999px; padding: 6px 13px; }
.catch-item::before { content: ""; width: 13px; height: 13px; flex: none; border-radius: 50%; background: var(--emerald, #10B981) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12.5l4.5 4.5L19 7'/%3E%3C/svg%3E") center/9px no-repeat; }

/* ── Trust section (B) ── */
/* 6 claims → balanced rows at EVERY breakpoint (grid-balance rule): 3×2 desktop,
   2×3 tablet, 1×6 mobile — never an n+1 orphan. */
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 900px) { .trust-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .trust-grid { grid-template-columns: 1fr; } }
.trust-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 26px; box-shadow: var(--shadow-sm); }
.trust-card h3 { font-size: 1.05rem; margin: 14px 0 8px; }
.trust-card p { font-size: .92rem; color: var(--ink-2); line-height: 1.55; }
.t-ico { width: 42px; height: 42px; border-radius: 12px; display: flex; align-items: center; justify-content: center; color: #fff; }
.t-ico svg { width: 22px; height: 22px; }
.trust-more { margin-top: 22px; text-align: center; font-size: .95rem; }
.trust-more a { color: var(--accent-ink); font-weight: 600; }
.trust-more a:hover { color: var(--accent); }

/* ── Under the hood (C) — dark band ── */
.dark-band { background: #17140F; color: #F5F3EF; border-radius: var(--radius-xl); padding: 64px 48px; position: relative; overflow: hidden; }
.dark-band::before { content: ""; position: absolute; top: -120px; right: -80px; width: 340px; height: 340px; border-radius: 50%; background: radial-gradient(circle, rgba(255,92,43,.22), transparent 70%); }
.dark-band .eyebrow { color: #FF8A5E; background: transparent; border-color: transparent; }
.dark-band h2 { color: #FBFAF8; font-size: clamp(1.7rem, 3.4vw, 2rem); max-width: 560px; position: relative; }
.dark-band p.lead { color: #B8B0A4; max-width: 560px; margin-top: 12px; position: relative; }
.hood-breadth { color: #FF8A5E; font-size: .84rem; font-weight: 600; max-width: 560px; margin-top: 10px; position: relative; }
.hood-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 38px; position: relative; }
.hood-card { background: rgba(255,255,255,.045); border: 1px solid rgba(255,255,255,.09); border-radius: var(--radius); padding: 20px; }
.hood-card b { display: block; font-family: var(--font-d); font-size: .98rem; color: #FBFAF8; margin-bottom: 6px; }
.hood-card span { font-size: .86rem; color: #A79E90; line-height: 1.5; display: block; }
.hood-card .hk { color: var(--indigo-on-dark); font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; display: block; margin-bottom: 8px; }

/* ── Proof (D) ── */
.proof-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }
.proof-wrap h2 { font-size: clamp(1.6rem, 3.2vw, 2rem); }
.proof-wrap p { color: var(--ink-2); margin-top: 12px; line-height: 1.6; }
.dash-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow); padding: 24px; }
.dash-head { display: flex; justify-content: space-between; align-items: center; font-size: .78rem; color: var(--muted); font-weight: 600; margin-bottom: 18px; text-transform: uppercase; letter-spacing: .04em; }
.dash-live { display: inline-flex; align-items: center; gap: 6px; }
.dash-live::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--emerald); box-shadow: 0 0 8px var(--emerald); }
.big-metric { font-family: var(--font-d); font-size: 3.4rem; font-weight: 700; letter-spacing: -.03em; }
.big-metric small { font-size: 1.05rem; color: var(--muted); font-weight: 500; letter-spacing: 0; }
.metric-sub { color: var(--ok-text); font-weight: 700; font-size: .9rem; margin-top: 2px; }
.dash-rows { margin-top: 20px; border-top: 1px solid var(--line); padding-top: 14px; display: grid; gap: 10px; }
.dash-row { display: flex; justify-content: space-between; font-size: .9rem; color: var(--ink-2); }
.dash-row b { color: var(--ink); font-weight: 600; }
.dash-illus { margin-top: 16px; font-size: .76rem; color: var(--muted); line-height: 1.5; }

/* ── Demo band (E) ── */
.demo-band { background: linear-gradient(135deg, #fff, #FBF6F0); border: 1px solid var(--line-2); border-radius: var(--radius-xl); padding: 52px; display: flex; gap: 36px; align-items: center; justify-content: space-between; flex-wrap: wrap; box-shadow: var(--shadow); }
.demo-band h2 { font-size: clamp(1.6rem, 3.2vw, 1.9rem); max-width: 460px; }
.demo-band p { color: var(--ink-2); max-width: 460px; margin-top: 10px; }

/* ── Care strip (F) ── */
.care-strip { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }
.care-item { display: flex; gap: 14px; align-items: flex-start; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 18px 20px; }
.care-item svg { width: 20px; height: 20px; flex-shrink: 0; stroke: var(--accent-ink); margin-top: 3px; }
.care-item b { font-size: .95rem; display: block; font-family: var(--font-d); margin-bottom: 3px; }
.care-item span { font-size: .85rem; color: var(--ink-2); line-height: 1.5; }

@media (max-width: 980px) {
  .hood-grid { grid-template-columns: repeat(2, 1fr); }
  .proof-wrap { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 640px) {
  .hood-grid { grid-template-columns: 1fr; }
  .dark-band { padding: 44px 24px; }
  .demo-band { padding: 34px 24px; }
  .big-metric { font-size: 2.8rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}
