/* =========================================================
   THE SMART FELLOWS — Hi-Fi Design System
   Display / UI : Archivo   ·   Body : Source Serif 4
   Brand (official): Teal #137E91 · Orange #F0541E · Slate ink #1B2730
   ========================================================= */
:root{
  /* ---- brand: teal (primary) ---- */
  --teal:#137E91; --teal-700:#0E6172; --teal-800:#0A4A57;
  --teal-300:#6CBAC9; --teal-100:#CFE6EB; --teal-50:#E9F3F5;
  /* ---- brand: orange (accent / conversion) ---- */
  --orange:#F0541E; --orange-600:#D8430F; --orange-700:#B5360B;
  --orange-100:#FBD8CB; --orange-50:#FDEDE7;
  /* ---- slate ink + neutrals ---- */
  --ink:#1B2730; --ink-2:#3C4A53; --muted:#586771; --faint:#6F7E85;
  --line:#E4EAEC; --line-2:#CFD9DC;
  --paper:#ffffff; --bg:#F4F8F9; --bg-2:#EAF1F3;
  /* ---- dark sections (slate-derived) ---- */
  --dark:#16242D; --dark-2:#1F3A43; --navy:#16242D; --navy-2:#1F3A43;
  /* ---- semantic ---- */
  --pos:#1F9D57; --neg:#C0392B;
  /* ---- type ---- */
  --sans:'Archivo',system-ui,-apple-system,sans-serif;
  --serif:'Source Serif 4',Georgia,'Times New Roman',serif;
  --fs-display:clamp(40px,5vw,62px);
  --fs-h1:clamp(34px,4.2vw,52px);
  --fs-h2:clamp(29px,3.3vw,42px);
  --fs-lead:clamp(19px,1.6vw,21px);
  /* ---- spacing scale ---- */
  --s-1:4px; --s-2:8px; --s-3:12px; --s-4:16px; --s-5:24px;
  --s-6:32px; --s-7:48px; --s-8:64px; --s-9:96px;
  --section-y:clamp(64px,8.5vw,104px);
  /* ---- radius + shadow ---- */
  --r-sm:10px; --r:16px; --r-lg:24px; --r-xl:32px; --r-pill:100px;
  --sh-1:0 1px 2px rgba(27,39,48,.06), 0 2px 6px rgba(27,39,48,.05);
  --sh-2:0 4px 12px rgba(27,39,48,.08), 0 12px 30px rgba(27,39,48,.07);
  --sh-3:0 20px 50px rgba(27,39,48,.16);
  --maxw:1200px;
}
*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; -webkit-text-size-adjust:100%; }
body{
  margin:0; background:var(--paper); color:var(--ink);
  font-family:var(--serif); font-size:18px; line-height:1.62;
  -webkit-font-smoothing:antialiased; text-rendering:optimizeLegibility;
}
img,svg{ max-width:100%; display:block; }
a{ color:var(--teal-700); text-decoration:none; }
h1,h2,h3,h4,h5{ font-family:var(--sans); font-weight:700; line-height:1.08; letter-spacing:-.02em; margin:0; color:var(--ink); text-wrap:balance; }
p{ margin:0; text-wrap:pretty; }
.container{ max-width:var(--maxw); margin:0 auto; padding:0 32px; }
.section{ padding:var(--section-y) 0; }
.section.tight{ padding:clamp(48px,6vw,72px) 0; }
main{ display:block; }

/* ---------- accessibility helpers ---------- */
.skip-link{ position:absolute; left:16px; top:-60px; z-index:300; background:var(--ink); color:#fff;
  font-family:var(--sans); font-weight:600; font-size:15px; padding:12px 20px; border-radius:0 0 var(--r-sm) var(--r-sm);
  transition:top .18s ease; }
.skip-link:focus{ top:0; color:#fff; outline:3px solid var(--teal-300); outline-offset:2px; }
.sr-only{ position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0 0 0 0); white-space:nowrap; border:0; }
:focus-visible{ outline:3px solid var(--teal); outline-offset:2px; border-radius:4px; }
.btn:focus-visible{ outline-offset:3px; }

/* ---------- buttons ---------- */
.btn{ font-family:var(--sans); font-weight:600; font-size:16px; line-height:1.1;
  display:inline-flex; align-items:center; justify-content:center; gap:9px; cursor:pointer; border:1.5px solid transparent;
  padding:14px 24px; border-radius:var(--r-pill); transition:transform .16s ease, background .16s ease, box-shadow .16s ease, border-color .16s ease; white-space:nowrap; }
