/* =========================================================
   BLU MANAGEMENT — DESIGN SYSTEM
   Palette: deep operator-blue + warm "fuel" amber accent
   Type: Manrope (display) / Inter (body) / IBM Plex Mono (data)
   ========================================================= */

:root{
  /* ---- brand blue ramp ---- */
  --blu-950:#071B33;
  --blu-900:#0B2A4D;
  --blu-800:#0F3A66;
  --blu-700:#144B85;
  --blu-600:#1C5FA8;
  --blu-500:#2C74C4;
  --blu-400:#5C93D3;
  --blu-200:#AFCDEC;
  --blu-100:#DCE9F9;
  --blu-50: #F1F6FC;

  /* ---- fuel amber accent (sparing use only) ---- */
  --fuel-600:#B97A17;
  --fuel-500:#DA9C2F;
  --fuel-400:#E8B45A;
  --fuel-100:#FBEAD0;

  /* ---- neutrals (warm paper, not blue-grey) ---- */
  --paper-0:#FFFFFF;
  --paper-50:#FBFAF7;
  --paper-100:#F4F2EC;
  --paper-200:#EAE7DE;
  --line:#E3E0D6;
  --line-strong:#CDC9BC;

  --ink-950:#12151B;
  --ink-800:#22262F;
  --ink-700:#333845;
  --ink-600:#4A5160;
  --ink-500:#666E7D;
  --ink-400:#8B94A2;

  /* ---- semantic ---- */
  --success:#2F7D5A;

  /* ---- type ---- */
  --font-display:'Manrope', 'Segoe UI', sans-serif;
  --font-body:'Inter', 'Segoe UI', sans-serif;
  --font-mono:'IBM Plex Mono', 'Courier New', monospace;

  /* ---- layout ---- */
  --container:1240px;
  --radius-sm:6px;
  --radius:14px;
  --radius-lg:26px;
  --shadow-card:0 1px 2px rgba(18,21,27,.04), 0 12px 32px -16px rgba(18,21,27,.14);
  --shadow-lift:0 20px 48px -20px rgba(11,42,77,.28);

  --ease:cubic-bezier(.22,.61,.36,1);
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  *,*::before,*::after{ animation-duration:.001ms !important; animation-iteration-count:1 !important; transition-duration:.001ms !important; scroll-behavior:auto !important; }
}

body{
  margin:0;
  font-family:var(--font-body);
  color:var(--ink-800);
  background:var(--paper-50);
  -webkit-font-smoothing:antialiased;
  line-height:1.6;
}

img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul,ol{ margin:0; padding:0; list-style:none; }
button{ font-family:inherit; cursor:pointer; }
input,select,textarea{ font-family:inherit; font-size:16px; }
h1,h2,h3,h4{ font-family:var(--font-display); color:var(--blu-950); margin:0; letter-spacing:-.01em; }

.container{ width:100%; max-width:var(--container); margin:0 auto; padding:0 28px; }

/* ---- skip link ---- */
.skip-link{
  position:absolute; left:-999px; top:auto;
  background:var(--blu-900); color:#fff; padding:12px 20px; border-radius:0 0 8px 0; z-index:999; font-weight:600;
}
.skip-link:focus{ left:0; top:0; }

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

/* =========================================================
   EYEBROW / LABELS
   ========================================================= */
.eyebrow{
  font-family:var(--font-mono);
  font-size:12.5px;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--blu-600);
  font-weight:500;
  display:inline-flex;
  align-items:center;
  gap:10px;
}
.eyebrow::before{
  content:"";
  width:22px; height:1.5px;
  background:var(--fuel-500);
  display:inline-block;
}
.eyebrow.on-dark{ color:var(--blu-200); }

/* =========================================================
   HEADER / NAV
   ========================================================= */
.site-header{
  position:sticky; top:0; z-index:200;
  background:rgba(251,250,247,.88);
  backdrop-filter:blur(10px) saturate(1.4);
  border-bottom:1px solid var(--line);
}
.nav{
  display:flex; align-items:center; justify-content:space-between; gap:20px;
  padding:10px 28px; flex-wrap:nowrap;
  max-width:var(--container); margin:0 auto;
}
.brand{ display:flex; align-items:center; gap:10px; flex:none; }
.brand-mark{
  width:40px; height:40px; flex:none; border-radius:50%;
  object-fit:cover; background:#0a1f3a;
}
.brand-word{
  font-family:var(--font-display); font-weight:800; font-size:18px; color:var(--blu-950); letter-spacing:-.01em;
  white-space:nowrap;
}
.brand-word span{ color:var(--blu-600); }

.nav-links{
  display:flex; align-items:center; justify-content:center; gap:2px;
  flex:1; min-width:0;
}
.nav-links > li{ position:relative; flex:none; }
.nav-links a, .nav-drop-btn{
  padding:8px 14px; font-size:14.5px; font-weight:600; color:var(--ink-600);
  border-radius:100px; transition:background .2s var(--ease), color .2s var(--ease);
  background:none; border:none; font-family:inherit; line-height:1.4; cursor:pointer;
  white-space:nowrap;
}
.nav-drop-btn{ display:inline-flex; align-items:center; gap:6px; }
.nav-drop-btn::after{
  content:""; width:0; height:0;
  border-left:4px solid transparent; border-right:4px solid transparent;
  border-top:5px solid currentColor; opacity:.55;
}
.nav-links a:hover, .nav-links a.active, .nav-drop-btn:hover, .nav-drop-btn.active, .has-dropdown.open > .nav-drop-btn{
  color:var(--blu-800); background:var(--blu-50);
}

