/* ============================================================
   Brightline Electric template
   Palette: near-black graphite + electric amber, cool volt-blue
   for the EV section. Type: Archivo (display, expanded width for
   the hero) + IBM Plex Sans (body). Dark, precise, disciplined.
   ============================================================ */

@import url("../fonts/fonts.css");

:root {
  --ink: #0B0D11;              /* near-black base + dark surfaces */
  --surface: #14171D;          /* card surface */
  --surface-2: #1B1F27;        /* raised surface: solid nav, form cards */
  --line: rgba(237, 239, 242, .10);
  --line-strong: rgba(237, 239, 242, .20);
  --paper: #EDEFF2;            /* near-white primary text */
  --paper-dim: rgba(237, 239, 242, .68);
  --paper-faint: rgba(237, 239, 242, .46);
  --amber: #FFB627;
  --amber-hi: #FFCB5C;
  --amber-dim: rgba(255, 182, 39, .14);
  --volt: #4FA8FF;
  --volt-hi: #7CC4FF;
  --volt-dim: rgba(79, 168, 255, .14);
  --font-display: "Archivo", system-ui, -apple-system, sans-serif;
  --font-body: "IBM Plex Sans", system-ui, -apple-system, sans-serif;
  --radius: 14px;
  --radius-s: 9px;
  --shadow: 0 22px 60px rgba(0, 0, 0, .45);
  --wrap: 1220px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--ink); }
body {
  margin: 0;
  background: var(--ink);
  color: var(--paper-dim);
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, video, canvas { max-width: 100%; display: block; }
a { color: inherit; }
button { font-family: inherit; }
h1, h2, h3, h4 { font-family: var(--font-display); color: var(--paper); margin: 0; line-height: 1.08; letter-spacing: -0.01em; }
p { margin: 0 0 1em; }
:focus-visible { outline: 3px solid var(--amber); outline-offset: 2px; border-radius: 2px; }
.skip { position: absolute; left: -999px; top: 8px; z-index: 999; background: var(--paper); color: var(--ink); padding: 10px 16px; border-radius: 8px; }
.skip:focus { left: 8px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

.wrap { max-width: var(--wrap); margin-inline: auto; padding-inline: clamp(20px, 4vw, 40px); }
.section { padding-block: clamp(68px, 8.5vw, 116px); }
.section.alt { background: var(--surface); }
.section-head { max-width: 640px; margin-bottom: clamp(32px, 4.6vw, 54px); }
.section-head h2 { font-size: clamp(28px, 3.6vw, 44px); font-weight: 800; margin: 14px 0 13px; }
.section-head p { font-size: 17px; color: var(--paper-dim); margin: 0; }
.section-head.center { text-align: center; max-width: none; }
.section-head.center .section-inner { max-width: 640px; margin-inline: auto; }
.section-head.center .eyebrow { justify-content: center; }

/* ---------- eyebrow ---------- */
.eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--amber);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before { content: ""; width: 20px; height: 1.5px; background: var(--amber); }
/* circuit-line motif extended to every section transition: the same amber
   trace the hero draws on load, redrawn in miniature each time a section's
   eyebrow scrolls into view. Scoped to .rv only, so the hero's own eyebrow
   (not inside a reveal wrapper) is unaffected and stays static. */
.rv .eyebrow::before { width: 0; transition: width .7s cubic-bezier(.2, .7, .15, 1) .15s; }
.rv.on .eyebrow::before { width: 20px; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-body); font-weight: 600; font-size: 15.5px; letter-spacing: .01em;
  padding: 0 26px; height: 52px; border-radius: var(--radius-s);
  border: 0; cursor: pointer; text-decoration: none; white-space: nowrap;
  transition: transform .18s ease, background .18s ease, color .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.btn-primary { background: var(--amber); color: #191204; font-weight: 700; box-shadow: 0 14px 34px rgba(255, 182, 39, .28); }
.btn-primary:hover { background: var(--amber-hi); transform: translateY(-2px); animation: btnSpark .55s ease-out forwards; }
/* one-shot spark ring on hover-in, settling into the resting hover glow */
@keyframes btnSpark {
  0% { box-shadow: 0 14px 34px rgba(255, 182, 39, .28), 0 0 0 0 rgba(255, 203, 92, .5); }
  45% { box-shadow: 0 18px 40px rgba(255, 182, 39, .38), 0 0 0 12px rgba(255, 203, 92, 0); }
  100% { box-shadow: 0 18px 40px rgba(255, 182, 39, .38), 0 0 0 0 rgba(255, 203, 92, 0); }
}
.btn-lg { height: 58px; padding: 0 32px; font-size: 16.5px; }
.btn-ghost { background: transparent; color: var(--paper); border: 1.5px solid var(--line-strong); }
.btn-ghost:hover { border-color: var(--paper); background: rgba(237, 239, 242, .06); }

/* ---------- nav ---------- */
.nav { position: fixed; inset: 0 0 auto 0; z-index: 800; color: var(--paper);
  transition: background .25s ease, box-shadow .25s ease, border-color .25s ease; border-bottom: 1px solid transparent; }
.nav-in { display: flex; align-items: center; gap: 26px; height: 76px; }
.logo { display: flex; align-items: center; text-decoration: none; margin-right: auto; gap: 10px; }
.logo-mark { display: flex; flex-direction: column; line-height: 1; }
.logo-mark b { font-family: var(--font-display); font-weight: 900; font-stretch: 125%; font-size: 19px; letter-spacing: .01em; color: var(--paper); }
.logo-mark em { font-style: normal; font-size: 9.5px; font-weight: 600; letter-spacing: .28em; text-transform: uppercase; color: var(--amber); margin-top: 2px; }
.logo-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--amber); box-shadow: 0 0 0 3px var(--amber-dim); flex: none; }
.nav-links { display: flex; gap: 26px; }
.nav-links a { text-decoration: none; font-weight: 500; font-size: 14.5px; letter-spacing: .01em; opacity: .82; padding: 6px 0; position: relative; }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0; background: var(--amber); transition: width .22s ease; }
.nav-links a:hover { opacity: 1; }
.nav-links a:hover::after { width: 100%; }
.nav-phone {
  display: inline-flex; align-items: center; gap: 8px; text-decoration: none;
  font-weight: 700; font-size: 15.5px; letter-spacing: .01em; white-space: nowrap; color: var(--paper);
}
.nav-phone svg { color: var(--amber); }
.nav .btn.nav-cta { height: 42px; padding: 0 19px; font-size: 14px; }
.nav.is-solid { background: rgba(20, 23, 29, .82); -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px); border-bottom-color: var(--line); box-shadow: 0 1px 0 var(--line); }
.nav-burger { display: none; background: none; border: 0; cursor: pointer; padding: 8px; flex-direction: column; gap: 5px; color: var(--paper); }
.nav-burger span { width: 24px; height: 2px; background: currentColor; transition: transform .25s ease, opacity .25s ease; }
.menu-open .nav-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-open .nav-burger span:nth-child(2) { opacity: 0; }
.menu-open .nav-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu { position: fixed; inset: 0; z-index: 790; background: var(--ink); color: var(--paper); display: none; flex-direction: column; justify-content: center; padding: 40px clamp(24px, 6vw, 48px); }
.menu-open .mobile-menu { display: flex; }
.mobile-menu a { text-decoration: none; }
.mobile-menu nav a { display: block; font-family: var(--font-display); font-weight: 700; font-size: clamp(30px, 8vw, 42px); padding: 12px 0; border-bottom: 1px solid var(--line); color: var(--paper); }
.mobile-menu .mm-foot { margin-top: 34px; display: flex; flex-direction: column; gap: 16px; }
.mobile-menu .nav-phone { font-size: 22px; }
.mobile-menu .btn { width: 100%; }

