/* ==========================================================================
   EZ Fix Garage Door — DFW repair landing page
   Mobile-first. No webfonts, no frameworks — every byte here is on the
   critical path of a $50-per-click visit.
   Colour by ACTION, consistently: green = call, amber = quote/form.
   ========================================================================== */

/* Rubik — self-hosted (no third-party CDN request), latin subset, variable 400–800.
   Applied to headings and controls only; body copy stays on the system stack so we
   pay for one 35KB file, not two. This is the main "premium vs templated" lever —
   a default system UI font is the single loudest signal that a page is a template. */
@font-face{
  font-family:'Rubik';
  font-style:normal;
  font-weight:400 800;
  font-display:swap;
  src:url('/assets/fonts/rubik-latin-var.woff2') format('woff2-variations');
  unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,
    U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
}
/* Metric-matched fallback so the swap from system font → Rubik does not shift
   layout. Keeps CLS at 0 on a slow connection where the swap happens late. */
@font-face{
  font-family:'Rubik Fallback';
  src:local('Segoe UI Semibold'),local('Helvetica Neue'),local('Arial');
  font-weight:400 800;
  size-adjust:96%;
  ascent-override:93%;
  descent-override:24%;
  line-gap-override:0%;
}

:root{
  --font-display:'Rubik','Rubik Fallback',-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Arial,sans-serif;
  --ink:#111820;            /* brand ink, from the client's own stylesheet */
  --ink-2:#1b2635;
  --ink-3:#2b3a4d;
  --body:#3d4a5a;
  --muted:#5b6878;
  --line:#e2e7ed;
  --bg:#ffffff;
  --bg-alt:#f5f7f9;

  --green:#0c7041;          /* CALL — from the client's logo */
  --green-d:#095732;
  --green-l:#16a35c;
  --amber:#f2b01e;          /* QUOTE / FORM — from the client's logo */
  --amber-d:#d99a0c;

  --radius:14px;
  --radius-sm:10px;
  --shadow:0 1px 2px rgba(17,24,32,.06),0 8px 24px rgba(17,24,32,.08);
  --shadow-lg:0 2px 4px rgba(17,24,32,.06),0 18px 48px rgba(17,24,32,.14);
  --hdr-h:64px;
  --wrap:1160px;
}