.dropdown{
  display:none; position:absolute; top:100%; left:0;
  min-width:220px; padding:8px; margin-top:0;
  background:var(--paper-0); border:1px solid var(--line); border-radius:12px;
  box-shadow:var(--shadow-card); z-index:230;
}
.has-dropdown.open > .dropdown{ display:block; }
@media (hover:hover){
  .has-dropdown:hover > .dropdown{ display:block; }
}
.dropdown a{
  display:block; padding:10px 12px; border-radius:8px; font-size:14px; font-weight:600;
  color:var(--ink-600); white-space:normal;
}
.dropdown a:hover, .dropdown a.active{ background:var(--blu-50); color:var(--blu-800); }

.nav-actions{ display:flex; align-items:center; gap:14px; flex:none; }
.nav-phone{
  font-family:var(--font-mono); font-size:13.5px; font-weight:500; color:var(--ink-600);
  display:flex; align-items:center; gap:7px; white-space:nowrap;
}
.nav-phone svg{ width:15px; height:15px; stroke:var(--blu-600); }

.hamburger{
  display:none; background:none; border:1.5px solid var(--line-strong); border-radius:10px; width:42px; height:42px;
  align-items:center; justify-content:center; flex:none;
}
.hamburger span, .hamburger::before, .hamburger::after{
  content:""; display:block; width:18px; height:2px; background:var(--blu-950); border-radius:2px; transition:transform .25s var(--ease), opacity .2s;
}
.hamburger::before{ transform:translateY(-6px); }
.hamburger::after{ transform:translateY(4px); }
.hamburger[aria-expanded="true"]::before{ transform:translateY(0) rotate(45deg); }
.hamburger[aria-expanded="true"]::after{ transform:translateY(-2px) rotate(-45deg); }
.hamburger[aria-expanded="true"] span{ opacity:0; }