/* ============================================================
   HERO: dark monumental, centered, no photo/video. Animated
   circuit-line SVG behind the type; JS draws the paths on load
   and leaves them static for prefers-reduced-motion.
   ============================================================ */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: center; justify-content: center;
  overflow: hidden; color: var(--paper); text-align: center;
  background:
    radial-gradient(120% 76% at 50% -8%, rgba(255, 182, 39, .12), transparent 55%),
    radial-gradient(90% 64% at 88% 112%, rgba(79, 168, 255, .10), transparent 60%),
    var(--ink);
}
/* real footage, darkened hard: poster + up to two crossfading clips, then a
   heavy near-black scrim with a faint amber duotone glow. The circuit-svg,
   vignette, and text all stack above this so they still dominate the frame. */
.hero-media { position: absolute; inset: 0; z-index: 0; overflow: hidden; background: var(--ink); }
.hero-poster, .hero-slide { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-slide { opacity: 0; transition: opacity 1.1s ease; }
.hero-slide.is-active { opacity: 1; }
.hero-media img, .hero-media video { filter: grayscale(.2) saturate(1.15) brightness(.52) contrast(1.05); }
.hero-scrim { position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(46% 38% at 50% 46%, rgba(255, 178, 39, .08), transparent 72%),
    linear-gradient(180deg, rgba(11, 13, 17, .88) 0%, rgba(11, 13, 17, .76) 28%, rgba(11, 13, 17, .80) 52%, rgba(11, 13, 17, .78) 74%, rgba(11, 13, 17, .90) 100%); }
.hero-field { position: absolute; inset: 0; z-index: 1; }
.circuit-svg { width: 100%; height: 100%; display: block; }
.circuit-traces path { fill: none; stroke: var(--amber); stroke-width: 1.4; opacity: .4; vector-effect: non-scaling-stroke; }
.circuit-nodes circle { fill: var(--amber); opacity: .6; }
.hero::after { content: ""; position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: radial-gradient(58% 46% at 50% 40%, rgba(11, 13, 17, 0) 40%, rgba(11, 13, 17, .55) 100%); }
.hero-in { position: relative; z-index: 3; width: 100%; display: flex; flex-direction: column; align-items: center;
  padding-block: 128px 64px; padding-inline: clamp(20px, 5vw, 40px); }
.hero .eyebrow { justify-content: center; }
.hero h1 {
  font-weight: 900; font-stretch: 125%; font-size: clamp(40px, 8.4vw, 106px); line-height: .96;
  letter-spacing: 0; margin: 22px 0 0; max-width: 17ch;
}
.hero h1 .line { display: block; }
.hero h1 .accent { color: var(--amber); }
@supports (-webkit-text-stroke: 1px black) {
  .hero h1 .accent { color: var(--ink); -webkit-text-stroke: 2px var(--amber); }
}
.hero-sub { font-size: clamp(16px, 1.35vw, 19px); line-height: 1.55; max-width: 52ch; color: var(--paper-dim); margin: 22px 0 0; }
.hero-load h1, .hero-load .eyebrow, .hero-load .hero-sub, .hero-load .hero-cta-row, .hero-load .hero-chips, .hero-load .hero-form-card { opacity: 0; transform: translateY(22px); }
.hero-ready h1, .hero-ready .eyebrow, .hero-ready .hero-sub, .hero-ready .hero-cta-row, .hero-ready .hero-chips, .hero-ready .hero-form-card { opacity: 1; transform: none; transition: opacity .8s ease, transform .8s cubic-bezier(.2, .6, .2, 1); }
.hero-ready .eyebrow { transition-delay: .05s; }
.hero-ready h1 { transition-delay: .14s; }
.hero-ready .hero-sub { transition-delay: .3s; }
.hero-ready .hero-cta-row { transition-delay: .4s; }
.hero-ready .hero-chips { transition-delay: .48s; }
.hero-ready .hero-form-card { transition-delay: .56s; }

.hero-cta-row { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; margin-top: 38px; }
.hero-call { display: inline-flex; align-items: center; gap: 14px; text-decoration: none; color: var(--paper);
  padding: 12px 26px 12px 12px; border-radius: 999px; background: var(--surface); border: 1px solid var(--line-strong);
  animation: ctaGlow 2.8s ease-in-out infinite; transition: transform .2s ease, border-color .2s ease; }
.hero-call:hover { transform: translateY(-2px); border-color: var(--amber); }
.hero-call .hc-ic { width: 44px; height: 44px; border-radius: 50%; flex: none; background: var(--amber); display: flex; align-items: center; justify-content: center; }
.hero-call .hc-ic svg { color: #191204; width: 21px; height: 21px; }
.hero-call small { display: block; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--paper-faint); font-weight: 600; margin-bottom: 2px; text-align: left; }
.hero-call b { display: block; font-family: var(--font-display); font-weight: 800; font-size: clamp(19px, 2vw, 24px); letter-spacing: -.01em; line-height: 1; }
@keyframes ctaGlow {
  0%, 100% { box-shadow: 0 10px 26px rgba(255, 182, 39, .18); }
  50% { box-shadow: 0 14px 40px rgba(255, 182, 39, .38); }
}

.hero-chips { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 10px; margin-top: 28px; }
.hero-chips span { display: inline-flex; align-items: center; gap: 8px;
  font-size: 12.5px; font-weight: 600; line-height: 1.15;
  padding: 8px 14px; border-radius: 999px; background: rgba(237, 239, 242, .04);
  border: 1px solid var(--line-strong); color: var(--paper-dim); white-space: nowrap; }
.hero-chips svg { width: 14px; height: 14px; flex: none; color: var(--amber); }

/* ---------- hero form card: bordered, amber-glow, unmissable as a form ---------- */
.hero-form-card { width: 100%; max-width: 460px; margin-top: 34px; text-align: left; position: relative;
  background: linear-gradient(165deg, rgba(27, 31, 39, .92), rgba(11, 13, 17, .95));
  border: 1.5px solid rgba(255, 182, 39, .42); border-radius: var(--radius);
  padding: 22px clamp(20px, 2.6vw, 26px) 24px;
  -webkit-backdrop-filter: blur(16px) saturate(140%); backdrop-filter: blur(16px) saturate(140%);
  box-shadow: 0 26px 64px rgba(0, 0, 0, .55), 0 0 0 1px rgba(255, 182, 39, .05), 0 0 40px -14px rgba(255, 182, 39, .32);
  animation: formGlow 3.4s ease-in-out infinite;
}
@keyframes formGlow {
  0%, 100% { box-shadow: 0 26px 64px rgba(0, 0, 0, .55), 0 0 0 1px rgba(255, 182, 39, .05), 0 0 40px -14px rgba(255, 182, 39, .32); }
  50% { box-shadow: 0 26px 64px rgba(0, 0, 0, .55), 0 0 0 1px rgba(255, 182, 39, .1), 0 0 56px -12px rgba(255, 182, 39, .5); }
}
.hfc-head { display: flex; align-items: center; gap: 9px; margin-bottom: 16px; color: var(--amber);
  font-family: var(--font-display); font-weight: 800; font-size: 12.5px; letter-spacing: .12em; text-transform: uppercase; }
.hfc-head svg { width: 15px; height: 15px; flex: none; }
.hfc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.hfc-field.full { grid-column: 1 / -1; }
.hfc-field input, .hfc-field select { width: 100%; height: 50px; border: 1.5px solid var(--line-strong); border-radius: var(--radius-s);
  padding: 0 15px; font-size: 15px; font-family: inherit; background: var(--ink); color: var(--paper); appearance: none;
  transition: border-color .18s ease, box-shadow .18s ease; }
.hfc-field select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23EDEFF2' stroke-width='2' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center; padding-right: 38px; cursor: pointer; }
.hfc-field input::placeholder { color: var(--paper-faint); }
.hfc-field input:focus, .hfc-field select:focus { outline: none; border-color: var(--amber); box-shadow: 0 0 0 3px var(--amber-dim); }
.hfc-field input.bad, .hfc-field select.bad { border-color: #E5484D; }
.hfc-submit { width: 100%; margin-top: 14px; }
.hfc-submit svg { width: 17px; height: 17px; }
.hfc-note { text-align: center; font-size: 12px; color: var(--paper-faint); margin: 12px 0 0; }
.hero-form-card.is-done { display: flex; align-items: center; justify-content: center; text-align: center; min-height: 128px; animation: none; }
.hfc-done { display: flex; flex-direction: column; align-items: center; gap: 12px; color: var(--paper); font-size: 14.5px; font-weight: 600; line-height: 1.5; }
.hfc-done svg { width: 32px; height: 32px; padding: 9px; box-sizing: content-box; border-radius: 50%; background: var(--amber-dim); color: var(--amber); }
@media (max-width: 560px) { .hfc-grid { grid-template-columns: 1fr; } }

.hero-marquee { position: absolute; left: 0; right: 0; bottom: 0; z-index: 4; height: 44px;
  display: flex; align-items: center; overflow: hidden; background: rgba(237, 239, 242, .03);
  border-top: 1px solid var(--line); }
.hero-marquee-track { display: flex; gap: 0; white-space: nowrap; will-change: transform; }
.hero-marquee-track span { font-size: 11.5px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: var(--paper-faint); display: inline-flex; align-items: center; padding: 0 26px; }
.hero-marquee-track span::after { content: "\25C6"; color: var(--amber); font-size: 7px; margin-left: 26px; opacity: .8; }
@keyframes heroMarquee { to { transform: translateX(-50%); } }
.hero-marquee-track.run { animation: heroMarquee 34s linear infinite; }
/* faint current shimmer sweeping along the bottom edge, like power moving through
   a wire. Lives on the static outer band (not the scrolling track) so it never
   compounds with the marquee's own translateX loop. */
.hero-marquee::after { content: ""; position: absolute; top: 0; bottom: 0; left: -30%; width: 30%;
  background: linear-gradient(90deg, transparent, rgba(255, 182, 39, .16), transparent);
  animation: heroCurrent 4.2s linear infinite; pointer-events: none; }
@keyframes heroCurrent { to { transform: translateX(330%); } }

/* ---------- photo strip ---------- */
.strip { background: var(--ink); }
.strip-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 2px; }
.strip-item { position: relative; aspect-ratio: 4 / 5; overflow: hidden; background: var(--surface); }
.strip-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease, filter .6s ease; filter: saturate(.94) brightness(.92); }
.strip-item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(11, 13, 17, 0) 55%, rgba(11, 13, 17, .55)); opacity: 0; transition: opacity .35s ease; }
.strip-item:hover img { transform: scale(1.05); filter: saturate(1) brightness(1); }
.strip-item:hover::after { opacity: 1; }

