/* =========================================================
   A to Z Electric — Stylesheet
   Brand: Electric Yellow + Electric Blue + Lightning Bolt
   Service-business pattern library (Manrope + Inter)
   Mobile-first, breakpoints 768/1024/1440
   ========================================================= */

:root {
  /* Brand — LOCKED palette */
  --electric-yellow: #FFD300;
  --yellow-deep:     #E6BD00;
  --yellow-soft:     #FFF4B8;
  --electric-blue:   #0E2A4F;
  --blue-light:      #1B4280;
  --blue-mid:        #244E92;
  --blue-pale:       #E8EEF7;
  --blue-deep:       #07172E;

  /* Neutrals */
  --charcoal:   #1A1A1A;
  --ink-soft:   #404040;
  --paper:      #FAFAFA;
  --white:      #FFFFFF;
  --stone:      #6E6E6E;
  --stone-soft: #9A9A9A;
  --rule:       #E5E5E5;

  /* Signal */
  --alert:   #D63B2C;
  --success: #2D7A4F;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(14, 42, 79, 0.06);
  --shadow-md: 0 8px 24px rgba(14, 42, 79, 0.10);
  --shadow-lg: 0 18px 48px rgba(14, 42, 79, 0.20);
  --shadow-yellow: 0 8px 24px rgba(255, 211, 0, 0.35);

  /* Radius */
  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-lg: 10px;

  /* Container */
  --container: 1240px;
  --container-narrow: 960px;
  --container-wide: 1380px;

  /* Type */
  --font-heading: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  --pad-section-mobile: 4.5rem;
  --pad-section-desktop: 6.5rem;
  --pad-hero-mobile: 5rem;
  --pad-hero-desktop: 7.5rem;

  --header-h-mobile: 64px;
  --header-h-desktop: 80px;
  --trustbar-h: 36px;
  --mobile-callbar-h: 64px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-soft);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  padding-bottom: 0;
}
@media (max-width: 1023px) {
  body { padding-bottom: var(--mobile-callbar-h); }
}
img, video, svg { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--electric-blue);
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 0.55em;
  letter-spacing: -0.018em;
}
h1 { font-size: clamp(2.4rem, 5.5vw, 4.4rem); font-weight: 800; }
h2 { font-size: clamp(1.85rem, 3.6vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
h4 { font-size: 1.05rem; font-weight: 700; }

p { margin: 0 0 1em; }
a { color: var(--electric-blue); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--blue-light); }

ul { padding-left: 1.2rem; margin: 0 0 1em; }
strong, b { font-weight: 700; color: var(--charcoal); }

.container       { width: 100%; max-width: var(--container);       margin: 0 auto; padding: 0 1.5rem; }
.container-narrow{ width: 100%; max-width: var(--container-narrow);margin: 0 auto; padding: 0 1.5rem; }
.container-wide  { width: 100%; max-width: var(--container-wide);  margin: 0 auto; padding: 0 1.5rem; }

.section {
  padding-top: var(--pad-section-mobile);
  padding-bottom: var(--pad-section-mobile);
}
@media (min-width: 1024px) {
  .section { padding-top: var(--pad-section-desktop); padding-bottom: var(--pad-section-desktop); }
}

.bg-paper   { background: var(--paper); }
.bg-pale    { background: var(--blue-pale); }
.bg-blue    { background: var(--electric-blue); color: rgba(255,255,255,0.85); }
.bg-blue h1,.bg-blue h2,.bg-blue h3,.bg-blue h4 { color: var(--white); }
.bg-blue .eyebrow { color: var(--electric-yellow); }
.bg-blue .eyebrow::before { background: var(--electric-yellow); }
.bg-blue p { color: rgba(255,255,255,0.80); }
.bg-blue a { color: var(--electric-yellow); }
.bg-yellow  { background: var(--electric-yellow); color: var(--electric-blue); }
.bg-yellow h1,.bg-yellow h2,.bg-yellow h3 { color: var(--electric-blue); }
.bg-yellow p { color: var(--blue-deep); }

/* ---------- Section header ---------- */
.section-header { text-align: center; margin-bottom: 3rem; max-width: 720px; margin-left: auto; margin-right: auto; }
.section-header.left { text-align: left; max-width: 720px; margin-left: 0; margin-right: 0; }
.section-header p { color: var(--stone); font-size: 1.05rem; margin: 0.5rem auto 0; }
.section-header.left p { margin-left: 0; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--blue-light);
  font-weight: 600;
  margin-bottom: 0.85rem;
  position: relative;
  padding-left: 2.4rem;
}
.eyebrow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 1.8rem;
  height: 2px;
  background: var(--electric-yellow);
}
.section-header:not(.left) .eyebrow {
  padding-left: 2.4rem;
  padding-right: 2.4rem;
}
.section-header:not(.left) .eyebrow::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 1.8rem;
  height: 2px;
  background: var(--electric-yellow);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem 1.6rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
}
.btn .ico { display: inline-flex; line-height: 1; }
.btn-yellow {
  background: var(--electric-yellow);
  color: var(--electric-blue);
  border-color: var(--electric-yellow);
}
.btn-yellow:hover {
  background: var(--yellow-deep);
  border-color: var(--yellow-deep);
  color: var(--electric-blue);
  transform: translateY(-2px);
  box-shadow: var(--shadow-yellow);
}
.btn-blue {
  background: var(--electric-blue);
  color: var(--white);
  border-color: var(--electric-blue);
}
.btn-blue:hover {
  background: var(--blue-deep);
  border-color: var(--blue-deep);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-outline {
  background: transparent;
  color: var(--electric-blue);
  border-color: var(--electric-blue);
}
.btn-outline:hover {
  background: var(--electric-blue);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline-light:hover {
  background: var(--white);
  color: var(--electric-blue);
  transform: translateY(-2px);
}
.btn-outline-yellow {
  background: transparent;
  color: var(--electric-yellow);
  border-color: var(--electric-yellow);
}
.btn-outline-yellow:hover {
  background: var(--electric-yellow);
  color: var(--electric-blue);
}
.btn-lg { padding: 1.1rem 2rem; font-size: 0.98rem; }
.btn-sm { padding: 0.65rem 1.1rem; font-size: 0.82rem; }
.btn-block { width: 100%; }

/* ---------- Lightning Bolt accent (SVG inline) ---------- */
.bolt {
  display: inline-block;
  width: 0.7em;
  height: 1em;
  vertical-align: -0.12em;
  background-color: currentColor;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 20'><path d='M9 0 0 12h5l-2 8 9-12H7l2-8Z'/></svg>") no-repeat center / contain;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 20'><path d='M9 0 0 12h5l-2 8 9-12H7l2-8Z'/></svg>") no-repeat center / contain;
}

.bolt-rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin: 2rem 0;
  color: var(--electric-yellow);
}
.bolt-rule::before, .bolt-rule::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--rule), transparent);
  max-width: 120px;
}
.bolt-rule .bolt { font-size: 1.4rem; }