.btn svg{ width:17px; height:17px; flex:0 0 auto; }
.btn-primary{ background:var(--teal); color:#fff; box-shadow:0 6px 16px rgba(19,126,145,.26); }
.btn-primary:hover{ background:var(--teal-700); transform:translateY(-1px); box-shadow:0 10px 22px rgba(19,126,145,.32); }
.btn-accent{ background:var(--orange); color:#fff; box-shadow:0 6px 16px rgba(240,84,30,.26); font-weight:700; }
.btn-accent:hover{ background:var(--orange-600); transform:translateY(-1px); box-shadow:0 10px 24px rgba(240,84,30,.3); }
.btn-ghost{ background:transparent; color:var(--ink); border-color:var(--line-2); }
.btn-ghost:hover{ border-color:var(--ink); background:var(--bg); }
.btn-light{ background:#fff; color:var(--ink); font-weight:700; }
.btn-light:hover{ background:var(--teal-50); }
.btn-onnavy{ background:rgba(255,255,255,.10); color:#fff; border-color:rgba(255,255,255,.26); }
.btn-onnavy:hover{ background:rgba(255,255,255,.18); }
.btn-lg{ padding:17px 30px; font-size:18px; }
.btn-sm{ padding:10px 18px; font-size:14px; }
.btn-block{ width:100%; }

/* ---------- utility type ---------- */
.eyebrow{ font-family:var(--sans); font-weight:700; font-size:13px; letter-spacing:.14em; text-transform:uppercase; color:var(--teal-700); display:inline-block; }
.eyebrow.on-navy{ color:var(--teal-300); }
.lead{ font-size:var(--fs-lead); color:var(--ink-2); line-height:1.55; }
.muted{ color:var(--muted); }
.center{ text-align:center; }
.kicker-wrap{ max-width:700px; }
.kicker-wrap.center{ margin:0 auto; }
.sec-title{ font-size:var(--fs-h2); margin:14px 0 0; }
.sec-sub{ font-size:19px; color:var(--muted); margin-top:16px; line-height:1.55; }
.chip{ font-family:var(--sans); font-size:13px; font-weight:600; color:var(--teal-700);
  background:var(--teal-50); border-radius:var(--r-pill); padding:6px 13px; display:inline-block; }
.tagpill{ font-family:var(--sans); font-size:12.5px; font-weight:600; letter-spacing:.04em; text-transform:uppercase;
  color:var(--muted); border:1px solid var(--line-2); border-radius:var(--r-pill); padding:6px 13px; display:inline-block; }

/* certified-partner badge (key differentiator) */
.partner-badges{ display:flex; gap:10px; flex-wrap:wrap; }
.pbadge{ display:inline-flex; align-items:center; gap:9px; font-family:var(--sans); font-weight:600; font-size:13.5px;
  color:var(--ink-2); background:#fff; border:1px solid var(--line-2); border-radius:var(--r-pill); padding:8px 15px 8px 11px; box-shadow:var(--sh-1); }
.pbadge .dot{ width:22px; height:22px; border-radius:50%; display:grid; place-items:center; color:#fff; flex:0 0 auto; }
.pbadge .dot svg{ width:13px; height:13px; }
.pbadge .dot.amz{ background:linear-gradient(135deg,#FF9900,#E47911); }
.pbadge .dot.wmt{ background:linear-gradient(135deg,#0071DC,#004F9A); }
.pbadge.on-navy{ background:rgba(255,255,255,.06); border-color:rgba(255,255,255,.18); color:#dbe6ea; }

/* ---------- header ---------- */
.site-header{ position:sticky; top:0; z-index:120; background:rgba(255,255,255,.88);
  backdrop-filter:saturate(150%) blur(12px); -webkit-backdrop-filter:saturate(150%) blur(12px); border-bottom:1px solid var(--line); }
.nav{ display:flex; align-items:center; gap:34px; height:76px; }
.nav .brand{ display:flex; align-items:center; flex:0 0 auto; }
.nav .brand img{ height:40px; width:auto; }
.nav .links{ display:flex; gap:28px; margin-left:6px; }
.nav .links a{ font-family:var(--sans); font-weight:600; font-size:15.5px; color:var(--ink-2); position:relative; padding:8px 0; }
.nav .links a:hover{ color:var(--teal-700); }
.nav .links a.active{ color:var(--ink); }
.nav .links a.active::after{ content:""; position:absolute; left:0; right:0; bottom:0; height:2px; background:var(--orange); border-radius:2px; }
.nav .nav-cta{ margin-left:auto; display:flex; align-items:center; gap:16px; }
.nav .nav-cta .phone{ font-family:var(--sans); font-weight:600; font-size:14.5px; color:var(--muted); display:inline-flex; align-items:center; gap:7px; }
.nav .nav-cta .phone svg{ width:15px; height:15px; color:var(--teal); }
.menu-toggle{ display:none; margin-left:auto; width:46px; height:46px; border:1px solid var(--line-2); border-radius:12px; background:#fff;
  align-items:center; justify-content:center; cursor:pointer; color:var(--ink); }
.menu-toggle svg{ width:22px; height:22px; }
.menu-toggle .x{ display:none; }
.menu-toggle[aria-expanded="true"] .bars{ display:none; }
.menu-toggle[aria-expanded="true"] .x{ display:block; }
.mobile-nav{ display:none; }
.mobile-nav .inner{ border-top:1px solid var(--line); padding:14px 0 22px; }
.mobile-nav a.m-link{ display:block; font-family:var(--sans); font-weight:600; font-size:17px; color:var(--ink); padding:14px 4px; border-bottom:1px solid var(--line); }
.mobile-nav .m-cta{ margin-top:18px; display:flex; flex-direction:column; gap:10px; }
.mobile-nav .m-phone{ font-family:var(--sans); font-weight:600; color:var(--muted); padding:12px 4px 0; }

/* ---------- footer ---------- */
.site-footer{ background:var(--dark); color:#cdd9de; padding:72px 0 36px; }
.site-footer .ft-grid{ display:grid; grid-template-columns:1.7fr 1fr 1fr 1.1fr; gap:40px; }
.site-footer .ft-brand img{ height:42px; width:auto; margin-bottom:18px; }
.site-footer .ft-brand p{ font-size:16px; color:#9fb1b8; max-width:330px; font-family:var(--serif); line-height:1.55; }
.site-footer .ft-brand .partner-badges{ margin-top:20px; }
.site-footer h5{ color:#fff; font-size:13px; letter-spacing:.1em; text-transform:uppercase; margin-bottom:14px; font-family:var(--sans); font-weight:700; }
.site-footer a{ display:block; color:#b9c8ce; font-family:var(--sans); font-size:15px; font-weight:500; padding:6px 0; }
.site-footer a:hover{ color:#fff; }
.site-footer .ft-bottom{ display:flex; justify-content:space-between; align-items:center; gap:20px;
  margin-top:52px; padding-top:26px; border-top:1px solid rgba(255,255,255,.12); font-family:var(--sans); font-size:14px; color:#8fa3aa; flex-wrap:wrap; }
.site-footer .ft-bottom .socials{ display:flex; gap:12px; }
.site-footer .ft-bottom .socials a{ width:36px; height:36px; border-radius:50%; border:1px solid rgba(255,255,255,.18);
  display:grid; place-items:center; color:#b9c8ce; padding:0; }
.site-footer .ft-bottom .socials a:hover{ color:#fff; border-color:rgba(255,255,255,.4); background:rgba(255,255,255,.06); }
.site-footer .ft-bottom .socials svg{ width:16px; height:16px; }

/* ===========================================================
   HOMEPAGE — HERO
   =========================================================== */
.hero{ position:relative; overflow:hidden; background:
   radial-gradient(1100px 540px at 88% -8%, var(--teal-50), transparent 60%),
   linear-gradient(180deg,#fff, var(--bg)); }
.hero .container{ display:grid; grid-template-columns:1.05fr .95fr; gap:56px; align-items:center; padding-top:84px; padding-bottom:90px; }
.hero h1{ font-size:var(--fs-display); line-height:1.02; }
.hero h1 .u{ color:var(--teal); position:relative; white-space:nowrap; }
.hero h1 .u::after{ content:""; position:absolute; left:0; right:0; bottom:.02em; height:.13em; background:var(--orange); opacity:.9; border-radius:3px; }
.hero .lead{ margin:24px 0 30px; max-width:540px; }
.hero-cta{ display:flex; gap:14px; align-items:center; flex-wrap:wrap; }
.hero-trust{ display:flex; align-items:center; gap:14px; margin-top:28px; font-family:var(--sans); font-size:14.5px; color:var(--muted); flex-wrap:wrap; }
.hero-trust .stars{ color:var(--orange); letter-spacing:2px; font-size:16px; }
.hero-trust .divider{ width:1px; height:18px; background:var(--line-2); }
.hero .partner-badges{ margin-top:20px; }

/* PulseBoard dashboard mock */
.dash{ position:relative; }
.dash .card{ background:#fff; border:1px solid var(--line); border-radius:var(--r); box-shadow:var(--sh-2); }
.dash .main{ padding:22px 22px 18px; }
.dash .main .top{ display:flex; justify-content:space-between; align-items:center; margin-bottom:4px; }
.dash .main .top .t{ font-family:var(--sans); font-weight:700; font-size:15px; color:var(--ink); display:inline-flex; align-items:center; gap:8px; }
.dash .main .top .t .live{ width:8px; height:8px; border-radius:50%; background:var(--pos); box-shadow:0 0 0 3px rgba(31,157,87,.18); }
.dash .main .top .badge{ font-family:var(--sans); font-size:12px; font-weight:600; color:var(--teal-700); background:var(--teal-50); padding:5px 10px; border-radius:var(--r-pill); }
.dash .subt{ font-family:var(--sans); font-size:12px; font-weight:600; color:var(--faint); letter-spacing:.02em; }
.dash .bignum{ font-family:var(--sans); font-weight:800; font-size:40px; letter-spacing:-.02em; color:var(--ink); margin-top:6px; }
.dash .bignum .up{ font-size:15px; color:var(--pos); font-weight:700; margin-left:8px; }
.dash .chart{ display:flex; align-items:flex-end; gap:10px; height:108px; margin-top:18px; }
.dash .chart .bar{ flex:1; background:linear-gradient(180deg,var(--teal-300),var(--teal)); border-radius:6px 6px 3px 3px; opacity:.95; }
.dash .chart .bar.alt{ background:linear-gradient(180deg,#F7B59C,var(--orange)); }
.dash .kpis{ display:grid; grid-template-columns:1fr 1fr; gap:14px; margin-top:18px; }
.dash .kpi{ background:#fff; border:1px solid var(--line); border-radius:var(--r-sm); padding:14px 16px; box-shadow:var(--sh-1); }
.dash .kpi .lbl{ font-family:var(--sans); font-size:12px; font-weight:600; letter-spacing:.04em; text-transform:uppercase; color:var(--muted); }
.dash .kpi .val{ font-family:var(--sans); font-weight:800; font-size:24px; color:var(--ink); margin-top:6px; }
.dash .kpi .val small{ font-size:13px; color:var(--pos); font-weight:700; }
.dash .float{ position:absolute; background:#fff; border:1px solid var(--line); border-radius:14px; box-shadow:var(--sh-3); padding:13px 16px; display:flex; align-items:center; gap:12px; font-family:var(--sans); }
.dash .float .ic{ width:38px; height:38px; border-radius:10px; display:grid; place-items:center; flex:0 0 auto; }
.dash .float .ic svg{ width:20px; height:20px; }
.dash .float .ic.teal{ background:var(--teal-50); color:var(--teal-700); }
.dash .float .ic.orange{ background:var(--orange-50); color:var(--orange-600); }
.dash .float .ft{ font-size:12px; color:var(--muted); font-weight:500; }
.dash .float .fv{ font-size:17px; font-weight:800; color:var(--ink); }
.dash .float.f1{ top:-22px; left:-26px; }
.dash .float.f2{ bottom:-22px; right:-22px; }

/* logo strip */
.logostrip{ border-top:1px solid var(--line); border-bottom:1px solid var(--line); background:#fff; }
.logostrip .container{ padding-top:34px; padding-bottom:34px; }
.logostrip .lbl{ text-align:center; font-family:var(--sans); font-size:13px; font-weight:600; letter-spacing:.1em; text-transform:uppercase; color:var(--muted); margin-bottom:22px; }
.logostrip .row{ display:flex; justify-content:space-between; align-items:center; gap:30px; flex-wrap:wrap; }
.logostrip .row .lg{ font-family:var(--sans); font-weight:800; font-size:20px; color:#a9b8be; letter-spacing:-.01em; flex:1 1 auto; text-align:center; }

/* stats band */
.stats{ background:var(--dark); background-image:radial-gradient(720px 360px at 12% 0%, var(--dark-2), transparent 60%); color:#fff; }
.stats .grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:30px; }
.stats .st{ text-align:center; padding:6px 8px; }
.stats .st .n{ font-family:var(--sans); font-weight:800; font-size:clamp(38px,4vw,52px); letter-spacing:-.03em; }
.stats .st .n .ac{ color:var(--teal-300); }
.stats .st .l{ font-family:var(--sans); font-size:15px; color:#a9bcc3; margin-top:8px; }
.stats .st + .st{ border-left:1px solid rgba(255,255,255,.1); }

/* ===========================================================
   RETAIL MEDIA SPOTLIGHT (Amazon + Walmart — the differentiator)
   =========================================================== */
.retail{ background:var(--bg); }
.retail .rm-head{ display:grid; grid-template-columns:1.1fr .9fr; gap:40px; align-items:end; }
.retail .rm-head .actions{ display:flex; gap:12px; flex-wrap:wrap; justify-content:flex-end; align-items:center; }
.rm-grid{ display:grid; grid-template-columns:1fr 1fr; gap:24px; margin-top:44px; }
.rm-card{ background:#fff; border:1px solid var(--line); border-radius:var(--r-lg); padding:32px; box-shadow:var(--sh-1); position:relative; overflow:hidden; display:flex; flex-direction:column; }
.rm-card .platform-row{ display:flex; align-items:center; justify-content:space-between; gap:14px; margin-bottom:18px; }
.rm-card .plogo{ font-family:var(--sans); font-weight:800; font-size:24px; letter-spacing:-.02em; color:var(--ink); display:inline-flex; align-items:center; gap:11px; }
.rm-card .plogo .mk{ width:40px; height:40px; border-radius:11px; display:grid; place-items:center; color:#fff; flex:0 0 auto; }
.rm-card .plogo .mk svg{ width:22px; height:22px; }
.rm-card .plogo .mk.amz{ background:linear-gradient(135deg,#FF9900,#E47911); }
.rm-card .plogo .mk.wmt{ background:linear-gradient(135deg,#0071DC,#004F9A); }
.rm-card .pp{ font-family:var(--sans); font-size:12px; font-weight:700; letter-spacing:.06em; text-transform:uppercase; color:var(--teal-700); background:var(--teal-50); padding:6px 11px; border-radius:var(--r-pill); }
.rm-card .desc{ font-size:16px; color:var(--ink-2); line-height:1.5; }
.rm-card ul{ list-style:none; margin:18px 0 0; padding:0; display:grid; gap:11px; }
.rm-card ul li{ display:flex; gap:11px; align-items:flex-start; font-size:15.5px; color:var(--ink-2); font-family:var(--sans); }
.rm-card ul li .ck{ width:20px; height:20px; border-radius:50%; background:var(--teal-50); color:var(--teal-700); display:grid; place-items:center; flex:0 0 auto; margin-top:1px; }
.rm-card ul li .ck svg{ width:12px; height:12px; }
.rm-card .rm-foot{ margin-top:24px; padding-top:20px; border-top:1px solid var(--line); display:flex; align-items:baseline; gap:10px; }
.rm-card .rm-foot .big{ font-family:var(--sans); font-weight:800; font-size:30px; letter-spacing:-.02em; color:var(--teal); }
.rm-card .rm-foot .cap{ font-family:var(--sans); font-size:13.5px; color:var(--muted); }
/* eight-pillar spine */
.pillars-spine{ margin-top:28px; background:#fff; border:1px solid var(--line); border-radius:var(--r-lg); padding:26px 30px; box-shadow:var(--sh-1); }
.pillars-spine .ttl{ font-family:var(--sans); font-weight:700; font-size:15px; color:var(--ink); margin-bottom:16px; display:flex; align-items:center; gap:10px; }
.pillars-spine .ttl .chip{ font-size:12px; }
.pillars-spine .row{ display:flex; flex-wrap:wrap; gap:10px; }
.pillars-spine .sp{ font-family:var(--sans); font-weight:600; font-size:13.5px; color:var(--ink-2); background:var(--bg-2); border:1px solid var(--line); border-radius:var(--r-pill); padding:8px 14px; display:inline-flex; align-items:center; gap:8px; }
.pillars-spine .sp .n{ font-weight:800; color:var(--teal); font-size:12px; }

/* ===========================================================
   PRODUCTIZED PLATFORM
   =========================================================== */
.platform{ background:var(--dark); color:#fff; background-image:radial-gradient(820px 420px at 85% -10%, var(--dark-2), transparent 55%); }
.platform .eyebrow{ color:var(--teal-300); }
.platform .sec-title{ color:#fff; }
.platform .sec-sub{ color:#aebfc6; }
.plat-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px; margin-top:46px; }
.plat-card{ background:rgba(255,255,255,.05); border:1px solid rgba(255,255,255,.12); border-radius:var(--r-lg); padding:30px; display:flex; flex-direction:column; }
.plat-card .ic{ width:50px; height:50px; border-radius:13px; background:rgba(108,186,201,.16); color:var(--teal-300); display:grid; place-items:center; margin-bottom:20px; }
.plat-card .ic svg{ width:25px; height:25px; }
.plat-card h3{ color:#fff; font-size:21px; }
.plat-card .tag{ font-family:var(--sans); font-size:12px; font-weight:700; letter-spacing:.05em; text-transform:uppercase; color:var(--orange); margin-top:6px; }
.plat-card p{ color:#aebfc6; font-size:15.5px; margin-top:12px; line-height:1.55; flex:1; }
.plat-card .metric{ font-family:var(--sans); margin-top:20px; padding-top:18px; border-top:1px solid rgba(255,255,255,.12); }
.plat-card .metric b{ font-weight:800; font-size:20px; color:#fff; }
.plat-card .metric span{ display:block; font-size:13px; color:#9fb1b8; margin-top:2px; }

/* pillars (services preview — mirrors Services Index card style) */
.pillars-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px; margin-top:46px; }
.pcard{ background:#fff; border:1px solid var(--line); border-radius:var(--r); padding:28px; box-shadow:var(--sh-1); transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease; display:flex; flex-direction:column; }
.pcard:hover{ box-shadow:var(--sh-2); transform:translateY(-3px); border-color:var(--teal-300); }
.pcard .ic{ width:50px; height:50px; border-radius:13px; background:var(--teal-50); color:var(--teal-700); display:grid; place-items:center; margin-bottom:18px; }
.pcard .ic svg{ width:25px; height:25px; }
.pcard h3{ font-size:21px; }
.pcard p{ font-size:16px; color:var(--muted); margin-top:10px; flex:1; line-height:1.5; }
.pcard .foot{ display:flex; align-items:center; justify-content:space-between; margin-top:20px; padding-top:16px; border-top:1px solid var(--line); }
.pcard .foot .cnt{ font-family:var(--sans); font-size:13.5px; font-weight:600; color:var(--muted); }
.pcard .foot .go{ font-family:var(--sans); font-size:14px; font-weight:600; color:var(--teal-700); display:inline-flex; align-items:center; gap:6px; }
.pcard .foot .go svg{ width:16px; height:16px; transition:transform .18s ease; }
.pcard:hover .foot .go svg{ transform:translateX(3px); }

/* why-us / value props */
.why{ background:var(--bg); }
.why-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:26px; margin-top:46px; }
.vprop{ background:#fff; border:1px solid var(--line); border-radius:var(--r); padding:30px; box-shadow:var(--sh-1); }
.vprop .ic{ width:48px; height:48px; border-radius:12px; background:var(--orange-50); color:var(--orange-600); display:grid; place-items:center; margin-bottom:18px; }
.vprop .ic svg{ width:24px; height:24px; }
.vprop h3{ font-size:20px; }
.vprop p{ font-size:16px; color:var(--muted); margin-top:10px; line-height:1.55; }

/* process — 5-phase delivery framework */
.steps{ display:grid; grid-template-columns:repeat(5,1fr); gap:0; margin-top:50px; }
.pstep{ position:relative; padding:0 24px; }
.pstep:first-child{ padding-left:0; }
.pstep + .pstep{ border-left:1px solid var(--line); }
.pstep .n{ font-family:var(--sans); font-weight:800; font-size:16px; color:#fff; background:var(--teal);
  width:42px; height:42px; border-radius:50%; display:grid; place-items:center; margin-bottom:18px; box-shadow:0 6px 14px rgba(19,126,145,.3); }
.pstep:nth-child(2) .n{ background:var(--teal); }
.pstep:nth-child(3) .n{ background:var(--teal-700); }
.pstep:nth-child(4) .n{ background:var(--orange); box-shadow:0 6px 14px rgba(240,84,30,.3); }
.pstep:nth-child(5) .n{ background:var(--ink); box-shadow:none; }
.pstep h3{ font-size:18px; }
.pstep p{ font-size:14.5px; color:var(--muted); margin-top:9px; line-height:1.5; }

/* proof / cases */
.cases{ display:grid; grid-template-columns:repeat(3,1fr); gap:24px; margin-top:46px; }
.case{ background:#fff; border:1px solid var(--line); border-radius:var(--r); overflow:hidden; box-shadow:var(--sh-1); transition:transform .2s ease, box-shadow .2s ease; display:flex; flex-direction:column; }
.case:hover{ box-shadow:var(--sh-2); transform:translateY(-3px); }
.case .ph{ height:172px; position:relative; overflow:hidden; }
.case .ph .label{ position:absolute; left:16px; top:16px; z-index:2; }
.case .ph .tagpill{ background:rgba(255,255,255,.94); border-color:transparent; color:var(--ink-2); }
.case .body{ padding:24px; display:flex; flex-direction:column; flex:1; }
.case h3{ font-size:20px; }
.case .sub{ font-family:var(--sans); font-size:13.5px; color:var(--muted); margin-top:4px; }
.case .res{ display:flex; align-items:baseline; gap:10px; margin-top:14px; }
.case .res .big{ font-family:var(--sans); font-weight:800; font-size:38px; letter-spacing:-.03em; line-height:1; }
.case .res.up .big{ color:var(--pos); } .case .res.teal .big{ color:var(--teal); } .case .res.orange .big{ color:var(--orange); }
.case .res .cap{ font-size:13.5px; color:var(--muted); line-height:1.3; }
.case .link{ font-family:var(--sans); font-weight:600; font-size:14.5px; color:var(--teal-700); margin-top:auto; padding-top:18px; display:inline-flex; gap:6px; align-items:center; }
.case .link svg{ width:16px; height:16px; transition:transform .18s ease; }
.case:hover .link svg{ transform:translateX(3px); }
.gradA{ background:linear-gradient(135deg,var(--teal),var(--dark)); }
.gradB{ background:linear-gradient(135deg,var(--orange),#B5360B); }
.gradC{ background:linear-gradient(135deg,var(--teal-700),var(--teal-300)); }
.case .ph .watermark{ position:absolute; right:-8px; bottom:-20px; font-family:var(--sans); font-weight:800; font-size:92px; color:rgba(255,255,255,.14); line-height:1; }
.proof-note{ text-align:center; font-family:var(--sans); font-size:13.5px; color:var(--faint); margin-top:30px; }

/* testimonial */
.quote{ background:var(--dark); color:#fff; background-image:radial-gradient(700px 380px at 85% 110%, var(--dark-2), transparent 60%); }
.quote .container{ max-width:920px; text-align:center; }
.quote .qm{ font-family:var(--sans); font-weight:800; font-size:80px; color:var(--teal-300); line-height:.5; height:42px; }
.quote blockquote{ font-family:var(--serif); font-size:clamp(24px,2.7vw,32px); line-height:1.4; margin:0 0 30px; font-weight:500; }
.quote .who{ display:flex; align-items:center; justify-content:center; gap:14px; }
.quote .who .av{ width:52px; height:52px; border-radius:50%; background:linear-gradient(135deg,var(--teal),var(--teal-700)); display:grid; place-items:center; color:#fff; font-family:var(--sans); font-weight:800; font-size:18px; }
.quote .who .meta{ text-align:left; font-family:var(--sans); }
.quote .who .meta b{ display:block; font-size:16px; color:#fff; }
.quote .who .meta span{ font-size:14px; color:#a9bcc3; }

/* ===========================================================
   LEAD-CAPTURE / FREE AUDIT (shared, injected by site.js)
   =========================================================== */
.leadcap{ background:var(--bg); border-top:1px solid var(--line); }
.leadcap .container{ display:grid; grid-template-columns:1.04fr .96fr; gap:56px; align-items:start; }
.lc-copy h2{ font-size:var(--fs-h2); }
.lc-copy .lead{ margin-top:18px; max-width:480px; }
.lc-list{ list-style:none; margin:28px 0 0; padding:0; display:grid; gap:16px; }
.lc-list li{ display:flex; gap:14px; align-items:flex-start; }
.lc-list li .ck{ width:26px; height:26px; border-radius:50%; background:var(--teal-50); color:var(--teal-700); display:grid; place-items:center; flex:0 0 auto; margin-top:2px; }
.lc-list li .ck svg{ width:15px; height:15px; }
.lc-list li b{ font-family:var(--sans); font-size:16.5px; color:var(--ink); display:block; }
.lc-list li span{ font-size:15.5px; color:var(--muted); }
.lc-meta{ display:flex; align-items:center; gap:14px; margin-top:30px; font-family:var(--sans); font-size:14px; color:var(--muted); flex-wrap:wrap; }
.lc-meta .stars{ color:var(--orange); letter-spacing:2px; }

.lc-form{ background:#fff; border:1px solid var(--line); border-radius:var(--r-lg); box-shadow:var(--sh-2); padding:32px; }
.lc-form .form-head{ font-family:var(--sans); margin-bottom:22px; }
.lc-form .form-head h3{ font-size:22px; }
.lc-form .form-head p{ font-size:15px; color:var(--muted); margin-top:6px; }
.lc-form .field{ margin-bottom:16px; }
.lc-form .field.row2{ display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.lc-form label{ display:block; font-family:var(--sans); font-weight:600; font-size:13.5px; color:var(--ink-2); margin-bottom:7px; }
.lc-form label .req{ color:var(--orange); }
.lc-form input, .lc-form select, .lc-form textarea{
  width:100%; font-family:var(--sans); font-size:15.5px; color:var(--ink); background:#fff;
  border:1.5px solid var(--line-2); border-radius:var(--r-sm); padding:13px 15px; transition:border-color .15s, box-shadow .15s; }
.lc-form textarea{ resize:vertical; min-height:90px; font-family:var(--serif); font-size:16px; }
.lc-form input::placeholder, .lc-form textarea::placeholder{ color:var(--faint); }
.lc-form input:focus, .lc-form select:focus, .lc-form textarea:focus{ outline:none; border-color:var(--teal); box-shadow:0 0 0 4px rgba(19,126,145,.13); }
.lc-form select{ appearance:none; background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23586771' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat:no-repeat; background-position:right 15px center; padding-right:40px; }
.lc-form .hp{ position:absolute; left:-9999px; width:1px; height:1px; overflow:hidden; }
.lc-form .submit-row{ margin-top:22px; }
.lc-form .submit-row .btn{ width:100%; }
.lc-form .fineprint{ font-family:var(--sans); font-size:12.5px; color:var(--muted); margin-top:14px; text-align:center; line-height:1.5; }
.lc-form .fineprint a{ color:var(--teal-700); text-decoration:underline; text-underline-offset:2px; }
.lc-form .form-status{ font-family:var(--sans); font-size:14.5px; margin-top:14px; padding:12px 15px; border-radius:var(--r-sm); display:none; }
.lc-form .form-status.show{ display:block; }
.lc-form .form-status.ok{ display:block; background:rgba(31,157,87,.1); color:#157a42; border:1px solid rgba(31,157,87,.3); }
.lc-form .form-status.err{ display:block; background:rgba(192,57,43,.08); color:#a3271c; border:1px solid rgba(192,57,43,.28); }
.lc-form.is-done .lc-fields{ display:none; }
.lc-form .done-panel{ display:none; text-align:center; padding:18px 6px; }
.lc-form.is-done .done-panel{ display:block; }
.lc-form .done-panel .ic{ width:60px; height:60px; border-radius:50%; background:var(--teal-50); color:var(--teal); display:grid; place-items:center; margin:0 auto 18px; }
.lc-form .done-panel .ic svg{ width:30px; height:30px; }
.lc-form .done-panel h3{ font-size:22px; }
.lc-form .done-panel p{ font-size:15.5px; color:var(--muted); margin-top:10px; }

/* legacy CTA band (kept for safety; not the primary path) */
.cta-band{ }
.cta-inner{ background:linear-gradient(120deg,var(--teal),var(--teal-800)); border-radius:var(--r-lg);
  padding:56px 52px; color:#fff; position:relative; overflow:hidden; box-shadow:var(--sh-3);
  display:grid; grid-template-columns:1.2fr auto; gap:40px; align-items:center; }
.cta-inner::before{ content:""; position:absolute; right:-80px; top:-80px; width:320px; height:320px; border-radius:50%; background:rgba(255,255,255,.07); }
.cta-inner h2{ color:#fff; font-size:clamp(28px,3.2vw,40px); position:relative; }
.cta-inner p{ color:rgba(255,255,255,.85); font-size:19px; margin-top:14px; position:relative; max-width:480px; }
.cta-inner .actions{ position:relative; display:flex; flex-direction:column; gap:12px; }

/* ===========================================================
   SERVICES INDEX — CARD GRID
   =========================================================== */
.page-hero{ background:radial-gradient(900px 420px at 80% -20%, var(--teal-50), transparent 60%), linear-gradient(180deg,#fff,var(--bg)); border-bottom:1px solid var(--line); }
.page-hero .container{ padding-top:60px; padding-bottom:54px; }
.page-hero .crumbs{ font-family:var(--sans); font-size:14px; color:var(--muted); margin-bottom:18px; }
.page-hero .crumbs a{ color:var(--muted); } .page-hero .crumbs a:hover{ color:var(--teal-700); }
.page-hero .crumbs i{ font-style:normal; color:var(--line-2); margin:0 8px; }
.page-hero h1{ font-size:var(--fs-h1); max-width:760px; }
.page-hero p.lead{ margin-top:18px; max-width:620px; }

.svc-toolbar{ display:flex; gap:16px; align-items:center; margin-top:34px; flex-wrap:wrap; }
.searchbox{ flex:1 1 380px; display:flex; align-items:center; gap:12px; background:#fff; border:1.5px solid var(--line-2);
  border-radius:var(--r-pill); padding:13px 22px; box-shadow:var(--sh-1); transition:border-color .15s, box-shadow .15s; }
.searchbox:focus-within{ border-color:var(--teal); box-shadow:0 0 0 4px rgba(19,126,145,.13); }
.searchbox svg{ width:20px; height:20px; color:var(--faint); flex:0 0 auto; }
.searchbox input{ border:0; outline:0; width:100%; font-family:var(--sans); font-size:16.5px; color:var(--ink); background:transparent; }
.searchbox input::placeholder{ color:var(--faint); }
.svc-count{ font-family:var(--sans); font-size:14.5px; font-weight:600; color:var(--muted); white-space:nowrap; }

.svc-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.area-card{ background:#fff; border:1px solid var(--line); border-radius:var(--r); padding:26px; box-shadow:var(--sh-1);
  transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease; display:flex; flex-direction:column; }
.area-card:hover{ box-shadow:var(--sh-2); transform:translateY(-3px); border-color:var(--teal-300); }
.area-card .head{ display:flex; align-items:center; gap:14px; margin-bottom:16px; }
.area-card .ic{ width:50px; height:50px; border-radius:13px; background:var(--teal-50); color:var(--teal-700); display:grid; place-items:center; flex:0 0 auto; }
.area-card .ic svg{ width:25px; height:25px; }
.area-card .head .letter{ font-family:var(--sans); font-weight:800; font-size:12px; color:var(--orange); letter-spacing:.08em; }
.area-card h3{ font-size:20px; margin-top:2px; }
.area-card > p{ font-size:15.5px; color:var(--muted); line-height:1.5; }
.area-card .svc-tags{ display:flex; flex-wrap:wrap; gap:7px; margin-top:16px; align-items:flex-start; }
.area-card .svc-tags .st{ font-family:var(--sans); font-size:12.5px; font-weight:500; color:var(--ink-2);
  background:var(--bg-2); border-radius:7px; padding:5px 10px; max-width:100%; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.area-card .svc-tags .more{ color:var(--teal-700); background:transparent; font-weight:600; }
.area-card .foot{ display:flex; align-items:center; justify-content:space-between; margin-top:auto; padding-top:18px; }
.area-card .foot .cnt{ font-family:var(--sans); font-size:13.5px; font-weight:600; color:var(--muted); }
.area-card .foot .go{ font-family:var(--sans); font-size:14px; font-weight:700; color:var(--teal-700); display:inline-flex; gap:6px; align-items:center; }
.area-card .foot .go svg{ width:16px; height:16px; transition:transform .18s ease; }
.area-card:hover .foot .go svg{ transform:translateX(3px); }
.area-card mark{ background:#FFE9B0; color:inherit; padding:0 1px; border-radius:2px; }
.no-results{ text-align:center; padding:80px 20px; color:var(--muted); font-family:var(--sans); display:none; }
.no-results.show{ display:block; }
.no-results b{ color:var(--ink); }

/* ===========================================================
   PRACTICE-AREA DETAIL
   =========================================================== */
.det-hero{ background:var(--dark); color:#fff; background-image:radial-gradient(800px 420px at 90% -10%, var(--dark-2), transparent 55%); }
.det-hero .container{ display:grid; grid-template-columns:1.3fr .7fr; gap:48px; align-items:center; padding-top:52px; padding-bottom:60px; }
.det-hero .crumbs{ font-family:var(--sans); font-size:14px; color:#9fb1b8; margin-bottom:20px; }
.det-hero .crumbs a{ color:#9fb1b8; } .det-hero .crumbs a:hover{ color:#fff; }
.det-hero .crumbs i{ font-style:normal; color:rgba(255,255,255,.3); margin:0 8px; }
.det-hero .badge-lg{ display:inline-flex; align-items:center; gap:10px; background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.16);
  border-radius:var(--r-pill); padding:7px 16px 7px 8px; font-family:var(--sans); font-size:13.5px; color:#cfe6ee; margin-bottom:22px; }
.det-hero .badge-lg .l{ width:30px; height:30px; border-radius:50%; background:var(--teal); color:#fff; display:grid; place-items:center; font-weight:800; font-size:14px; }
.det-hero h1{ color:#fff; font-size:var(--fs-h1); }
.det-hero p.lead{ color:#bdd0d7; margin-top:20px; max-width:560px; }
.det-hero .actions{ display:flex; gap:14px; margin-top:30px; flex-wrap:wrap; }
.det-hero .factcard{ background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.14); border-radius:var(--r); padding:24px; backdrop-filter:blur(4px); }
.det-hero .factcard .ln{ display:flex; justify-content:space-between; gap:16px; padding:13px 0; border-bottom:1px solid rgba(255,255,255,.12); font-family:var(--sans); font-size:15px; }
.det-hero .factcard .ln:last-child{ border:0; padding-bottom:0; } .det-hero .factcard .ln:first-child{ padding-top:0; }
.det-hero .factcard .ln span{ color:#9fb1b8; } .det-hero .factcard .ln b{ color:#fff; font-weight:700; }

.det-services{ display:grid; grid-template-columns:repeat(2,1fr); gap:20px; margin-top:46px; }
.scard{ background:#fff; border:1px solid var(--line); border-radius:var(--r); padding:26px; box-shadow:var(--sh-1); transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease; display:flex; gap:18px; }
.scard:hover{ box-shadow:var(--sh-2); transform:translateY(-2px); border-color:var(--teal-300); }
.scard .num{ font-family:var(--sans); font-weight:800; font-size:15px; color:var(--teal); background:var(--teal-50); width:40px; height:40px; border-radius:11px; display:grid; place-items:center; flex:0 0 auto; }
.scard h3{ font-size:18.5px; }
.scard p{ font-size:15px; color:var(--muted); margin-top:8px; line-height:1.5; }
.scard .go{ font-family:var(--sans); font-size:14px; font-weight:600; color:var(--teal-700); margin-top:14px; display:inline-flex; gap:6px; align-items:center; }
.scard .go svg{ width:16px; height:16px; transition:transform .18s ease; }
.scard:hover .go svg{ transform:translateX(3px); }
.related-areas{ display:flex; flex-wrap:wrap; gap:12px; margin-top:30px; }
.related-areas a{ display:inline-flex; align-items:center; gap:9px; font-family:var(--sans); font-weight:600; font-size:14.5px; color:var(--ink-2);
  background:#fff; border:1px solid var(--line-2); border-radius:var(--r-pill); padding:9px 17px; transition:border-color .15s, color .15s; }
.related-areas a:hover{ border-color:var(--teal); color:var(--teal-700); }
.related-areas a .l{ width:24px; height:24px; border-radius:50%; background:var(--teal-50); color:var(--teal-700); display:grid; place-items:center; font-weight:800; font-size:12px; }

/* ===========================================================
   SINGLE SERVICE
   =========================================================== */
.svc-page{ display:grid; grid-template-columns:1fr 340px; gap:56px; align-items:start; }
.svc-main h2{ font-size:28px; margin-bottom:16px; }
.svc-main .block + .block{ margin-top:48px; }
.svc-main p.body{ font-size:18px; color:var(--ink-2); line-height:1.65; }
.svc-main p.body + p.body{ margin-top:14px; }
.incl-grid{ display:grid; grid-template-columns:1fr 1fr; gap:14px 28px; margin-top:8px; padding:0; }
.incl-grid li{ list-style:none; display:flex; gap:12px; align-items:flex-start; font-size:16.5px; color:var(--ink-2); }
.incl-grid li .ck{ width:24px; height:24px; border-radius:50%; background:var(--teal-50); color:var(--teal-700); display:grid; place-items:center; flex:0 0 auto; margin-top:1px; }
.incl-grid li .ck svg{ width:14px; height:14px; }
.proc-grid{ display:grid; grid-template-columns:repeat(2,1fr); gap:18px; margin-top:8px; }
.proc-card{ border:1px solid var(--line); border-radius:var(--r); padding:24px; background:#fff; box-shadow:var(--sh-1); }
.proc-card .n{ font-family:var(--sans); font-weight:800; font-size:14px; color:#fff; background:var(--teal); width:34px; height:34px; border-radius:9px; display:grid; place-items:center; margin-bottom:14px; }
.proc-card h4{ font-size:17px; } .proc-card p{ font-size:14.5px; color:var(--muted); margin-top:8px; line-height:1.5; }
.rel-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:16px; margin-top:8px; }
.rel-card{ border:1px solid var(--line); border-radius:var(--r); padding:20px; background:#fff; box-shadow:var(--sh-1); transition:box-shadow .15s, border-color .15s; }
.rel-card:hover{ box-shadow:var(--sh-2); border-color:var(--teal-300); }
.rel-card h4{ font-size:16px; } .rel-card p{ font-size:14px; color:var(--muted); margin-top:8px; line-height:1.45; }
/* sticky aside */
.svc-aside{ position:sticky; top:96px; }
.aside-card{ background:#fff; border:1px solid var(--line); border-radius:var(--r); box-shadow:var(--sh-2); overflow:hidden; }
.aside-card .top{ background:linear-gradient(120deg,var(--teal),var(--teal-800)); color:#fff; padding:26px; }
.aside-card .top h3{ color:#fff; font-size:22px; }
.aside-card .top p{ color:rgba(255,255,255,.85); font-size:15px; margin-top:8px; }
.aside-card .top .btn{ width:100%; justify-content:center; margin-top:18px; }
.aside-card .specs{ padding:22px 26px; }
.aside-card .specs .ln{ display:flex; justify-content:space-between; gap:14px; font-family:var(--sans); font-size:14.5px; padding:11px 0; border-bottom:1px solid var(--line); }
.aside-card .specs .ln:last-child{ border:0; } .aside-card .specs .ln span{ color:var(--muted); } .aside-card .specs .ln b{ color:var(--ink); font-weight:700; }
.aside-mini{ margin-top:18px; background:var(--bg); border:1px solid var(--line); border-radius:var(--r); padding:20px 22px; }
.aside-mini .ttl{ font-family:var(--sans); font-weight:700; font-size:15px; margin-bottom:12px; }
.aside-mini .ln{ font-family:var(--sans); font-size:14px; color:var(--ink-2); display:flex; gap:9px; align-items:center; padding:5px 0; }
.aside-mini .ln .d{ width:7px; height:7px; border-radius:50%; background:var(--orange); flex:0 0 auto; }

/* ---------- reveal animation ---------- */
@media (prefers-reduced-motion:no-preference){
  .reveal{ opacity:0; transform:translateY(18px); transition:opacity .6s ease, transform .6s ease; }
  .reveal.in{ opacity:1; transform:none; }
}

/* ---------- responsive ---------- */
@media (max-width:1040px){
  .steps{ grid-template-columns:repeat(3,1fr); gap:34px 0; }
  .pstep:nth-child(4){ border-left:0; padding-left:0; }
  .pstep:nth-child(n+4){ margin-top:8px; }
}
@media (max-width:980px){
  .nav .links{ display:none; }
  .nav .nav-cta{ display:none; }
  .menu-toggle{ display:flex; }
  .mobile-nav.open{ display:block; }
  .hero .container, .det-hero .container, .leadcap .container{ grid-template-columns:1fr; gap:40px; }
  .retail .rm-head{ grid-template-columns:1fr; gap:20px; }
  .retail .rm-head .actions{ justify-content:flex-start; }
  .rm-grid{ grid-template-columns:1fr; }
  .plat-grid{ grid-template-columns:1fr; }
  .pillars-grid,.why-grid,.svc-grid{ grid-template-columns:repeat(2,1fr); }
  .stats .grid{ grid-template-columns:repeat(2,1fr); gap:30px 24px; }
  .stats .st:nth-child(3){ border-left:0; }
  .cases{ grid-template-columns:1fr; }
  .det-services{ grid-template-columns:1fr; }
  .svc-page{ grid-template-columns:1fr; }
  .svc-aside{ position:static; }
  .cta-inner{ grid-template-columns:1fr; }
  .site-footer .ft-grid{ grid-template-columns:1fr 1fr; gap:32px; }
}
@media (max-width:640px){
  .section{ padding:clamp(52px,11vw,64px) 0; } .container{ padding:0 20px; }
  .pillars-grid,.why-grid,.svc-grid,.stats .grid,.steps,.rel-grid,.incl-grid,.proc-grid,.det-services{ grid-template-columns:1fr; }
  .stats .grid{ gap:0; }
  .stats .st + .st{ border-left:0; border-top:1px solid rgba(255,255,255,.1); padding-top:24px; margin-top:24px; }
  .steps{ gap:28px; }
  .pstep{ padding:0; } .pstep + .pstep{ border-left:0; }
  .hero h1{ font-size:38px; }
  .lc-form .field.row2{ grid-template-columns:1fr; }
  .lc-form{ padding:24px; }
  .site-footer .ft-grid{ grid-template-columns:1fr; }
  .det-hero .factcard{ margin-top:8px; }
}