/* ---------- trust strip ---------- */
.trust { border-bottom: 1px solid var(--line); border-top: 1px solid var(--line); background: var(--surface); }
.trust-in { display: flex; align-items: center; flex-wrap: nowrap; gap: 44px; padding: 22px clamp(20px, 4vw, 44px);
  overflow-x: auto; scrollbar-width: none; -ms-overflow-style: none;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent); }
.trust-in::-webkit-scrollbar { display: none; }
.trust-in > * { flex: none; }
.trust-in.is-centered { justify-content: center; }

.rating-blk { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; color: var(--paper); flex: none; }
.rating-blk > svg { width: 30px; height: 30px; flex: none; }
.rating-blk .rb-meta { display: flex; flex-direction: column; }
.rating-blk .rb-top { display: flex; align-items: center; gap: 9px; line-height: 1; }
.rating-blk .rb-top b { font-family: var(--font-display); font-weight: 800; font-size: 23px; letter-spacing: -.01em; color: var(--paper); }
.rating-blk .rb-stars { color: var(--amber); font-size: 14px; letter-spacing: 1.5px; }
.rating-blk .rb-sub { font-size: 12px; color: var(--paper-faint); margin-top: 3px; font-weight: 500; }
.rating-lg > svg { width: 33px; height: 33px; }
.rating-lg .rb-top b { font-size: 26px; }