/* ---------- Top trust strip ---------- */
.top-trust {
  background: var(--electric-blue);
  color: var(--white);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.top-trust .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.top-trust .tt-left { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.top-trust .tt-right { display: none; align-items: center; gap: 1rem; }
.top-trust .tt-item { display: inline-flex; align-items: center; gap: 0.4rem; }
.top-trust .tt-item .bolt { color: var(--electric-yellow); font-size: 0.85rem; }
.top-trust a { color: var(--electric-yellow); font-weight: 600; }
.top-trust a:hover { color: var(--white); }
@media (min-width: 768px) {
  .top-trust .container { justify-content: space-between; }
  .top-trust .tt-right { display: flex; }
}

/* ---------- Header / Nav — Floating Glass Pill ----------
   States:
     .is-transparent → over hero (truly transparent, white text)
     .is-solid       → scrolled past hero (light frosted-glass pill, centered, fit-content)
     .is-paper       → interior pages w/o hero (white glass pill, centered, fit-content)
*/
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding-block: 0.85rem;
  margin: 0;
  background: transparent;
  color: var(--white);
  transition:
    top 450ms cubic-bezier(0.65, 0, 0.35, 1),
    padding-block 450ms cubic-bezier(0.65, 0, 0.35, 1),
    color 450ms cubic-bezier(0.65, 0, 0.35, 1);
}
/* Container becomes a centering wrapper; the .nav becomes the actual pill */
.site-header > .container {
  max-width: 100%;
  padding-inline: clamp(8px, 2vw, 24px);
  display: flex;
  justify-content: center;
}
.site-header .nav {
  width: max-content;
  max-width: 100%;
  flex: 0 1 auto;
  padding-inline: 1.5rem;
  border-radius: 999px;
  border: 1px solid transparent;
  background: transparent;
  transition:
    background 450ms cubic-bezier(0.65, 0, 0.35, 1),
    border-color 450ms cubic-bezier(0.65, 0, 0.35, 1),
    backdrop-filter 450ms cubic-bezier(0.65, 0, 0.35, 1),
    -webkit-backdrop-filter 450ms cubic-bezier(0.65, 0, 0.35, 1),
    box-shadow 450ms cubic-bezier(0.65, 0, 0.35, 1),
    padding 450ms cubic-bezier(0.65, 0, 0.35, 1),
    min-height 450ms cubic-bezier(0.65, 0, 0.35, 1);
}
/* OVER-HERO: fully transparent — no scrim, no line. The hero handles its own readability. */
.site-header.is-transparent {
  background: transparent;
  color: var(--white);
  border-color: transparent;
  box-shadow: none;
}
/* On hero pages we add a soft inline text shadow so white text remains legible */
.site-header.is-transparent .nav-menu a,
.site-header.is-transparent .nav-logo .logo-text strong,
.site-header.is-transparent .nav-logo .logo-text span {
  text-shadow: 0 1px 8px rgba(7,23,46,0.5);
}

/* SCROLLED + INTERIOR: dark navy glassmorphic pill — white text, electric-yellow accents */
.site-header.is-solid,
.site-header.is-paper {
  top: clamp(10px, 1.5vw, 18px);
  padding-block: 0.35rem;
  color: var(--white);
}
.site-header.is-solid .nav,
.site-header.is-paper .nav {
  background: rgba(14, 42, 79, 0.72);
  backdrop-filter: blur(28px) saturate(1.6);
  -webkit-backdrop-filter: blur(28px) saturate(1.6);
  border-color: rgba(255, 255, 255, 0.1);
  padding-block: 0.45rem;
  padding-inline: clamp(0.85rem, 2vw, 1.5rem);
  gap: 1.4rem;
  min-height: 52px;
  box-shadow:
    0 1px 1px rgba(255,255,255,0.08) inset,
    0 14px 44px -16px rgba(7, 23, 46, 0.55),
    0 4px 16px -8px rgba(7, 23, 46, 0.32);
}
.site-header.is-solid .nav {
  background: linear-gradient(180deg, rgba(7, 23, 46, 0.78) 0%, rgba(14, 42, 79, 0.72) 100%);
}
/* White text on dark navy glass */
.site-header.is-solid .nav-menu a,
.site-header.is-paper  .nav-menu a                 { color: var(--white); }
.site-header.is-solid .nav-menu a:hover,
.site-header.is-paper  .nav-menu a:hover           { color: var(--electric-yellow); }
.site-header.is-solid .nav-menu a.active::before,
.site-header.is-solid .nav-menu a:hover::before,
.site-header.is-paper  .nav-menu a.active::before,
.site-header.is-paper  .nav-menu a:hover::before  { background: var(--electric-yellow); }
.site-header.is-solid .nav-toggle span,
.site-header.is-paper  .nav-toggle span            { background: var(--white); }
/* Logo brightness boost when over dark pill */
.site-header.is-solid .nav-logo img,
.site-header.is-paper  .nav-logo img { filter: brightness(0) invert(1); }

/* OVER-HERO state — white text, white toggle, yellow accents */
.site-header.is-transparent .nav-logo .logo-text strong { color: var(--white); }
.site-header.is-transparent .nav-logo .logo-text span   { color: rgba(255,255,255,0.7); }
.site-header.is-transparent .nav-logo .logo-mark        { background: var(--electric-yellow); color: var(--electric-blue); }
.site-header.is-transparent .nav-menu a                 { color: var(--white); }
.site-header.is-transparent .nav-menu a:hover           { color: var(--electric-yellow); }
.site-header.is-transparent .nav-menu a.active::before,
.site-header.is-transparent .nav-menu a:hover::before  { background: var(--electric-yellow); }
.site-header.is-transparent .nav-toggle span            { background: var(--white); }

/* Add top padding to body so fixed header doesn't cover content on interior pages */
body.has-floating-nav { padding-top: 0; }  /* hero pages — header overlays */
body.has-floating-nav-interior { padding-top: calc(var(--header-h-mobile) + 24px); }
@media (min-width: 1024px) {
  body.has-floating-nav-interior { padding-top: calc(var(--header-h-desktop) + 24px); }
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h-mobile);
  padding: 0.5rem 0;
}
@media (min-width: 1024px) {
  .nav { min-height: var(--header-h-desktop); }
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-heading);
  color: var(--electric-blue);
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo .logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--electric-blue);
  color: var(--electric-yellow);
  border-radius: var(--radius-md);
  font-size: 1.4rem;
  font-weight: 800;
}
.nav-logo .logo-mark .bolt { font-size: 1.4rem; }
.nav-logo .logo-text strong {
  display: block;
  line-height: 1.05;
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--electric-blue);
  font-size: 1.05rem;
  letter-spacing: -0.01em;
}
.nav-logo .logo-text span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--stone);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 2px;
}

