/* ===================== Two Force Movers — Full CSS (v39.0.0 Mobile-First) ===================== */
/* ===========================================================================================
   v39.0.0 — MOBILE-FIRST
   - 90% users on mobile: thumb-friendly touch targets (min 48px)
   - Call & Quick Quote buttons prominent, easy to tap
   - Smooth mobile nav, no horizontal scroll (tables/images)
   - Lighter backgrounds on mobile for faster paint
   =========================================================================================== */

/* ===========================================================================================
   TOKENS / THEME
   =========================================================================================== */
:root{
  /* Brand */
  --brand:#0b3a82;
  --brand-2:#0a2f68;
  --accent:#f59e0b;
  --accent-2:#fbbf24;

  /* Surface */
  --bg:#f6f7fb;
  --bg-2:#eef1f7;
  --panel:#ffffff;
  --panel-2:#fbfcff;

  /* Text */
  --text:#0f172a;
  --muted:#475569;
  --muted-2:#64748b;

  /* Borders / Rings */
  --border: rgba(15, 23, 42, .10);
  --border-2: rgba(15, 23, 42, .14);
  --ring: rgba(245, 158, 11, .28);
  --ring-strong: rgba(245, 158, 11, .65);

  /* CTA */
  --cta:#0b3a82;
  --cta-2:#0a2f68;
  --cta-txt:#ffffff;
  --call:#f97316;
  --call-2:#ea580c;

  /* Shadows / Radii */
  --shadow:0 12px 30px rgba(2, 6, 23, .10);
  --shadow-sm:0 8px 20px rgba(2, 6, 23, .08);
  --radius:16px;
  --radius-lg:22px;

  /* Layout */
  --container:1120px;
  --container-pad:16px;
  --header-h:64px;

  /* Mobile touch targets (min 48px per Apple HIG, 44pt) */
  --touch-min:48px;
  --touch-cta:52px;
  --fab-size:64px;

  /* Hero */
  --hero-grad:linear-gradient(180deg, rgba(11,58,130,.08), rgba(11,58,130,0));
  --hero-bg:linear-gradient(180deg, #ffffff 0%, #f6f7fb 55%, #f6f7fb 100%);

  /* Pointer vars */
  --mx:50%;
  --my:50%;
}

body[data-theme="dark"]{
  --bg:#0b1224;
  --bg-2:#0a1020;
  --panel:#0f172a;
  --panel-2:#0b1224;
  --text:#e5e7eb;
  --muted:#94a3b8;
  --muted-2:#a3b2c7;
  --border: rgba(148,163,184,.14);
  --border-2: rgba(148,163,184,.18);
  --shadow:0 14px 34px rgba(0,0,0,.35);
  --shadow-sm:0 10px 24px rgba(0,0,0,.28);
  --hero-bg:linear-gradient(180deg, rgba(9,12,22,.85), rgba(9,12,22,.92));
}

/* ===========================================================================================
   BASE / RESET
   =========================================================================================== */
*, *::before, *::after{ box-sizing:border-box; }
[hidden]{display:none !important}
html,body{height:100%}

/* ✅ Mobile safety: prevent any horizontal scroll across all pages */
html, body{
  max-width:100%;
  overflow-x:hidden;
}

body{
  margin:0;
  color:var(--text);
  background:var(--bg);
  font:400 16px/1.6 system-ui,-apple-system,"Segoe UI",Roboto,Inter,Arial,sans-serif;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;

  /* ✅ Keep header offset globally */
  padding-top:calc(var(--header-h) + env(safe-area-inset-top, 0px));
  min-height:100dvh;
}

/* ✅ Prevent long words/URLs from forcing overflow (CONTENT SAFE) */
.container, main, section, header, footer{ min-width:0; }

/* ✅ IMPORTANT FIX:
   - Do NOT apply overflow-wrap:anywhere to ALL links globally (breaks header nav labels)
   - Keep it for titles/paragraphs/lists
*/
.gradient-title, .lead, p, li{
  overflow-wrap:anywhere;
  word-break:normal;
}

/* ✅ Allow long URLs to wrap inside content text only */
p a, li a, .muted a, .lead a{
  overflow-wrap:anywhere;
  word-break:normal;
}

a{color:var(--brand); text-decoration:none}
a:hover{color:var(--brand-2)}
a:focus-visible,button:focus-visible,[role="button"]:focus-visible,
input:focus-visible,select:focus-visible,textarea:focus-visible{
  outline:2px solid var(--ring-strong);
  outline-offset:2px;
  box-shadow:0 0 0 3px var(--ring);
  border-color:var(--ring-strong);
}
::selection{background:rgba(245,158,11,.35); color:#0f172a}
::placeholder{color:var(--muted-2)}
img{max-width:100%; height:auto; display:block; object-fit:contain}
video, iframe, svg{max-width:100%; height:auto;}
/* Prevent any content from causing horizontal scroll */
section img, .card img, main img, article img{ max-width:100%; }
svg{display:inline-block;vertical-align:middle}
small,.muted{color:var(--muted)}
strong{font-weight:800}

/* ✅ Skip link (accessibility) */
.skip-link{
  position:absolute;
  left:-9999px;
  top:auto;
  width:1px;
  height:1px;
  overflow:hidden;
}
.skip-link:focus{
  left:16px;
  top:16px;
  width:auto;
  height:auto;
  z-index:999999;
  background:#fff;
  color:#0f172a;
  padding:10px 12px;
  border-radius:12px;
  box-shadow:0 14px 40px rgba(2,6,23,.18);
}

/* Background — lighter on mobile for faster paint */
body::before{
  content:"";
  position:fixed;
  inset:0;
  z-index:-2;
  background:linear-gradient(180deg, #ffffff, var(--bg));
}
body::after{
  content:"";
  position:fixed;
  inset:0;
  z-index:-1;
  background:linear-gradient(180deg, rgba(255,255,255,.6), rgba(255,255,255,0));
  pointer-events:none;
}
@media (min-width:768px){
  body::before{
    background:
      radial-gradient(1200px 500px at 50% 0%, rgba(11,58,130,.10), transparent 60%),
      radial-gradient(900px 380px at 10% 40%, rgba(245,158,11,.10), transparent 55%),
      radial-gradient(900px 420px at 90% 55%, rgba(14,165,233,.08), transparent 55%),
      linear-gradient(180deg, #ffffff, var(--bg));
  }
  body::after{ background:linear-gradient(180deg, rgba(255,255,255,.55), rgba(255,255,255,0)); }
}

/* ✅ Soft banding helper */
.soft-divider{
  height:1px;
  background:linear-gradient(90deg, rgba(15,23,42,0), rgba(15,23,42,.14), rgba(15,23,42,0));
  margin:22px 0;
  border:0;
}

/* Containers */
.container{
  width:min(var(--container), 100%);
  margin:0 auto;
  padding:0 var(--container-pad);
}

/* ===========================================================================================
   HEADER / NAV
   =========================================================================================== */
#topbar{
  position:fixed; top:0; left:0; right:0; height:var(--header-h);
  z-index:4000;
  display:flex; align-items:center; justify-content:center;
  background:rgba(255,255,255,.82);

  /* ✅ glass stays here only */
  backdrop-filter:saturate(1.1) blur(10px);
  -webkit-backdrop-filter:saturate(1.1) blur(10px);

  border-bottom:1px solid var(--border);
  transition:background .2s ease, box-shadow .2s ease, border-color .2s ease;
}
#topbar.elev-2{
  background:rgba(255,255,255,.92);
  box-shadow:0 8px 24px rgba(2,6,23,.10);
  border-color:var(--border-2);
}
#topbar .container.nav{
  width:min(var(--container),100%);
  padding:10px 16px;
  display:flex;
  align-items:center;
  gap:12px;
  justify-content:space-between;
  flex-wrap:nowrap; /* ✅ keep one row */
}

.brand .site-logo,
.site-logo{
  max-height:44px;
  height:auto;
  width:auto;
  display:block;
  filter: drop-shadow(0 6px 16px rgba(2,6,23,.10));
}

/* Desktop nav */
nav ul{
  list-style:none;
  margin:0;
  padding:0;
  display:none;
  gap:14px;
  align-items:center;
  flex-wrap:nowrap; /* ✅ keep labels stable */
}

/* ✅ CRITICAL: prevent nav text splitting */
#topbar nav a,
#topbar nav ul a,
#topbar .cta-wrap a{
  white-space:nowrap;
  word-break:keep-all;
  overflow-wrap:normal;
}