*,*::before,*::after{box-sizing:border-box}
html{-webkit-text-size-adjust:100%}
body{
  margin:0;
  font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;
  color:var(--body);
  background:var(--bg);
  font-size:17px;
  line-height:1.62;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img{max-width:100%;height:auto;display:block}
h1,h2,h3{
  font-family:var(--font-display);
  color:var(--ink);line-height:1.15;margin:0 0 .5em;letter-spacing:-.02em;
}
/* Display face on the controls and numerals too — the places the eye lands. */
.btn,.eyebrow,.form-h,.trust strong,.sym-t,.camt,.pp-amt,.snum,.pnum,
.hero-rating strong,.rev cite{font-family:var(--font-display)}
/* Prices, ranges and ratings line up column-to-column instead of jittering. */
.camt,.pp-amt,.hero-rating strong{font-variant-numeric:tabular-nums}
h1{font-size:clamp(1.85rem,6.2vw,3.15rem);font-weight:800}
h2{font-size:clamp(1.5rem,4.4vw,2.35rem);font-weight:800}
h3{font-size:1.12rem;font-weight:700;letter-spacing:-.01em}
p{margin:0 0 1rem}
a{color:var(--green-d)}
.wrap{width:100%;max-width:var(--wrap);margin:0 auto;padding:0 20px}
.wrap-narrow{max-width:820px}
.nowrap{white-space:nowrap}
.lnk{color:var(--green-d);font-weight:600}

.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}
.skip{position:absolute;left:-9999px;top:0;background:var(--ink);color:#fff;padding:12px 18px;z-index:200}
.skip:focus{left:8px;top:8px;outline:3px solid var(--amber);outline-offset:2px}

/* Universal keyboard focus. Green reads on light surfaces; amber is swapped in
   on the dark header, hero, dark bands and footer where green would disappear. */
a:focus-visible,button:focus-visible,select:focus-visible,input:focus-visible,
textarea:focus-visible,summary:focus-visible,[tabindex]:focus-visible{
  outline:3px solid var(--green);outline-offset:2px;border-radius:4px;
}
.hdr a:focus-visible,.hero a:focus-visible,.sec-dark a:focus-visible,
.finalcta a:focus-visible,.ftr a:focus-visible,.trustbar a:focus-visible{
  outline-color:var(--amber);
}
/* The form card sits inside .hero but is a light surface — keep it green. */
.formcard a:focus-visible,.formcard button:focus-visible,.formcard select:focus-visible,
.formcard input:focus-visible,.formcard textarea:focus-visible,.formcard summary:focus-visible{
  outline-color:var(--green);
}

/* Anchors must clear the sticky header. */
[id]{scroll-margin-top:calc(var(--hdr-h) + 16px)}
html{scroll-behavior:smooth}
@media (prefers-reduced-motion:reduce){html{scroll-behavior:auto}}

/* Draft-only verification labels. Contrast-safe; removed before production. */
.flag{
  display:inline-block;font-size:.62em;font-weight:700;letter-spacing:.02em;
  color:#8a2b12;background:#fdeee7;border:1px solid #f3c9b6;
  padding:.1em .45em;border-radius:5px;vertical-align:middle;line-height:1.5;
}
.sec-dark .flag,.hero .flag,.trustbar .flag{color:#ffd9c9;background:rgba(138,43,18,.42);border-color:rgba(255,190,160,.45)}

/* ── Buttons ─────────────────────────────────────────────────────────── */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:.5rem;
  font-weight:800;font-size:1rem;line-height:1;text-decoration:none;
  padding:14px 20px;border-radius:var(--radius-sm);border:0;cursor:pointer;
  min-height:48px;transition:background-color .16s ease,transform .1s ease,box-shadow .16s ease;
  /* Drops the ~300ms tap delay on mobile without disabling pinch-zoom. */
  touch-action:manipulation;
}
.btn:active{transform:translateY(1px)}
.btn:focus-visible{outline:3px solid var(--amber);outline-offset:3px}
.btn-lg{font-size:1.08rem;padding:16px 26px;min-height:56px}
.btn-block{width:100%}
.btn-call{background:var(--green);color:#fff;box-shadow:0 2px 10px rgba(12,112,65,.28)}
.btn-call:hover{background:var(--green-d)}
.btn-quote{background:var(--amber);color:var(--ink);box-shadow:0 2px 10px rgba(242,176,30,.34)}
.btn-quote:hover{background:var(--amber-d)}
.ico{width:19px;height:19px;fill:currentColor;flex:none}

/* ── Header ──────────────────────────────────────────────────────────── */
.hdr{
  position:sticky;top:0;z-index:100;background:rgba(17,24,32,.97);
  backdrop-filter:saturate(140%) blur(8px);border-bottom:1px solid rgba(255,255,255,.09);
}
.hdr-in{display:flex;align-items:center;gap:14px;min-height:var(--hdr-h)}
.brand{display:flex;align-items:center;flex:none}
.brand img{height:38px;width:auto}
.nav{display:none}
.hdr-call{margin-left:auto;padding:11px 16px;min-height:44px;font-size:.98rem}
.hdr-call-txt{display:flex;align-items:center}

/* ── Hero ────────────────────────────────────────────────────────────── */
.hero{position:relative;isolation:isolate;background:var(--ink);overflow:hidden}
.hero-bg{position:absolute;inset:0;z-index:-2}
.hero-bg img{width:100%;height:100%;object-fit:cover;object-position:50% 42%}
/* Mobile: the copy runs the full width, so it still needs a real scrim —
   but noticeably lighter than before so the technician and truck read through. */
.hero::after{
  content:"";position:absolute;inset:0;z-index:-1;
  background:
    linear-gradient(180deg,rgba(10,15,22,.80) 0%,rgba(10,15,22,.48) 40%,rgba(10,15,22,.42) 62%,rgba(10,15,22,.86) 100%);
}
.hero-in{padding:28px 20px 34px;position:relative}
.hero-copy{color:#e8edf3;max-width:640px}
.eyebrow{
  font-size:.74rem;font-weight:800;letter-spacing:.13em;text-transform:uppercase;
  color:#ffc63d;margin:0 0 .8rem;
}
.hero .eyebrow{
  display:inline-block;background:rgba(8,12,18,.92);
  padding:6px 12px;border-radius:999px;border:1px solid rgba(255,198,61,.32);
  backdrop-filter:blur(2px);margin-bottom:1rem;
}
.eyebrow-dark{color:var(--green-d)}
.hero h1{color:#fff;text-wrap:balance;margin-bottom:.42em}
.hero-sub{font-size:1.12rem;color:#dbe3ec;margin-bottom:1.15rem;max-width:32ch}
.hero-sub strong{color:#fff;white-space:nowrap}
/* Credential pills. Deliberately high-contrast on the dark hero — these are the
   two signals ("are you real", "are you always there") that license the tap. */
.hero-badges{
  list-style:none;margin:1rem 0 0;padding:0;
  display:flex;flex-wrap:wrap;gap:8px;
}
.hero-badges li{
  display:inline-flex;align-items:center;gap:.42rem;
  background:rgba(255,255,255,.13);border:1px solid rgba(255,255,255,.28);
  border-radius:999px;padding:7px 13px 7px 10px;
  font-size:.88rem;font-weight:700;color:#fff;line-height:1.25;
  backdrop-filter:blur(2px);
}
.hero-badges svg{width:17px;height:17px;fill:var(--amber);flex:none}
.hero-badges .flag{margin-left:.2rem}

/* Now sits below the call button and the badges — supporting proof, not a gate. */
.hero-pts{list-style:none;margin:1rem 0 0;padding:0;display:grid;gap:.5rem}
/* Exactly two flex children — the tick and one text span. Anything inline
   inside the span (a verification flag) then flows with the words instead of
   being promoted to its own flex column. */
.hero-pts li{display:flex;align-items:flex-start;gap:.55rem;font-size:.97rem;color:#e4eaf1;font-weight:500}
.hero-pts li > span{flex:1 1 auto;min-width:0}
.tick{width:18px;height:18px;fill:var(--green-l);flex:none;margin-top:.22em}
.hero-cta{display:grid;gap:10px}
.hero-desk-note{display:none}
.hero-rating{
  display:flex;align-items:center;gap:.55rem;flex-wrap:wrap;
  margin:1.2rem 0 0;font-size:.9rem;color:#e6edf4;
}
.hero-rating strong{color:#fff}
.stars{display:inline-flex;gap:1px}
.stars svg{width:16px;height:16px;fill:var(--amber)}
.stars-sm svg{width:14px;height:14px}

/* ── Lead form ───────────────────────────────────────────────────────── */
.formcard{
  background:#fff;border-radius:var(--radius);padding:22px 20px 20px;
  box-shadow:var(--shadow-lg);margin-top:26px;
}
.form-h{font-size:1.32rem;margin-bottom:.3em}
.form-sub{font-size:.9rem;color:var(--muted);margin-bottom:1.1rem;line-height:1.5}
.field{margin-bottom:.85rem}
.field label{display:block;font-size:.82rem;font-weight:700;color:var(--ink-3);margin-bottom:.32rem}
.opt{font-weight:500;color:var(--muted)}
.field input,.field select,.field textarea{
  width:100%;font:inherit;font-size:1rem;color:var(--ink);background:#fff;
  padding:12px 13px;border:1.5px solid #cbd3dc;border-radius:var(--radius-sm);
  min-height:48px;transition:border-color .14s ease,box-shadow .14s ease;
}
.field textarea{min-height:80px;resize:vertical}
.field select{appearance:none;padding-right:38px;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%235b6878'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat:no-repeat;background-position:right 10px center;background-size:20px}
.field input:focus,.field select:focus,.field textarea:focus{
  outline:0;border-color:var(--green);box-shadow:0 0 0 3px rgba(12,112,65,.16);
}
.field input[aria-invalid="true"],.field select[aria-invalid="true"]{border-color:#c1362b;box-shadow:0 0 0 3px rgba(193,54,43,.14)}
.err{display:block;color:#a82a20;font-size:.79rem;font-weight:600;margin-top:.3rem}
.row{display:grid;grid-template-columns:1fr;gap:0}
.more{margin:.2rem 0 1rem}
.more summary{
  cursor:pointer;font-size:.87rem;font-weight:600;color:var(--green-d);
  padding:.72rem 0;min-height:44px;list-style:none;display:flex;align-items:center;gap:.4rem;
}
.more summary::-webkit-details-marker{display:none}
.more summary::before{content:"+";font-weight:800;font-size:1.05rem;line-height:1}
.more[open] summary::before{content:"–"}
.more summary:focus-visible{outline:2px solid var(--green);outline-offset:2px;border-radius:4px}
/* NOT flex — the inline privacy link must wrap with the sentence, not become
   its own column and strand the full stop on another line. */
.form-note{
  font-size:.79rem;color:var(--muted);line-height:1.55;margin:.9rem 0 0;
}
.form-note a{color:var(--green-d);font-weight:600}
.lock{width:14px;height:14px;fill:var(--muted);vertical-align:-.15em;margin-right:.3em}
.hp{position:absolute;left:-9999px}

/* ── Trust bar ───────────────────────────────────────────────────────── */
.trustbar{background:var(--ink-2);color:#dbe3ec;padding:22px 0}
/* 6 items → 2×3 on phones, 3×2 on tablets, 6-up on desktop. Always a full grid,
   never an orphaned last item. */
.trust-in{display:grid;grid-template-columns:repeat(2,1fr);gap:18px 14px}
.trust{display:flex;flex-direction:column;gap:.1rem;font-size:.8rem;line-height:1.4}
.trust strong{color:#fff;font-size:.96rem;letter-spacing:-.01em}
.trust span{color:#a9b7c6}

/* ── Section shell ───────────────────────────────────────────────────── */
.sec{padding:54px 0}
.sec-alt{background:var(--bg-alt)}
.sec-dark{background:var(--ink);color:#cfd9e4}

/* Photo-backed bands. Real client work behind the dark sections so the page
   carries genuine imagery beyond a single gallery — the overlay is heavy enough
   that every contrast ratio above stays exactly as measured. */
.sec-photo{position:relative;isolation:isolate;overflow:hidden}
.band-bg{
  position:absolute;inset:0;width:100%;height:100%;
  object-fit:cover;z-index:-2;
}
.sec-photo::after{
  content:"";position:absolute;inset:0;z-index:-1;
  background:linear-gradient(180deg,rgba(10,15,22,.93) 0%,rgba(10,15,22,.88) 50%,rgba(10,15,22,.94) 100%);
}
.sec-photo > .wrap{position:relative}
.sec-dark h2,.sec-dark h3{color:#fff}
.sec-head{max-width:760px;margin:0 0 30px}
/* Cap the measure at ~70 characters — 760px of 17.5px text runs to ~90, which is
   past the comfortable reading limit. */
.lede{font-size:1.02rem;color:var(--muted);margin:0;max-width:68ch}
.sym,.faq summary,.more summary{touch-action:manipulation}
.lede-light{color:#b9c6d4}

/* ── Symptom self-select ─────────────────────────────────────────────── */
.symgrid{display:grid;grid-template-columns:1fr;gap:10px}
/* Icon sits INLINE beside the title rather than stacked above it. Stacking cost
   ~50px of pure decoration per card × 6 cards, which pushed the pricing table —
   the page's main differentiator — more than four screens down on a phone. */
.sym{
  display:grid;grid-template-columns:auto 1fr;grid-template-rows:auto auto;
  column-gap:12px;row-gap:3px;align-items:start;
  text-align:left;width:100%;font:inherit;cursor:pointer;
  background:#fff;border:1.5px solid var(--line);border-radius:var(--radius);
  padding:15px 16px;box-shadow:var(--shadow);
  transition:border-color .16s ease,box-shadow .16s ease,transform .12s ease;
}
.sym:hover{border-color:var(--green-l);box-shadow:var(--shadow-lg);transform:translateY(-2px)}
.sym:focus-visible{outline:3px solid var(--green);outline-offset:2px}
.sym-ic{
  grid-column:1;grid-row:1 / span 2;
  display:flex;width:38px;height:38px;border-radius:10px;background:#e9f4ee;
  align-items:center;justify-content:center;margin:1px 0 0;
}
.sym-ic svg{width:21px;height:21px;fill:var(--green)}
.sym-t{grid-column:2;grid-row:1;display:block;font-weight:800;color:var(--ink);font-size:1.02rem;line-height:1.28;letter-spacing:-.01em}
.sym-d{grid-column:2;grid-row:2;display:block;font-size:.86rem;color:var(--muted);line-height:1.45}
.sym-foot{margin:22px 0 0;font-size:.93rem;color:var(--muted)}

/* ── Pricing ─────────────────────────────────────────────────────────── */
/* Three published price tiers, as cards. Replaces the old 3-column table —
   fewer numbers, all of them the client's own, and no sideways scroll anywhere. */
.pricecards{display:grid;grid-template-columns:1fr;gap:14px}
.pcard-price{
  background:#fff;border:1.5px solid var(--line);border-radius:var(--radius);
  padding:22px 20px;box-shadow:var(--shadow);
}
.pcard-price-hi{border-color:var(--green);border-width:2px;box-shadow:var(--shadow-lg)}
.pp-amt{
  display:block;font-family:var(--font-display);font-variant-numeric:tabular-nums;
  font-size:1.85rem;font-weight:800;color:var(--green-d);letter-spacing:-.02em;line-height:1.1;
}
.pcard-price h3{margin:.45rem 0 .4rem;font-size:1.06rem}
.pcard-price p{margin:0;font-size:.92rem;color:var(--muted);line-height:1.55}

.ptable-note{margin:18px 0 0;padding:14px 16px;background:#fff;border:1px solid var(--line);border-radius:var(--radius-sm);font-size:.83rem;color:var(--muted);line-height:1.55}
.ptable-note strong{color:var(--ink)}

.cta-inline{display:grid;gap:10px;margin-top:26px}

/* ── Promise ─────────────────────────────────────────────────────────── */
.promise-grid{display:grid;grid-template-columns:1fr;gap:14px}
.pcard{background:rgba(255,255,255,.055);border:1px solid rgba(255,255,255,.11);border-radius:var(--radius);padding:22px 20px}
.pnum{
  display:block;font-size:.78rem;font-weight:800;letter-spacing:.12em;
  color:var(--amber);margin-bottom:.5rem;
}
.pcard h3{margin-bottom:.42em}
.pcard p{margin:0;font-size:.93rem;color:#b9c6d4;line-height:1.6}

/* ── Work mosaic ─────────────────────────────────────────────────────── */
.mosaic{display:grid;grid-template-columns:repeat(2,1fr);gap:10px}
.mosaic figure{margin:0;border-radius:var(--radius-sm);overflow:hidden;background:var(--bg-alt);box-shadow:var(--shadow)}
.mosaic img{width:100%;height:100%;object-fit:cover;aspect-ratio:4/3}
.mosaic .m1,.mosaic .m7{grid-column:span 2}
.mosaic .m1 img{aspect-ratio:16/10}
.mosaic .m7 img{aspect-ratio:16/9}
.brands-lede{margin:30px 0 12px;font-size:.86rem;font-weight:700;color:var(--muted);text-transform:uppercase;letter-spacing:.08em}
.brands{display:flex;flex-wrap:wrap;gap:10px 22px;align-items:center;opacity:.72}
.brands img{height:34px;width:auto;object-fit:contain;filter:grayscale(1)}

/* ── Steps ───────────────────────────────────────────────────────────── */
/* Real-technician editorial split. Photo above the steps on a phone, beside
   them from tablet up. */
.howsplit{display:grid;grid-template-columns:1fr;gap:20px}
.howshot{margin:0}
.howshot img{
  width:100%;height:auto;border-radius:var(--radius);
  box-shadow:var(--shadow-lg);object-fit:cover;aspect-ratio:4/3;
}
.howshot figcaption{
  margin-top:.6rem;font-size:.82rem;color:var(--muted);font-style:italic;line-height:1.5;
}

.steps{list-style:none;counter-reset:s;margin:0;padding:0;display:grid;gap:16px}
.steps li{background:#fff;border:1.5px solid var(--line);border-radius:var(--radius);padding:22px 20px;box-shadow:var(--shadow)}
.snum{
  display:flex;width:38px;height:38px;border-radius:50%;background:var(--green);color:#fff;
  align-items:center;justify-content:center;font-weight:800;font-size:1.05rem;margin-bottom:.75rem;
}
.steps h3{margin-bottom:.35em}
.steps p{margin:0;font-size:.93rem;color:var(--muted)}

/* ── Reviews ─────────────────────────────────────────────────────────── */
.revgrid{display:grid;grid-template-columns:1fr;gap:14px}
.rev{margin:0;background:#fff;border:1.5px solid var(--line);border-radius:var(--radius);padding:20px;box-shadow:var(--shadow)}
.rev p{font-size:1rem;color:var(--ink-3);margin:.6rem 0 .8rem;line-height:1.6}
.rev cite{font-style:normal;font-weight:800;color:var(--ink);font-size:.9rem}
.rev cite span{font-weight:500;color:var(--muted)}
.rev-note{margin:20px 0 0;font-size:.82rem;color:var(--muted)}

/* ── Coupons ─────────────────────────────────────────────────────────── */
/* Eight offers now, so the cards are compact — two-up even on a small phone. */
.coupons{display:grid;grid-template-columns:repeat(2,1fr);gap:10px}
.coupon{
  background:#fff;border:2px dashed var(--amber);border-radius:var(--radius);
  padding:14px 12px;text-align:center;box-shadow:var(--shadow);
}
.camt{display:block;font-family:var(--font-display);font-variant-numeric:tabular-nums;
  font-size:1.45rem;font-weight:800;color:var(--green-d);letter-spacing:-.02em;line-height:1.1}
.coupon strong{display:block;color:var(--ink);font-size:.92rem;margin:.3rem 0 .25rem;line-height:1.25}
.cfine{display:block;font-size:.73rem;color:var(--muted);line-height:1.45}

/* ── FAQ ─────────────────────────────────────────────────────────────── */
.faq{display:grid;gap:10px}
.faq details{background:#fff;border:1.5px solid var(--line);border-radius:var(--radius);box-shadow:var(--shadow);overflow:hidden}
.faq summary{
  cursor:pointer;list-style:none;padding:17px 48px 17px 20px;position:relative;
  font-weight:700;color:var(--ink);font-size:1rem;line-height:1.4;
}
.faq summary::-webkit-details-marker{display:none}
.faq summary::after{
  content:"";position:absolute;right:20px;top:50%;width:10px;height:10px;
  border-right:2.5px solid var(--green);border-bottom:2.5px solid var(--green);
  transform:translateY(-70%) rotate(45deg);transition:transform .2s ease;
}
.faq details[open] summary::after{transform:translateY(-30%) rotate(225deg)}
.faq summary:focus-visible{outline:3px solid var(--green);outline-offset:-3px}
.faq .ans{padding:0 20px 18px}
.faq .ans p{margin:0;font-size:.95rem;color:var(--muted);line-height:1.65}

/* ── Contextual CTA strips ───────────────────────────────────────────────
   Placed where intent peaks — after the reviews and after the offers. Before
   these existed the page ran 9.5 phone screens without a single ask. */
.ctastrip{
  margin:26px 0 0;padding:22px 20px;
  background:#fff;border:1.5px solid var(--line);border-left:4px solid var(--green);
  border-radius:var(--radius);box-shadow:var(--shadow);
}
.ctastrip > p{
  margin:0 0 14px;font-family:var(--font-display);font-weight:700;
  font-size:1.08rem;color:var(--ink);line-height:1.35;letter-spacing:-.01em;
}
.ctastrip .cta-inline{margin-top:0}
.sec-alt .ctastrip{background:#fff}
/* On the dark promise band a white card would fight the photo — use a glass
   treatment instead, with the accent bar in amber so it reads on dark. */
.ctastrip-dark{
  background:rgba(255,255,255,.07);border-color:rgba(255,255,255,.16);
  border-left-color:var(--amber);backdrop-filter:blur(3px);
}
.ctastrip-dark > p{color:#fff}

/* ── Closing section ─────────────────────────────────────────────────── */
.finalcta{
  background:linear-gradient(135deg,var(--ink) 0%,var(--ink-3) 100%);
  color:#dbe3ec;padding:56px 0;
}
.finalcta h2{color:#fff}
.closing-in{display:grid;grid-template-columns:1fr;gap:26px}
.closing-copy p{color:#b9c6d4;max-width:46ch}
.closing-copy p strong{color:#fff}
.closing-copy .btn{margin-top:.4rem}
.closing-note{font-size:.88rem;color:#a9b7c6;margin:.9rem 0 0}
.closing-form{margin-top:0;padding:24px 20px 20px}
.closing-form .form-h{font-size:1.2rem}

/* ── Footer ──────────────────────────────────────────────────────────── */
.ftr{background:var(--ink);color:#a9b7c6;padding:44px 0 0;font-size:.9rem}
.ftr-in{display:grid;grid-template-columns:1fr;gap:26px;padding-bottom:30px}
.ftr h3{color:#fff;font-size:.79rem;letter-spacing:.11em;text-transform:uppercase;margin-bottom:.75em}
.ftr p{margin:0 0 .5rem;line-height:1.6}
.ftr a{color:#fff;font-weight:700;text-decoration:none;border-bottom:1px solid rgba(255,255,255,.3)}
.ftr a:hover{border-bottom-color:#fff}
.ftr-brand img{height:44px;width:auto;margin-bottom:.9rem}
.ftr-brand p{max-width:34ch}
.ftr-legal{
  border-top:1px solid rgba(255,255,255,.11);padding-top:18px;padding-bottom:calc(18px + env(safe-area-inset-bottom));
  display:flex;flex-wrap:wrap;gap:8px 22px;justify-content:space-between;font-size:.82rem;
}
.ftr-legal p{margin:0}
.ftr-links{display:flex;gap:20px}

/* ── Sticky mobile action bar ────────────────────────────────────────── */
/* Call takes ~2/3 of the bar. On an emergency-dominant page the thumb zone
   belongs to the phone, with the form as the narrower secondary path. */
.mobar{
  position:fixed;left:0;right:0;bottom:0;z-index:99;display:grid;
  grid-template-columns:1.9fr 1fr;gap:8px;
  padding:9px 12px calc(9px + env(safe-area-inset-bottom));
  background:rgba(255,255,255,.97);backdrop-filter:blur(8px);
  border-top:1px solid var(--line);box-shadow:0 -4px 20px rgba(17,24,32,.13);
}
.mobar .btn{font-size:1rem;padding:14px 8px;min-height:52px}
.mobar-call{font-size:1.06rem}
.mobar-call .ico{width:18px;height:18px}
body{padding-bottom:80px}

/* Reveal-on-scroll — only ever hides when JS is confirmed running. */
.js .reveal{opacity:0;transform:translateY(16px)}
.js .reveal.in{opacity:1;transform:none;transition:opacity .5s ease,transform .5s cubic-bezier(.2,.7,.3,1)}
@media (prefers-reduced-motion:reduce){
  .js .reveal{opacity:1;transform:none}
  .js .reveal.in{transition:none}
}

/* ══════════════ ≥560px ══════════════ */
@media (min-width:560px){
  .symgrid{grid-template-columns:repeat(2,1fr)}
  .coupons{grid-template-columns:repeat(3,1fr)}
  .row{grid-template-columns:1.4fr 1fr;gap:0 12px}
  .hero-cta{grid-auto-flow:column;justify-content:start;gap:12px}
  .cta-inline{grid-auto-flow:column;justify-content:start;gap:12px}
  .trust-in{grid-template-columns:repeat(3,1fr)}
  .revgrid{grid-template-columns:repeat(2,1fr)}
}

/* ══════════════ ≥900px — hero splits, mobile bar retires ══════════════ */
@media (min-width:900px){
  body{font-size:17.5px;padding-bottom:0}
  .mobar{display:none}
  .nav{display:flex;gap:26px;margin-left:28px}
  .nav a{
    color:#c7d2de;text-decoration:none;font-size:.9rem;font-weight:600;
    padding:6px 0;border-bottom:2px solid transparent;transition:color .15s,border-color .15s;
  }
  .nav a:hover{color:#fff;border-bottom-color:var(--amber)}
  .nav a:focus-visible{outline:2px solid var(--amber);outline-offset:3px;border-radius:3px}
  .hdr-call{padding:11px 20px;min-height:46px;font-size:1.05rem}

  /* Desktop hero is a left-to-right split: copy on the left, a clear band of
     photograph through the middle where the technician stands, form on the
     right. The gap is deliberately wide — it is not whitespace, it is the
     window the technician is seen through. */
  .hero-in{
    display:grid;grid-template-columns:minmax(0,.86fr) minmax(390px,.84fr);
    gap:130px;align-items:center;padding:70px 20px 76px;
  }
  /* Scrim only where text sits. It falls away almost completely across the
     middle band so the technician is lit, then lifts again under the form. */
  /* Stops are aligned to the actual grid: the copy column ends at ~46% of the
     viewport and the form begins at ~55%, so the scrim stays full strength
     across the text, collapses through the 46–55% window where the technician
     stands, then lifts again behind the form. */
  .hero::after{
    background:
      linear-gradient(90deg,
        rgba(10,15,22,.93) 0%,
        rgba(10,15,22,.91) 38%,
        rgba(10,15,22,.66) 45%,
        rgba(10,15,22,.20) 51%,
        rgba(10,15,22,.12) 56%,
        rgba(10,15,22,.34) 64%,
        rgba(10,15,22,.46) 100%),
      linear-gradient(180deg,rgba(10,15,22,.44) 0%,rgba(10,15,22,.30) 22%,rgba(10,15,22,0) 38%);
  }
  .hero-bg img{object-position:50% 40%}
  .hero-sub{font-size:1.24rem;max-width:34ch}
  .formcard{margin-top:0;padding:28px 26px 24px}
  .hero-desk-note{display:block;margin:.95rem 0 0;font-size:.94rem;color:#dfe7f0}
  .hero-desk-note .phone-number{color:#fff;font-weight:800}

  .sec{padding:78px 0}
  .sec-head{margin-bottom:42px}
  .symgrid{grid-template-columns:repeat(3,1fr);gap:16px}
  .promise-grid{grid-template-columns:repeat(2,1fr);gap:18px}
  .mosaic{grid-template-columns:repeat(4,1fr);gap:12px}
  .mosaic .m1{grid-column:span 2;grid-row:span 2}
  .mosaic .m1 img{aspect-ratio:auto;height:100%}
  .mosaic .m7{grid-column:span 2}
  .howsplit{grid-template-columns:minmax(0,.85fr) minmax(0,1.6fr);gap:36px;align-items:start}
  .howshot img{aspect-ratio:3/4}
  .steps{grid-template-columns:1fr;gap:14px}
  .revgrid{grid-template-columns:repeat(4,1fr)}
  .closing-in{grid-template-columns:minmax(0,1.1fr) minmax(360px,.9fr);gap:48px;align-items:center}
  .ftr-in{grid-template-columns:1.5fr 1fr 1fr 1.2fr;gap:40px}
  .trust-in{grid-template-columns:repeat(6,1fr);gap:20px 16px}
  .ptable{min-width:0}
  .brands img{height:38px}
}

@media (min-width:1080px){
  .hero-in{gap:150px;padding:86px 20px 92px}
  .promise-grid{grid-template-columns:repeat(4,1fr)}
}