.nav-menu {
  list-style: none;
  display: none;
  gap: 1.75rem;
  margin: 0;
  padding: 0;
  align-items: center;
}
.nav-menu > li { position: relative; }
.nav-menu a {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--electric-blue);
  padding: 0.5rem 0;
  position: relative;
}
/* Yellow underline indicator uses ::before so it doesn't fight with the dropdown arrow (::after) */
.nav-menu a.active::before,
.nav-menu a:hover::before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--electric-yellow);
}
/* Submenu dropdown arrow — fixed-width so it never causes layout shift */
.nav-menu .has-submenu > a::after {
  content: " ▾";
  opacity: 0.55;
  display: inline-block;
  width: 1em;
  margin-left: 0.2em;
  font-size: 0.7em;
  vertical-align: middle;
}
.nav-menu .has-submenu:hover > a::after { opacity: 1; }
/* Invisible hover bridge keeps cursor inside the .has-submenu while moving from parent → submenu.
   Without it, the 8px gap between parent <a> and submenu would un-trigger :hover and the submenu
   would oscillate open/closed = the glitch the user reported. */
.nav-menu .has-submenu { padding-bottom: 0; }
.nav-menu .has-submenu::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 14px;
  background: transparent;
}
.nav-submenu {
  position: absolute;
  top: calc(100% + 12px);
  left: -1rem;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-md);
  padding: 0.75rem 0;
  min-width: 240px;
  list-style: none;
  margin: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity 220ms ease, transform 220ms ease;
  transition-delay: 0ms;
}
.nav-menu .has-submenu:hover > .nav-submenu,
.nav-menu .has-submenu:focus-within > .nav-submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  transition-delay: 50ms;
}
/* When the cursor leaves, hold the submenu open for 150ms to forgive the cursor crossing through gaps */
.nav-submenu {
  transition-delay: 150ms;
}
.nav-submenu li { padding: 0; }
.nav-submenu a {
  display: block;
  padding: 0.55rem 1.25rem;
  font-size: 0.88rem;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
}
/* SUBMENU links — always dark blue on white panel, override every parent header state */
.site-header .nav-submenu a,
.site-header.is-transparent .nav-submenu a,
.site-header.is-solid .nav-submenu a,
.site-header.is-paper .nav-submenu a,
.site-header .nav-subsubmenu a,
.site-header.is-transparent .nav-subsubmenu a,
.site-header.is-solid .nav-subsubmenu a,
.site-header.is-paper .nav-subsubmenu a {
  color: var(--electric-blue);
  text-transform: none;
  font-weight: 500;
  letter-spacing: 0;
  text-shadow: none;
}
.site-header .nav-submenu a:hover,
.site-header .nav-subsubmenu a:hover { background: var(--blue-pale); color: var(--electric-blue); }
.site-header .nav-submenu a:hover::after,
.site-header .nav-submenu a.active::after,
.site-header .nav-subsubmenu a:hover::after,
.site-header .nav-subsubmenu a.active::after { display: none !important; content: none !important; }

/* NESTED SUB-SUBMENU — Panel Upgrades > [Breaker Box, Panel Replacement] */
.nav-submenu .has-subsubmenu { position: relative; }
.nav-submenu .has-subsubmenu > a::after {
  content: " ›";
  margin-left: 0.4em;
  opacity: 0.6;
  font-weight: 700;
}
/* Hover bridge to the right for the sub-submenu */
.nav-submenu .has-subsubmenu::after {
  content: "";
  position: absolute;
  top: 0;
  left: 100%;
  width: 14px;
  height: 100%;
  background: transparent;
}
.nav-subsubmenu {
  position: absolute;
  top: 0;
  left: calc(100% + 8px);
  background: var(--white);
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-md);
  padding: 0.75rem 0;
  min-width: 240px;
  list-style: none;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-6px);
  transition: opacity 220ms ease, transform 220ms ease;
  transition-delay: 150ms;
}
.nav-submenu .has-subsubmenu:hover > .nav-subsubmenu,
.nav-submenu .has-subsubmenu:focus-within > .nav-subsubmenu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
  transition-delay: 50ms;
}
.nav-subsubmenu li { padding: 0; }
.nav-subsubmenu a {
  display: block;
  padding: 0.55rem 1.25rem;
  font-size: 0.88rem;
}