nav ul a{
  padding:8px 10px;
  border-radius:12px;
  color:rgba(15,23,42,.80);
  font-weight:700;
}
nav ul a:hover{
  background:rgba(11,58,130,.08);
  color:var(--brand);
}
.nav-link{
  display:inline-flex;
  align-items:center;
  position:relative;
}
nav a[aria-current="page"], .nav-link[aria-current="page"]{ color:var(--brand); }
.nav-link[aria-current="page"]::after{
  content:"";
  position:absolute;
  left:10px;
  right:10px;
  bottom:-6px;
  height:2px;
  background:linear-gradient(90deg,var(--accent),var(--accent-2));
  border-radius:2px;
}

/* Mobile hamburger — thumb-friendly 48px */
.mobile-toggle{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:var(--touch-min);
  height:var(--touch-min);
  min-width:var(--touch-min);
  min-height:var(--touch-min);
  font-size:24px;
  line-height:1;
  border:1px solid var(--border-2);
  background:rgba(255,255,255,.70);
  color:var(--text);
  border-radius:14px;
  cursor:pointer;
  -webkit-tap-highlight-color:transparent;
  touch-action:manipulation;
}

/* CTA wrap — header CTAs thumb-friendly on mobile */
.cta-wrap{
  display:flex;
  align-items:center;
  gap:10px;
}
@media (max-width:767px){
  .cta-wrap .btn{
    min-height:var(--touch-cta);
    padding:12px 16px;
    font-size:.95rem;
  }
}

/* ✅ Optional: avoid squeeze on tight desktop (keep icon, hide long call text) */
@media (max-width: 1200px){
  #topbar .cta-wrap a.btn.btn--primary[href^="tel:"]{
    display:none !important;
  }
}

/* Backdrop */
.backdrop{
  position:fixed;
  inset:0;
  background:rgba(2,6,23,.35);
  z-index:9998;
  opacity:0;
  pointer-events:none;
  transition:opacity .25s ease;
}
body.nav-open .backdrop{
  opacity:1;
  pointer-events:auto;
}

/* Lock scroll when mobile nav open */
body.nav-open{
  overflow:hidden;
  touch-action:none;
  overscroll-behavior:contain;
}

/* Mobile off-canvas — smooth, thumb-friendly */
.mobile-nav[hidden]{ display:none !important; }
.mobile-nav{
  position:fixed;
  top:0; bottom:0; left:0;
  width:min(88vw, 340px);
  max-width:340px;
  background:rgba(255,255,255,.99);
  border-right:1px solid var(--border);
  z-index:10000;
  transform:translateX(-100%);
  transition:transform .32s cubic-bezier(.25,.46,.45,.94);
  padding:max(88px, env(safe-area-inset-top)) 20px 24px;
  padding-bottom:calc(24px + env(safe-area-inset-bottom));
  display:flex;
  flex-direction:column;
  gap:2px;
  overflow-y:auto;
  overflow-x:hidden;
  -webkit-overflow-scrolling:touch;
  overscroll-behavior:contain;
}
.mobile-nav hr{
  border:0;
  height:1px;
  background: rgba(15,23,42,.12);
  margin: 14px 0;
}
.mobile-nav.open{ transform:translateX(0); }

.mobile-nav a{
  display:flex;
  align-items:center;
  min-height:var(--touch-cta);
  padding:14px 16px;
  color:rgba(15,23,42,.92);
  text-decoration:none;
  font-weight:800;
  font-size:1rem;
  letter-spacing:.15px;
  border-radius:14px;
  border:1px solid transparent;
  -webkit-tap-highlight-color:transparent;
  touch-action:manipulation;
}
.mobile-nav a:hover, .mobile-nav a:active{
  background:rgba(11,58,130,.08);
  border-color:rgba(11,58,130,.12);
}
.mobile-nav a:focus-visible{
  outline:2px solid var(--ring-strong);
  outline-offset:2px;
}

/* Prominent Call/Quote in mobile nav */
.mobile-nav a[href^="tel:"],
.mobile-nav a.mobile-cta-call{
  background:linear-gradient(135deg,var(--call),var(--call-2)) !important;
  color:#111827 !important;
  justify-content:center;
  font-size:1.05rem;
}
.mobile-nav a[href*="quick-quote"]:not([href^="tel:"]),
.mobile-nav a[href*="#quick-quote"]:not([href^="tel:"]),
.mobile-nav a.js-go-quickquote:not([href^="tel:"]),
.mobile-nav a.mobile-cta-quote{
  background:linear-gradient(135deg,var(--cta),var(--cta-2)) !important;
  color:#fff !important;
  justify-content:center;
  font-size:1.05rem;
}