.mobile-panel{
  display:none; flex-direction:column; padding:8px 20px 22px; border-top:1px solid var(--line);
  background:var(--paper-0);
}
.mobile-panel.open{ display:flex; }
.mobile-panel > a, .mobile-panel details{
  border-bottom:1px solid var(--line);
}
.mobile-panel > a{
  padding:14px 4px; font-weight:600; font-size:16px; color:var(--ink-800);
}
.mobile-panel summary{
  list-style:none; cursor:pointer;
  padding:14px 4px; font-weight:600; font-size:16px; color:var(--ink-800);
  display:flex; align-items:center; justify-content:space-between; gap:12px;
}
.mobile-panel summary::-webkit-details-marker{ display:none; }
.mobile-panel summary:focus-visible{ outline:2.5px solid var(--fuel-500); outline-offset:3px; border-radius:4px; }
.mobile-panel summary::after{
  content:""; width:0; height:0; flex:none;
  border-left:5px solid transparent; border-right:5px solid transparent;
  border-top:6px solid var(--ink-500);
}
.mobile-panel details[open] > summary::after{ transform:rotate(180deg); }
.mobile-panel details a{
  display:block; padding:10px 4px 10px 16px; font-size:15px; font-weight:500; color:var(--ink-600);
}
.mobile-panel a.btn,
.mobile-panel a.btn-primary{
  margin-top:16px; align-self:stretch; width:100%;
  color:#fff; -webkit-text-fill-color:#fff;
  border-bottom:none; padding:14px 26px;
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:9px;
  padding:14px 26px; border-radius:100px; font-weight:700; font-size:14.5px;
  border:1.5px solid transparent; white-space:nowrap; transition:transform .18s var(--ease), background .2s var(--ease), border-color .2s var(--ease), color .2s var(--ease);
}
.btn-primary,
a.btn-primary,
button.btn-primary{
  background:var(--blu-700); color:#fff; -webkit-text-fill-color:#fff;
  box-shadow:0 10px 24px -10px rgba(15,58,102,.55);
}
.btn-primary:hover,
a.btn-primary:hover,
button.btn-primary:hover{ background:var(--blu-800); color:#fff; -webkit-text-fill-color:#fff; transform:translateY(-1px); }
.btn-secondary,
a.btn-secondary{ background:transparent; color:var(--blu-800); -webkit-text-fill-color:var(--blu-800); border-color:var(--line-strong); }
.btn-secondary:hover,
a.btn-secondary:hover{ border-color:var(--blu-600); background:var(--blu-50); color:var(--blu-800); -webkit-text-fill-color:var(--blu-800); }
.btn-ghost-light,
a.btn-ghost-light{ background:rgba(255,255,255,.08); color:#fff; -webkit-text-fill-color:#fff; border-color:rgba(255,255,255,.35); }
.btn-ghost-light:hover,
a.btn-ghost-light:hover{ background:rgba(255,255,255,.18); color:#fff; -webkit-text-fill-color:#fff; }
.btn-sm{ padding:10px 18px; font-size:13.5px; }
.btn svg{ width:16px; height:16px; }
.btn-primary svg, .btn-ghost-light svg{ stroke:currentColor; }

/* =========================================================
   SECTIONS / GRID HELPERS
   ========================================================= */
section{ padding:100px 0; }
.section-tight{ padding:76px 0; }
.bg-white{ background:var(--paper-0); }
.bg-tint{ background:var(--paper-100); }
.bg-blue{ background:var(--blu-950); color:#fff; }
.bg-blue h1,.bg-blue h2,.bg-blue h3{ color:#fff; }

.section-head{ max-width:680px; margin-bottom:52px; }
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }
.section-head h2{ font-size:clamp(28px,3.4vw,42px); margin-top:16px; line-height:1.12; }
.section-head p{ font-size:17px; color:var(--ink-500); margin-top:16px; line-height:1.65; }
.bg-blue .section-head p{ color:var(--blu-200); }

.grid{ display:grid; gap:24px; }
.grid-2{ grid-template-columns:repeat(2,1fr); }
.grid-3{ grid-template-columns:repeat(3,1fr); }
.grid-4{ grid-template-columns:repeat(4,1fr); }

/* =========================================================
   CARDS
   ========================================================= */
.card{
  background:var(--paper-0); border:1px solid var(--line); border-radius:var(--radius);
  padding:34px 30px; box-shadow:var(--shadow-card);
  transition:transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.card:hover{ transform:translateY(-4px); border-color:var(--blu-200); box-shadow:var(--shadow-lift); }

.card-icon{
  width:52px; height:52px; border-radius:14px; background:var(--blu-50);
  display:flex; align-items:center; justify-content:center; margin-bottom:20px;
}
.card-icon svg{ width:26px; height:26px; stroke:var(--blu-700); }
.card h3{ font-size:19px; margin-bottom:10px; }
.card p{ color:var(--ink-500); font-size:14.5px; line-height:1.6; margin:0 0 16px; }
.card-link{ font-size:13.5px; font-weight:700; color:var(--blu-700); display:inline-flex; align-items:center; gap:6px; }
.card-link svg{ width:14px; height:14px; transition:transform .2s var(--ease); }
.card:hover .card-link svg{ transform:translateX(3px); }

/* =========================================================
   HERO
   ========================================================= */
.hero{
  padding:56px 0 90px;
  background:linear-gradient(180deg,var(--paper-50) 0%, var(--paper-100) 100%);
  position:relative; overflow:hidden;
}
.hero-grid{
  display:grid; grid-template-columns:1.02fr .98fr; gap:56px; align-items:center;
}
.hero-copy h1{
  font-size:clamp(38px,5vw,60px); line-height:1.05; margin-top:18px; letter-spacing:-.02em;
}
.hero-copy p{ font-size:18px; color:var(--ink-600); max-width:520px; margin:22px 0 34px; line-height:1.65; }
.hero-cta{ display:flex; gap:14px; flex-wrap:wrap; }
.trust-line{
  margin-top:44px; display:flex; align-items:center; gap:12px; font-family:var(--font-mono); font-size:12.5px;
  color:var(--ink-500); text-transform:uppercase; letter-spacing:.08em; flex-wrap:wrap;
}
.trust-line svg{ width:16px; height:16px; stroke:var(--fuel-600); }

.hero-visual{ position:relative; }
.hero-visual img, .hero-visual svg{ width:100%; height:auto; border-radius:var(--radius-lg); object-fit:cover; }
.service-visual img, .site-photo{
  width:100%; height:auto; border-radius:var(--radius-lg); object-fit:cover; aspect-ratio:4/3;
}
.divider-photo{ width:100%; height:260px; object-fit:cover; display:block; }

/* =========================================================
   SIGNATURE: FUEL GAUGE (Visibility / Control / Growth)
   ========================================================= */
.gauge-row{
  display:grid; grid-template-columns:repeat(3,1fr); gap:28px; margin-top:56px;
}
.gauge-card{
  background:var(--paper-0); border:1px solid var(--line); border-radius:var(--radius);
  padding:34px 30px 30px; box-shadow:var(--shadow-card);
}
.gauge-num{ font-family:var(--font-mono); font-size:12.5px; color:var(--blu-500); letter-spacing:.1em; }
.gauge-card h3{ font-size:22px; margin:14px 0 12px; }
.gauge-card > p{ color:var(--ink-500); font-size:14.5px; margin-bottom:20px; }
.gauge-card ul li{
  font-size:13.5px; color:var(--ink-600); padding:9px 0 9px 22px; border-top:1px solid var(--line); position:relative;
}
.gauge-card ul li:first-child{ border-top:none; }
.gauge-card ul li::before{
  content:""; position:absolute; left:0; top:15px; width:9px; height:9px; border-radius:50%; background:var(--fuel-500);
}
.gauge-dial{ width:100%; height:auto; margin-bottom:6px; }

/* =========================================================
   PAIN POINTS
   ========================================================= */
.pain-list{ display:grid; grid-template-columns:1fr 1fr; gap:14px 40px; margin-top:8px; }
.pain-item{
  display:flex; gap:14px; align-items:flex-start; padding:18px 0; border-top:1px solid var(--line);
}
.pain-item svg{ width:20px; height:20px; flex:none; margin-top:2px; stroke:var(--fuel-600); }
.pain-item p{ margin:0; font-size:15.5px; color:var(--ink-700); line-height:1.5; }

/* =========================================================
   COMPARISON
   ========================================================= */
.compare-wrap{ display:grid; grid-template-columns:1fr 1fr; gap:24px; }
.compare-col{ border-radius:var(--radius); padding:36px 32px; }
.compare-col.without{ background:var(--paper-100); border:1px solid var(--line); }
.compare-col.with{ background:var(--blu-950); color:#fff; }
.compare-col h3{ font-size:20px; margin-bottom:22px; }
.compare-col.with h3{ color:#fff; }
.compare-col li{
  display:flex; align-items:center; gap:12px; padding:12px 0; font-size:15px; border-top:1px solid rgba(0,0,0,.08);
}
.compare-col.with li{ border-top:1px solid rgba(255,255,255,.12); color:var(--blu-100); }
.compare-col li:first-child{ border-top:none; }
.compare-col.without li svg{ width:16px; height:16px; stroke:var(--ink-400); flex:none; }
.compare-col.with li svg{ width:16px; height:16px; stroke:var(--fuel-400); flex:none; }

/* =========================================================
   STATS
   ========================================================= */
.stat-row{ display:grid; grid-template-columns:repeat(4,1fr); gap:1px; background:rgba(255,255,255,.12); border-radius:var(--radius); overflow:hidden; }
.stat{ background:var(--blu-950); padding:36px 28px; }
.stat .num{ font-family:var(--font-mono); font-size:clamp(30px,3vw,42px); font-weight:600; color:#fff; letter-spacing:-.02em; }
.stat .label{ margin-top:8px; font-size:13.5px; color:var(--blu-200); line-height:1.4; }
.stat-note{ font-size:12.5px; color:var(--blu-300, #9db8dc); margin-top:22px; text-align:center; }

.founder-photo{
  width:100%; max-width:380px; margin:0 auto;
  border-radius:var(--radius-lg); object-fit:cover; object-position:center 12%;
  aspect-ratio:4/5; display:block;
}

/* =========================================================
   PRICING + OWNER IMPACT CALCULATOR
   ========================================================= */
.pricing-row{
  display:grid; grid-template-columns:.85fr 1.15fr; gap:28px; align-items:stretch;
}
#impact{ scroll-margin-top:88px; }
.price-card{
  background:var(--blu-950); color:#fff; border-radius:var(--radius-lg); padding:40px 36px;
  display:flex; flex-direction:column; justify-content:center; scroll-margin-top:88px;
}
.price-card .eyebrow.on-dark{ color:var(--blu-200); }
.price-card h3{ color:#fff; font-size:28px; margin:14px 0 10px; line-height:1.2; }
.price-amount{
  font-family:var(--font-mono); font-size:clamp(36px,4vw,52px); font-weight:600; color:#fff;
  letter-spacing:-.03em; margin:8px 0 4px;
}
.price-amount span{ font-size:18px; color:var(--blu-200); font-weight:500; letter-spacing:0; }
.price-card p{ color:var(--blu-200); font-size:15px; line-height:1.65; margin:12px 0 0; }

.calc-card{
  background:var(--paper-0); border:1px solid var(--line); border-radius:var(--radius-lg);
  padding:36px 32px; box-shadow:var(--shadow-card);
}
.calc-card h3{ font-size:22px; margin:0 0 6px; }
.calc-card > p{ color:var(--ink-500); font-size:14.5px; margin:0 0 24px; line-height:1.6; }
.calc-field{ margin-bottom:22px; }
.calc-field label{
  display:flex; justify-content:space-between; align-items:baseline; gap:12px;
  font-size:13.5px; font-weight:600; color:var(--ink-700); margin-bottom:10px;
}
.calc-field label output{
  font-family:var(--font-mono); font-weight:600; color:var(--blu-700); font-size:15px;
}
.calc-field input[type="range"]{
  width:100%; accent-color:var(--blu-700); height:6px; cursor:pointer;
}
.calc-scale{ display:flex; justify-content:space-between; font-size:11.5px; color:var(--ink-400); margin-top:6px; font-family:var(--font-mono); }
.calc-results{
  display:grid; grid-template-columns:1fr 1fr; gap:12px; margin-top:8px;
}
.calc-stat{
  background:var(--paper-100); border-radius:12px; padding:16px 16px 14px;
}
.calc-stat .k{ font-size:12px; color:var(--ink-500); font-weight:600; }
.calc-stat .v{ font-family:var(--font-mono); font-size:20px; font-weight:600; color:var(--blu-950); margin-top:6px; }
.calc-stat.highlight{
  grid-column:1 / -1; background:var(--blu-950); color:#fff;
}
.calc-stat.highlight .k{ color:var(--blu-200); }
.calc-stat.highlight .v{ color:#fff; font-size:28px; }
.calc-stat.highlight .sub{ color:var(--blu-200); font-size:13px; margin-top:6px; }

/* =========================================================
   TIMELINE (About / How We Operate)
   ========================================================= */
.timeline{ position:relative; margin-top:20px; }
.timeline::before{
  content:""; position:absolute; left:20px; top:6px; bottom:6px; width:2px; background:var(--line-strong);
}
.tl-item{ position:relative; padding:0 0 44px 62px; }
.tl-item:last-child{ padding-bottom:0; }
.tl-dot{
  position:absolute; left:11px; top:2px; width:20px; height:20px; border-radius:50%;
  background:var(--paper-0); border:2.5px solid var(--blu-600);
}
.tl-year{ font-family:var(--font-mono); font-size:12.5px; color:var(--blu-600); letter-spacing:.08em; font-weight:600; }
.tl-item h3{ font-size:19px; margin:8px 0 8px; }
.tl-item p{ color:var(--ink-500); font-size:14.5px; margin:0; max-width:560px; line-height:1.6; }

/* =========================================================
   PROCESS STEPS (How We Operate)
   ========================================================= */
.steps{ display:grid; grid-template-columns:repeat(3,1fr); gap:24px; margin-top:8px; }
.step-card{ background:var(--paper-0); border:1px solid var(--line); border-radius:var(--radius); padding:30px; }
.step-num{ font-family:var(--font-mono); font-size:32px; color:var(--blu-200); font-weight:700; }
.step-card h3{ font-size:19px; margin:14px 0 10px; }
.step-card p{ color:var(--ink-500); font-size:14.5px; margin:0; line-height:1.6; }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer{ background:var(--blu-950); color:var(--blu-100); padding:76px 0 30px; }
.footer-top{ display:grid; grid-template-columns:1.4fr 1fr 1fr 1.2fr; gap:40px; padding-bottom:52px; border-bottom:1px solid rgba(255,255,255,.12); }
.footer-brand .brand-word{ color:#fff; }
.footer-brand p{ color:var(--blu-200); font-size:14.5px; margin-top:16px; max-width:280px; line-height:1.6; }
.footer-col h4{ font-family:var(--font-mono); font-size:12px; letter-spacing:.1em; text-transform:uppercase; color:var(--blu-300,#8fadd6); margin:0 0 18px; font-weight:500; }
.footer-col a, .footer-col p{ display:block; color:var(--blu-100); font-size:14.5px; margin-bottom:12px; }
.footer-col a:hover{ color:#fff; }
.footer-bottom{ display:flex; justify-content:space-between; align-items:center; padding-top:26px; font-size:13px; color:var(--blu-300,#8fadd6); flex-wrap:wrap; gap:12px; }
.footer-bottom a{ color:var(--blu-300,#8fadd6); }
.footer-bottom a:hover{ color:#fff; }

/* =========================================================
   FORM
   ========================================================= */
.form-card{ background:var(--paper-0); border:1px solid var(--line); border-radius:var(--radius-lg); padding:44px; box-shadow:var(--shadow-card); }
.form-row{ display:grid; grid-template-columns:1fr 1fr; gap:18px; }
.field{ margin-bottom:20px; }
.field label{ display:block; font-size:13.5px; font-weight:600; color:var(--ink-700); margin-bottom:8px; }
.field input, .field select, .field textarea{
  width:100%; padding:13px 16px; border:1.5px solid var(--line-strong); border-radius:10px; background:var(--paper-50);
  color:var(--ink-800); transition:border-color .2s, background .2s;
}
.field input:focus, .field select:focus, .field textarea:focus{ outline:none; border-color:var(--blu-600); background:#fff; }
.field textarea{ resize:vertical; min-height:110px; }
.form-note{ font-size:12.5px; color:var(--ink-400); margin-top:16px; }
.form-note a{ color:var(--blu-700); font-weight:600; }
.form-success{ display:none; text-align:center; padding:40px 10px; }
.form-success.show{ display:block; }
.form-success svg{ width:52px; height:52px; stroke:var(--success); margin:0 auto 18px; }

/* =========================================================
   CONTACT PAGE LAYOUT
   ========================================================= */
.contact-grid{ display:grid; grid-template-columns:.85fr 1.15fr; gap:56px; align-items:start; }
.contact-info-item{ display:flex; gap:16px; padding:20px 0; border-top:1px solid var(--line); }
.contact-info-item:first-child{ border-top:none; }
.contact-info-item svg{ width:22px; height:22px; stroke:var(--blu-600); flex:none; margin-top:2px; }
.contact-info-item h4{ font-size:15px; margin:0 0 4px; color:var(--blu-950); font-family:var(--font-body); font-weight:700; }
.contact-info-item p, .contact-info-item a{ margin:0; font-size:14.5px; color:var(--ink-500); }
.contact-info-item a:hover{ color:var(--blu-700); }

/* =========================================================
   FINAL CTA BAND
   ========================================================= */
.cta-band{ background:var(--blu-950); border-radius:var(--radius-lg); padding:72px 60px; text-align:center; position:relative; overflow:hidden; }
.cta-band h2{ color:#fff; font-size:clamp(26px,3.4vw,38px); max-width:680px; margin:0 auto 14px; line-height:1.15; }
.cta-band p{ color:var(--blu-200); font-size:16px; margin:0 auto 32px; max-width:520px; }
.cta-actions{ display:flex; gap:14px; justify-content:center; flex-wrap:wrap; }

/* =========================================================
   MISC
   ========================================================= */
.divider-strip{ height:64px; background-image:repeating-linear-gradient(115deg, var(--blu-100) 0 26px, transparent 26px 52px); opacity:.6; }
.tag-pill{ display:inline-flex; align-items:center; gap:8px; background:var(--blu-50); color:var(--blu-700); font-size:12.5px; font-weight:700; padding:7px 14px; border-radius:100px; margin-bottom:16px; }
.tag-pill.amber{ background:var(--fuel-100); color:var(--fuel-600); }
.quote-block{ border-left:3px solid var(--fuel-500); padding-left:26px; font-family:var(--font-display); font-size:22px; color:var(--blu-950); line-height:1.5; font-weight:600; }
.reveal{ opacity:0; transform:translateY(22px); transition:opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in{ opacity:1; transform:translateY(0); }
.placeholder-note{ font-size:11.5px; color:var(--ink-400); font-family:var(--font-mono); margin-top:8px; }

.breadcrumb{ font-size:13px; color:var(--ink-400); margin-bottom:18px; }
.breadcrumb a{ color:var(--ink-500); }
.breadcrumb a:hover{ color:var(--blu-700); }

.page-hero{ padding:60px 0 64px; background:var(--paper-100); }
.page-hero h1{ font-size:clamp(32px,4.2vw,50px); margin-top:16px; max-width:760px; line-height:1.12; }
.page-hero p{ font-size:17px; color:var(--ink-600); max-width:600px; margin-top:18px; }

.service-block{ display:grid; grid-template-columns:.9fr 1.1fr; gap:56px; align-items:center; padding:64px 0; border-top:1px solid var(--line); scroll-margin-top:88px; }
.service-block:first-of-type{ border-top:none; }
.service-block.reverse{ direction:rtl; }
.service-block.reverse > *{ direction:ltr; }
.service-block h3{ font-size:28px; margin:14px 0 16px; }
.service-block p.lead{ color:var(--ink-500); font-size:16px; line-height:1.65; margin-bottom:24px; }
.service-block ul{ display:grid; gap:10px; }
.service-block ul li{ font-size:14.5px; color:var(--ink-700); padding-left:26px; position:relative; }
.service-block ul li::before{ content:""; position:absolute; left:0; top:7px; width:14px; height:2px; background:var(--fuel-500); }

.audience-card{ display:flex; gap:20px; padding:30px; border:1px solid var(--line); border-radius:var(--radius); background:var(--paper-0); }
.audience-card .card-icon{ margin-bottom:0; flex:none; }

.case-card{ border:1.5px dashed var(--line-strong); border-radius:var(--radius); padding:40px; text-align:center; background:var(--paper-100); }
.case-card h3{ font-size:18px; margin-bottom:8px; color:var(--ink-500); }
.case-card p{ color:var(--ink-400); font-size:14px; margin:0; }

.legal-body h2{ font-size:22px; margin:40px 0 14px; }
.legal-body h2:first-child{ margin-top:0; }
.legal-body p, .legal-body li{ color:var(--ink-600); font-size:15px; line-height:1.75; margin-bottom:14px; }
.legal-body ul{ padding-left:20px; list-style:disc; }
.legal-body a{ color:var(--blu-700); font-weight:600; }
.legal-body a:hover{ color:var(--blu-900); }
.legal-body{ max-width:760px; }
.legal-updated{ font-family:var(--font-mono); font-size:12.5px; color:var(--ink-400); margin-bottom:8px; display:block; }

/* =========================================================
   ACCESSIBILITY WIDGET
   ========================================================= */
.a11y-widget{
  position:fixed; right:max(16px, env(safe-area-inset-right));
  bottom:max(16px, env(safe-area-inset-bottom));
  z-index:400; font-family:var(--font-body);
}
.a11y-fab{
  width:56px; height:56px; border:none; border-radius:50%;
  background:var(--blu-700); color:#fff;
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 10px 28px -8px rgba(15,58,102,.65);
  cursor:pointer;
}
.a11y-fab svg{ width:28px; height:28px; fill:none; stroke:currentColor; stroke-width:1.85; stroke-linecap:round; stroke-linejoin:round; }
.a11y-fab:hover{ background:var(--blu-800); }
.a11y-fab[aria-expanded="true"]{ background:var(--blu-900); }
.a11y-scale button:disabled{ opacity:.4; cursor:not-allowed; }
.a11y-panel[hidden]{ display:none !important; }
.a11y-panel{
  display:none; position:absolute; right:0; bottom:68px;
  width:min(380px, calc(100vw - 32px));
  max-height:min(78vh, 640px); overflow:auto;
  background:var(--paper-0); color:var(--ink-800);
  border:1px solid var(--line); border-radius:18px;
  box-shadow:var(--shadow-lift); padding:16px 16px 18px;
  -webkit-overflow-scrolling:touch;
}
.a11y-widget.open .a11y-panel{ display:block; }
.a11y-panel-head{
  display:flex; align-items:center; justify-content:space-between; gap:12px;
  margin-bottom:12px; padding-bottom:12px; border-bottom:1px solid var(--line);
}
.a11y-panel-head h2{ font-size:17px; margin:0; }
.a11y-panel-head p{ margin:4px 0 0; font-size:12px; color:var(--ink-500); font-weight:400; }
.a11y-close{
  width:36px; height:36px; border:1.5px solid var(--line-strong); border-radius:10px;
  background:var(--paper-0); color:var(--ink-800); font-size:22px; line-height:1; flex:none;
}
.a11y-section{ margin:14px 0 8px; font-family:var(--font-mono); font-size:11px;
  letter-spacing:.1em; text-transform:uppercase; color:var(--blu-600); font-weight:600;
}
.a11y-grid{ display:grid; grid-template-columns:1fr 1fr; gap:8px; }
.a11y-opt{
  border:1.5px solid var(--line-strong); border-radius:12px; background:var(--paper-50);
  padding:12px 8px 10px; min-height:78px; cursor:pointer;
  display:flex; flex-direction:column; align-items:center; justify-content:center; gap:7px;
  font-size:12.5px; font-weight:600; color:var(--ink-800); text-align:center; line-height:1.25;
}
.a11y-opt svg{ width:22px; height:22px; stroke:var(--blu-700); fill:none; stroke-width:1.8; stroke-linecap:round; stroke-linejoin:round; }
.a11y-opt[aria-pressed="true"]{
  background:var(--blu-50); border-color:var(--blu-600); color:var(--blu-900);
}
.a11y-opt[aria-pressed="true"] svg{ stroke:var(--blu-800); }
.a11y-scale{
  display:grid; grid-template-columns:44px 1fr 44px; gap:8px; align-items:center;
  margin-bottom:10px;
}
.a11y-scale button{
  height:44px; border:1.5px solid var(--line-strong); border-radius:10px;
  background:var(--paper-50); font-weight:800; font-size:18px; color:var(--blu-800);
}
.a11y-scale output{
  text-align:center; font-family:var(--font-mono); font-size:14px; font-weight:600; color:var(--blu-800);
}
.a11y-actions{ display:flex; gap:8px; margin-top:14px; }
.a11y-actions .btn{ flex:1; padding:12px 10px; font-size:13px; white-space:normal; text-align:center; }
.a11y-live{ position:absolute; width:1px; height:1px; overflow:hidden; clip:rect(0,0,0,0); }
.a11y-guide{
  position:fixed; left:0; right:0; height:4px; background:var(--fuel-500);
  z-index:390; pointer-events:none; display:none; box-shadow:0 0 0 1px rgba(0,0,0,.25);
}
.a11y-mask{
  position:fixed; inset:0; z-index:380; pointer-events:none; display:none;
}
.a11y-mask-band{
  position:absolute; left:0; right:0; height:160px;
  box-shadow:0 0 0 100vmax rgba(0,0,0,.7);
}

html.a11y-scale-1 .site-header,
html.a11y-scale-1 main,
html.a11y-scale-1 .site-footer{ zoom:1.18; }
html.a11y-scale-2 .site-header,
html.a11y-scale-2 main,
html.a11y-scale-2 .site-footer{ zoom:1.36; }

html.a11y-readable,
html.a11y-readable body,
html.a11y-readable h1, html.a11y-readable h2, html.a11y-readable h3, html.a11y-readable h4,
html.a11y-readable p, html.a11y-readable li, html.a11y-readable a, html.a11y-readable button,
html.a11y-readable label, html.a11y-readable input, html.a11y-readable select, html.a11y-readable textarea{
  font-family:'Atkinson Hyperlegible', Verdana, 'Segoe UI', sans-serif !important;
  letter-spacing:.03em; word-spacing:.08em;
}

html.a11y-spacing body, html.a11y-spacing p, html.a11y-spacing li, html.a11y-spacing a{
  letter-spacing:.12em !important; word-spacing:.16em !important;
}
html.a11y-leading body, html.a11y-leading p, html.a11y-leading li{ line-height:2 !important; }

html.a11y-underline a{ text-decoration:underline !important; text-underline-offset:3px; }
html.a11y-links a{
  background:#FFE44D !important; color:#000 !important; -webkit-text-fill-color:#000 !important;
  text-decoration:underline !important; border-radius:2px; padding:0 2px;
}
html.a11y-links .a11y-widget a{
  background:var(--blu-700) !important; color:#fff !important; -webkit-text-fill-color:#fff !important;
}
html.a11y-titles h1, html.a11y-titles h2, html.a11y-titles h3, html.a11y-titles h4{
  background:#000 !important; color:#FFE44D !important; padding:4px 8px; display:inline;
  box-decoration-break:clone;
}
html.a11y-titles .a11y-widget h2{
  background:transparent !important; color:var(--blu-950) !important; padding:0; display:block;
}
html.a11y-hide-img img:not(.brand-mark){ visibility:hidden; height:0 !important; min-height:0 !important; }
html.a11y-motion, html.a11y-motion *, html.a11y-motion *::before, html.a11y-motion *::after{
  animation:none !important; transition:none !important; scroll-behavior:auto !important;
}
html.a11y-motion .reveal{ opacity:1 !important; transform:none !important; }
html.a11y-focus :focus-visible{
  outline:4px solid #FFE44D !important; outline-offset:3px !important;
  box-shadow:0 0 0 6px #000 !important;
}
html.a11y-cursor, html.a11y-cursor *{
  cursor:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='48' viewBox='0 0 48 48'%3E%3Cpath fill='%23000' stroke='%23fff' stroke-width='3' d='M6 4v38l10-10 7 16 8-3-7-16h16z'/%3E%3C/svg%3E") 4 2, auto !important;
}

html.a11y-gray body > *:not(.a11y-widget):not(.a11y-guide):not(.a11y-mask){ filter:grayscale(1); }
html.a11y-desat body > *:not(.a11y-widget):not(.a11y-guide):not(.a11y-mask){ filter:saturate(.25); }
html.a11y-invert body > *:not(.a11y-widget):not(.a11y-guide):not(.a11y-mask){ filter:invert(1) hue-rotate(180deg); }
html.a11y-gray.a11y-invert body > *:not(.a11y-widget):not(.a11y-guide):not(.a11y-mask){ filter:grayscale(1) invert(1) hue-rotate(180deg); }
html.a11y-desat.a11y-invert body > *:not(.a11y-widget):not(.a11y-guide):not(.a11y-mask){ filter:saturate(.25) invert(1) hue-rotate(180deg); }

html.a11y-contrast-high body,
html.a11y-contrast-high .site-header,
html.a11y-contrast-high .site-footer,
html.a11y-contrast-high section,
html.a11y-contrast-high .card,
html.a11y-contrast-high .calc-card,
html.a11y-contrast-high .form-card,
html.a11y-contrast-high .gauge-card,
html.a11y-contrast-high .cta-band,
html.a11y-contrast-high .price-card,
html.a11y-contrast-high .mobile-panel,
html.a11y-contrast-high .dropdown,
html.a11y-contrast-high .page-hero,
html.a11y-contrast-high .bg-white,
html.a11y-contrast-high .bg-tint,
html.a11y-contrast-high .bg-blue{
  background:#000 !important; color:#fff !important; border-color:#fff !important; box-shadow:none !important;
}
html.a11y-contrast-high h1, html.a11y-contrast-high h2, html.a11y-contrast-high h3,
html.a11y-contrast-high p, html.a11y-contrast-high li, html.a11y-contrast-high span,
html.a11y-contrast-high label, html.a11y-contrast-high .brand-word{
  color:#fff !important;
}
html.a11y-contrast-high a{ color:#FFE44D !important; -webkit-text-fill-color:#FFE44D !important; }
html.a11y-contrast-high .btn-primary,
html.a11y-contrast-high a.btn-primary{
  background:#FFE44D !important; color:#000 !important; -webkit-text-fill-color:#000 !important; border-color:#FFE44D !important;
}

html.a11y-contrast-dark body,
html.a11y-contrast-dark .site-header,
html.a11y-contrast-dark section,
html.a11y-contrast-dark .card,
html.a11y-contrast-dark .calc-card,
html.a11y-contrast-dark .form-card,
html.a11y-contrast-dark .mobile-panel,
html.a11y-contrast-dark .dropdown,
html.a11y-contrast-dark .bg-white,
html.a11y-contrast-dark .bg-tint,
html.a11y-contrast-dark .page-hero{
  background:#0B1220 !important; color:#EEF3FA !important; border-color:#3D4F68 !important;
}
html.a11y-contrast-dark h1, html.a11y-contrast-dark h2, html.a11y-contrast-dark h3,
html.a11y-contrast-dark .brand-word{ color:#fff !important; }
html.a11y-contrast-dark a{ color:#8EC8FF !important; }

html.a11y-contrast-light body,
html.a11y-contrast-light .site-header,
html.a11y-contrast-light section,
html.a11y-contrast-light .card,
html.a11y-contrast-light .calc-card,
html.a11y-contrast-light .bg-tint,
html.a11y-contrast-light .bg-blue,
html.a11y-contrast-light .cta-band,
html.a11y-contrast-light .price-card,
html.a11y-contrast-light .site-footer,
html.a11y-contrast-light .page-hero{
  background:#fff !important; color:#000 !important; border-color:#000 !important;
}
html.a11y-contrast-light h1, html.a11y-contrast-light h2, html.a11y-contrast-light h3,
html.a11y-contrast-light p, html.a11y-contrast-light li, html.a11y-contrast-light a,
html.a11y-contrast-light .brand-word, html.a11y-contrast-light .btn{
  color:#000 !important; -webkit-text-fill-color:#000 !important;
}
html.a11y-contrast-light a{ text-decoration:underline !important; }