/* LOGO — direct transparent image, no chip wrapper, no companion text */
.nav-logo {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  background: transparent !important;
}
.nav-logo img,
.nav-logo .logo-img {
  display: block;
  height: 36px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  background: transparent;
  transition: height 450ms cubic-bezier(0.65, 0, 0.35, 1);
}
.site-header.is-solid .nav-logo img,
.site-header.is-solid .nav-logo .logo-img,
.site-header.is-paper  .nav-logo img,
.site-header.is-paper  .nav-logo .logo-img {
  height: 30px;
  max-width: 120px;
}
.nav-logo .logo-text,
.nav-logo .logo-mark { display: none !important; }
.site-footer .nav-logo img { height: 56px; max-width: 200px; }

.nav-actions { display: flex; align-items: center; gap: 0.75rem; }
.nav-phone {
  display: none;
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--electric-blue);
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 1rem;
  background: var(--electric-yellow);
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition: background var(--transition);
}
.nav-phone:hover { background: var(--yellow-deep); color: var(--electric-blue); }
.nav-phone .ico-phone { color: var(--electric-blue); }
@media (min-width: 1024px) { .nav-phone { display: inline-flex; } }

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--electric-blue);
  margin: 0 auto;
  transition: all var(--transition);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Backdrop appears whenever the mobile drawer is open */
body.no-scroll::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(7, 23, 46, 0.55);
  z-index: 199;
  animation: drawer-backdrop-in 220ms ease-out forwards;
}
@keyframes drawer-backdrop-in { from { opacity: 0; } to { opacity: 1; } }
@media (min-width: 1024px) { body.no-scroll::before { display: none; } }

.nav-drawer {
  position: fixed;
  top: var(--header-h-mobile);
  left: 0;
  right: 0;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  transform: translateY(-110%);
  transition: transform 0.4s ease;
  z-index: 210;
  padding: 1.25rem;
  max-height: calc(100vh - var(--header-h-mobile) - var(--mobile-callbar-h) - 12px);
  overflow-y: auto;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
}
.nav-drawer.is-open { transform: translateY(0); }
.nav-drawer ul { list-style: none; padding: 0; margin: 0 0 1.25rem; }
.nav-drawer li { border-bottom: 1px solid var(--rule); }
.nav-drawer a {
  display: block;
  padding: 0.95rem 0;
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--electric-blue);
  letter-spacing: 0.02em;
}
.nav-drawer .drawer-section { margin-bottom: 1rem; }
.nav-drawer .drawer-section-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--stone);
  padding: 0.5rem 0 0.25rem;
}
.nav-drawer .drawer-actions { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 0.5rem; }
.nav-drawer .drawer-actions .btn { width: 100%; }

@media (min-width: 1024px) {
  .nav-menu { display: flex; }
  .nav-toggle, .nav-drawer { display: none; }
}

/* ---------- Mobile sticky call bar ---------- */
.mobile-callbar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--electric-yellow);
  border-top: 3px solid var(--yellow-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.85rem 1rem;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--electric-blue);
  text-decoration: none;
  letter-spacing: 0.02em;
  height: var(--mobile-callbar-h);
  box-shadow: 0 -4px 16px rgba(14,42,79,0.18);
  transition: transform var(--transition);
}
.mobile-callbar:hover { color: var(--electric-blue); background: var(--yellow-deep); }
.mobile-callbar.is-hidden { transform: translateY(100%); }
@media (min-width: 1024px) { .mobile-callbar { display: none; } }

/* ---------- Quick-quote floating button (REMOVED per client request — kept rules for legacy markup) ---------- */
.quote-fab { display: none !important; }
.quote-fab-legacy {
  position: fixed;
  right: -1px;
  top: 40%;
  z-index: 95;
  background: var(--electric-blue);
  color: var(--electric-yellow);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 1rem 0.85rem;
  border: none;
  border-radius: var(--radius-md) 0 0 var(--radius-md);
  cursor: pointer;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  box-shadow: var(--shadow-md);
  transition: background var(--transition);
  display: none;
}
.quote-fab:hover { background: var(--blue-deep); color: var(--electric-yellow); }
@media (min-width: 1024px) { .quote-fab { display: inline-flex; } }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 85svh;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
  padding-top: var(--pad-hero-mobile);
  padding-bottom: var(--pad-hero-mobile);
  background: var(--electric-blue);
}
@media (min-width: 1024px) {
  .hero { padding-top: var(--pad-hero-desktop); padding-bottom: var(--pad-hero-desktop); }
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
  filter: brightness(0.55);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7,23,46,0.55) 0%, rgba(7,23,46,0.78) 100%);
  z-index: 1;
}
.hero .container { position: relative; z-index: 2; max-width: 980px; }
.hero-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--electric-yellow);
  font-weight: 600;
  margin-bottom: 1.25rem;
  position: relative;
  padding-left: 2rem;
}
.hero-eyebrow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 1.5rem;
  height: 2px;
  background: var(--electric-yellow);
}
.hero h1 {
  color: var(--white);
  margin-bottom: 1rem;
  font-weight: 800;
  letter-spacing: -0.022em;
  line-height: 1.05;
}
.hero h1 em {
  font-style: normal;
  color: var(--electric-yellow);
  display: inline-block;
}
.hero p {
  color: rgba(255,255,255,0.85);
  max-width: 640px;
  font-size: 1.1rem;
  margin: 0 0 2.5rem;
  line-height: 1.55;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-top: 1.25rem; margin-bottom: 2.5rem; }