/* Services dropdown */
.has-sub{ position:relative; --bridge:10px; }
.has-sub::after{ content:""; position:absolute; left:0; right:0; top:100%; height:var(--bridge); }
.has-sub>.nav-link::after{
  content:"▾";
  margin-left:.4rem;
  font-size:.8em;
  opacity:.8;
}
.has-sub .dropdown{
  position:absolute;
  left:0;
  top:100%;
  margin-top:var(--bridge);
  min-width:280px;
  background:var(--panel);
  border:1px solid var(--border);
  border-radius:14px;
  padding:8px;
  display:none;
  z-index:50;
  box-shadow:var(--shadow);
}
.has-sub[aria-expanded="true"] .dropdown{display:block}
.has-sub .dropdown a{
  display:block;
  padding:10px 12px;
  border-radius:12px;
  color:rgba(15,23,42,.86);
  font-weight:700;
  white-space:normal; /* dropdown items can wrap naturally */
}
.has-sub .dropdown a:hover{
  background:rgba(11,58,130,.08);
  color:var(--brand);
}
@media (max-width:900px){
  .has-sub .dropdown{
    position:static;
    display:none!important;
    border:none;
    box-shadow:none;
    padding:0;
    margin-top:0;
  }
  .has-sub>.nav-link::after{display:none}
}

/* ===========================================================================================
   BUTTONS / ICON BUTTONS / FAB
   =========================================================================================== */
.btn{
  position:relative;
  overflow:hidden;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:14px 20px;
  border-radius:999px;
  font-weight:900;
  border:0;
  cursor:pointer;
  white-space:nowrap;
  text-align:center;
  transition:transform .08s ease, box-shadow .2s ease, filter .2s ease, background .2s ease;
  user-select:none;
  min-height:var(--touch-cta);
  -webkit-tap-highlight-color:transparent;
  touch-action:manipulation;
}
.btn:active{transform:translateY(1px)}
.btn--primary{
  color:var(--cta-txt);
  background:linear-gradient(135deg,var(--cta),var(--cta-2));
  box-shadow:0 12px 24px rgba(11,58,130,.18);
}
.btn--primary:hover{ filter:brightness(1.03) }
.btn--ghost{
  color:rgba(15,23,42,.92);
  background:rgba(255,255,255,.70);
  border:1px solid var(--border-2);
  box-shadow:var(--shadow-sm);
}
.btn--call{
  color:#111827;
  background:linear-gradient(135deg,var(--call),var(--call-2));
  box-shadow:0 12px 24px rgba(234,88,12,.18);
}
.btn--sms{
  background:#0ea5e9;
  color:#fff;
  box-shadow:0 12px 24px rgba(14,165,233,.18);
}
@media (min-width:768px){
  .btn{ padding:12px 16px; min-height:46px; }
}

.icon-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:var(--touch-min);
  height:var(--touch-min);
  min-width:var(--touch-min);
  min-height:var(--touch-min);
  border-radius:999px;
  border:1px solid var(--border-2);
  background:rgba(255,255,255,.78);
  box-shadow:var(--shadow-sm);
  color:rgba(15,23,42,.90);
  -webkit-tap-highlight-color:transparent;
  touch-action:manipulation;
}
@media (min-width:768px){
  .icon-btn{ width:42px; height:42px; min-width:42px; min-height:42px; }
}
.icon-btn:hover{ filter:brightness(1.02) }
.icon-btn--call{
  color:#111827;
  background:linear-gradient(135deg,var(--call),var(--call-2));
  border-color:rgba(234,88,12,.20);
  box-shadow:0 12px 24px rgba(234,88,12,.16);
}

/* FABs — Mobile: large, thumb-zone (bottom-right) */
.fab-wrap{
  position:fixed;
  right:max(16px, env(safe-area-inset-right));
  bottom:max(20px, env(safe-area-inset-bottom));
  z-index:80;
  display:flex;
  flex-direction:column;
  gap:12px;
}
.fab{
  display:grid;
  place-items:center;
  padding:0 20px;
  min-width:var(--fab-size);
  height:var(--fab-size);
  border-radius:999px;
  text-decoration:none;
  font-weight:900;
  font-size:1rem;
  letter-spacing:.2px;
  transition:transform .12s ease, filter .2s ease, box-shadow .2s ease, opacity .18s ease;
  -webkit-tap-highlight-color:transparent;
  touch-action:manipulation;
}
.fab--call{
  color:#111827;
  background:linear-gradient(135deg,var(--call),var(--call-2));
  box-shadow:0 16px 32px rgba(234,88,12,.28);
  width:var(--fab-size);
  min-width:var(--fab-size);
  padding:0;
}
.fab--quote{
  color:#fff;
  background:linear-gradient(135deg,var(--cta),var(--cta-2));
  box-shadow:0 16px 32px rgba(11,58,130,.22);
}
.fab:hover{ filter:brightness(1.03) }
.fab:active{ transform:scale(.96) }
@media (min-width:768px){
  .fab{ min-width:58px; height:58px; }
  .fab--call{ width:58px; min-width:58px; }
}

.fab.is-hidden{
  opacity:0;
  transform:translateY(10px);
  pointer-events:none;
  filter:none;
  box-shadow:none;
}

/* Ripple */
.btn[data-ripple]{overflow:hidden}
.btn[data-ripple]::after{
  content:"";
  position:absolute;
  top:50%;
  left:50%;
  width:220%;
  height:220%;
  border-radius:50%;
  background:rgba(255,255,255,.35);
  transform:translate(-50%,-50%) scale(0);
  pointer-events:none;
  opacity:0;
}
.btn[data-ripple]:active::after{ animation:btn-ripple .6s ease-out forwards; }
@keyframes btn-ripple{
  0%{ opacity:.35; transform:translate(-50%,-50%) scale(.2); }
  100%{ opacity:0; transform:translate(-50%,-50%) scale(1); }
}

/* ===========================================================================================
   HERO — legacy .hero + new .lead-hero
   =========================================================================================== */
.hero{
  padding:18px 0 18px;
  background:var(--hero-bg);
  border-bottom:1px solid var(--border);
}
.hero .container.wrap{ display:block; }