.cred { display: inline-flex; align-items: center; gap: 11px; }
.cred-em { width: 34px; height: 34px; border-radius: 8px; flex: none; display: flex; align-items: center; justify-content: center;
  border: 1.4px solid var(--line-strong); background: rgba(255, 182, 39, .06); color: var(--amber); }
.cred-em svg { width: 18px; height: 18px; }
.cred-t b { display: block; font-family: var(--font-display); font-weight: 700; font-size: 13px; line-height: 1.15; color: var(--paper); }
.cred-t em { display: block; font-style: normal; font-size: 11px; color: var(--paper-faint); margin-top: 1px; }

/* ---------- services ---------- */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.svc { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  text-decoration: none; display: flex; flex-direction: column; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.svc:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--line-strong); }
.svc-img { position: relative; aspect-ratio: 16 / 9.6; overflow: hidden; }
.svc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; filter: saturate(.96) brightness(.94); }
.svc:hover .svc-img img { transform: scale(1.045); }
.svc-img::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(11, 13, 17, 0) 60%, rgba(11, 13, 17, .5)); }
.svc-badge { position: absolute; top: 14px; left: 14px; z-index: 2; width: 38px; height: 38px; border-radius: 9px;
  background: rgba(11, 13, 17, .68); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  border: 1.4px solid rgba(255, 182, 39, .5); display: flex; align-items: center; justify-content: center; color: var(--amber); }