.hero-trust {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.92);
  letter-spacing: 0.02em;
}
.hero-trust-item .bolt { color: var(--electric-yellow); }
.hero-trust-item strong { color: var(--white); }

/* Sub-hero (interior pages) */
.hero-sub {
  min-height: 380px;
}
.hero-sub h1 { font-size: clamp(2rem, 4.4vw, 3.2rem); }
.hero-sub p { font-size: 1.02rem; margin-bottom: 0; }

/* ---------- Trust pillars strip ---------- */
.trust-pillars {
  background: var(--paper);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 2.5rem 0;
}
.trust-pillars-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
.trust-pillar {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.trust-pillar .tp-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--electric-yellow);
  color: var(--electric-blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}
.trust-pillar .tp-icon .bolt { font-size: 1.5rem; }
.trust-pillar h4 {
  margin: 0 0 0.2rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--electric-blue);
  letter-spacing: -0.005em;
}
.trust-pillar p { margin: 0; font-size: 0.92rem; color: var(--stone); line-height: 1.45; }
@media (min-width: 768px) { .trust-pillars-grid { grid-template-columns: repeat(3, 1fr); gap: 2.5rem; } }

/* ---------- Trust badge strip ---------- */
.badge-strip {
  background: var(--white);
  padding: 1.75rem 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.badge-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  text-align: center;
}
.badge-strip-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--electric-blue);
}
.badge-strip-item .bsi-stat {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  text-transform: none;
}
.badge-strip-item .bsi-stat .star { color: var(--electric-yellow); }
.badge-strip-item .bsi-label { font-size: 0.7rem; color: var(--stone); letter-spacing: 0.12em; }

/* ---------- 2-col split ---------- */
.split-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .split-2 { grid-template-columns: 1fr 1fr; gap: 4.5rem; }
  .split-2.reverse > :first-child { order: 2; }
  .split-2.weight-l { grid-template-columns: 1.15fr 1fr; }
  .split-2.weight-r { grid-template-columns: 1fr 1.15fr; }
}
.split-2 h2 { margin-bottom: 1.1rem; }
.split-2 .split-img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

/* ---------- Card grid ---------- */
.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px)  { .card-grid.cols-2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) {
  .card-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
  .card-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
  .card-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Service card ---------- */
.service-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--transition);
  color: var(--electric-blue);
  text-decoration: none;
}
.service-card .sc-img {
  width: 100%;
  aspect-ratio: 16/10;
  background: var(--blue-pale);
  background-size: cover;
  background-position: center;
  position: relative;
}
.service-card .sc-img::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 4px;
  background: var(--electric-yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover .sc-img::after { transform: scaleX(1); }
.service-card .sc-body { padding: 1.5rem 1.5rem 1.75rem; flex-grow: 1; display: flex; flex-direction: column; }
.service-card h3 {
  margin: 0 0 0.55rem;
  font-size: 1.2rem;
  position: relative;
}
.service-card h3 .bolt {
  color: var(--electric-yellow);
  font-size: 0.85em;
  margin-right: 0.35em;
}
.service-card p { margin: 0 0 1.25rem; font-size: 0.95rem; color: var(--stone); line-height: 1.55; flex-grow: 1; }
.service-card .sc-link {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.84rem;
  color: var(--electric-blue);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.service-card .sc-link::after { content: "→"; transition: transform var(--transition); }
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--electric-blue);
}
.service-card:hover .sc-link::after { transform: translateX(4px); }

/* ---------- Bullet checklist ---------- */
.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.85rem;
}
.check-list li {
  position: relative;
  padding-left: 2rem;
  font-size: 1rem;
  color: var(--ink-soft);
  line-height: 1.55;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.25rem;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--electric-yellow);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><circle cx='12' cy='12' r='12' fill='%23000'/></svg>") no-repeat center / contain;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><circle cx='12' cy='12' r='12' fill='%23000'/></svg>") no-repeat center / contain;
}
.check-list li::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 11px;
  width: 12px;
  height: 6px;
  border-left: 2px solid var(--electric-blue);
  border-bottom: 2px solid var(--electric-blue);
  transform: rotate(-45deg);
}
.check-list strong { display: block; color: var(--electric-blue); font-family: var(--font-heading); font-weight: 700; margin-bottom: 0.1rem; }

/* Bolt list - symptom checklist style */
.bolt-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: grid;
  gap: 0.7rem;
}
.bolt-list li {
  position: relative;
  padding-left: 1.85rem;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.5;
}
.bolt-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35rem;
  width: 14px;
  height: 18px;
  background-color: var(--electric-yellow);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 20'><path d='M9 0 0 12h5l-2 8 9-12H7l2-8Z'/></svg>") no-repeat center / contain;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 20'><path d='M9 0 0 12h5l-2 8 9-12H7l2-8Z'/></svg>") no-repeat center / contain;
}

/* ---------- Process steps ---------- */
.process-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  counter-reset: step;
}
@media (min-width: 768px)  { .process-list { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .process-list { grid-template-columns: repeat(4, 1fr); gap: 2rem; } }
.process-step {
  position: relative;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem 1.75rem;
  transition: all var(--transition);
}
.process-step::before {
  content: counter(step, decimal-leading-zero);
  counter-increment: step;
  position: absolute;
  top: -16px;
  left: 1.5rem;
  background: var(--electric-yellow);
  color: var(--electric-blue);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.95rem;
  padding: 0.3rem 0.6rem;
  border-radius: var(--radius-sm);
  letter-spacing: 0.05em;
}
.process-step:hover {
  border-color: var(--electric-blue);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.process-step h4 { color: var(--electric-blue); font-size: 1.1rem; margin: 0.75rem 0 0.5rem; }
.process-step p { margin: 0; font-size: 0.92rem; color: var(--stone); line-height: 1.55; }

/* ---------- Icon-box (trust/why grid) ---------- */
.icon-box {
  background: var(--white);
  padding: 2rem 1.5rem;
  border-radius: var(--radius-md);
  text-align: center;
  border: 1px solid var(--rule);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.icon-box:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--electric-blue);
}
.icon-box::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--electric-yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.icon-box:hover::after { transform: scaleX(1); }
.icon-box .ib-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--electric-blue);
  color: var(--electric-yellow);
  border-radius: 50%;
  font-size: 1.4rem;
}
.icon-box .ib-icon .bolt { font-size: 1.4rem; }
.icon-box h3 { font-size: 1.1rem; margin: 0 0 0.5rem; }
.icon-box p { color: var(--stone); margin: 0; font-size: 0.93rem; line-height: 1.55; }