.lead-hero{
  position:relative;
  overflow:hidden;
  padding:clamp(26px, 4vw, 56px) 0;
  border-bottom:1px solid rgba(255,255,255,.14);
  background:
    radial-gradient(900px 420px at 18% 28%, rgba(255,255,255,.10), rgba(255,255,255,0)),
    linear-gradient(120deg, #0b2b55 0%, #0f4c81 38%, #ff7a2f 100%);
}
.lead-hero .wrap{
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:clamp(18px, 3vw, 28px);
  align-items:center;
}
.lead-hero .reveal{ color:rgba(255,255,255,.92); }
.lead-hero .eyebrow{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.18);
  color:rgba(255,255,255,.92);
  font-weight:900;
  letter-spacing:.2px;
}
.lead-hero .eyebrow .dot{
  width:9px;
  height:9px;
  border-radius:50%;
  background:#63ffb2;
  box-shadow:0 0 0 3px rgba(99,255,178,.22);
}
.lead-hero .gradient-title{
  margin:14px 0 10px;
  font-size:clamp(34px, 4.2vw, 56px);
  line-height:1.05;
  letter-spacing:-.02em;
  font-weight:950;
  color:#fff;
}
.lead-hero .lead{
  color:rgba(255,255,255,.86);
  font-size:1.05rem;
  line-height:1.55;
  max-width:62ch;
}
.lead-hero .badges{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin:12px 0 12px;
}
.lead-hero .badges .badge{
  background:rgba(255,255,255,.14);
  border:1px solid rgba(255,255,255,.18);
  color:rgba(255,255,255,.92);
}
.lead-hero .hero-ctas{
  display:grid;
  grid-template-columns:1fr;
  gap:10px;
  margin-top:12px;
}
.lead-hero .hero-ctas .btn{
  width:100%;
  border-color:rgba(255,255,255,.22);
}
.lead-hero .hero-ctas .btn.btn--ghost{
  background:rgba(255,255,255,.10);
  color:rgba(255,255,255,.95);
  border:1px solid rgba(255,255,255,.20);
  box-shadow:0 12px 24px rgba(0,0,0,.10);
}
.lead-hero .hero-ctas .btn.btn--sms{
  background:rgba(255,255,255,.14);
  color:rgba(255,255,255,.95);
}

/* ✅ hero-card glass stays (ONLY here) */
.lead-hero .hero-card{
  margin-top:0;
  background:rgba(255,255,255,.96) !important;
  border:1px solid rgba(255,255,255,.45) !important;
  box-shadow:0 18px 55px rgba(0,0,0,.22) !important;
  backdrop-filter:blur(8px);
  -webkit-backdrop-filter:blur(8px);
}
.lead-hero .hero-card h3{ margin-top:2px; }
.lead-hero .hero-card .muted{ color:rgba(15,25,38,.72) !important; }
.lead-hero .hero-card label{
  color:rgba(15,25,38,.88);
  font-weight:900;
}
.lead-hero .hero-card input,
.lead-hero .hero-card select,
.lead-hero .hero-card textarea{
  background:#fff;
  border-color:rgba(15,25,38,.18);
}
.lead-hero .hero-card input:focus,
.lead-hero .hero-card select:focus,
.lead-hero .hero-card textarea:focus{
  border-color:rgba(15, 85, 150, .55);
  box-shadow:0 0 0 4px rgba(15, 85, 150, .12);
  outline:none;
}
.lead-hero .hero-card .btn--primary{
  width:100%;
  border-radius:12px;
}
.lead-hero .hero-card small.muted{
  display:block;
  margin-top:10px;
  font-size:.88rem;
  line-height:1.4;
}
@media (max-width:920px){
  .lead-hero .wrap{ grid-template-columns:1fr; }
}

/* Shared hero text components */
.eyebrow{
  color:var(--muted-2);
  font-weight:800;
  display:flex;
  align-items:center;
  gap:8px;
}
.dot{
  width:8px;
  height:8px;
  border-radius:50%;
  background:#22c55e;
  display:inline-block;
}
.gradient-title{
  margin:10px 0 10px;
  font-size:clamp(28px, 6.2vw, 52px);
  line-height:1.12;
  font-weight:950;
  color:var(--text);
  letter-spacing:-.02em;
}
.lead{
  color:rgba(15,23,42,.78);
  font-size:1.06rem;
  max-width:54ch;
}

/* Trust badges */
.badges{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin:12px 0 12px;
}
.badge{
  padding:9px 12px;
  border-radius:999px;
  background:rgba(11,58,130,.06);
  border:1px solid rgba(11,58,130,.10);
  color:rgba(15,23,42,.78);
  font-weight:800;
}

/* CTAs */
.hero-ctas{
  display:grid;
  grid-template-columns:1fr;
  gap:10px;
  margin-top:12px;
}
.hero-ctas .btn{ width:100%; }

/* CTA small link */
.cta-link{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-weight:900;
  letter-spacing:.15px;
  text-decoration:underline;
  text-underline-offset:3px;
}

/* hero-card */
.hero-card{
  margin-top:14px;
  background:var(--panel);
  border:1px solid var(--border);
  border-radius:var(--radius-lg);
  box-shadow:var(--shadow);
  padding:18px;
}
.hero-card .section-title{ margin-top:0; }
.hero-card .muted{ color:var(--muted-2); }

/* ===========================================================================================
   CARDS / PANELS
   =========================================================================================== */
.panel{
  background:var(--panel);
  border:1px solid var(--border);
  border-radius:var(--radius-lg);
  box-shadow:var(--shadow);
}
.card{
  background:var(--panel);
  border:1px solid var(--border);
  border-radius:var(--radius-lg);
  box-shadow:var(--shadow-sm);
  padding:18px;
}
.panel.note{ border-left:4px solid var(--accent); }

/* Optional glow */
.glow{
  position:relative;
  background:
    radial-gradient(600px 260px at var(--mx) var(--my), rgba(245,158,11,.10), transparent 60%),
    var(--panel);
}

/* ===========================================================================================
   FORMS
   =========================================================================================== */
.form-field{
  display:flex;
  flex-direction:column;
  gap:6px;
  margin-bottom:12px;
}
label{
  font-weight:800;
  color:rgba(15,23,42,.86);
}
input, select, textarea{
  width:100%;
  padding:12px 14px;
  border-radius:14px;
  color:var(--text);
  background:#ffffff;
  border:1px solid var(--border-2);
  outline-color:var(--ring);
  box-shadow:0 1px 0 rgba(2,6,23,.04);
  font-size:16px;
}
textarea{resize:vertical}
.hp{
  position:absolute !important;
  left:-9999px !important;
  width:1px;
  height:1px;
  overflow:hidden;
  opacity:0;
}