.svc-badge svg { width: 19px; height: 19px; }
.svc-body { padding: 20px 22px 22px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.svc-top { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.svc h3 { font-size: 21px; font-weight: 700; }
.svc-range { font-size: 12.5px; font-weight: 600; letter-spacing: .01em; color: var(--amber); white-space: nowrap; }
.svc p { font-size: 14.5px; color: var(--paper-dim); margin: 0; flex: 1; }
.svc-cta { font-size: 13px; font-weight: 600; color: var(--paper); display: inline-flex; align-items: center; gap: 8px; margin-top: 8px; }
.svc-cta::after { content: "\2192"; color: var(--amber); transition: transform .2s ease; }
.svc:hover .svc-cta::after { transform: translateX(5px); }

/* ---------- panel upgrade spotlight ---------- */
.spotlight { background: var(--surface); }
.spotlight-head { max-width: 760px; margin-bottom: clamp(36px, 5vw, 56px); }
.spotlight-head h2 { font-size: clamp(28px, 3.8vw, 46px); font-weight: 800; margin: 14px 0 15px; }
.spotlight-head p { font-size: 17px; color: var(--paper-dim); }
.spotlight-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(30px, 4.5vw, 60px); align-items: start; }
.spot-ba { position: relative; aspect-ratio: 4 / 3.1; overflow: hidden; border-radius: var(--radius); border: 1px solid var(--line-strong); background: var(--ink); user-select: none; touch-action: pan-y; }
.spot-ba img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.spot-ba .spot-before { clip-path: inset(0 calc(100% - var(--pos, 50%)) 0 0); }
.spot-tag { position: absolute; top: 14px; left: 14px; z-index: 3; font-size: 10.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  padding: 7px 12px; color: var(--ink); background: var(--amber);
  clip-path: polygon(0 0, 100% 0, 92% 100%, 0% 100%); }
.spot-tag.after { left: auto; right: 14px; background: var(--paper); clip-path: polygon(8% 0, 100% 0, 100% 100%, 0% 100%); }
.spot-handle { position: absolute; top: 0; bottom: 0; left: var(--pos, 50%); z-index: 2; width: 2px; background: var(--paper); transform: translateX(-1px); }
.spot-handle::after { content: "\27F7"; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 44px; height: 44px;
  border-radius: 50%; background: var(--amber); color: var(--ink); display: flex; align-items: center; justify-content: center;
  font-size: 17px; font-weight: 700; animation: handleGlow 2.6s ease-in-out infinite; }
@keyframes handleGlow {
  0%, 100% { box-shadow: 0 8px 22px rgba(0, 0, 0, .4), 0 0 0 6px rgba(255, 182, 39, .14), 0 0 18px rgba(255, 182, 39, .4); }
  50% { box-shadow: 0 8px 22px rgba(0, 0, 0, .4), 0 0 0 9px rgba(255, 182, 39, .22), 0 0 30px rgba(255, 182, 39, .65); }
}
.spot-ba input[type="range"] { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; cursor: ew-resize; margin: 0; z-index: 4; }
.spot-caption { margin-top: 14px; font-size: 13px; color: var(--paper-faint); }
.spot-facts { display: flex; flex-direction: column; gap: 18px; }
.fact-card { border-radius: var(--radius); padding: 22px 24px 24px; border: 1px solid var(--line); background: var(--ink); }
.fact-card.is-after { border-color: rgba(255, 182, 39, .35); background: linear-gradient(160deg, rgba(255, 182, 39, .07), transparent 60%), var(--ink); }
.fact-card h3 { font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--paper-faint); margin-bottom: 14px; }
.fact-card.is-after h3 { color: var(--amber); }
.fact-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.fact-list li { display: flex; gap: 11px; align-items: flex-start; font-size: 14.5px; color: var(--paper-dim); line-height: 1.5; }
.fact-list li::before { content: ""; flex: none; width: 6px; height: 6px; border-radius: 1px; margin-top: 7px; background: var(--line-strong); }
.fact-card.is-after .fact-list li::before { background: var(--amber); }

/* ---------- EV charger section: scoped accent swap to volt-blue ---------- */
.ev-section { background: var(--ink); --amber: var(--volt); --amber-hi: var(--volt-hi); --amber-dim: var(--volt-dim); }
.ev-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: clamp(30px, 4.5vw, 64px); align-items: center; }
.ev-media { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4 / 3.4; border: 1px solid var(--line-strong); }
.ev-media img { width: 100%; height: 100%; object-fit: cover; }
.ev-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(200deg, rgba(79, 168, 255, .18), transparent 55%); }
.ev-copy h2 { font-size: clamp(28px, 3.6vw, 42px); font-weight: 800; margin: 14px 0 14px; }
.ev-copy > p { font-size: 16.5px; color: var(--paper-dim); max-width: 54ch; margin-bottom: 8px; }
.ev-points { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 26px; }
.ev-point { padding: 16px 0 0; border-top: 1px solid var(--line); }
.ev-point b { display: block; font-family: var(--font-display); font-weight: 700; font-size: 15.5px; color: var(--paper); margin-bottom: 6px; }
.ev-point span { font-size: 13.5px; color: var(--paper-dim); line-height: 1.5; }

/* ---------- safety checklist band ---------- */
.safety-band { background: var(--surface); }
.safety-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(30px, 4.5vw, 60px); align-items: center; }
.safety-media { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4 / 4.6; border: 1px solid var(--line-strong); }
.safety-media img { width: 100%; height: 100%; object-fit: cover; }
.safety-copy h2 { font-size: clamp(26px, 3.4vw, 38px); font-weight: 800; margin: 14px 0 14px; }
.safety-copy > p { font-size: 16px; color: var(--paper-dim); max-width: 56ch; margin-bottom: 26px; }
.safety-list { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 13px 22px; }
.safety-list li { display: flex; gap: 11px; align-items: flex-start; font-size: 14.5px; color: var(--paper-dim); line-height: 1.4; }
.safety-check { flex: none; width: 19px; height: 19px; border-radius: 5px; border: 1.5px solid var(--amber); color: var(--amber);
  display: flex; align-items: center; justify-content: center; margin-top: 1px; }
.safety-check svg { width: 12px; height: 12px; }

/* ---------- process ---------- */
.proc { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; align-items: start; position: relative; }
.proc-step { position: relative; padding: 30px 22px 0 0; }
.proc-line { position: absolute; top: 5px; left: 0; right: 0; height: 2px; background: var(--line); }
.proc-line i { position: absolute; inset: 0; width: 0; background: var(--amber); transition: width 1s ease; }
.proc-step::before { content: ""; position: absolute; top: 0; left: 0; width: 11px; height: 11px; background: var(--ink); border: 2px solid var(--amber); border-radius: 50%; z-index: 2; }
.proc-week { font-size: 11.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--amber); display: block; margin-bottom: 11px; }
.proc-step h3 { font-size: 19px; font-weight: 700; }
.proc-step p { font-size: 14px; color: var(--paper-dim); margin-top: 9px; }