/* ---------- Area / city grid ---------- */
.area-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.65rem;
}
@media (min-width: 640px)  { .area-grid { grid-template-columns: repeat(3, 1fr); gap: 0.8rem; } }
@media (min-width: 1024px) { .area-grid { grid-template-columns: repeat(4, 1fr); gap: 1rem; } }
.area-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-md);
  padding: 0.85rem 1rem;
  text-align: left;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--white);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all var(--transition);
}
.area-card:hover {
  background: var(--electric-yellow);
  color: var(--electric-blue);
  border-color: var(--electric-yellow);
  transform: translateY(-2px);
}
/* Light-section variant — for "Nearby Service Areas" inside white .section containers */
.section:not(.bg-blue):not(.bg-yellow) .area-card,
.bg-paper .area-card,
.bg-pale .area-card {
  background: var(--white);
  border-color: var(--rule);
  color: var(--electric-blue);
}
.section:not(.bg-blue):not(.bg-yellow) .area-card .bolt,
.bg-paper .area-card .bolt,
.bg-pale .area-card .bolt { color: var(--electric-blue); }
.section:not(.bg-blue):not(.bg-yellow) .area-card:hover,
.bg-paper .area-card:hover,
.bg-pale .area-card:hover {
  background: var(--electric-blue);
  color: var(--white);
  border-color: var(--electric-blue);
}
.section:not(.bg-blue):not(.bg-yellow) .area-card:hover .bolt,
.bg-paper .area-card:hover .bolt,
.bg-pale .area-card:hover .bolt { color: var(--electric-yellow); }
.area-card.is-hq {
  background: var(--electric-yellow);
  color: var(--electric-blue);
  border-color: var(--electric-yellow);
  font-weight: 800;
}
.area-card .bolt { color: var(--electric-yellow); font-size: 0.85em; flex-shrink: 0; }
.area-card:hover .bolt,
.area-card.is-hq .bolt { color: var(--electric-blue); }

.area-extra {
  margin-top: 2rem;
  text-align: center;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.78);
}
.area-extra a {
  color: var(--electric-yellow);
  font-weight: 700;
  white-space: nowrap;
}

/* ---------- Testimonial ---------- */
.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px)  { .testimonial-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .testimonial-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; } }

.testimonial-card {
  background: var(--white);
  padding: 2rem 1.75rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: all var(--transition);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--electric-blue); }
.testimonial-card .stars { color: var(--electric-yellow); font-size: 1rem; letter-spacing: 0.18em; margin-bottom: 0.85rem; }
.testimonial-card blockquote {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0 0 1.25rem;
  flex-grow: 1;
  position: relative;
  padding-left: 0;
}
.testimonial-card blockquote::before {
  content: "\201C";
  display: block;
  font-size: 3.5rem;
  line-height: 0.6;
  color: var(--electric-yellow);
  font-family: Georgia, serif;
  margin-bottom: 0.5rem;
}
.testimonial-card .t-author {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--electric-blue);
  font-size: 0.95rem;
}
.testimonial-card .t-author span {
  display: block;
  font-weight: 500;
  font-size: 0.82rem;
  color: var(--stone);
  margin-top: 2px;
}

/* ---------- Commercial callout ---------- */
.commercial-callout {
  background: var(--electric-yellow);
  position: relative;
  overflow: hidden;
}
.commercial-callout::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(14,42,79,0.08) 0%, transparent 70%);
}
.commercial-callout-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.commercial-callout h2 { color: var(--electric-blue); }
.commercial-callout p { color: var(--blue-deep); font-size: 1.08rem; }
@media (min-width: 1024px) {
  .commercial-callout-grid { grid-template-columns: 1.4fr 1fr; gap: 3rem; }
}

/* ---------- Financing callout ---------- */
.financing-callout {
  background: linear-gradient(135deg, var(--blue-pale) 0%, var(--white) 100%);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  position: relative;
  overflow: hidden;
}
.financing-callout::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 5px; height: 100%;
  background: var(--electric-yellow);
}

/* ---------- News card ---------- */
.news-card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--transition);
}
.news-card .nc-img {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--blue-pale);
  background-size: cover;
  background-position: center;
}
.news-card .nc-body { padding: 1.5rem; flex-grow: 1; display: flex; flex-direction: column; }
.news-card .nc-date {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--stone);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.news-card h3 { font-size: 1.15rem; margin: 0 0 0.65rem; }
.news-card p { font-size: 0.93rem; color: var(--stone); margin: 0 0 1rem; flex-grow: 1; }
.news-card .nc-read {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--electric-blue);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.news-card:hover { transform: translateY(-4px); border-color: var(--electric-blue); box-shadow: var(--shadow-md); }