/* Date input */
input[type="date"]{
  color-scheme:light;
  background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%230b3a82'><path d='M7 2a1 1 0 0 1 1 1v1h8V3a1 1 0 1 1 2 0v1h1a2 2 0 0 1 2 2v13a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h1V3a1 1 0 1 1 2 0v1zm12 6H5v11h14V8zM7 12h3v3H7v-3z'/></svg>");
  background-repeat:no-repeat;
  background-position:right 12px center;
  background-size:18px;
  padding-right:52px;
  position:relative;
}
input[type="date"]::-webkit-calendar-picker-indicator{
  opacity:0;
  cursor:pointer;
  width:44px;
  height:44px;
  position:absolute;
  right:6px;
  top:50%;
  transform:translateY(-50%);
}

/* submit full width */
form .btn[type="submit"], form button[type="submit"]{ width:100%; }

/* ===========================================================================================
   ✅ QUICK QUOTE (2-step)
   =========================================================================================== */
#quickForm .qstep{ display:none; }
#quickForm .qstep.is-active{ display:block; }

/* ===========================================================================================
   LAYOUT / GRIDS
   =========================================================================================== */
.wrap{ display:block }
.cards{ display:grid; gap:16px }
.cards.two{ grid-template-columns:1fr }
.grid{ display:grid; grid-template-columns:1fr; gap:12px }
.grid-3{ display:grid; grid-template-columns:1fr; gap:12px }

/* Services grid */
#services .cards{
  display:grid;
  grid-template-columns:1fr;
  gap:16px;
}
.service-card{
  position:relative;
  isolation:isolate;
  transition:box-shadow .25s ease, background .25s ease, border-color .2s ease;
}
.service-card:not(.card){
  background:var(--panel);
  border:1px solid var(--border);
  border-radius:var(--radius-lg);
  box-shadow:var(--shadow-sm);
  padding:18px;
}
.service-card:hover{
  border-color:rgba(11,58,130,.20);
  box-shadow:0 16px 30px rgba(2,6,23,.10);
}

/* Process */
.process{ padding:24px 0; }
.process__title{
  text-align:left;
  margin:0 0 10px;
  font-size:clamp(24px, 5vw, 40px);
  letter-spacing:-.02em;
}
.process__container.container{ padding:0 var(--container-pad); }
.process__steps{
  list-style:none;
  margin:0;
  padding:0;
  display:grid;
  grid-template-columns:1fr;
  gap:14px;
}
.step{ min-width:0; }
.step__badge{
  height:38px;
  width:38px;
  border-radius:999px;
  display:grid;
  place-items:center;
  background:linear-gradient(135deg,var(--accent),var(--accent-2));
  color:#111827;
  font-weight:950;
  box-shadow:0 10px 18px rgba(245,158,11,.14);
  margin-bottom:8px;
}
.step .step__icon{
  color:rgba(15,23,42,.86);
  margin-bottom:8px;
}

/* Reviews */
.stars{ color:#f59e0b; font-size:18px; }

/* FAQ */
details.card summary{ cursor:pointer; outline:none; }
details.card[open]{ border-color:rgba(11,58,130,.18); }

/* ===========================================================================================
   STATS BAND
   =========================================================================================== */
.stats-band{
  position:relative;
  padding:26px 0;
  margin:18px 0;
  background:linear-gradient(180deg, rgba(11,58,130,.06), rgba(255,255,255,0));
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
}
.stats-grid{
  display:grid;
  gap:16px;
  grid-template-columns:1fr;
}
.stat{
  text-align:center;
  padding:18px;
  border-radius:18px;
  background:var(--panel);
  border:1px solid var(--border);
  box-shadow:var(--shadow-sm);
}
.stat__icon{
  display:inline-grid;
  place-items:center;
  margin-bottom:8px;
  width:58px;
  height:58px;
  border-radius:999px;
  border:1px solid var(--border);
  background:rgba(11,58,130,.06);
}
.stat__label{ color:rgba(15,23,42,.78); }

/* ===========================================================================================
   AREAS WE SERVE
   =========================================================================================== */
.areas-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:12px;
}
.areas-grid a,.area-link{
  display:block;
  text-align:center;
  font-weight:950;
  padding:12px 14px;
  border-radius:14px;
  border:1px solid var(--border);
  background:var(--panel);
  box-shadow:var(--shadow-sm);
  color:rgba(15,23,42,.92);
  transition:border-color .2s ease, box-shadow .2s ease;
}
.areas-grid a:hover,.area-link:hover{
  border-color:rgba(11,58,130,.22);
  box-shadow:0 16px 30px rgba(2,6,23,.10);
}
.filter{
  display:flex;
  gap:10px;
  align-items:center;
  margin-top:14px;
}
.filter input{flex:1}

/* Featured Areas + actions + show more */
.areas-featured{
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:12px;
  margin-top:12px;
}
.areas-featured .card{
  padding:14px;
  text-align:center;
  font-weight:950;
  background:linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.78));
  border:1px solid rgba(15,23,42,.10);
  border-radius:18px;
  box-shadow:0 14px 28px rgba(2,6,23,.08);
  transition:box-shadow .2s ease, border-color .18s ease;
}
.areas-featured .card:hover{
  border-color:rgba(11,58,130,.22);
  box-shadow:0 18px 36px rgba(2,6,23,.12);
}
.areas-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  align-items:center;
  margin-top:12px;
}
.areas-actions .btn{ width:auto; }
.areas-more{ display:none; margin-top:12px; }
.areas-more.is-open{ display:block; }
@media (min-width:900px){
  .areas-featured{ grid-template-columns:repeat(4, minmax(0,1fr)); }
}

/* ===========================================================================================
   FOOTER
   =========================================================================================== */
footer{
  padding:28px 0;
  color:rgba(15,23,42,.92);
  background:linear-gradient(180deg, rgba(255,255,255,0), rgba(11,58,130,.04));
  border-top:1px solid var(--border);
}
.footgrid{
  display:grid;
  grid-template-columns:1fr;
  gap:20px;
  align-items:start;
}
.link-underline{
  text-decoration:underline;
  text-underline-offset:3px;
}
.sep{
  border:0;
  border-top:1px solid var(--border);
  margin:10px 0;
}
.copyright{
  border-top:1px solid var(--border);
  margin-top:22px;
  padding-top:16px;
  color:rgba(15,23,42,.65);
  font-size:14px;
}

/* ===========================================================================================
   SERVICES PAGE (svc-*)
   =========================================================================================== */
