/* ============================================================
   CALLISON ELECTRIC HEATING & COOLING
   Design tokens + homepage styles
   Palette sampled from the brand logo:
   royal blue, electric navy, heating red, bolt gold
   ============================================================ */

:root {
  /* Brand */
  --blue:        #0355B4;   /* primary royal blue (logo) */
  --blue-deep:   #013E8E;   /* darker blue */
  --blue-bright: #1E73D8;   /* hover / links */
  --navy:        #0A2444;   /* electric ink (ELECTRIC wordmark) */
  --navy-900:    #061830;   /* deepest hero ground */
  --navy-800:    #0C2A4E;
  --red:         #E01E26;   /* heating red */
  --red-deep:    #B71820;
  --gold:        #FBB116;   /* bolt gold */
  --gold-deep:   #E8920A;

  /* Neutrals */
  --ink:         #0E1726;   /* near-black text */
  --ink-soft:    #38465b;   /* secondary text */
  --muted:       #65738a;   /* tertiary text */
  --line:        #dfe5ee;   /* hairlines on light */
  --line-navy:   rgba(255,255,255,.14);
  --paper:       #f4f7fb;   /* cool light bg */
  --paper-2:     #eaf0f8;
  --white:       #ffffff;

  /* Type */
  --font-display: "Archivo", system-ui, sans-serif;
  --font-body:    "Public Sans", system-ui, sans-serif;
  --font-mono:    "JetBrains Mono", ui-monospace, monospace;

  /* Layout */
  --maxw: 1208px;
  --gutter: clamp(20px, 5vw, 64px);
  --radius: 14px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 2px rgba(10,36,68,.06), 0 2px 8px rgba(10,36,68,.05);
  --shadow:    0 8px 30px rgba(10,36,68,.10);
  --shadow-lg: 0 24px 60px rgba(10,36,68,.18);

  --ease: cubic-bezier(.2,.7,.2,1);
}

/* ---------- reset ---------- */
*,*::before,*::after{ box-sizing:border-box; }
html{ -webkit-text-size-adjust:100%; scroll-behavior:smooth; }
body{
  margin:0; font-family:var(--font-body); color:var(--ink);
  background:var(--white); line-height:1.6; font-size:17px;
  -webkit-font-smoothing:antialiased; text-rendering:optimizeLegibility;
}
img{ display:block; max-width:100%; }
a{ color:inherit; text-decoration:none; }
button{ font:inherit; cursor:pointer; }
h1,h2,h3,h4{ font-family:var(--font-display); font-weight:800; line-height:1.04; margin:0;
  letter-spacing:-.015em; text-wrap:balance; }
p{ margin:0; text-wrap:pretty; }
ul{ margin:0; padding:0; list-style:none; }

/* ---------- helpers ---------- */
.wrap{ width:100%; max-width:var(--maxw); margin-inline:auto; padding-inline:var(--gutter); }
.section{ padding-block:clamp(56px,8vw,108px); }
.eyebrow{
  font-family:var(--font-mono); font-size:12.5px; font-weight:600;
  letter-spacing:.22em; text-transform:uppercase; color:var(--blue);
  display:inline-flex; align-items:center; gap:10px;
}
.eyebrow::before{ content:""; width:26px; height:2px; background:var(--gold); display:inline-block; }
.eyebrow.on-dark{ color:var(--gold); }
.eyebrow.on-dark::before{ background:var(--red); }
.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; }

/* placeholder tokens to fill before publishing */
.tok{
  font-family:var(--font-mono); font-size:.82em; font-weight:600;
  background:rgba(251,177,22,.18); color:var(--gold-deep);
  padding:.05em .4em; border-radius:5px; border:1px dashed rgba(232,146,10,.5);
  white-space:nowrap;
}
.on-dark .tok{ color:var(--gold); background:rgba(251,177,22,.16); border-color:rgba(251,177,22,.45); }

/* ---------- buttons ---------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  font-family:var(--font-display); font-weight:700; font-size:16px; letter-spacing:.01em;
  padding:15px 26px; border-radius:11px; border:2px solid transparent;
  transition:transform .15s var(--ease), background .2s var(--ease), box-shadow .2s var(--ease), color .2s;
  white-space:nowrap; line-height:1;
}
.btn svg{ width:19px; height:19px; }
.btn:active{ transform:translateY(1px); }
.btn--call{ background:var(--gold); color:var(--navy); box-shadow:0 6px 18px rgba(251,177,22,.35); }
.btn--call:hover{ background:var(--gold-deep); color:#fff; }
.btn--primary{ background:var(--blue); color:#fff; box-shadow:0 6px 18px rgba(3,85,180,.32); }
.btn--primary:hover{ background:var(--blue-deep); }
.btn--ghost{ background:transparent; color:#fff; border-color:rgba(255,255,255,.45); }
.btn--ghost:hover{ border-color:#fff; background:rgba(255,255,255,.08); }
.btn--ghost-ink{ background:transparent; color:var(--navy); border-color:var(--navy); }
.btn--ghost-ink:hover{ background:var(--navy); color:#fff; }
.btn--lg{ padding:18px 32px; font-size:18px; }
.btn--block{ width:100%; }

/* ============================================================
   TOP UTILITY BAR
   ============================================================ */