/* ---------- Final CTA band ---------- */
.cta-band {
  background: var(--electric-blue);
  color: var(--white);
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 5rem 0;
}
.cta-band::before {
  content: "";
  position: absolute;
  top: -20%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,211,0,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.cta-band::after {
  content: "";
  position: absolute;
  bottom: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,211,0,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.cta-band .container { position: relative; z-index: 1; }
.cta-band h2 {
  color: var(--white);
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  margin: 0 0 1rem;
  letter-spacing: -0.022em;
}
.cta-band h2 em { font-style: normal; color: var(--electric-yellow); }
.cta-band p { color: rgba(255,255,255,0.85); font-size: 1.1rem; max-width: 580px; margin: 0 auto 2rem; }
.cta-band .cta-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }

/* ---------- Quick quote drawer (slide-in) ---------- */
.qq-overlay {
  position: fixed;
  inset: 0;
  background: rgba(7,23,46,0.6);
  z-index: 290;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.qq-overlay.is-open { opacity: 1; pointer-events: auto; }
.qq-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(440px, 100%);
  background: var(--white);
  z-index: 300;
  transform: translateX(110%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-lg);
}
.qq-drawer.is-open { transform: translateX(0); }
.qq-header {
  background: var(--electric-blue);
  color: var(--white);
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.qq-header h3 { color: var(--white); margin: 0; font-size: 1.2rem; }
.qq-close {
  background: transparent;
  border: none;
  color: var(--electric-yellow);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  width: 32px;
  height: 32px;
}
.qq-body { padding: 1.5rem; overflow-y: auto; flex-grow: 1; }
.qq-body p.qq-intro { font-size: 0.95rem; color: var(--stone); margin: 0 0 1.5rem; }

/* ---------- Forms ---------- */
.form-group { margin-bottom: 1.1rem; }
.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.78rem;
  color: var(--electric-blue);
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: 0.98rem;
  border: 1.5px solid var(--rule);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--charcoal);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--electric-blue);
  box-shadow: 0 0 0 3px rgba(14,42,79,0.1);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 640px) { .form-row.cols-2 { grid-template-columns: 1fr 1fr; } }
.form-status { margin-top: 1rem; font-size: 0.92rem; padding: 0.6rem 0.85rem; border-radius: var(--radius-sm); }
.form-status.success { color: var(--success); background: rgba(45,122,79,0.08); }
.form-status.error   { color: var(--alert); background: rgba(214,59,44,0.08); }

/* ---------- Contact grid ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 5fr 7fr; gap: 3rem; } }

.info-card {
  background: var(--electric-blue);
  color: rgba(255,255,255,0.85);
  border-radius: var(--radius-md);
  padding: 2rem;
}
.info-card h3 { color: var(--white); margin: 0 0 1.5rem; }
.info-card .info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin-bottom: 1.4rem;
  font-size: 0.97rem;
  line-height: 1.55;
}
.info-card .info-item:last-child { margin-bottom: 0; }
.info-card .info-icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  background: var(--electric-yellow);
  color: var(--electric-blue);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
}
.info-card .info-icon .bolt { font-size: 0.95rem; }
.info-card .info-item strong {
  display: block;
  color: var(--electric-yellow);
  font-family: var(--font-heading);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 0.2rem;
}
.info-card .info-item a { color: rgba(255,255,255,0.92); }
.info-card .info-item a:hover { color: var(--electric-yellow); }

.form-card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}

/* ---------- Map embed ---------- */
.map-embed {
  margin-top: 2rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.map-embed iframe { display: block; width: 100%; border: 0; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--electric-blue);
  color: rgba(255,255,255,0.75);
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 768px)  { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 3rem; } }

.footer-brand .nav-logo .logo-text strong { color: var(--white); }
.footer-brand .nav-logo .logo-text span { color: rgba(255,255,255,0.6); }
.footer-brand p { color: rgba(255,255,255,0.7); margin: 1rem 0; font-size: 0.93rem; line-height: 1.6; }
.footer-social { display: flex; gap: 0.5rem; margin-top: 0.5rem; }
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border-radius: 50%;
  font-size: 0.9rem;
  transition: all var(--transition);
}
.footer-social a:hover { background: var(--electric-yellow); color: var(--electric-blue); }

.footer-col h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--electric-yellow);
  margin: 0 0 1.25rem;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 0.55rem; font-size: 0.93rem; }
.footer-col a { color: rgba(255,255,255,0.75); transition: color var(--transition); }
.footer-col a:hover { color: var(--electric-yellow); }
.footer-col p { font-size: 0.93rem; color: rgba(255,255,255,0.75); line-height: 1.6; margin: 0 0 0.55rem; }
.footer-col strong { color: var(--white); display: block; font-family: var(--font-heading); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.1em; margin-top: 0.85rem; margin-bottom: 0.3rem; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 3rem;
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
}
.footer-bottom a { color: rgba(255,255,255,0.7); }
.footer-bottom a:hover { color: var(--electric-yellow); }

/* Breadcrumb — hidden on built pages (the floating nav already provides location context). */
.breadcrumb { display: none; }

/* ---------- FAQ ---------- */
.faq-list { display: grid; gap: 0.85rem; max-width: 860px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.25rem 1.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--electric-blue);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: background var(--transition);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--electric-yellow);
  transition: transform var(--transition);
  flex-shrink: 0;
  background: var(--electric-blue);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item:hover summary { background: var(--paper); }
.faq-item .faq-body { padding: 0 1.5rem 1.5rem; color: var(--ink-soft); line-height: 1.65; font-size: 0.97rem; }
.faq-item .faq-body p:last-child { margin: 0; }

/* ---------- Highlight block (commercial / financing) ---------- */
.highlight-block {
  background: linear-gradient(135deg, var(--electric-blue) 0%, var(--blue-light) 100%);
  color: rgba(255,255,255,0.86);
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.highlight-block::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(255,211,0,0.1) 0%, transparent 70%);
}
.highlight-block > * { position: relative; z-index: 1; }
.highlight-block .hb-badge {
  display: inline-block;
  background: var(--electric-yellow);
  color: var(--electric-blue);
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
}
.highlight-block h3 { color: var(--white); margin: 0 0 0.65rem; font-size: 1.5rem; }
.highlight-block p  { color: rgba(255,255,255,0.86); margin: 0 0 1.25rem; }
@media (min-width: 768px) { .highlight-block { grid-template-columns: 2fr 1fr; gap: 2.5rem; padding: 3rem; } }