/* ---------- gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.gallery-item { position: relative; aspect-ratio: 4 / 5; border-radius: var(--radius-s); overflow: hidden; border: 1px solid var(--line); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item:hover { border-color: rgba(255, 182, 39, .5); }
.gallery-cap { position: absolute; left: 0; right: 0; bottom: 0; padding: 12px 14px; font-size: 12px; font-weight: 500;
  color: var(--paper); background: linear-gradient(0deg, rgba(11, 13, 17, .88), transparent); opacity: 0; transition: opacity .25s ease; }
.gallery-item:hover .gallery-cap { opacity: 1; }

/* ---------- reviews (Google style, dark cards) ---------- */
.reviews-head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 34px; }
.g-summary { display: flex; align-items: center; gap: 14px; background: var(--surface); border: 1px solid var(--line); border-radius: 14px; padding: 14px 20px; }
.g-score { display: flex; align-items: center; gap: 10px; }
.g-score b { font-family: var(--font-display); font-size: 27px; font-weight: 800; color: var(--paper); line-height: 1; }
.g-stars { color: var(--amber); font-size: 16px; letter-spacing: .05em; }
.g-count { font-size: 12.5px; color: var(--paper-faint); margin-top: 3px; }
.greviews { position: relative; }
.greviews-track { display: flex; gap: 20px; overflow-x: auto; padding: 8px clamp(20px, 4vw, 40px) 20px; -ms-overflow-style: none; scrollbar-width: none; }
.greviews-track::-webkit-scrollbar { display: none; }
.greview { flex: 0 0 clamp(290px, 78vw, 380px); display: flex; flex-direction: column;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 22px 24px;
  min-height: 254px; }
.greview-top { display: flex; align-items: center; gap: 13px; }
.gavatar { position: relative; overflow: hidden; width: 42px; height: 42px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #191204; font-weight: 700; font-size: 18px; flex: none; }
.gavatar img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.gname { font-weight: 700; font-size: 15px; color: var(--paper); line-height: 1.2; }
.gsub { font-size: 12px; color: var(--paper-faint); margin-top: 2px; }
.greview-top .g-mark { margin-left: auto; width: 20px; height: 20px; flex: none; }
.greview .g-row { display: flex; align-items: center; gap: 8px; margin: 13px 0 10px; flex: none; }
.greview .g-row .g-stars { font-size: 15px; }
.greview .g-when { font-size: 12px; color: var(--paper-faint); }
.gtext { font-size: 14px; line-height: 1.6; color: var(--paper-dim); margin: 0; flex: 0 1 auto; overflow: hidden;
  display: -webkit-box; -webkit-line-clamp: 7; -webkit-box-orient: vertical; }
.g-nav { position: absolute; top: 42%; z-index: 5; width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line-strong);
  background: var(--surface-2); color: var(--paper); font-size: 22px; line-height: 1; cursor: pointer; box-shadow: var(--shadow);
  display: flex; align-items: center; justify-content: center; transition: background .2s, border-color .2s; }
.g-nav:hover { background: var(--amber); color: var(--ink); border-color: var(--amber); }
.g-prev { left: 6px; }
.g-next { right: 6px; }

/* ---------- stats / credentials band ---------- */
.stats-band { background: var(--surface-2); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; padding-bottom: 40px; border-bottom: 1px solid var(--line); }
.stat .n { font-family: var(--font-display); font-weight: 800; font-stretch: 125%; font-size: clamp(36px, 4.2vw, 52px); color: var(--paper); line-height: 1; letter-spacing: 0; }
.stat .n em { color: var(--amber); font-style: normal; }
/* brief amber flicker as a stat count-up lands, like a bulb catching current */
.count.flicker { animation: statSettle .6s ease-out; }
@keyframes statSettle {
  0% { opacity: .5; text-shadow: 0 0 0 rgba(255, 182, 39, 0); }
  45% { opacity: 1; text-shadow: 0 0 22px rgba(255, 182, 39, .85); }
  100% { opacity: 1; text-shadow: 0 0 0 rgba(255, 182, 39, 0); }
}
.stat .l { font-size: 11.5px; letter-spacing: .06em; text-transform: uppercase; color: var(--paper-faint); margin-top: 10px; display: block; font-weight: 600; }
.awards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 40px; }
.award { display: flex; align-items: center; gap: 15px; background: var(--surface); border: 1px solid var(--line); border-radius: 14px; padding: 18px 20px; }
.award .cred-em { width: 44px; height: 44px; border-radius: 10px; }
.award .cred-em svg { width: 22px; height: 22px; }
.award b { display: block; color: var(--paper); font-family: var(--font-display); font-weight: 700; font-size: 14.5px; line-height: 1.2; }
.award > div > span { display: block; font-size: 12px; color: var(--paper-faint); margin-top: 3px; }

/* ---------- service area ---------- */
.areas-grid { display: grid; grid-template-columns: 5fr 7fr; gap: clamp(36px, 5vw, 72px); align-items: center; }
.area-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.area-chips span { font-size: 13.5px; font-weight: 500; border: 1px solid var(--line-strong); background: var(--surface); border-radius: 999px; padding: 9px 16px; color: var(--paper-dim); transition: border-color .18s ease, color .18s ease; }
.area-chips span:hover { border-color: var(--amber); color: var(--paper); }
.areas-note { margin-top: 20px; font-size: 14px; color: var(--paper-faint); }