.utility{
  background:var(--navy-900); color:#cdd8ea; font-size:13.5px;
  border-bottom:1px solid var(--line-navy);
}
.utility .wrap{ display:flex; align-items:center; justify-content:space-between; gap:18px; min-height:42px; white-space:nowrap; }
.utility__left{ display:flex; align-items:center; gap:22px; flex-wrap:nowrap; min-width:0; }
.utility__item{ display:inline-flex; align-items:center; gap:8px; white-space:nowrap; }
.utility__item svg{ width:15px; height:15px; color:var(--gold); flex:none; }
.utility__right{ display:flex; align-items:center; gap:18px; flex:none; }
.utility a:hover{ color:#fff; }
.utility__badge{ color:var(--gold); font-family:var(--font-mono); font-size:12px; letter-spacing:.04em; }
@media (max-width:880px){ .utility__hide{ display:none; } }

/* ============================================================
   HEADER
   ============================================================ */
.header{
  position:sticky; top:0; z-index:60; background:rgba(255,255,255,.92);
  backdrop-filter:saturate(140%) blur(12px); border-bottom:1px solid var(--line);
  transition:box-shadow .25s var(--ease);
}
.header.is-stuck{ box-shadow:var(--shadow-sm); }
.header .wrap{ display:flex; align-items:center; gap:16px; min-height:86px; }
.brand{ display:flex; align-items:center; flex:none; }
.brand img{ height:60px; width:auto; }
.nav{ display:flex; align-items:center; gap:2px; margin-left:2px; }
.nav a{
  font-family:var(--font-display); font-weight:600; font-size:15px; color:var(--navy);
  padding:10px 11px; border-radius:9px; position:relative; white-space:nowrap;
  transition:color .15s, background .15s;
}
.nav a:hover{ color:var(--blue); background:var(--paper); }
.header__cta{ margin-left:auto; display:flex; align-items:center; gap:10px; }
.phone-link{
  display:flex; flex-direction:column; line-height:1.15; text-align:right;
}
.phone-link span{ font-family:var(--font-mono); font-size:11px; letter-spacing:.12em;
  text-transform:uppercase; color:var(--muted); }
.phone-link strong{ font-family:var(--font-display); font-size:18px; color:var(--navy); font-weight:800;
  white-space:nowrap; }
.phone-link:hover strong{ color:var(--blue); }
.nav-toggle{ display:none; }

@media (max-width:1000px){
  .nav, .phone-link{ display:none; }
  .nav-toggle{
    display:inline-flex; align-items:center; justify-content:center; margin-left:auto;
    width:48px; height:48px; border-radius:11px; border:2px solid var(--navy); background:#fff; color:var(--navy);
  }
  .nav-toggle svg{ width:24px; height:24px; }
  .header__cta .btn--call{ padding:12px 18px; }
}

/* mobile drawer */
.drawer{
  position:fixed; inset:0; z-index:70; background:rgba(6,24,48,.55);
  opacity:0; pointer-events:none; transition:opacity .25s var(--ease);
}
.drawer.is-open{ opacity:1; pointer-events:auto; }
.drawer__panel{
  position:absolute; top:0; right:0; height:100%; width:min(86vw,360px);
  background:var(--navy-900); padding:24px; transform:translateX(100%);
  transition:transform .3s var(--ease); display:flex; flex-direction:column; gap:6px;
}
.drawer.is-open .drawer__panel{ transform:none; }
.drawer__top{ display:flex; align-items:center; justify-content:space-between; margin-bottom:14px; }
.drawer__top img{ height:34px; }
.drawer__close{ width:44px; height:44px; border-radius:10px; background:rgba(255,255,255,.08);
  color:#fff; border:0; display:grid; place-items:center; }
.drawer__close svg{ width:22px; height:22px; }
.drawer a.dlink{ color:#e6edf8; font-family:var(--font-display); font-weight:600; font-size:18px;
  padding:13px 12px; border-radius:9px; border-bottom:1px solid var(--line-navy); }
.drawer a.dlink:hover{ background:rgba(255,255,255,.06); color:#fff; }
.drawer__actions{ margin-top:18px; display:flex; flex-direction:column; gap:10px; }

/* ============================================================
   MEDIA / DEMO IMAGE ZONES
   guaranteed branded placeholder, upgrades to real photo if it loads
   ============================================================ */
.media{
  position:relative; overflow:hidden; background:
    radial-gradient(120% 120% at 80% 0%, #14365f 0%, var(--navy-900) 60%);
  isolation:isolate;
}
.media__icon{
  position:absolute; inset:0; display:grid; place-items:center; color:rgba(255,255,255,.10);
  z-index:1;
}
.media__icon svg{ width:38%; max-width:200px; height:auto; }
.media__grid{
  position:absolute; inset:0; z-index:0; opacity:.5;
  background-image:linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
                   linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size:34px 34px;
  -webkit-mask-image:radial-gradient(120% 100% at 50% 0%, #000, transparent 75%);
          mask-image:radial-gradient(120% 100% at 50% 0%, #000, transparent 75%);
}
.media__cap{
  position:absolute; left:0; right:0; bottom:0; z-index:3; padding:18px 20px;
  background:linear-gradient(to top, rgba(6,24,48,.85), transparent);
  color:#dbe6f5; font-size:13.5px; display:flex; align-items:center; gap:9px;
}
.media__cap svg{ width:16px; height:16px; color:var(--gold); flex:none; }
.media__chip{
  position:absolute; top:14px; left:14px; z-index:3;
  font-family:var(--font-mono); font-size:10.5px; letter-spacing:.12em; text-transform:uppercase;
  color:var(--navy); background:var(--gold); padding:5px 9px; border-radius:6px; font-weight:600;
}
.media__img{
  position:absolute; inset:0; width:100%; height:100%; object-fit:cover; z-index:2;
  opacity:0; transition:opacity .6s var(--ease);
}
.media.is-loaded .media__img,
.media__img[src]:not([src=""]){ opacity:1; }
.media.is-loaded .media__icon,
.media.is-loaded .media__grid{ opacity:0; }
.media.is-loaded .media__chip{ background:rgba(251,177,22,.95); }

/* ============================================================
   HERO  (L1)
   ============================================================ */
.hero{
  position:relative; color:#fff; overflow:hidden;
  background:
    radial-gradient(90% 120% at 92% -10%, rgba(30,115,216,.38), transparent 55%),
    radial-gradient(70% 90% at 0% 110%, rgba(3,85,180,.30), transparent 60%),
    linear-gradient(180deg, var(--navy) 0%, var(--navy-900) 100%);
}
.hero::after{ /* clean brand accent at the seam */
  content:""; position:absolute; left:0; right:0; bottom:0; height:4px; z-index:5;
  background:linear-gradient(90deg, var(--blue) 0%, var(--blue-bright) 45%, var(--gold) 100%);
}
.hero__grid{
  display:grid; grid-template-columns:1.08fr .92fr; gap:clamp(28px,4vw,64px);
  align-items:center; padding-block:clamp(48px,6vw,86px);
}
.hero__kicker{ margin-bottom:20px; }
.hero h1{
  font-size:clamp(38px,5.2vw,68px); line-height:1.02; letter-spacing:-.02em;
}
.hero h1 .hl{ color:var(--gold); }
.hero h1 .br-red{ color:#fff; }
.hero__sub{ margin-top:22px; font-size:clamp(17px,1.4vw,20px); color:#c7d3e6; max-width:38ch; }
.hero__actions{ margin-top:30px; display:flex; gap:14px; flex-wrap:wrap; }
.hero__trust{
  margin-top:34px; display:flex; gap:26px; flex-wrap:wrap; padding-top:26px;
  border-top:1px solid var(--line-navy);
}
.trust-item{ display:flex; align-items:center; gap:11px; }
.trust-item svg{ width:26px; height:26px; color:var(--gold); flex:none; }
.trust-item b{ font-family:var(--font-display); font-size:15px; display:block; line-height:1.15; }
.trust-item span{ font-size:12.5px; color:#9fb1cb; }
.hero__media{ position:relative; }
.hero__media .media{ aspect-ratio:4/5; border-radius:var(--radius-lg); box-shadow:var(--shadow-lg);
  border:1px solid rgba(255,255,255,.12); }
.hero__badge{
  position:absolute; left:-26px; bottom:34px; z-index:6;
  background:#fff; color:var(--navy); border-radius:14px; padding:16px 20px;
  box-shadow:var(--shadow-lg); display:flex; align-items:center; gap:14px; max-width:260px;
}
.hero__badge .score{ font-family:var(--font-display); font-weight:800; font-size:34px; color:var(--blue); line-height:1; }
.hero__badge small{ display:block; font-size:12.5px; color:var(--muted); line-height:1.3; }
.hero__badge b{ font-size:14.5px; font-family:var(--font-display); }

@media (max-width:920px){
  .hero__grid{ grid-template-columns:1fr; }
  .hero__media{ order:-1; }
  .hero__media .media{ aspect-ratio:16/10; }
  .hero__badge{ left:auto; right:14px; bottom:14px; }
}

/* ============================================================
   QUICK ANSWER (AEO)
   ============================================================ */
.quickanswer{ background:var(--navy-900); padding-block:clamp(34px,4vw,52px); color:#fff; position:relative; }
.qa-card{
  background:linear-gradient(135deg, rgba(30,115,216,.16), rgba(255,255,255,.04));
  border:1px solid rgba(251,177,22,.35); border-left:5px solid var(--gold);
  border-radius:16px; padding:clamp(22px,3vw,34px); display:grid;
  grid-template-columns:auto 1fr; gap:22px; align-items:start;
}
.qa-card__tag{
  font-family:var(--font-mono); font-size:12px; letter-spacing:.14em; text-transform:uppercase;
  color:var(--navy); background:var(--gold); padding:7px 12px; border-radius:8px; font-weight:600;
  white-space:nowrap;
}
.qa-card p{ font-size:clamp(17px,1.55vw,21px); color:#eaf1fb; line-height:1.5; }
.qa-card p strong{ color:#fff; }
@media (max-width:680px){ .qa-card{ grid-template-columns:1fr; gap:14px; } }

/* ============================================================
   TRUST / STATS BAR (L2)
   ============================================================ */
.stats{ background:var(--white); border-bottom:1px solid var(--line); }
.stats .wrap{ display:grid; grid-template-columns:repeat(4,1fr); gap:0; }
.stat{ padding:34px 22px; text-align:center; border-right:1px solid var(--line); }
.stat:last-child{ border-right:0; }
.stat__num{ font-family:var(--font-display); font-weight:800; font-size:clamp(34px,3.6vw,48px);
  color:var(--blue); line-height:1; letter-spacing:-.02em; }
.stat__num .u{ color:var(--gold); }
.stat__label{ margin-top:9px; font-size:13.5px; color:var(--ink-soft); font-weight:500; }
.stat__sub{ font-family:var(--font-mono); font-size:11px; letter-spacing:.08em; text-transform:uppercase;
  color:var(--muted); margin-top:4px; }
@media (max-width:760px){
  .stats .wrap{ grid-template-columns:repeat(2,1fr); }
  .stat:nth-child(2){ border-right:0; }
  .stat:nth-child(1),.stat:nth-child(2){ border-bottom:1px solid var(--line); }
}

/* ============================================================
   SECTION HEADINGS
   ============================================================ */
.shead{ max-width:720px; margin-bottom:clamp(34px,4vw,52px); }
.shead.center{ margin-inline:auto; text-align:center; }
.shead h2{ font-size:clamp(28px,3.4vw,44px); margin-top:16px; color:var(--navy); }
.shead p{ margin-top:16px; font-size:18px; color:var(--ink-soft); }
.shead .answer-first{ color:var(--navy); font-weight:600; }

/* ============================================================
   TWO-TRADE SPLIT (the wedge)
   ============================================================ */
.split{ background:var(--paper); }
.split__head{ text-align:center; max-width:760px; margin:0 auto clamp(36px,4vw,56px); }
.split__head h2{ font-size:clamp(28px,3.6vw,46px); color:var(--navy); }
.split__head h2 .e{ color:var(--gold); } .split__head h2 .h{ color:var(--red); } .split__head h2 .c{ color:var(--blue); }
.split__head p{ margin-top:16px; font-size:18px; color:var(--ink-soft); }
.split__grid{ display:grid; grid-template-columns:1fr 1fr; gap:26px; }
.split__grid--weighted{ grid-template-columns:1.18fr .82fr; align-items:start; }
/* supporting (electrical) card reads tighter */
.trade--support .trade__list{ grid-template-columns:1fr; gap:10px; }
.trade--support .trade__note{ margin-top:16px; font-size:14px; color:var(--ink-soft);
  border-left:3px solid var(--gold); padding-left:13px; }
.trade{
  background:#fff; border:1px solid var(--line); border-radius:var(--radius-lg);
  overflow:hidden; box-shadow:var(--shadow-sm); display:flex; flex-direction:column;
  transition:transform .2s var(--ease), box-shadow .2s var(--ease);
}
.trade:hover{ transform:translateY(-4px); box-shadow:var(--shadow); }
.trade .media{ aspect-ratio:16/9; }
.trade__body{ padding:clamp(22px,2.6vw,32px); display:flex; flex-direction:column; flex:1; }
.trade__tag{ display:inline-flex; align-items:center; gap:9px; align-self:flex-start;
  font-family:var(--font-mono); font-size:12px; letter-spacing:.1em; text-transform:uppercase;
  padding:6px 11px; border-radius:7px; font-weight:600; margin-bottom:16px; }
.trade--elec .trade__tag{ color:var(--gold-deep); background:rgba(251,177,22,.14); }
.trade--hvac .trade__tag{ color:var(--blue); background:rgba(3,85,180,.10); }
.trade__body h3{ font-size:26px; color:var(--navy); }
.trade__body > p{ margin-top:12px; color:var(--ink-soft); }
.trade__list{ margin-top:20px; display:grid; grid-template-columns:1fr 1fr; gap:11px 18px; }
.trade__list li{ display:flex; align-items:flex-start; gap:9px; font-size:15px; color:var(--ink); }
.trade__list svg{ width:18px; height:18px; flex:none; margin-top:2px; }
.trade--elec .trade__list svg{ color:var(--gold-deep); }
.trade--hvac .trade__list svg{ color:var(--blue); }
.trade__foot{ margin-top:auto; padding-top:22px; }
.trade__link{ font-family:var(--font-display); font-weight:700; color:var(--navy); display:inline-flex;
  align-items:center; gap:8px; font-size:16px; }
.trade--elec .trade__link:hover{ color:var(--gold-deep); }
.trade--hvac .trade__link:hover{ color:var(--blue); }
.trade__link svg{ width:18px; height:18px; transition:transform .15s; }
.trade__link:hover svg{ transform:translateX(4px); }
@media (max-width:820px){ .split__grid, .split__grid--weighted{ grid-template-columns:1fr; } }
@media (max-width:440px){ .trade__list{ grid-template-columns:1fr; } }

/* ============================================================
   PROBLEM MIRROR (L3)
   ============================================================ */
.problem{ background:var(--navy); color:#fff; position:relative; overflow:hidden; }
.problem::before{ content:""; position:absolute; top:-30%; right:-10%; width:480px; height:480px;
  background:radial-gradient(circle, rgba(30,115,216,.30), transparent 70%); }
.problem .wrap{ position:relative; display:grid; grid-template-columns:.95fr 1.05fr; gap:clamp(32px,5vw,72px); align-items:center; }
.problem h2{ font-size:clamp(27px,3.3vw,42px); }
.problem h2 .hl{ color:var(--gold); }
.problem__lead{ margin-top:20px; font-size:18px; color:#c7d3e6; }
.problem__list{ display:grid; gap:14px; }
.pain{ display:flex; gap:15px; align-items:flex-start; padding:18px 20px;
  background:rgba(255,255,255,.04); border:1px solid var(--line-navy); border-radius:13px; }
.pain svg{ width:24px; height:24px; color:var(--red); flex:none; margin-top:1px; }
.pain p{ font-size:15.5px; color:#dde6f3; }
.pain p b{ color:#fff; font-family:var(--font-display); display:block; margin-bottom:2px; font-size:16px; }
.problem__turn{ margin-top:26px; font-size:19px; font-family:var(--font-display); font-weight:700; color:#fff; }
.problem__turn .hl{ color:var(--gold); }
@media (max-width:860px){ .problem .wrap{ grid-template-columns:1fr; } }

/* ============================================================
   WHOLE-HOME STANDARD (L4)
   ============================================================ */
.standard{ background:var(--white); }
.standard__steps{ display:grid; grid-template-columns:repeat(4,1fr); gap:22px; }
.step{
  position:relative; padding:30px 24px 28px; border:1px solid var(--line); border-radius:var(--radius-lg);
  background:#fff; transition:transform .2s var(--ease), box-shadow .2s var(--ease);
}
.step:hover{ transform:translateY(-4px); box-shadow:var(--shadow); border-color:transparent; }
.step__n{ font-family:var(--font-mono); font-size:13px; font-weight:600; color:var(--gold-deep);
  letter-spacing:.1em; }
.step__icon{ width:54px; height:54px; border-radius:13px; display:grid; place-items:center;
  background:var(--paper); color:var(--blue); margin:14px 0 18px; }
.step:hover .step__icon{ background:var(--blue); color:#fff; }
.step__icon svg{ width:28px; height:28px; }
.step h3{ font-size:19px; color:var(--navy); }
.step p{ margin-top:10px; font-size:15px; color:var(--ink-soft); }
.step__bar{ position:absolute; left:0; top:0; height:4px; width:100%; border-radius:var(--radius-lg) var(--radius-lg) 0 0;
  background:linear-gradient(90deg, var(--blue), var(--gold)); transform:scaleX(0); transform-origin:left;
  transition:transform .3s var(--ease); }
.step:hover .step__bar{ transform:scaleX(1); }
@media (max-width:880px){ .standard__steps{ grid-template-columns:1fr 1fr; } }
@media (max-width:480px){ .standard__steps{ grid-template-columns:1fr; } }

/* ============================================================
   FLEET BANNER (full-bleed brand moment)
   ============================================================ */
.fleetband{ position:relative; min-height:clamp(320px,42vw,460px); display:flex; align-items:center;
  overflow:hidden; background:var(--navy-900); isolation:isolate; }
.fleetband__img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; z-index:0; }
.fleetband::after{ content:""; position:absolute; inset:0; z-index:1;
  background:linear-gradient(90deg, rgba(6,24,48,.92) 0%, rgba(6,24,48,.72) 42%, rgba(6,24,48,.25) 100%); }
.fleetband .wrap{ position:relative; z-index:2; }
.fleetband__inner{ max-width:560px; color:#fff; padding-block:clamp(36px,5vw,56px); }
.fleetband h2{ font-size:clamp(26px,3.2vw,42px); margin-top:16px; }
.fleetband h2 .hl{ color:var(--gold); }
.fleetband p{ margin-top:16px; font-size:18px; color:#dceaff; max-width:46ch; }
.fleetband__actions{ margin-top:26px; display:flex; gap:14px; flex-wrap:wrap; }
.fleetband__stripe{ position:absolute; left:0; right:0; bottom:0; height:4px; z-index:2;
  background:linear-gradient(90deg, var(--blue) 0%, var(--blue-bright) 45%, var(--gold) 100%); }

/* ============================================================
   PROOF (L5)
   ============================================================ */
.proof{ background:var(--paper); }
.proof__grid{ display:grid; grid-template-columns:1.15fr .85fr; gap:clamp(26px,3.5vw,48px); align-items:stretch; }
.review-feature{
  background:var(--navy); color:#fff; border-radius:var(--radius-lg); padding:clamp(28px,3.4vw,42px);
  position:relative; overflow:hidden; display:flex; flex-direction:column; min-height:420px;
}
.review-feature__bg{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; z-index:0; opacity:.32; }
.review-feature::after{ content:""; position:absolute; inset:0; z-index:1;
  background:linear-gradient(180deg, rgba(10,36,68,.72) 0%, rgba(6,24,48,.92) 100%); }
.review-feature > *{ position:relative; z-index:2; }
.review-feature::before{ content:"\201C"; position:absolute; top:-26px; right:18px; font-family:var(--font-display);
  font-size:200px; color:rgba(251,177,22,.20); line-height:1; z-index:2; }
.review-feature .stars{ display:flex; gap:4px; color:var(--gold); margin-bottom:18px; }
.review-feature .stars svg{ width:22px; height:22px; }
.review-feature blockquote{ font-family:var(--font-display); font-weight:600; font-size:clamp(20px,2.2vw,27px);
  line-height:1.34; letter-spacing:-.01em; }
.review-feature__by{ margin-top:auto; padding-top:26px; display:flex; align-items:center; gap:14px; }
.review-feature__av{ width:50px; height:50px; border-radius:50%; background:var(--blue); display:grid;
  place-items:center; font-family:var(--font-display); font-weight:800; font-size:19px; flex:none; }
.review-feature__by b{ font-family:var(--font-display); font-size:16px; display:block; }
.review-feature__by span{ font-size:13px; color:#9fb1cb; }
.review-feature__verified{ display:inline-flex; align-items:center; gap:6px; margin-left:auto; font-size:12.5px; color:#9fb1cb; }
.review-feature__verified svg{ width:16px; height:16px; color:#4ea1ff; }

.proof__side{ display:flex; flex-direction:column; gap:22px; }
.gmb{
  background:#fff; border:1px solid var(--line); border-radius:var(--radius-lg); padding:26px;
  text-align:center; box-shadow:var(--shadow-sm);
}
.gmb__g{ font-family:var(--font-display); font-weight:800; font-size:20px; color:var(--navy);
  display:inline-flex; align-items:center; gap:8px; }
.gmb__g .g-blue{color:#4285F4}.gmb__g .g-red{color:#EA4335}.gmb__g .g-yellow{color:#FBBC05}.gmb__g .g-green{color:#34A853}
.gmb__stars{ display:flex; justify-content:center; gap:5px; color:var(--gold); margin:12px 0 8px; }
.gmb__stars svg{ width:24px; height:24px; }
.gmb__note{ font-size:13.5px; color:var(--muted); margin-top:6px; }
.gmb__widget{ margin-top:18px; border:1.5px dashed var(--line); border-radius:12px; padding:18px;
  font-size:13px; color:var(--muted); background:var(--paper); }
.gmb__widget b{ color:var(--ink-soft); font-family:var(--font-display); }
.proof__cred{ background:#fff; border:1px solid var(--line); border-radius:var(--radius-lg); padding:24px;
  box-shadow:var(--shadow-sm); display:grid; gap:14px; }
.cred-row{ display:flex; align-items:center; gap:13px; font-size:14.5px; }
.cred-row svg{ width:22px; height:22px; color:var(--blue); flex:none; }
.cred-row b{ font-family:var(--font-display); }
@media (max-width:840px){ .proof__grid{ grid-template-columns:1fr; } }

/* ============================================================
   DONE-RIGHT GUARANTEE (L6)
   ============================================================ */
.guarantee{ background:var(--white); }
.guarantee .wrap{ display:grid; grid-template-columns:auto 1fr; gap:clamp(28px,4vw,56px); align-items:center; }
.seal{
  position:relative; width:clamp(190px,21vw,240px); aspect-ratio:1; flex:none; display:grid; place-items:center;
  color:#fff; text-align:center;
  background:radial-gradient(circle at 50% 40%, var(--blue) 0%, var(--blue-deep) 70%, var(--navy) 100%);
  border-radius:50%; box-shadow:var(--shadow-lg), inset 0 0 0 3px rgba(255,255,255,.18);
}
.seal::before{ content:""; position:absolute; inset:11px; border-radius:50%; border:2px dashed rgba(251,177,22,.55); }
.seal__bolt{ position:absolute; top:-14px; right:-6px; width:54px; height:54px; color:var(--gold);
  filter:drop-shadow(0 4px 10px rgba(0,0,0,.3)); }
.seal__inner{ position:relative; z-index:1; padding:14px; display:flex; flex-direction:column; align-items:center; }
.seal__brand{ font-family:var(--font-display); font-style:italic; font-weight:900;
  font-size:clamp(17px,2vw,21px); letter-spacing:.005em; color:#fff; line-height:1; }
.seal__rule{ display:flex; align-items:center; gap:7px; margin-top:6px;
  font-family:var(--font-display); font-weight:700; font-size:8.5px; letter-spacing:.34em; text-indent:.34em;
  color:var(--gold); text-transform:uppercase; }
.seal__rule::before, .seal__rule::after{ content:""; width:15px; height:1.5px; background:var(--gold); }
.seal__hc{ margin-top:5px; font-family:var(--font-display); font-style:italic; font-weight:800;
  font-size:9px; letter-spacing:.08em; color:#ff5a60; text-transform:uppercase; line-height:1; }
.seal__div{ width:56px; height:2px; margin:11px 0;
  background:linear-gradient(90deg, transparent, rgba(251,177,22,.95), transparent); }
.seal__title{ font-family:var(--font-display); font-style:italic; font-weight:800;
  font-size:clamp(21px,2.4vw,26px); line-height:1.02; color:#fff; letter-spacing:-.005em; }
.guarantee h2{ font-size:clamp(27px,3.2vw,42px); color:var(--navy); }
.guarantee h2 .hl{ color:var(--blue); }
.guarantee__lead{ margin-top:18px; font-size:18px; color:var(--ink-soft); max-width:60ch; }
.guarantee__points{ margin-top:22px; display:flex; gap:14px 28px; flex-wrap:wrap; }
.gp{ display:flex; align-items:center; gap:10px; font-size:15px; font-weight:600; color:var(--navy); }
.gp svg{ width:22px; height:22px; color:var(--gold-deep); flex:none; }
@media (max-width:720px){ .guarantee .wrap{ grid-template-columns:1fr; text-align:left; } .seal{ margin:0 auto; } }

/* ============================================================
   SERVICE AREA
   ============================================================ */
.area{ background:var(--navy-900); color:#fff; position:relative; overflow:hidden; }
.area .wrap{ position:relative; display:grid; grid-template-columns:.9fr 1.1fr; gap:clamp(30px,4vw,60px); align-items:center; }
.area h2{ font-size:clamp(27px,3.2vw,42px); }
.area h2 .hl{ color:var(--gold); }
.area__lead{ margin-top:18px; color:#c7d3e6; font-size:18px; }
.area__nap{ margin-top:22px; font-family:var(--font-mono); font-size:13.5px; color:#9fb1cb; line-height:1.7;
  border-left:3px solid var(--gold); padding-left:16px; }
.area__nap b{ color:#fff; }
.towns{ display:grid; grid-template-columns:1fr 1fr; gap:13px; }
.town{
  display:flex; align-items:center; gap:13px; padding:18px 20px; border-radius:13px;
  background:rgba(255,255,255,.05); border:1px solid var(--line-navy);
  transition:background .15s, border-color .15s, transform .15s;
}
.town:hover{ background:rgba(30,115,216,.16); border-color:rgba(251,177,22,.4); transform:translateY(-2px); }
.town svg{ width:22px; height:22px; color:var(--gold); flex:none; }
.town b{ font-family:var(--font-display); font-size:16.5px; display:block; }
.town span{ font-size:12.5px; color:#9fb1cb; }
.town__arr{ margin-left:auto; opacity:.5; transition:opacity .15s, transform .15s; }
.town:hover .town__arr{ opacity:1; transform:translateX(3px); }
@media (max-width:860px){ .area .wrap{ grid-template-columns:1fr; } }
@media (max-width:430px){ .towns{ grid-template-columns:1fr; } }

/* ============================================================
   FINAL CTA + FORM (L7)
   ============================================================ */
.convert{ background:
    linear-gradient(180deg, var(--blue-deep), var(--blue) 60%, #0a4fa0);
  color:#fff; position:relative; overflow:hidden; }
.convert::before{ content:""; position:absolute; inset:0;
  background-image:linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
                   linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size:40px 40px; -webkit-mask-image:radial-gradient(100% 80% at 70% 0%, #000, transparent 70%);
          mask-image:radial-gradient(100% 80% at 70% 0%, #000, transparent 70%); }
.convert .wrap{ position:relative; display:grid; grid-template-columns:1fr 460px; gap:clamp(34px,5vw,72px); align-items:center; }
.convert h2{ font-size:clamp(30px,3.6vw,48px); }
.convert h2 .hl{ color:var(--gold); }
.convert__lead{ margin-top:18px; font-size:19px; color:#dceaff; max-width:46ch; }
.convert__call{ margin-top:26px; }
.convert__call a{ font-family:var(--font-display); font-weight:800; font-size:clamp(30px,4vw,46px);
  color:#fff; display:inline-flex; align-items:center; gap:14px; letter-spacing:-.01em; }
.convert__call a svg{ width:38px; height:38px; color:var(--gold); }
.convert__call span{ display:block; font-family:var(--font-mono); font-size:12.5px; letter-spacing:.14em;
  text-transform:uppercase; color:#9fc3f2; margin-bottom:4px; }
.convert__avail{ margin-top:18px; display:inline-flex; align-items:center; gap:9px; font-size:14.5px; color:#dceaff; }
.convert__avail .dot{ width:9px; height:9px; border-radius:50%; background:#39d98a; box-shadow:0 0 0 4px rgba(57,217,138,.25); }

.lead-form{ background:#fff; color:var(--ink); border-radius:var(--radius-lg); padding:clamp(24px,2.6vw,34px);
  box-shadow:var(--shadow-lg); }
.lead-form h3{ font-size:23px; color:var(--navy); }
.lead-form p.sm{ margin-top:6px; font-size:14px; color:var(--muted); }
.field{ margin-top:16px; }
.field label{ display:block; font-family:var(--font-display); font-weight:600; font-size:13.5px; color:var(--navy); margin-bottom:7px; }
.field label .req{ color:var(--red); }
.field input, .field select{
  width:100%; padding:14px 15px; border:1.5px solid var(--line); border-radius:11px; font:inherit;
  font-size:16px; color:var(--ink); background:#fff; transition:border-color .15s, box-shadow .15s;
}
.field input:focus, .field select:focus{ outline:0; border-color:var(--blue);
  box-shadow:0 0 0 4px rgba(3,85,180,.13); }
.field-row{ display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.lead-form .btn{ margin-top:20px; }
.lead-form__fine{ margin-top:14px; font-size:12.5px; color:var(--muted); text-align:center; }
.form-success{ display:none; text-align:center; padding:30px 10px; }
.form-success.is-on{ display:block; }
.form-success svg{ width:60px; height:60px; color:#1ba85a; margin:0 auto 14px; }
.form-success h3{ color:var(--navy); }
.form-success p{ margin-top:8px; color:var(--ink-soft); }
@media (max-width:880px){ .convert .wrap{ grid-template-columns:1fr; } }
@media (max-width:430px){ .field-row{ grid-template-columns:1fr; } }

/* ============================================================
   FAQ (AEO)
   ============================================================ */
.faq{ background:var(--white); }
.faq__grid{ display:grid; grid-template-columns:.8fr 1.2fr; gap:clamp(28px,4vw,60px); align-items:start; }
.faq__intro h2{ font-size:clamp(28px,3.3vw,42px); color:var(--navy); }
.faq__intro p{ margin-top:16px; color:var(--ink-soft); font-size:17px; }
.faq__intro .btn{ margin-top:22px; }
.faq__list{ display:grid; gap:12px; }
.qa{ border:1px solid var(--line); border-radius:14px; overflow:hidden; background:#fff; transition:box-shadow .2s, border-color .2s; }
.qa[open]{ box-shadow:var(--shadow-sm); border-color:rgba(3,85,180,.3); }
.qa summary{ list-style:none; cursor:pointer; padding:20px 22px; display:flex; align-items:center; gap:16px;
  font-family:var(--font-display); font-weight:700; font-size:17.5px; color:var(--navy); }
.qa summary::-webkit-details-marker{ display:none; }
.qa summary .q-ic{ width:30px; height:30px; flex:none; border-radius:8px; background:var(--paper);
  display:grid; place-items:center; color:var(--blue); transition:transform .25s var(--ease), background .2s, color .2s; }
.qa summary .q-ic svg{ width:18px; height:18px; }
.qa[open] summary .q-ic{ transform:rotate(45deg); background:var(--blue); color:#fff; }
.qa__a{ padding:0 22px 22px 68px; color:var(--ink-soft); font-size:15.5px; }
.qa__a strong{ color:var(--navy); }
@media (max-width:820px){ .faq__grid{ grid-template-columns:1fr; } .qa__a{ padding-left:22px; } }

/* ============================================================
   FOOTER
   ============================================================ */
.footer{ background:var(--navy-900); color:#aebdd4; padding-top:clamp(48px,6vw,72px); font-size:14.5px; }
.footer__top{ display:grid; grid-template-columns:1.4fr 1fr 1fr 1fr; gap:36px; }
.footer__brand img{ height:62px; margin-bottom:18px; }
.footer__brand p{ color:#9fb1cb; max-width:34ch; }
.footer__nap{ margin-top:18px; display:grid; gap:9px; }
.footer__nap a, .footer__nap div{ display:flex; align-items:flex-start; gap:10px; color:#c7d3e6; }
.footer__nap svg{ width:17px; height:17px; color:var(--gold); flex:none; margin-top:3px; }
.footer__nap a:hover{ color:#fff; }
.footer__col h4{ font-family:var(--font-display); font-size:14px; letter-spacing:.06em; text-transform:uppercase;
  color:#fff; margin-bottom:16px; }
.footer__col ul{ display:grid; gap:10px; }
.footer__col a:hover{ color:var(--gold); }
.footer__social{ display:flex; gap:10px; margin-top:8px; }
.footer__social a{ width:40px; height:40px; border-radius:10px; background:rgba(255,255,255,.07);
  display:grid; place-items:center; color:#c7d3e6; transition:background .15s, color .15s; }
.footer__social a:hover{ background:var(--blue); color:#fff; }
.footer__social svg{ width:19px; height:19px; }
.footer__stripe{ height:4px; margin-top:clamp(40px,5vw,60px);
  background:linear-gradient(90deg, var(--blue) 0%, var(--blue-bright) 45%, var(--gold) 100%); }
.footer__bottom{ display:flex; align-items:center; justify-content:space-between; gap:18px; flex-wrap:wrap;
  padding-block:22px; color:#7e8eaa; font-size:13px; }
.footer__bottom .lic{ font-family:var(--font-mono); }
@media (max-width:900px){ .footer__top{ grid-template-columns:1fr 1fr; gap:30px; } }
@media (max-width:520px){ .footer__top{ grid-template-columns:1fr; } }

/* ============================================================
   STICKY MOBILE CALL BAR
   ============================================================ */
.callbar{
  position:fixed; left:0; right:0; bottom:0; z-index:65; display:none;
  grid-template-columns:1fr 1fr; gap:0; box-shadow:0 -6px 20px rgba(6,24,48,.22);
}
.callbar a{ display:flex; align-items:center; justify-content:center; gap:9px; padding:15px 10px;
  font-family:var(--font-display); font-weight:800; font-size:16px; }
.callbar a svg{ width:20px; height:20px; }
.callbar__call{ background:var(--gold); color:var(--navy); }
.callbar__req{ background:var(--blue); color:#fff; }
@media (max-width:1080px){ .callbar{ display:grid; } body{ padding-bottom:56px; } }

/* reveal-on-scroll */
.reveal{ opacity:0; transform:translateY(22px); transition:opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.in{ opacity:1; transform:none; }
@media (prefers-reduced-motion:reduce){
  .reveal{ opacity:1; transform:none; transition:none; }
  *{ scroll-behavior:auto !important; }
}