/* ---------- Page intro ---------- */
.page-intro {
  padding-top: var(--pad-section-mobile);
  padding-bottom: var(--pad-section-mobile);
  text-align: center;
}
@media (min-width: 1024px) {
  .page-intro { padding-top: var(--pad-section-desktop); padding-bottom: var(--pad-section-desktop); }
}
.page-intro .container-narrow > p { font-size: 1.05rem; color: var(--ink-soft); }

/* ---------- Utility helpers ---------- */
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; } .mt-2 { margin-top: 1rem; } .mt-3 { margin-top: 1.5rem; } .mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; } .mb-2 { margin-bottom: 1rem; } .mb-3 { margin-bottom: 1.5rem; } .mb-4 { margin-bottom: 2rem; }
.no-scroll { overflow: hidden; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ---------- Reveal-on-scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* =============================================================================
   MOBILE POLISH PASS — tightening padding, sizing, button overflow at small widths
   ============================================================================= */
@media (max-width: 640px) {
  /* H1 reflow safety for narrow phones */
  h1 { font-size: clamp(2rem, 7vw, 4.4rem); word-break: break-word; }
  .hero h1 { line-height: 1.05; }

  /* Buttons — shrink slightly to avoid edge-hugging */
  .btn-lg { padding: 1rem 1.3rem; font-size: 0.92rem; }
  .btn    { padding: 0.85rem 1.25rem; }

  /* Section breathing room — pull in for phones */
  .section-header { margin-bottom: 2rem; }
  .cta-band { padding: 3.5rem 1rem; }
  .cta-band h2 { font-size: clamp(1.7rem, 6vw, 2.4rem); }
  .financing-callout { padding: 2rem 1.25rem; }
  .highlight-block { padding: 2rem 1.5rem; }

  /* Testimonial card padding + quote glyph slightly smaller on phone */
  .testimonial-card { padding: 1.5rem 1.25rem; }
  .testimonial-card blockquote::before { font-size: 2.5rem; }

  /* Trust pillars on home — tighter vertical rhythm */
  .trust-pillars-grid { gap: 1.5rem; }

  /* Hero p — slightly smaller for narrow screens */
  .hero p { font-size: 1rem; }
  .hero-eyebrow { font-size: 0.72rem; padding-left: 1.5rem; }
  .hero-eyebrow::before { width: 1rem; }

  /* Container padding tighter */
  .container, .container-narrow, .container-wide { padding: 0 1.25rem; }
}

@media (max-width: 480px) {
  /* Force single-column form rows inside the quick-quote drawer */
  .qq-drawer .form-row.cols-2 { grid-template-columns: 1fr; }
  /* Hero CTA buttons stretch to full width for easy thumb reach */
  .hero-cta .btn { flex: 1 1 100%; }
  /* Footer bottom links sit on their own line */
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
}

/* Set body padding for pages without a hero so the floating header doesn't cover content.
   JS adds .has-floating-nav (hero pages) or .has-floating-nav-interior (no-hero pages). */
body:not(.has-floating-nav):not(.has-floating-nav-interior) main > section:first-child {
  padding-top: calc(var(--header-h-mobile) + 1.5rem);
}
@media (min-width: 1024px) {
  body:not(.has-floating-nav):not(.has-floating-nav-interior) main > section:first-child {
    padding-top: calc(var(--header-h-desktop) + 1.5rem);
  }
}

/* ---------- Hero compact (interior pages) ---------- */
.hero-compact { min-height: 52svh; padding-top: 5.5rem; padding-bottom: 4rem; }
@media (min-width: 1024px) { .hero-compact { min-height: 48svh; padding-top: 7rem; padding-bottom: 5rem; } }
.hero-compact .breadcrumb {
  background: transparent;
  border-bottom: 0;
  padding: 0 0 1rem;
  position: relative;
  z-index: 2;
}
.hero-compact .breadcrumb li { color: rgba(255,255,255,0.7); }
.hero-compact .breadcrumb li:last-child { color: var(--electric-yellow); }
.hero-compact .breadcrumb a { color: rgba(255,255,255,0.92); }
.hero-compact .breadcrumb a:hover { color: var(--electric-yellow); }
.hero-compact .breadcrumb li:not(:last-child)::after { color: rgba(255,255,255,0.4); }

/* ---------- Filter bar (testimonials) ---------- */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  margin: 0 0 2.5rem;
}
.filter-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--white);
  color: var(--electric-blue);
  border: 1.5px solid var(--rule);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  cursor: pointer;
  transition: all var(--transition);
}
.filter-pill:hover { border-color: var(--electric-blue); background: var(--paper); }
.filter-pill.is-active {
  background: var(--electric-blue);
  color: var(--white);
  border-color: var(--electric-blue);
}

/* ---------- Testimonials 3-up override ---------- */
.testimonial-grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.4rem;
}
@media (min-width: 768px)  { .testimonial-grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .testimonial-grid-3 { grid-template-columns: repeat(3, 1fr); gap: 1.6rem; } }

/* ---------- Sitemap list ---------- */
.sitemap-group { margin-bottom: 2.5rem; }
.sitemap-group h2 {
  font-family: var(--font-heading);
  color: var(--electric-blue);
  border-bottom: 2px solid var(--electric-yellow);
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
  font-size: 1.15rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.sitemap-group ul { list-style: none; padding: 0; margin: 0; columns: 1; column-gap: 2rem; }
@media (min-width: 640px)  { .sitemap-group ul { columns: 2; } }
@media (min-width: 1024px) { .sitemap-group ul { columns: 3; } }
.sitemap-group li { margin-bottom: 0.55rem; break-inside: avoid; font-size: 0.96rem; }
.sitemap-group a { color: var(--electric-blue); }
.sitemap-group a:hover { color: var(--electric-yellow); text-decoration: underline; }