/* ---------- faq ---------- */
.faq-wrap { max-width: 820px; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 23px 0; font-family: var(--font-display); font-weight: 700; font-size: 18.5px; color: var(--paper); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 22px; color: var(--amber); transition: transform .25s ease; flex: none; font-weight: 400; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-a { padding: 0 0 24px; max-width: 66ch; color: var(--paper-dim); font-size: 15px; }

/* ---------- estimate ---------- */
.estimate-grid { display: grid; grid-template-columns: 5fr 7fr; gap: clamp(40px, 6vw, 90px); align-items: start; }
.est-copy h2 { font-size: clamp(32px, 4.2vw, 50px); font-weight: 800; margin: 14px 0 18px; }
.est-copy .promise { font-size: 16.5px; color: var(--paper-dim); max-width: 44ch; }
.est-points { list-style: none; margin: 24px 0 28px; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.est-points li { display: flex; gap: 12px; align-items: baseline; font-size: 15px; color: var(--paper-dim); }
.est-points li::before { content: "\2713"; color: var(--amber); font-weight: 700; flex: none; }
.est-phone { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; color: var(--paper); }
.est-phone svg { color: var(--amber); }
.est-phone span { font-family: var(--font-display); font-weight: 800; font-size: clamp(24px, 2.8vw, 32px); letter-spacing: -.01em; }
.est-meta { margin-top: 14px; font-size: 13px; color: var(--paper-faint); }
.form-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(24px, 3vw, 36px); box-shadow: 0 30px 80px rgba(0, 0, 0, .4); }
.form-card h3 { font-size: 21px; font-weight: 700; margin-bottom: 4px; color: var(--paper); }
.form-sub { font-size: 13.5px; color: var(--paper-faint); margin-bottom: 22px; }
.f-step { display: none; }
.f-step.on { display: block; animation: fIn .3s ease; }
@keyframes fIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.f-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.f-field { display: flex; flex-direction: column; gap: 7px; }
.f-field.full { grid-column: 1 / -1; }
.f-field label { font-size: 12.5px; font-weight: 600; color: var(--paper-dim); }
.f-field input, .f-field select { height: 50px; border: 1.5px solid var(--line-strong); border-radius: var(--radius-s); padding: 0 15px;
  font-size: 15px; font-family: inherit; background: var(--ink); color: var(--paper); width: 100%; appearance: none; }
.f-field select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23EDEFF2' stroke-width='2' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; }
.f-field input::placeholder { color: var(--paper-faint); }
.f-field input:focus, .f-field select:focus { outline: none; border-color: var(--amber); }
.f-field input.bad, .f-field select.bad { border-color: #E5484D; }
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chips button { border: 1.5px solid var(--line-strong); background: var(--ink); color: var(--paper-dim); border-radius: 999px; padding: 10px 16px; font-size: 13.5px; font-weight: 500; cursor: pointer; transition: border-color .15s, color .15s, background .15s; }
.chips button:hover { border-color: var(--paper-faint); }
.chips button[aria-pressed="true"] { background: var(--amber); border-color: var(--amber); color: #191204; font-weight: 700; }
.f-opt { display: flex; gap: 10px; align-items: flex-start; font-size: 13px; color: var(--paper-faint); margin-top: 16px; }
.f-opt input { width: 17px; height: 17px; margin-top: 2px; accent-color: var(--amber); }
.f-submit { width: 100%; margin-top: 20px; }
.f-note { text-align: center; font-size: 12px; color: var(--paper-faint); margin-top: 14px; }
.f-done { text-align: center; padding: 26px 6px; }
.f-done .mark { width: 56px; height: 56px; border-radius: 50%; background: var(--amber); color: #191204; font-size: 25px; display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; }
.f-done h3 { margin-bottom: 10px; }
.f-done p { font-size: 14.5px; color: var(--paper-dim); }

/* ---------- footer ---------- */
.footer { padding-top: clamp(28px, 3.5vw, 48px); background: var(--ink); border-top: 1px solid var(--line); }
.foot-grid { display: grid; grid-template-columns: 4fr 2.4fr 2.4fr 3.2fr; gap: 36px; padding-bottom: 44px; border-bottom: 1px solid var(--line); }
.foot-grid h4 { color: var(--paper); font-size: 14px; margin-bottom: 16px; font-weight: 700; }
.foot-grid ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.foot-grid a { text-decoration: none; font-size: 14px; color: var(--paper-faint); }
.foot-grid a:hover { color: var(--paper); }
.foot-phone { font-weight: 800 !important; font-size: 16.5px !important; color: var(--paper) !important; }
.foot-muted { font-size: 13.5px; color: var(--paper-faint); }
.foot-brand p { font-size: 14px; color: var(--paper-faint); max-width: 30ch; margin: 14px 0 18px; }
.foot-brand .logo { margin-bottom: 4px; }
.social { display: flex; gap: 10px; }
.social a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--line-strong); display: flex; align-items: center; justify-content: center; color: var(--paper-dim); transition: background .2s, color .2s, border-color .2s; }
.social a:hover { background: var(--amber); border-color: var(--amber); color: #191204; }
.social svg { width: 17px; height: 17px; }
.foot-bottom { display: flex; flex-wrap: wrap; gap: 10px 26px; justify-content: space-between; align-items: center; padding: 22px 0 30px; font-size: 12px; color: var(--paper-faint); }
.foot-bottom a { color: var(--paper-dim); }

/* ---------- mobile call bar ---------- */
.callbar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 850; display: none; grid-template-columns: 1fr 1fr 1.4fr; gap: 1px; background: var(--line); padding-bottom: env(safe-area-inset-bottom); box-shadow: 0 -8px 30px rgba(0, 0, 0, .4); }
.callbar a { display: flex; align-items: center; justify-content: center; gap: 8px; height: 60px; text-decoration: none; font-weight: 700; font-size: 14.5px; background: var(--surface-2); color: var(--paper); }
.callbar a.cb-est { background: var(--amber); color: #191204; }

/* ---------- reveals ---------- */
.rv { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s cubic-bezier(.2, .6, .2, 1); transition-delay: calc(var(--i, 0) * 70ms); }
.rv.on { opacity: 1; transform: none; }

/* ---------- responsive ---------- */
@media (max-width: 1080px) {
  .svc-grid { grid-template-columns: 1fr 1fr; }
  .spotlight-grid, .ev-grid, .safety-grid { grid-template-columns: 1fr; }
  .ev-media, .safety-media { max-width: 560px; }
  .proc { grid-template-columns: 1fr 1fr; gap: 30px 30px; }
  .proc-line { display: none; }
  .areas-grid, .estimate-grid { grid-template-columns: 1fr; }
  .awards-grid { grid-template-columns: repeat(3, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 26px; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  html { scroll-padding-bottom: 84px; }
  .strip-grid { grid-auto-flow: column; grid-auto-columns: 46%; overflow-x: auto; scroll-snap-type: x mandatory; -ms-overflow-style: none; scrollbar-width: none; }
  .strip-grid::-webkit-scrollbar { display: none; }
  .strip-item { scroll-snap-align: start; aspect-ratio: 3 / 4; }
}
@media (max-width: 768px) {
  .nav-links, .nav .nav-phone, .nav .nav-cta { display: none; }
  .nav-burger { display: flex; }
  /* Let the hero size to its content instead of forcing 100svh: forcing full
     height only adds empty centering slack above/below, which pushes the last
     stacked element (the phone-capture strip) down into the fixed call bar's
     60px band regardless of how short the content itself is. */
  .hero { min-height: auto; }
  .svc-grid { grid-template-columns: 1fr; }
  .proc { grid-template-columns: 1fr; }
  .proc-step { padding-top: 26px; }
  .safety-list { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .ev-points { grid-template-columns: 1fr; }
  .callbar { display: grid; }
  body { padding-bottom: 60px; }
  .reviews-head { align-items: flex-start; }
  .hero-marquee span { padding: 0 18px; }
  .hero-marquee span::after { margin-left: 18px; }
}
@media (max-width: 560px) {
  .f-grid { grid-template-columns: 1fr; }
  .hero-cta-row { flex-direction: column; align-items: stretch; }
  .hero-call { justify-content: center; }
  .hero-form-card { margin-top: 14px; padding: 14px 16px 16px; }
  .foot-grid { grid-template-columns: 1fr; }
  /* Short mobile viewports: the hero now stacks a lot (kicker, 2-line headline,
     sub, two CTAs, chips, a 4-field form card) above the fixed call bar (60px)
     and the always-present chat launcher, both pinned to the viewport's
     bottom-right. A full multi-field form card is taller than the old
     one-line phone strip ever was, so on top of tightening every gap, the
     hero-chips proof row is dropped at this breakpoint (its facts already
     live in the eyebrow above and the stats band below) to buy back the
     ~90px the form needs to clear the callbar. Re-measured with Playwright
     geometry, not a screenshot guess: the submit button's rect must never
     overlap the callbar's or the launcher's fixed rects at initial paint. */
  .hero-in { padding-block: 76px 16px; }
  .hero h1 { font-size: clamp(26px, 8.4vw, 46px); margin-top: 10px; }
  .hero-sub { margin-top: 6px; font-size: 14.5px; }
  .hero-cta-row { gap: 8px; margin-top: 14px; }
  .hero-call { padding: 8px 20px 8px 8px; }
  .hero-call .hc-ic { width: 36px; height: 36px; }
  .hero-call b { font-size: 18px; }
  .btn-lg { height: 42px; font-size: 14.5px; }
  .hero-chips { display: none; }
  .hfc-head { margin-bottom: 10px; }
  .hfc-grid { gap: 6px; }
  .hfc-field input, .hfc-field select { height: 44px; }
  .awards-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .logo-mark b { font-size: 17px; }
}

/* chat bubble rides above the mobile call bar */
@media (max-width: 768px) { .cw-root { bottom: 74px !important; } }
/* On narrow phones the full "Chat with us" pill is wide enough to sit over the
   hero form's submit button. Shrink the launcher to its avatar + icon only;
   chat.js itself ships unmodified, this is a pure restyle (same fix already
   proven on the HVAC sibling template's hero bar). */
@media (max-width: 480px) {
  .cw-launch { padding: 10px !important; gap: 6px !important; }
  .cw-launch span:not(.cw-launch-av):not(.cw-badge) { display: none; }
}

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .rv { opacity: 1; transform: none; transition: none; }
  .rv .eyebrow::before { transition: none; }
  .hero-load h1, .hero-load .eyebrow, .hero-load .hero-sub, .hero-load .hero-cta-row, .hero-load .hero-chips, .hero-load .hero-form-card { opacity: 1; transform: none; }
  .hero-call { animation: none; box-shadow: 0 12px 30px rgba(255, 182, 39, .3); }
  .hero-marquee-track.run { animation: none; }
  .hero-marquee::after { animation: none; content: none; }
  .hero-slide { transition: none; }
  .hero-form-card { animation: none; box-shadow: 0 26px 64px rgba(0, 0, 0, .55), 0 0 0 1px rgba(255, 182, 39, .05); }
  .btn-primary:hover { animation: none; box-shadow: 0 18px 40px rgba(255, 182, 39, .38); }
  .count.flicker { animation: none; }
  .spot-handle::after { animation: none; box-shadow: 0 8px 22px rgba(0, 0, 0, .4), 0 0 0 6px rgba(255, 182, 39, .16), 0 0 22px rgba(255, 182, 39, .5); }
  .scroll-cue::after, .svc, .svc-img img, .strip-item img { animation: none; transition: none; }
}