body.page-services{
  background:
    radial-gradient(900px 520px at 18% -10%, rgba(245,158,11,.12) 0%, rgba(245,158,11,0) 60%),
    radial-gradient(900px 520px at 92% -10%, rgba(11,58,130,.12) 0%, rgba(11,58,130,0) 62%),
    linear-gradient(180deg, #f6f7fb 0%, #f7f9ff 52%, #f6f7fb 100%);
}

.svc-hero{
  padding:18px var(--container-pad) 14px;
  width:min(var(--container), 100%);
  margin:18px auto 0;

  border:1px solid rgba(15,23,42,.08);
  background:linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.78));
  box-shadow:0 20px 50px rgba(2,6,23,.10);
  border-radius:22px;
  overflow:hidden;
  position:relative;
}
.svc-hero::before{
  content:"";
  position:absolute;
  inset:-2px;
  background:
    radial-gradient(520px 280px at 12% 18%, rgba(245,158,11,.22) 0%, rgba(245,158,11,0) 60%),
    radial-gradient(520px 280px at 92% 14%, rgba(11,58,130,.22) 0%, rgba(11,58,130,0) 60%);
  pointer-events:none;
  opacity:.65;
}
.svc-hero > *{ position:relative; z-index:1; }

.svc-hero .gradient-title{
  font-size:clamp(30px, 6vw, 56px);
  line-height:1.05;
  margin:8px 0 8px;
  color:var(--text);
  font-weight:950;
  letter-spacing:-.02em;
}
.svc-hero .lead{
  color:rgba(15,23,42,.78);
  max-width:860px;
}

.svc-grid{
  width:min(var(--container),100%);
  margin:18px auto 0;
  padding:18px var(--container-pad);
  display:grid;
  gap:16px;
  grid-template-columns:1fr;

  border-radius:24px;
  background:linear-gradient(180deg, rgba(255,255,255,.75), rgba(255,255,255,.60));
  border:1px solid rgba(15,23,42,.08);
  box-shadow:0 18px 44px rgba(2,6,23,.08);
}

.svc-card{
  position:relative;
  background:linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.78));
  border:1px solid rgba(15,23,42,.10);
  border-radius:20px;
  padding:18px;
  box-shadow:0 14px 28px rgba(2,6,23,.08);
  overflow:hidden;
  transition:box-shadow .2s ease, border-color .18s ease;
}
.svc-card:hover{
  box-shadow:0 18px 36px rgba(2,6,23,.12);
  border-color:rgba(11,58,130,.22);
}
.svc-card h3{ margin:0 0 6px; font-weight:950; }
.svc-card p{ margin:0 0 12px; color:rgba(15,23,42,.78) }
.svc-card .pill{ display:inline-block; margin:0 8px 8px 0; }
.svc-card .cta{ display:flex; gap:10px; flex-wrap:wrap; margin-top:10px }

.svc-card--active{
  outline:3px solid rgba(245,158,11,.22);
  border-color:rgba(245,158,11,.55) !important;
  box-shadow:0 22px 46px rgba(245,158,11,.10), 0 18px 44px rgba(2,6,23,.10) !important;
}

.process{
  border-radius:24px;
  padding:22px var(--container-pad);
  width:min(var(--container), 100%);
  margin:18px auto 22px;
  background:
    radial-gradient(700px 360px at 16% 8%, rgba(11,58,130,.12) 0%, rgba(11,58,130,0) 60%),
    radial-gradient(700px 360px at 86% 10%, rgba(245,158,11,.12) 0%, rgba(245,158,11,0) 60%),
    linear-gradient(180deg, rgba(255,255,255,.72), rgba(255,255,255,.60));
  border:1px solid rgba(15,23,42,.08);
  box-shadow:0 18px 44px rgba(2,6,23,.08);
}

/* ===========================================================================================
   Triple Rule
   =========================================================================================== */
.triple{
  border-radius:24px;
  padding:22px var(--container-pad);
  width:min(var(--container), 100%);
  margin:18px auto;
  background:linear-gradient(180deg, rgba(255,255,255,.72), rgba(255,255,255,.60));
  border:1px solid rgba(15,23,42,.08);
  box-shadow:0 18px 44px rgba(2,6,23,.08);
}
.triple .tri-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:14px;
  margin-top:12px;
}
.triple .tri{
  border:1px solid rgba(15,23,42,.10);
  border-radius:18px;
  padding:14px;
  background:linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.78));
  box-shadow:0 12px 26px rgba(2,6,23,.08);
}
.triple .tri h3{ margin:0 0 6px 0; }
.triple .tri p{ margin:0; color:rgba(71,85,105,1); }
@media (max-width: 900px){
  .triple .tri-grid{ grid-template-columns:1fr; }
}

.aside-sticky{ position:sticky; top:calc(var(--header-h) + 16px) }

/* ===========================================================================================
   ✅ REVIEWS — Big cards side-by-side (responsive)
   =========================================================================================== */
#reviews .cards,
.reviews-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:16px;
  align-items:stretch;
}

#reviews .cards > *,
.reviews-grid > *,
.review-card,
.testimonial,
.review,
.review-item{
  background:linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.78));
  border:1px solid rgba(15,23,42,.10);
  border-radius:22px;
  box-shadow:0 14px 28px rgba(2,6,23,.08);
  padding:18px;
  min-width:0;
  transition:box-shadow .2s ease, border-color .18s ease;
}
#reviews .cards > *:hover,
.reviews-grid > *:hover,
.review-card:hover,
.testimonial:hover,
.review:hover,
.review-item:hover{
  border-color:rgba(11,58,130,.22);
  box-shadow:0 18px 36px rgba(2,6,23,.12);
}

.review-head, .testimonial-head{
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:10px;
}
.review-avatar, .testimonial-avatar{
  width:44px; height:44px;
  border-radius:999px;
  background:rgba(11,58,130,.08);
  border:1px solid rgba(11,58,130,.12);
  flex:0 0 auto;
}
.review-name, .testimonial-name{
  font-weight:950;
  letter-spacing:-.01em;
  margin:0;
}
.review-meta, .testimonial-meta{
  color:rgba(15,23,42,.62);
  font-weight:700;
  font-size:.92rem;
  margin:2px 0 0;
}
#reviews .stars{ font-size:18px; }
.review-quote, .testimonial-quote{
  color:rgba(15,23,42,.78);
  margin:0;
  line-height:1.65;
}

@media (min-width:768px){
  #reviews .cards,
  .reviews-grid{ grid-template-columns:repeat(2, minmax(0,1fr)); }
  #reviews .cards > *,
  .reviews-grid > *,
  .review-card,
  .testimonial,
  .review,
  .review-item{ padding:20px; }
}
@media (min-width:980px){
  #reviews .cards,
  .reviews-grid{ grid-template-columns:repeat(3, minmax(0,1fr)); }
}

/* ===========================================================================================
   ✅ #quote — unify cards to match Quick Quote
   =========================================================================================== */
#quote{
  width:min(var(--container), 100%);
  margin:18px auto;
  padding:0 var(--container-pad);
}
#quote .cards.two > .card.panel{
  background:linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.78));
  border:1px solid rgba(15,23,42,.10);
  border-radius:22px;
  box-shadow:0 18px 44px rgba(2,6,23,.10);
  padding:18px;
  overflow:hidden;
}
#quote form{
  background:transparent;
  border:0;
  box-shadow:none;
  padding:0;
  border-radius:0;
}
#quote .section-title{ margin-top:0; }
#quote .muted{ color:rgba(15,23,42,.65); }
#quote label{ color:rgba(15,25,38,.88); font-weight:900; }
#quote input,#quote select,#quote textarea{
  background:#fff;
  border-color:rgba(15,25,38,.18);
}
#quote input:focus,#quote select:focus,#quote textarea:focus{
  border-color:rgba(15, 85, 150, .55);
  box-shadow:0 0 0 4px rgba(15, 85, 150, .12);
  outline:none;
}
#quote .btn--primary{ width:100%; border-radius:12px; }
#quote .req-note,#quote .form-note,#quote small.muted{
  display:block;
  margin-top:10px;
  font-size:.90rem;
  line-height:1.45;
}

/* ===========================================================================================
   ACCESSIBILITY / MOTION
   =========================================================================================== */
.sr-only,.visually-hidden{
  position:absolute !important;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0;
}
@media (prefers-reduced-motion:reduce){
  html:focus-within{ scroll-behavior:auto; }
  *, *::before, *::after{ animation:none !important; transition:none !important; }
  .btn[data-ripple]::after{ display:none !important; }
}

/* ===========================================================================================
   TABLES / PRINT — Mobile: no horizontal scroll
   =========================================================================================== */
table{width:100%; border-collapse:collapse; font-size:15px}
th,td{padding:10px 12px; border-bottom:1px solid var(--border)}
th{text-align:left; color:rgba(15,23,42,.88)}

/* Mobile: stack table as cards to avoid horizontal scroll */
.table-responsive{ overflow-x:auto; -webkit-overflow-scrolling:touch; }
@media (max-width:640px){
  .table-responsive{ display:block; }
  table.table-mobile-stack, .table-mobile-stack table{
    display:block; width:100%;
  }
  .table-mobile-stack thead{ display:none; }
  .table-mobile-stack tr{
    display:block;
    margin-bottom:16px;
    padding:14px;
    background:var(--panel);
    border:1px solid var(--border);
    border-radius:var(--radius);
    box-shadow:var(--shadow-sm);
  }
  .table-mobile-stack td{
    display:block;
    padding:6px 0;
    border-bottom:1px solid var(--border);
  }
  .table-mobile-stack td:last-child{ border-bottom:0; }
  .table-mobile-stack td::before{
    content:attr(data-label);
    font-weight:800;
    color:var(--muted);
    display:block;
    margin-bottom:2px;
    font-size:.85em;
  }
}
/* Fallback: if no table-mobile-stack class, allow scroll with min-width */
@media (max-width:640px){
  table{ max-width:100%; display:table; }
}
@media print{
  body{background:#fff; color:#000}
  #topbar,.fab-wrap{display:none}
  a{color:#000; text-decoration:underline}
  .card,.panel{box-shadow:none; border-color:#ddd}
}

/* ===========================================================================================
   UTILITIES
   =========================================================================================== */
/* Breadcrumbs (unified across pages) */
.crumbs{
  font-size:.92rem;
  margin:8px 0 6px;
}
.crumbs.muted{ color:var(--muted); }
.crumbs a{ color:var(--brand); }
.crumbs a:hover{ color:var(--brand-2); }

.section-title{
  font-size:clamp(24px, 5vw, 36px);
  margin:20px 0 6px;
  letter-spacing:-.02em;
}
.section-sub{ color:rgba(15,23,42,.72); margin:0 0 12px; }
.ul-clean{ margin:0 0 10px 18px; }
.elev-1{ box-shadow: 0 1px 0 rgba(2,6,23,.04); }
.pill{
  display:inline-block;
  background:rgba(11,58,130,.08);
  padding:6px 10px;
  border-radius:999px;
  font-weight:800;
  color:rgba(15,23,42,.78);
}

/* ===========================================================================================
   REVEAL
   =========================================================================================== */
.reveal{
  opacity:0;
  transform:translateY(12px);
  transition:opacity .4s ease, transform .4s ease;
}
.reveal.in{ opacity:1; transform:none; }

.reveal-grid > *{
  opacity:0;
  transform:translateY(12px);
  transition:opacity .4s ease, transform .4s ease;
}
.reveal-grid.in > *{ opacity:1; transform:none; }
@media (min-width:768px){
  .reveal, .reveal-grid > *{ transition-duration:.55s; }
}

/* ===========================================================================================
   BREAKPOINT ENHANCEMENTS
   =========================================================================================== */
@media (min-width:480px){
  :root{ --header-h:66px }
}
@media (min-width:640px){
  .areas-grid{ grid-template-columns:repeat(2,minmax(0,1fr)) }
  .process__steps{ grid-template-columns:repeat(2, minmax(0,1fr)); }
  .hero-ctas{ grid-template-columns:repeat(2, minmax(0,1fr)); }
  .lead-hero .hero-ctas{ grid-template-columns:repeat(2, minmax(0,1fr)); }
}
@media (min-width:768px){
  :root{ --container-pad:20px }
  .site-logo{ max-height:52px }
  nav ul{ display:flex }
  .mobile-toggle{ display:none }

  .hero{ padding:22px 0 22px; }

  .grid{ grid-template-columns:repeat(2, minmax(0,1fr)); }
  .grid-3{ grid-template-columns:repeat(3, minmax(0,1fr)); }
  #services .cards{ grid-template-columns:repeat(2, minmax(0,1fr)); }
  .process__steps{ grid-template-columns:repeat(4, minmax(0,1fr)); }
  .footgrid{ grid-template-columns:2fr 1fr 1fr; }
  .cards.two{ grid-template-columns:repeat(2, minmax(0,1fr)); }
}
@media (min-width:980px){
  :root{ --header-h:72px }
  .wrap{
    display:grid;
    grid-template-columns:1.35fr .95fr;
    gap:18px;
    align-items:start;
  }
  .mobile-nav, .backdrop{ display:none !important; }
  #services .cards{ grid-template-columns:repeat(3, minmax(0,1fr)); }
  .svc-grid{ grid-template-columns:repeat(2, minmax(0,1fr)); }
  .stats-grid{ grid-template-columns:repeat(2, minmax(0,1fr)); }

  .hero .hero-card,
  .lead-hero .hero-card{
    position:sticky;
    top:calc(var(--header-h) + 16px);
    align-self:start;
  }
}
@media (min-width:1200px){
  .container{ max-width:1200px }
  .stats-grid{ grid-template-columns:repeat(4, minmax(0,1fr)); }
}

/* ===========================================================================================
   UNIFIED DARK BG (compat)
   =========================================================================================== */
body.bg-unified{ background:var(--bg); }
body.bg-unified::before{
  background:linear-gradient(180deg, #ffffff, var(--bg));
}
body.bg-unified::after{
  background:linear-gradient(180deg, rgba(255,255,255,.6), rgba(255,255,255,0));
}
@media (min-width:768px){
  body.bg-unified::before{
    background:
      radial-gradient(1200px 500px at 50% 0%, rgba(11,58,130,.10), transparent 60%),
      radial-gradient(900px 380px at 10% 40%, rgba(245,158,11,.10), transparent 55%),
      radial-gradient(900px 420px at 90% 55%, rgba(14,165,233,.08), transparent 55%),
      linear-gradient(180deg, #ffffff, var(--bg));
  }
  body.bg-unified::after{
    background:linear-gradient(180deg, rgba(255,255,255,.55), rgba(255,255,255,0));
  }
}

/* Fallback */
@supports not ((-webkit-backdrop-filter: blur(6px)) or (backdrop-filter: blur(6px))){
  #topbar{ background:rgba(255,255,255,.92); }
  .mobile-nav{ background:#fff; }
}

/* ===========================================================================================
   MOBILE HERO CTA: Call + SMS + Quote — thumb-friendly, prominent
   =========================================================================================== */
@media (max-width: 767px){
  .lead-hero .hero-ctas{
    display:flex;
    flex-direction:column;
    gap:14px;
  }
  .lead-hero .hero-ctas .btn--call{ order: -2; }
  .lead-hero .hero-ctas .btn--sms{ order: -1; }

  .lead-hero .hero-ctas .btn--ghost,
  .lead-hero .hero-ctas .btn--primary{ display:none; }

  .lead-hero .hero-ctas .btn--call,
  .lead-hero .hero-ctas .btn--sms{
    width:100%;
    min-height:56px;
    font-size:1.05rem;
    justify-content:center;
  }

  /* Quote CTA link — same tap size as buttons */
  .lead-hero .cta-link{
    order: 10;
    display:flex;
    align-items:center;
    justify-content:center;
    width:100%;
    min-height:52px;
    margin-top:2px;
    padding:14px 16px;
    border-radius:14px;
    color:rgba(255,255,255,.95);
    font-weight:900;
    font-size:1rem;
    text-decoration:underline;
    text-underline-offset:3px;
    background:rgba(255,255,255,.12);
    border:2px solid rgba(255,255,255,.25);
    -webkit-tap-highlight-color:transparent;
    touch-action:manipulation;
  }
}
@media (min-width: 768px){
  .lead-hero .cta-link{ display:none; }
}

/* ===========================================================================================
   HOTFIX — HERO READABILITY
   =========================================================================================== */
.lead-hero .muted{ color: rgba(255,255,255,.86) !important; }

.lead-hero .legal-note{
  color: rgba(255,255,255,.92) !important;
  opacity: 1 !important;
  text-shadow: 0 1px 2px rgba(0,0,0,.35) !important;

  display: inline-block !important;
  max-width: 72ch;
  padding: 9px 11px;
  border-radius: 12px;
  background: rgba(15, 23, 42, .40);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);

  font-size: 12.5px;
  line-height: 1.45;
}
.lead-hero .legal-note strong{ color: rgba(255,255,255,.98) !important; }

.lead-hero .hero-card h3{
  color: var(--text) !important;
  opacity: 1 !important;
  filter: none !important;
  text-shadow: none !important;
}
.lead-hero .hero-card p.muted,
.lead-hero .hero-card small.muted,
.lead-hero .hero-card .muted{
  color: rgba(15,25,38,.72) !important;
  opacity: 1 !important;
}
.lead-hero .hero-card,
.lead-hero .hero-card *{ text-shadow: none; }

/* ===========================================================================================
   ✅ FINAL HOTFIX — stop “blur/ghosting” on hover targets
   - IMPORTANT: Do NOT touch #topbar or lead-hero .hero-card (glass stays there)
   =========================================================================================== */

/* 1) Ensure hover targets NEVER use backdrop-filter (some browsers “ghost” on hover) */
.service-card,
.areas-grid a,
.area-link,
.areas-featured .card,
#reviews .cards > *,
.reviews-grid > *,
.review-card,
.testimonial,
.review,
.review-item,
.svc-card{
  backdrop-filter:none !important;
  -webkit-backdrop-filter:none !important;
  filter:none !important;
}

/* 2) Hover feedback = border + shadow only */
.service-card:hover,
.areas-grid a:hover,
.area-link:hover,
.areas-featured .card:hover,
#reviews .cards > *:hover,
.reviews-grid > *:hover,
.review-card:hover,
.testimonial:hover,
.review:hover,
.review-item:hover,
.svc-card:hover{
  border-color: rgba(11,58,130,.22) !important;
  box-shadow: 0 18px 36px rgba(2,6,23,.12) !important;
  transform:none !important;
}

/* ===================== PATCH: Anti-ghosting (safe) ===================== */
/* Keep glass ONLY on #topbar + .lead-hero .hero-card */
/* If you notice blur artifacts on small glass note, swap blur -> stronger bg */
.lead-hero .legal-note{
  /* OPTIONAL: comment next 2 lines if you want to keep blur */
  backdrop-filter:none !important;
  -webkit-backdrop-filter:none !important;

  /* compensate with slightly stronger bg */
  background: rgba(15, 23, 42, .52) !important;
}

/* Extra safety: if any of these are hover targets on desktop */
.btn--ghost,
.icon-btn,
.mobile-toggle{
  backdrop-filter:none !important;
  -webkit-backdrop-filter:none !important;
}
