/* ============================================================================
   SITE.CSS — the real Sparkled design system.

   This was the 2,753-line <style> block inside index.html. It is ~30 component
   families — hero, review strip, section bands, service cards, compare tables,
   process steps, gallery, area cards, FAQ accordions and four distinct CTA
   bands — and until 2026-08-27 the homepage was the only page that could use
   any of it. Every other page was built on interior.css, a thin prose system,
   and Ryan rejected all of them on sight: "complete trash… I'd rather stay
   with my GHL site."

   The gap was never polish. It was that the components lived in one file's
   <style> tag. Extracting them here is what lets every page be built out of
   the same vocabulary the homepage already proved.

   CASCADE ORDER IS LOAD-BEARING. This link must sit exactly where the <style>
   block sat: BEFORE lightbox.css, protect-images.css and chrome.css. chrome.css
   deliberately overrides rules in here (header, footer, buttons, the quote
   modal), and moving this link after it would silently undo that.

   See docs/CONVERSION-REBUILD-BRIEF.md §2.
   ============================================================================ */

/* Anchor jumps must clear the fixed 89px header — without this,
   #smartclip and the pre-existing #quote both land underneath it. */
html { scroll-padding-top: 110px; }


/* ============================================================================
   SPARKLED LIGHTING — HOMEPAGE V2
   All design tokens live here. Change here, change everywhere.
   ============================================================================ */
:root {
  /* Brand palette */
  --brand-blue:        #0b7db3;
  --brand-blue-600:    #0968a0;
  --brand-blue-700:    #07527f;
  --brand-blue-ink:    #053b5d;
  --brand-teal:        #52cbbe;
  --brand-teal-600:    #3bb4a6;
  --brand-dark:        #3a5b7d;
  --brand-dark-900:    #1f3550;
  --brand-gold:        #f3b21d;
  --brand-gold-600:    #d69a0d;
  --brand-gold-ink:    #3a2900;
  --brand-green:       #52b662;
  --brand-green-600:   #3d9c4c;
  --brand-red:         #c1272d;

  /* Neutrals */
  --ink:               #0a1424;
  --ink-soft:          #334054;
  --ink-muted:         #6b7890;
  --ink-faint:         #9aa4b8;
  --surface:           #ffffff;
  --surface-raised:    #ffffff;
  --surface-sunken:    #f4f6fb;
  --surface-tinted:    #eef4fa;
  --hairline:          rgba(10, 20, 36, 0.08);
  --hairline-strong:   rgba(10, 20, 36, 0.14);

  /* Shadows */
  --shadow-sm:  0 2px 8px rgba(10, 20, 36, 0.06), 0 1px 2px rgba(10, 20, 36, 0.04);
  --shadow-md:  0 8px 24px rgba(10, 20, 36, 0.08), 0 2px 6px rgba(10, 20, 36, 0.05);
  --shadow-lg:  0 24px 48px rgba(10, 20, 36, 0.12), 0 6px 12px rgba(10, 20, 36, 0.06);
  --shadow-xl:  0 40px 80px rgba(10, 20, 36, 0.18), 0 10px 24px rgba(10, 20, 36, 0.08);
  --shadow-brand: 0 20px 40px rgba(11, 125, 179, 0.28);

  /* Radii */
  --r-sm:  8px;
  --r-md:  14px;
  --r-btn: 15px;
  --r-lg:  20px;
  --r-xl:  28px;
  --r-2xl: 36px;
  --r-pill: 999px;

  /* Motion */
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-swift:  cubic-bezier(0.16, 1, 0.3, 1);

  /* Layout */
  --container: 1200px;
  --container-wide: 1320px;
  --gutter: clamp(18px, 4vw, 48px);

  /* Z-index scale */
  --z-base: 1;
  --z-nav: 100;
  --z-dropdown: 200;
  --z-modal: 300;

  /* Type scale */
  --fs-xs:   clamp(12px, 0.8vw + 10px, 13px);
  --fs-sm:   clamp(13px, 0.8vw + 11px, 15px);
  --fs-base: clamp(16px, 0.5vw + 14px, 17px);
  --fs-lg:   clamp(17px, 0.7vw + 15px, 19px);
  --fs-xl:   clamp(19px, 1vw + 16px, 22px);
  --fs-2xl:  clamp(23px, 1.6vw + 18px, 28px);
  --fs-3xl:  clamp(28px, 2.2vw + 20px, 38px);
  --fs-4xl:  clamp(32px, 3.2vw + 20px, 52px);
  --fs-5xl:  clamp(38px, 4.5vw + 20px, 64px);
  --fs-hero: clamp(40px, 5.5vw + 20px, 84px);
}


/* ============================================================================
   RESET & BASE
   ============================================================================ */
*, *::before, *::after { box-sizing: border-box; }

* { margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }


/* Image protection — paired with initImageProtection() in <script>.
   Class added to <html> at runtime so non-JS visitors get default behaviour
   and search engine crawlers see images normally. Layers 3 & 4 (selection
   disable + iOS/Android long-press callout suppression). */
.img-protected img {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none; /* iOS Safari long-press menu */
  -webkit-user-drag: none;
  pointer-events: auto; /* Keep clicks/links on images functional */
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: var(--fs-base);
  line-height: 1.6;
  color: var(--ink);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: "kern", "liga", "ss01", "ss02";
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; height: auto; }

a { color: inherit; text-decoration: none; }

button { font: inherit; border: none; cursor: pointer; background: none; color: inherit; }

h1, h2, h3, h4, h5, h6 { font-weight: 700; letter-spacing: -0.02em; line-height: 1.1; color: var(--ink); }

p { color: var(--ink-soft); }


.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }

.container-wide { width: 100%; max-width: var(--container-wide); margin-inline: auto; padding-inline: var(--gutter); }


.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--brand-blue);
}

.eyebrow::before { content: ""; width: 20px; height: 1px; background: currentColor; }


.star-mark { display: inline-block; width: 28px; height: 28px; vertical-align: middle; fill: currentColor; }

@keyframes btnPulse {
  0%, 100% { box-shadow: 0 20px 40px rgba(243, 178, 29, 0.32), inset 0 1px 0 rgba(255,255,255,0.3), 0 0 0 0 rgba(243, 178, 29, 0.5); }
  50% { box-shadow: 0 20px 40px rgba(243, 178, 29, 0.32), inset 0 1px 0 rgba(255,255,255,0.3), 0 0 0 8px rgba(243, 178, 29, 0); }
}


/* Responsive button text — 'Request Quote' on mobile, 'Request A Quote' on desktop */
.show-desktop-inline { display: none; }
@media (min-width: 1080px){

  .show-desktop-inline { display: inline; }
}


/* Mobile Request A Quote — bigger font, tighter padding, same overall button size */
@media (max-width: 1079px) {
  .nav-cta-mobile .btn.btn-gold.btn-sm {
    font-size: 15px; font-weight: 700;
    padding: 9px 12px; height: 42px;
    display: inline-flex; align-items: center;
    line-height: 1;
  }
}

body {
  padding-top: var(--nav-h, 80px);
}

@keyframes numHalo {
  0% { box-shadow: 0 0 0 0 rgba(196,30,30,0.75); }
  70% { box-shadow: 0 0 0 10px rgba(196,30,30,0); }
  100% { box-shadow: 0 0 0 0 rgba(196,30,30,0); }
}

@keyframes wobbleCta {
  0%, 85%, 100% { transform: rotate(0deg); }
  88% { transform: rotate(-3deg); }
  91% { transform: rotate(3deg); }
  94% { transform: rotate(-2deg); }
  97% { transform: rotate(1deg); }
}


/* Mobile: bigger logo with left padding from screen edge */
@media (max-width: 1079px) {
  .nav { padding-left: 6px; }
  .nav-logo img.logo-mark { height: 52px; }
}

@keyframes quoteBtnWobble {
  0%     { transform: rotate(0deg); }
  15%    { transform: rotate(-3deg); }
  30%    { transform: rotate(3deg); }
  45%    { transform: rotate(0deg); }
  100%   { transform: rotate(0deg); }
}


/* ============================================================================
   HERO
   ============================================================================ */
.hero {
  position: relative;
  /* ============================================================
     HERO BACKGROUND — Full-bleed photo with protective overlay
     Image: Hero-Background-Desktop.png (mobile variant swaps at <980px)
     Overlay: darkens content zone (left on desktop, top on mobile)
     
     To REVERT to the previous pure-gradient background, swap this
     block with the commented block below labeled "LEGACY GRADIENT".
     ============================================================ */
  background:
    /* Darkening overlay: horizontal fade on desktop to protect left-side text.
       Keeps strong density 0-35% (text column), transitions smoothly to 0% by 62%
       so the right-side house and star sky stay vibrant. */
    linear-gradient(90deg,
      rgba(7,16,42,0.88) 0%,
      rgba(7,16,42,0.80) 22%,
      rgba(7,16,42,0.60) 38%,
      rgba(7,16,42,0.35) 48%,
      rgba(7,16,42,0.12) 56%,
      rgba(7,16,42,0.00) 62%,
      rgba(7,16,42,0.00) 100%),
    /* Photo layer — plain url() first as the fallback, then the same layer again
       through image-set() so a capable browser takes AVIF. The comment here used
       to CLAIM "serves AVIF → WEBP → JPEG by browser capability" while the rule
       below it named a single .jpg, so every visitor downloaded 231 KB when 107
       would do. */
    url('/sparkled-assets/images/permanent-lights-syracuse-ut-full-color-spectrum-hero-1600w.jpg?v=944c12ed');
  background-image:
    linear-gradient(90deg,
      rgba(7,16,42,0.88) 0%, rgba(7,16,42,0.80) 22%, rgba(7,16,42,0.60) 38%,
      rgba(7,16,42,0.35) 48%, rgba(7,16,42,0.12) 56%, rgba(7,16,42,0.00) 62%,
      rgba(7,16,42,0.00) 100%),
    image-set(
      url('/sparkled-assets/images/permanent-lights-syracuse-ut-full-color-spectrum-hero-1600w.avif?v=e1d72c3c') type('image/avif'),
      url('/sparkled-assets/images/permanent-lights-syracuse-ut-full-color-spectrum-hero-1600w.webp?v=8bd2da02') type('image/webp'),
      url('/sparkled-assets/images/permanent-lights-syracuse-ut-full-color-spectrum-hero-1600w.jpg?v=944c12ed')  type('image/jpeg'));
  background-size: cover;
  background-position: center 35%;
  background-repeat: no-repeat;
  color: white; overflow: hidden;
  /* Top padding reduced (was clamp(32px,4vw,56px)). The header is fixed at
     89px and <body> already offsets by exactly that, so the old value put a
     further 56px of empty photo between the nav and the first line. */
  padding: clamp(14px, 1.8vw, 26px) 0 clamp(24px, 4vw, 48px);
}


/* Mobile: vertical darkening (text-on-top) + mobile-optimized portrait image */
@media (max-width: 979px) {
  .hero {
    background: url('/sparkled-assets/images/permanent-lights-syracuse-ut-full-color-spectrum-hero-1200w.jpg?v=fee59ee4');
    background-image: image-set(
      url('/sparkled-assets/images/permanent-lights-syracuse-ut-full-color-spectrum-hero-1200w.avif?v=65de629d') type('image/avif'),
      url('/sparkled-assets/images/permanent-lights-syracuse-ut-full-color-spectrum-hero-1200w.webp?v=79a1b6e5') type('image/webp'),
      url('/sparkled-assets/images/permanent-lights-syracuse-ut-full-color-spectrum-hero-1200w.jpg?v=fee59ee4')  type('image/jpeg'));
    background-size: cover;
    background-position: center 56%;
    background-repeat: no-repeat;
  }
}


/* ============================================================
   LEGACY GRADIENT — v43 background (pure CSS, no photo)
   To revert: uncomment this and comment out .hero { ... }
 above.
   ============================================================
.hero {
  position: relative;
  background:
    radial-gradient(ellipse 90% 65% at 15% -5%, rgba(11,125,179,0.38) 0%, transparent 55%),
    radial-gradient(ellipse 95% 110% at 108% 108%, rgba(243,178,29,0.35) 0%, rgba(255,130,70,0.16) 22%, transparent 58%),
    radial-gradient(ellipse 90% 45% at 60% 110%, rgba(243,178,29,0.14) 0%, rgba(255,130,70,0.08) 25%, transparent 55%),
    radial-gradient(ellipse 45% 70% at 100% 80%, rgba(82,203,190,0.18) 0%, transparent 50%),
    linear-gradient(180deg, #07102a 0%, #0b1d3c 28%, #122f52 58%, #18395a 82%, #1d405e 100%);
  color: white; overflow: hidden;
  padding: clamp(32px, 4vw, 56px) 0 clamp(24px, 4vw, 48px);
}

   ============================================================ */

.hero .container-wide { position: relative; z-index: 1; }

.hero-grid {
  display: grid; grid-template-columns: 1fr; gap: clamp(24px, 3vw, 48px);
  align-items: center;
}
@media (min-width: 980px){
 
  .hero-grid { grid-template-columns: 1fr; gap: 0; }

  /* Cap text width so the house in the background photo stays visible on the right */
  .hero-copy { max-width: 580px; }
}


.hero-copy { text-align: center; margin-inline: auto; width: 100%; }
@media (min-width: 980px){
 .hero-copy { text-align: left; margin-inline: 0; }
}

.hero-copy h1 { word-break: break-word; hyphens: none; }

/* Very small phones: tighten letter-spacing so 'brilliantly' and 'lit for life.' both fit at 320px viewport */
@media (max-width: 400px) {
  .hero h1 { letter-spacing: -0.03em; }
  .hero h1 .shine { letter-spacing: -0.055em; }
}
@media (max-width: 340px){

  .hero h1 .shine { letter-spacing: -0.08em; }
}


.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px; font-size: 12px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--brand-teal);
  padding: 6px 12px; border-radius: var(--r-pill);
  background: rgba(7,16,42,0.55); border: 1px solid rgba(82, 203, 190, 0.35);
  margin-bottom: 14px;
  text-shadow: 0 2px 6px rgba(0,0,0,0.65);
}

.hero-eyebrow .pulse {
  width: 8px; height: 8px; border-radius: 50%; background: var(--brand-teal);
  box-shadow: 0 0 0 0 rgba(82,203,190, 0.7);
  animation: heroPulse 2s infinite;
}

@keyframes heroPulse {
  0% { box-shadow: 0 0 0 0 rgba(82,203,190, 0.55); }
  70% { box-shadow: 0 0 0 12px rgba(82,203,190, 0); }
  100% { box-shadow: 0 0 0 0 rgba(82,203,190, 0); }
}


.hero h1 {
  font-size: clamp(60px, 8vw, 96px);
  color: white; letter-spacing: -0.02em; line-height: 1.0;
  margin-bottom: 14px; font-weight: 900;
  padding-bottom: 0.18em;  /* Guarantees room for italic descenders like the 'g' in magic */
  overflow: visible;
  filter: drop-shadow(0 4px 14px rgba(0, 0, 0, 0.55));
  -webkit-text-stroke: 0.5px currentColor; /* Adds density uniformly to every word — system fonts cap at 900 natively */
}

.hero h1 .h1-line {
  display: block;
  line-height: 1.02;
}

.hero h1 .h1-line-permanent {
  font-size: 1.3em;        /* Bumped from 1.2em so its rendered width approaches brilliance's below */
  letter-spacing: -0.02em; /* Matches brilliance's tight tracking */
  line-height: 1.05;
  margin: 0 0 0.04em;
}

.hero h1 .h1-line-accent {
  font-size: 1.5em;        /* 1.5× the base — proportions stay locked across all viewports */
  line-height: 0.92;       /* Tightened from 1.0 — "brilliance" sits closer to neighboring lines */
  margin: -0.02em 0 -0.01em; /* Negative margins pull "Permanent" above and "Seasonal" below in tighter */
}

/* The two accent words are ONE pass of light, not two separate treatments.
   "Lights." runs cool into gold; "Way." picks the gold up and carries it
   deeper, so the pair reads as a single sweep down the headline. This is the
   only gradient text left on the site (Ryan, 2026-08-26) — everywhere else it
   was decoration on a heading and it was retired. Here the two words name the
   product, and the product is coloured light. */
.hero h1 .shine {
  display: inline-block;
  font-weight: 900;
  background: linear-gradient(95deg, #5fd1ed 0%, var(--brand-teal) 34%, var(--brand-gold) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  letter-spacing: -0.02em;
  font-style: italic;
  padding-bottom: 0.08em; /* Extra cushion so italic descenders never clip even with drop-shadow filter */
}

/* The warm tail of the same sweep. */
.hero h1 .shine-solid-gold {
  background: linear-gradient(95deg, var(--brand-gold) 0%, var(--brand-gold-600) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

.hero-sub {
  font-size: clamp(16.5px, 0.45vw + 15px, 19.5px);
  color: rgba(255,255,255,0.95); line-height: 1.5;
  max-width: 560px; margin-bottom: 26px; font-weight: 500;
  text-shadow: 0 2px 8px rgba(0,0,0,0.75), 0 1px 3px rgba(0,0,0,0.9);
}

.hero-sub-sep {
  color: var(--brand-gold);
  font-weight: 700;
  font-size: 0.95em;
  margin: 0 2px;
  text-shadow: 0 0 12px rgba(243,178,29,0.55), 0 1px 2px rgba(0,0,0,0.6);
}
@media (min-width: 980px){
 .hero-sub { margin-bottom: 30px; }
}
@media (max-width: 979px){
 .hero-sub { margin-inline: auto; }
}


.hero-ctas {
  display: flex; flex-wrap: nowrap; gap: 8px; margin-bottom: 24px;
  justify-content: center;
}
@media (min-width: 980px){
 .hero-ctas { justify-content: flex-start; margin-bottom: 28px; }
}


/* Two-line hero CTAs — icon sits to the right of the text stack, vertically centered */
.hero-cta {
  display: inline-flex; flex-direction: row; align-items: center; justify-content: center;
  gap: 10px; line-height: 1;
  padding: 10px 22px;
  border-radius: var(--r-btn);
  transition: all 0.22s var(--ease-swift);
  cursor: pointer; border: none; font: inherit; text-decoration: none;
  min-height: 56px;
  flex: 0 1 auto;
}

.hero-cta-text {
  display: inline-flex; flex-direction: column; align-items: center;
  line-height: 1; gap: 0;
}

.hero-cta-text strong {
  font-size: 18px; font-weight: 700; letter-spacing: -0.015em;
  line-height: 1;
  white-space: nowrap;
}

.hero-cta-text .hero-cta-sub {
  font-size: 13px; font-weight: 700; letter-spacing: 0.04em;
  line-height: 1;
  white-space: nowrap;
  margin-top: 3px;
}

/* Only the phone CTA keeps uppercase to match the header phone link */
.hero-cta-phone .hero-cta-sub {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding-left: 0.1em;
}

.hero-cta-icon {
  width: 28px; height: 28px; flex-shrink: 0;
  transition: transform 0.22s var(--ease-swift);
}

.hero-cta-emoji {
  font-size: 24px; line-height: 1;
  flex-shrink: 0;
  filter: none;
}

/* Mobile: stack CTAs vertically, equal width, centered, not full-width */
@media (max-width: 600px) {
  .hero-ctas {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }
  .hero-cta {
    flex: 0 0 auto;
    width: 100%; max-width: 320px;
    padding: 10px 18px; min-height: 58px; gap: 10px;
  }
  .hero-cta-text strong { font-size: 18px; letter-spacing: -0.015em; }
  .hero-cta-text .hero-cta-sub { font-size: 13px; letter-spacing: 0.04em; }
  .hero-cta-phone .hero-cta-sub { letter-spacing: 0.1em; padding-left: 0.1em; }
  .hero-cta-icon { width: 26px; height: 26px; }
  .hero-cta-emoji { font-size: 22px; }
}
@media (max-width: 400px){

  .hero-cta { max-width: 280px; padding: 10px 14px; gap: 8px; }

  .hero-cta-text strong { font-size: 17px; }

  .hero-cta-text .hero-cta-sub { font-size: 12px; }

  .hero-cta-icon { width: 24px; height: 24px; }

  .hero-cta-emoji { font-size: 20px; }
}

.hero-cta-gold {
  background: var(--brand-green); color: white;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.55);
  box-shadow: 0 20px 40px rgba(82,182,98,0.32), inset 0 1px 0 rgba(255,255,255,0.2);
  animation: heroCtaPulseGreen 2.6s ease-in-out infinite;
}

.hero-cta-gold:hover { background: var(--brand-green-600); transform: translateY(-1px); animation-play-state: paused; }

.hero-cta-gold .hero-cta-sub { color: rgba(255,255,255,0.9); }

.hero-cta-phone {
  background: rgba(255,255,255,0.96); color: var(--brand-blue-ink);
  box-shadow: 0 8px 24px rgba(10,20,36,0.15);
  animation: heroCtaPulseWhite 2.6s ease-in-out infinite;
  animation-delay: 1.3s;
}

.hero-cta-phone:hover { background: white; transform: translateY(-1px); animation-play-state: paused; }

.hero-cta-phone .hero-cta-sub { color: var(--ink-muted); }

.hero-cta-phone .hero-cta-icon { color: var(--brand-blue); }


@keyframes heroCtaPulseGreen {
  0%, 100% {
    box-shadow: 0 20px 40px rgba(82,182,98,0.32),
                0 0 0 0 rgba(82,182,98,0.35),
                inset 0 1px 0 rgba(255,255,255,0.2);
  }
  50% {
    box-shadow: 0 22px 44px rgba(82,182,98,0.42),
                0 0 18px 4px rgba(82,182,98,0.45),
                inset 0 1px 0 rgba(255,255,255,0.2);
  }
}

@keyframes heroCtaPulseWhite {
  0%, 100% {
    box-shadow: 0 8px 24px rgba(10,20,36,0.15),
                0 0 0 0 rgba(255,255,255,0.3);
  }
  50% {
    box-shadow: 0 10px 28px rgba(10,20,36,0.22),
                0 0 18px 4px rgba(255,255,255,0.4);
  }
}
@media (prefers-reduced-motion: reduce){

  .hero-cta-gold, .hero-cta-phone { animation: none; }
}


/* ============================================================
   HERO INLINE QUOTE FORM — replaces button CTAs with lead capture.
   Glassy translucent fields native to the dark hero — no card
   container. Submit stays brand green to anchor as primary CTA.
   Layout: 2-col fields + full-width submit (no squished side-by-side).
   Submits to /thank-you. Production: POST to GHL webhook (see JS).
   ============================================================ */
.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;
}


.hero-form {
  display: flex; flex-direction: column;
  gap: 10px;
  margin: 0 auto 20px;
  max-width: 540px;
  width: 100%;
}
@media (min-width: 980px){

  .hero-form { margin: 0 0 24px; max-width: 520px; }
}


.hero-form-fields {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
@media (min-width: 480px){

  .hero-form-fields { grid-template-columns: 1fr 1fr; }
}


.hero-form-field { min-width: 0; }


.hero-form-fields input {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid rgba(255,255,255,0.55);
  border-radius: 12px;
  font: inherit;
  font-size: 16px; /* 16px prevents iOS zoom on focus */
  line-height: 1.2;
  background: rgba(255,255,255,0.30);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: white;
  outline: none;
  transition: border-color 0.18s, box-shadow 0.18s, background 0.18s;
  box-sizing: border-box;
  box-shadow: 0 8px 24px -8px rgba(7,16,42,0.55),
              inset 0 1px 0 rgba(255,255,255,0.18);
}

.hero-form-fields input::placeholder {
  color: rgba(255,255,255,0.85);
  opacity: 1;
  font-weight: 500;
}

.hero-form-fields input:hover {
  border-color: rgba(255,255,255,0.75);
  background: rgba(255,255,255,0.36);
}

.hero-form-fields input:focus {
  border-color: var(--brand-teal);
  background: rgba(255,255,255,0.38);
  box-shadow: 0 0 0 3px rgba(82,203,190,0.32),
              0 8px 24px -8px rgba(7,16,42,0.55),
              inset 0 1px 0 rgba(255,255,255,0.18);
}

.hero-form-field.has-error input {
  border-color: #ff6b6b;
  box-shadow: 0 0 0 3px rgba(255,107,107,0.22);
}


.hero-form-submit {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  padding: 15px 22px;
  background: var(--brand-green);
  color: white;
  font: inherit;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.005em;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  white-space: nowrap;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.45);
  box-shadow: 0 14px 30px -8px rgba(82,182,98,0.55),
              inset 0 1px 0 rgba(255,255,255,0.2);
  transition: transform 0.15s var(--ease-swift),
              box-shadow 0.15s var(--ease-swift),
              background 0.18s;
  line-height: 1.1;
  animation: heroCtaPulseGreen 2.6s ease-in-out infinite;
}

.hero-form-submit svg { width: 18px; height: 18px; flex-shrink: 0; }

.hero-form-submit:hover {
  background: var(--brand-green-600);
  transform: translateY(-1px);
  box-shadow: 0 16px 36px -8px rgba(82,182,98,0.65),
              inset 0 1px 0 rgba(255,255,255,0.2);
  animation-play-state: paused;
}

.hero-form-submit:active { transform: translateY(0); }

.hero-form-submit:disabled {
  opacity: 0.7; cursor: not-allowed; transform: none;
  animation-play-state: paused;
}


.hero-form-trust {
  margin: 6px 0 0;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.95);
  text-align: center;
  line-height: 1.35;
  flex-wrap: wrap;
  text-shadow: 0 2px 8px rgba(0,0,0,0.7), 0 1px 2px rgba(0,0,0,0.85);
}

.hero-form-trust strong { color: white; font-weight: 800; }

.hero-form-check {
  display: inline-flex; align-items: center; justify-content: center;
  width: 20px; height: 20px;
  background: var(--brand-green);
  color: white;
  border-radius: 50%;
  font-size: 12px; font-weight: 900;
  flex-shrink: 0;
  box-shadow: 0 0 0 2px rgba(82,182,98,0.25),
              0 4px 10px -2px rgba(82,182,98,0.5);
}
@media (min-width: 980px){

  .hero-form-trust { justify-content: flex-start; }
}
@media (max-width: 400px){

  .hero-form-fields input { padding: 13px 14px; }

  .hero-form-submit { padding: 13px 18px; font-size: 15px; }

  .hero-form-trust { font-size: 12.5px; }
}


.hero-proof {
  display: flex; gap: clamp(20px, 3vw + 6px, 44px);
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.14); flex-wrap: wrap;
  justify-content: center;
  max-width: 540px;
  margin: 0 auto;
}
@media (min-width: 980px){

  .hero-proof {
    justify-content: space-between;
    max-width: 520px;
    margin: 0;
    gap: 12px;
  }
}

.hero-proof-item {
  font-size: 14px;
  color: rgba(255,255,255,0.92);
  line-height: 1.3;
  text-align: center;
  font-weight: 600;
  text-shadow: 0 2px 6px rgba(0,0,0,0.65), 0 1px 2px rgba(0,0,0,0.85);
}
@media (min-width: 980px){
 .hero-proof-item { text-align: left; }
}

.hero-proof-item strong {
  display: block;
  color: white;
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 3px;
  letter-spacing: -0.015em;
  text-shadow: 0 2px 8px rgba(0,0,0,0.7), 0 1px 2px rgba(0,0,0,0.85);
}

/* Mobile — bumped from 11.5/16 to 13/18, plus higher contrast and text-shadow */
@media (max-width: 600px) {
  .hero-proof { gap: 8px 10px; justify-content: space-evenly; padding-top: 18px; }
  .hero-proof-item { font-size: 13px; }
  .hero-proof-item strong { font-size: 18px; }
}
@media (max-width: 380px){

  /* Very small phones — tighten so all 4 chips fit without wrapping */
  .hero-proof-item { font-size: 12px; }

  .hero-proof-item strong { font-size: 16px; }
}


/* ============================================================
   LEGACY HERO VISUAL — SVG house + floating phone mockup
   REMOVED from HTML when we moved to full-bleed photo hero.
   Preserved here (commented) in case we ever want to layer the
   phone mockup back over the photo in the future.
   ============================================================
.hero-visual {
  position: relative; aspect-ratio: 4/5; max-width: 480px; margin: 0 auto;
  width: 100%; display: none;
}
@media (min-width: 980px){
 .hero-visual { display: block; }
}


.house-scene {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 40% at 50% 100%, rgba(11,125,179,0.4) 0%, transparent 60%),
              linear-gradient(180deg, rgba(30,50,75,0.4) 0%, rgba(15,30,50,0.8) 100%);
  border-radius: var(--r-2xl); overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1); box-shadow: var(--shadow-xl);
}

.house-scene svg { position: absolute; inset: 0; width: 100%; height: 100%; }


.phone-float {
  position: absolute; right: -4%; bottom: 8%;
  width: 42%; aspect-ratio: 9/17.3;
  background: linear-gradient(155deg, #1c2535, #0b1220);
  border-radius: 34px;
  border: 2px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow-xl), 0 0 0 8px rgba(255,255,255,0.02);
  overflow: hidden; padding: 10px 8px 8px;
  transform: rotate(4deg);
}

.phone-screen {
  background: #0a1220;
  border-radius: 24px; height: 100%;
  position: relative; overflow: hidden;
  display: flex; align-items: stretch; justify-content: stretch;
}

.phone-screen picture, .phone-screen img {
  width: 100%; height: 100%; object-fit: cover;
  border-radius: 24px;
  display: block;
}

.phone-notch {
  position: absolute; top: 10px; left: 50%; transform: translateX(-50%);
  width: 72px; height: 22px; background: #000; border-radius: 14px;
  z-index: 2; pointer-events: none;
}

.phone-top { display: flex; justify-content: space-between; font-size: 10px; color: rgba(255,255,255,0.8); font-weight: 600; padding-top: 20px; }

.phone-hello { font-size: 10px; color: var(--brand-teal); margin-top: 10px; letter-spacing: 0.1em; font-weight: 600; }

.phone-title { font-size: 14px; color: white; font-weight: 700; }

.phone-display-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 6px; }

.phone-display-tile {
  aspect-ratio: 1; border-radius: 10px; position: relative; overflow: hidden;
  display: flex; align-items: flex-end; padding: 6px;
  font-size: 9px; color: white; font-weight: 600;
}

.phone-display-tile:nth-child(1) { background: linear-gradient(135deg, #c1272d 0%, #52b662 50%, #c1272d 100%); }

.phone-display-tile:nth-child(2) { background: linear-gradient(135deg, #f3b21d 0%, #f36d1d 100%); }

.phone-display-tile:nth-child(3) { background: linear-gradient(135deg, #52cbbe 0%, #0b7db3 100%); }

.phone-display-tile:nth-child(4) { background: linear-gradient(135deg, #b94abf 0%, #2f4ab8 100%); }

.phone-bottom-bar {
  margin-top: auto; padding: 8px 4px; display: flex; justify-content: space-around;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.phone-bottom-bar span { width: 6px; height: 6px; background: rgba(255,255,255,0.4); border-radius: 50%; }

.phone-bottom-bar span:first-child { background: var(--brand-teal); }


.led-dot {
  position: absolute; width: 6px; height: 6px; border-radius: 50%;
  animation: ledBlink 3s infinite;
  box-shadow: 0 0 12px currentColor, 0 0 24px currentColor;
}

@keyframes ledBlink {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}

   ============================================================ */

/* ============================================================================
   HERO REVIEW SNIPPET — single-line dark band sealing the hero
   Stars + tight quote + author/city. Continues the dark hero aesthetic
   for one more beat before the page transitions to the white EE section.
   ============================================================================ */
.hero-review-snippet {
  background: rgba(7,16,42,0.97);
  border-top: 1px solid rgba(82,203,190,0.18);
  padding: 14px 0;
  position: relative;
}

.hero-review-row {
  text-align: center;
  line-height: 1.5;
}

.hero-review-stars {
  color: var(--brand-gold);
  font-size: 16px;
  letter-spacing: 1.5px;
  text-shadow: 0 0 12px rgba(243,178,29,0.45);
  margin-right: 14px;
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
}

.hero-review-quote {
  color: white;
  font-size: 15.5px;
  font-style: italic;
  font-weight: 500;
  quotes: "\201C" "\201D";
}

.hero-review-quote::before { content: open-quote; }

.hero-review-quote::after { content: close-quote; }

.hero-review-author {
  color: rgba(255,255,255,0.72);
  font-size: 13.5px;
  font-weight: 600;
  font-style: normal;
  margin-left: 12px;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
@media (max-width: 600px){

  .hero-review-snippet { padding: 12px 0; }

  .hero-review-stars { font-size: 14.5px; letter-spacing: 1px; margin-right: 8px; display: block; margin: 0 0 4px; }

  .hero-review-quote { font-size: 14px; line-height: 1.4; }

  .hero-review-author { font-size: 12.5px; white-space: normal; margin-left: 8px; display: inline-block; margin-top: 2px; }
}


/* ============================================================================
   EXPERT'S EXPERT — authority section
   LIGHT-themed band directly below the hero. Strong visual contrast with
   the dark hero above prevents the 'two heros stuck together' feel.
   ============================================================================ */
.experts-expert {
  position: relative; isolation: isolate;
  padding: clamp(60px, 8vw, 110px) 0 clamp(52px, 7vw, 90px);
  background: white;
  color: var(--ink);
  overflow: hidden;
}

.experts-expert .container { position: relative; z-index: 1; }


.ee-head { text-align: center; max-width: 820px; margin: 0 auto clamp(40px, 5vw, 64px); }

.ee-eyebrow { color: var(--brand-blue); margin-bottom: 18px; }

.experts-expert h2 {
  font-size: clamp(28px, 2.4vw + 18px, 48px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 20px;
}

/* Solid, not a gradient. Colour on the two hero words that name the product
   is the brand speaking; colour on a heading three screens down was
   decoration, and the gradient's gold end sat near 1.9:1 on white. */
.ee-shine {
  color: var(--brand-blue);
  font-style: italic;
  font-weight: 800;
}

.ee-lede {
  font-size: clamp(15px, 0.4vw + 14px, 17.5px);
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 680px; margin: 0 auto;
}

.ee-lede strong { color: var(--ink); font-weight: 600; }


.ee-pillars {
  display: grid; grid-template-columns: 1fr; gap: 20px;
  max-width: 1100px; margin: 0 auto clamp(44px, 5vw, 60px);
}
@media (min-width: 760px){
 .ee-pillars { grid-template-columns: repeat(3, 1fr); }
}


.ee-pillar {
  position: relative;
  background: white;
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  padding: clamp(24px, 2vw + 16px, 32px);
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease-swift), border-color 0.3s var(--ease-smooth), box-shadow 0.3s var(--ease-smooth);
}

.ee-pillar:hover {
  transform: translateY(-4px);
  border-color: rgba(11,125,179,0.3);
  box-shadow: var(--shadow-md);
}

.ee-pillar-highlight {
  background: linear-gradient(180deg, #fffdf4 0%, #fff9e3 100%);
  border-color: rgba(243,178,29,0.38);
  box-shadow: 0 4px 16px rgba(243,178,29,0.15), var(--shadow-sm);
}

.ee-pillar-highlight:hover {
  border-color: rgba(243,178,29,0.55);
  box-shadow: 0 8px 24px rgba(243,178,29,0.22), var(--shadow-md);
}

/* The mark sits BESIDE its heading, never on a coloured plate above it. The
   plate-above-heading stack is the universal generated-site feature card and
   it is the single most recognisable AI tell on this page (Ryan, 2026-08-26).
   One accent colour for all three — the four-colour rotation went with it. */
.ee-pillar-head {
  display: flex; align-items: flex-start; gap: 11px;
  margin-bottom: 10px;
}

.ee-pillar-mark { flex: none; color: var(--brand-blue); margin-top: 1px; }

.ee-pillar-mark svg { display: block; width: 24px; height: 24px; }

.ee-pillar h3 {
  font-size: 19px; font-weight: 700; color: var(--ink);
  margin: 0; letter-spacing: -0.01em; line-height: 1.25;
}

.ee-pillar p {
  font-size: 14.5px; line-height: 1.6;
  color: var(--ink-soft); margin: 0;
}


/* Dark CTA band inside the light section — creates a visual punch and
   prevents the section from feeling flat. */
.ee-cta {
  display: flex; flex-direction: column; align-items: center; gap: 18px;
  padding: clamp(22px, 2vw + 14px, 32px) clamp(24px, 3vw + 12px, 40px);
  background: linear-gradient(135deg, var(--brand-blue-ink) 0%, var(--brand-blue-700) 100%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-xl);
  max-width: 980px; margin: 0 auto; text-align: center;
  box-shadow: 0 18px 40px rgba(7,82,127,0.2);
  color: white;
}
@media (min-width: 720px){

  .ee-cta { flex-direction: row; justify-content: space-between; text-align: left; }
}

.ee-cta-text { display: flex; flex-direction: column; gap: 4px; }

.ee-cta-text strong { color: white; font-size: 17px; font-weight: 700; letter-spacing: -0.01em; }

.ee-cta-text span { color: rgba(255,255,255,0.72); font-size: 14px; }

.ee-cta-buttons { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
@media (max-width: 480px){
 .ee-cta-buttons { width: 100%; }
 .ee-cta-buttons > * { flex: 1 1 100%; }
}


/* ============================================================================
   SECTIONS
   ============================================================================ */
.section { padding: clamp(44px, 5vw, 72px) 0; }

.section-tight { padding: clamp(20px, 2.5vw, 36px) 0; }

.section-sunken { background: var(--surface-sunken); }


.section-head { text-align: center; max-width: 720px; margin: 0 auto clamp(30px, 4vw, 46px); }

.section-head h2 { font-size: var(--fs-4xl); letter-spacing: -0.025em; line-height: 1.05; color: var(--ink); margin: 16px 0 18px; }

.section-head p { font-size: var(--fs-lg); color: var(--ink-soft); line-height: 1.55; }


/* ============================================================================
   SERVICES
   ============================================================================ */
.services-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 760px){
 .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1100px){
 .services-grid { grid-template-columns: repeat(3, 1fr); }
}


.service-card {
  position: relative; overflow: hidden; border-radius: var(--r-2xl);
  display: flex; flex-direction: column;
  color: white; transition: transform 0.35s var(--ease-spring);
}

.service-card:hover { transform: translateY(-6px); }

.service-card::before { content: ""; position: absolute; inset: 0; z-index: 0; }

.service-card.permanent::before {
  background: radial-gradient(ellipse at 100% 0%, rgba(82,203,190,0.5), transparent 60%),
              linear-gradient(155deg, #0b7db3 0%, #053b5d 100%);
}

.service-card.smartclip::before {
  background: radial-gradient(ellipse at 100% 0%, rgba(255,255,255,0.18), transparent 55%),
              linear-gradient(155deg, #2a8a7e 0%, #126660 55%, #0a3b3e 100%);
}

.service-card.seasonal::before {
  background:
    radial-gradient(ellipse at 20% 10%, rgba(255,255,255,0.1), transparent 45%),
    radial-gradient(ellipse at 0% 75%, rgba(0, 100, 50, 0.2), transparent 55%),
    radial-gradient(ellipse at 100% 100%, rgba(243,178,29,0.3), transparent 60%),
    linear-gradient(165deg, #7a1515 0%, #a71d1d 45%, #5a0c0c 100%);
}

/* Seasonal card snowfall overlay */
.service-card.seasonal::after {
  content: "";
  position: absolute; inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    radial-gradient(2.5px 2.5px at 14% 18%, rgba(255,255,255,0.55), transparent 70%),
    radial-gradient(1.8px 1.8px at 46% 34%, rgba(255,255,255,0.4), transparent 70%),
    radial-gradient(2.5px 2.5px at 76% 14%, rgba(255,255,255,0.5), transparent 70%),
    radial-gradient(2px 2px at 86% 52%, rgba(255,255,255,0.45), transparent 70%),
    radial-gradient(1.6px 1.6px at 26% 66%, rgba(255,255,255,0.35), transparent 70%),
    radial-gradient(2.2px 2.2px at 58% 82%, rgba(255,255,255,0.4), transparent 70%),
    radial-gradient(1.8px 1.8px at 38% 12%, rgba(255,255,255,0.4), transparent 70%),
    radial-gradient(2px 2px at 66% 62%, rgba(255,255,255,0.45), transparent 70%),
    radial-gradient(1.5px 1.5px at 8% 48%, rgba(255,255,255,0.35), transparent 70%),
    radial-gradient(1.8px 1.8px at 92% 28%, rgba(255,255,255,0.4), transparent 70%);
}

.service-card > * { position: relative; z-index: 1; }


.service-card .service-sub { font-size: 15.5px; color: rgba(255,255,255,0.86); line-height: 1.55; margin-bottom: 22px; }


.service-price {
  display: flex; flex-direction: column; gap: 4px;
  padding: 14px 18px; background: rgba(255,255,255,0.1);
  border-radius: var(--r-md); border: 1px solid rgba(255,255,255,0.15);
  margin-bottom: 22px; backdrop-filter: blur(10px);
}

.service-price-row {
  display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap;
}

.service-price .price-label {
  font-size: 10.5px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(255,255,255,0.65);
  min-width: 76px;
}

.service-price .price-main { font-size: 22px; font-weight: 800; color: white; letter-spacing: -0.02em; }

.service-price .price-range { font-size: 14px; color: rgba(255,255,255,0.9); font-weight: 600; }

.service-price .price-note {
  font-size: 11.5px; color: rgba(255,255,255,0.6); font-style: italic;
  margin-top: 4px; text-align: left;
}


/* Two-line CTA button for service cards */
.service-cta {
  display: inline-flex; flex-direction: column; align-items: center;
  gap: 2px;
  padding: 14px 22px;
  border-radius: var(--r-btn); background: rgba(255,255,255,0.96); color: var(--ink);
  width: fit-content; max-width: 100%;
  margin-inline: auto;
  transition: all 0.22s var(--ease-swift);
  line-height: 1.15;
}

.service-cta:hover { background: white; transform: translateY(-1px); }

.service-cta .cta-main {
  font-size: clamp(14px, 1.4vw, 16px);
  font-weight: 700; letter-spacing: -0.015em;
  display: inline-flex; align-items: center; gap: 8px;
  white-space: nowrap;
}

.service-cta .cta-main svg { width: 15px; height: 15px; transition: transform 0.22s var(--ease-swift); flex-shrink: 0; }

.service-cta:hover .cta-main svg { transform: translateX(3px); }

.service-cta .cta-sub {
  font-size: 12px; font-weight: 500; color: var(--ink-muted);
  letter-spacing: 0.01em;
}


.service-features { list-style: none; display: grid; gap: 10px; margin-bottom: 28px; }

.service-features li {
  display: flex; align-items: center; gap: 10px; font-size: 14.5px; color: rgba(255,255,255,0.92);
}

.service-features li::before {
  content: ""; width: 18px; height: 18px; flex-shrink: 0; border-radius: 50%;
  background: rgba(255,255,255,0.18);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'><path d='M9 16.2l-3.5-3.5a1 1 0 011.4-1.4L9 13.4l6.6-6.6a1 1 0 011.4 1.4z'/></svg>");
  background-size: 14px; background-repeat: no-repeat; background-position: center;
}


/* ============================================================================
   SERVICE CARD — real photo header + body (v44 pass 2)
   ============================================================================ */
.service-card-image {
  position: relative;
  width: 100%; aspect-ratio: 4/3;
  overflow: hidden;
  z-index: 1;
}

.service-card-image picture, .service-card-image img {
  width: 100%; height: 100%; display: block;
  object-fit: cover;
  transition: transform 0.6s var(--ease-smooth);
}

.service-card:hover .service-card-image img { transform: scale(1.04); }

.service-card-image::after {
  /* Bottom fade so the badge + gradient card background blend cleanly */
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.35) 100%);
  pointer-events: none;
}

.service-card-body {
  padding: 28px 28px;
  display: flex; flex-direction: column; flex: 1 1 auto;
  position: relative; z-index: 1;
}

/* Pushes the CTA to the bottom of each card so Learn More buttons align across all 3 */
.service-card-body > .service-cta { margin-top: auto; }


/* Service badges pinned to top-right of the image — color-coded per card type */
.service-card-image .service-badge {
  position: absolute; top: 16px; right: 16px;
  display: inline-flex; align-items: center;
  margin: 0; padding: 7px 13px;
  border-radius: var(--r-pill); width: fit-content;
  background: rgba(255,255,255,0.95);
  color: var(--ink);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  letter-spacing: 0.08em; text-transform: uppercase;
  font-size: 11px; font-weight: 700;
}

.service-badge-gold {
  background: linear-gradient(135deg, #ffdf78 0%, var(--brand-gold) 100%);
  color: var(--brand-gold-ink);
}

.service-badge-teal {
  background: linear-gradient(135deg, #7ae3d6 0%, var(--brand-teal) 100%);
  color: #0a3b3e;
}

.service-badge-red {
  background: linear-gradient(135deg, #e95a5f 0%, var(--brand-red) 100%);
  color: white;
}


/* Tagline above the H3 */
.service-tagline {
  font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.8); margin-bottom: 10px;
}

.service-card.smartclip .service-tagline { color: rgba(255,255,255,0.88); }


/* H3 — responsive for mobile/tablet; in 3-col desktop forces single-line via nowrap + smaller font. */
.service-card h3 {
  font-size: clamp(22px, 2vw + 6px, 28px);
  line-height: 1.15; letter-spacing: -0.025em;
  color: white; margin-bottom: 12px; font-weight: 800;
  white-space: normal;
}
@media (min-width: 1200px){

  /* In 3-col layout cards are ~350px wide; titles must fit on ONE line */
  .service-card h3 {
    font-size: clamp(18px, 1vw + 7px, 22px);
    letter-spacing: -0.03em;
    white-space: nowrap;
  }
}


/* ============================================================================
   SPACING COMPARISON SECTION (v44 pass 2)
   ============================================================================ */
.section-head-center { text-align: center; margin-inline: auto; }

.section-head-center p { max-width: 760px; margin-inline: auto; }


.spacing-compare-figure {
  margin: 0;
  max-width: 1160px;
  margin-inline: auto;
}

.spacing-compare-image-wrap {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.spacing-compare-image-wrap img {
  width: 100%; height: auto; display: block;
}


/* Overlay labels — positioned over left + right sides of the comparison photo */
.spacing-label {
  position: absolute;
  top: clamp(14px, 2vw, 28px);
  display: flex; align-items: center; gap: 10px;
  padding: 10px 16px;
  border-radius: var(--r-pill);
  backdrop-filter: blur(12px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.35);
  font-size: clamp(12px, 0.4vw + 10px, 14px);
  line-height: 1.2;
}

.spacing-label-bad {
  left: clamp(14px, 2vw, 28px);
  background: rgba(193,39,45,0.94);
  color: white;
}

.spacing-label-good {
  right: clamp(14px, 2vw, 28px);
  background: rgba(82,203,190,0.96);
  color: #062321;
}

.spacing-label-mark {
  width: 20px; height: 20px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.spacing-label-bad .spacing-label-mark { background: rgba(255,255,255,0.22); color: white; }

.spacing-label-good .spacing-label-mark { background: rgba(0,0,0,0.18); color: #062321; }

.spacing-label-mark svg { width: 12px; height: 12px; }

.spacing-label-text { display: flex; flex-direction: column; }

.spacing-label-text strong { font-weight: 700; letter-spacing: 0.01em; }

.spacing-label-text span { font-size: 0.85em; opacity: 0.85; }
@media (max-width: 600px){

  .spacing-label { padding: 6px 10px; gap: 6px; font-size: 10.5px; }

  .spacing-label-mark { width: 16px; height: 16px; }

  .spacing-label-mark svg { width: 9px; height: 9px; }
}
@media (max-width: 420px){

  /* Very small screens — simplify labels to just the marks */
  .spacing-label-text { display: none; }
}


.spacing-compare-caption {
  margin-top: 24px; padding: 0 clamp(12px, 3vw, 32px);
  text-align: center; font-size: 15px; line-height: 1.6;
  color: var(--ink-soft); max-width: 860px;
  margin-inline: auto;
}

.spacing-compare-caption em { font-style: italic; color: var(--ink); font-weight: 500; }


/* Inline CTA bar */
.inline-cta-bar {
  background: linear-gradient(100deg, var(--brand-blue) 0%, var(--brand-blue-700) 100%);
  border-radius: var(--r-2xl); padding: 30px clamp(24px, 4vw, 48px);
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 24px; color: white;
  /* Top margin tightened to keep the CTA card close to the services grid above it;
     bottom margin retained so the next section has breathing room */
  margin: clamp(28px, 3.5vw, 44px) 0 clamp(56px, 7vw, 88px);
  box-shadow: var(--shadow-lg);
}

.inline-cta-bar h3 { color: white; font-size: var(--fs-2xl); margin-bottom: 6px; line-height: 1.2; font-weight: 700; }

.inline-cta-bar p { color: rgba(255,255,255,0.85); font-size: 15px; }


/* The buttons wrapper — flex row on desktop, stacks full-width on narrow mobile */
.inline-cta-bar-actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }


/* Mobile: stack + center everything like the Expert's-Expert CTA card */
@media (max-width: 700px) {
  .inline-cta-bar {
    flex-direction: column; align-items: center; text-align: center;
    padding: 28px 22px;
  }
  .inline-cta-bar h3 { font-size: 22px; }
}

/* Narrow mobile: buttons stretch full-width and stack (matches .ee-cta-buttons at the same breakpoint) */
@media (max-width: 480px) {
  .inline-cta-bar-actions { width: 100%; }
  .inline-cta-bar-actions > * { flex: 1 1 100%; }
}


/* CTA VARIANT: seasonal urgency — darker, banded stripe with snowflake accents */
.cta-urgency {
  position: relative;
  background:
    radial-gradient(ellipse 60% 100% at 90% 50%, rgba(243,178,29,0.18), transparent 60%),
    linear-gradient(110deg, #0a2440 0%, #133358 55%, #1a4166 100%);
  border-radius: var(--r-2xl);
  padding: clamp(32px, 4vw, 48px) clamp(24px, 4vw, 52px);
  color: white; margin: clamp(56px, 7vw, 88px) 0;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  text-align: center;
}

.cta-urgency::before {
  content: "";
  position: absolute; inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(1.5px 1.5px at 12% 24%, rgba(255,255,255,0.4), transparent 70%),
    radial-gradient(2px 2px at 86% 38%, rgba(255,255,255,0.5), transparent 70%),
    radial-gradient(1.5px 1.5px at 28% 78%, rgba(255,255,255,0.35), transparent 70%),
    radial-gradient(2px 2px at 72% 72%, rgba(255,255,255,0.4), transparent 70%),
    radial-gradient(1.5px 1.5px at 52% 16%, rgba(255,255,255,0.3), transparent 70%);
}

.cta-urgency-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: #ffcf3d;
  padding: 6px 14px; border-radius: var(--r-pill);
  background: rgba(243,178,29,0.12); border: 1px solid rgba(243,178,29,0.32);
  margin-bottom: 18px; position: relative; z-index: 1;
}

.cta-urgency-eyebrow svg { width: 14px; height: 14px; }

.cta-urgency h3 {
  color: white; font-size: clamp(22px, 2.4vw + 10px, 34px);
  line-height: 1.15; letter-spacing: -0.02em; font-weight: 800;
  margin-bottom: 10px; position: relative; z-index: 1;
  max-width: 700px; margin-inline: auto;
}

.cta-urgency p {
  color: rgba(255,255,255,0.88); font-size: 16px; line-height: 1.55;
  max-width: 560px; margin: 0 auto 24px; position: relative; z-index: 1;
}

.cta-urgency-guarantees {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 10px 18px;
  margin: 4px 0 26px;
  position: relative; z-index: 1;
}

.cta-urgency-guarantee {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--r-pill);
  color: rgba(255,255,255,0.88);
}

.cta-urgency-guarantee svg {
  width: 22px; height: 22px;
  color: var(--brand-gold);
  flex-shrink: 0;
}

.cta-urgency-guarantee span {
  display: flex; flex-direction: column; line-height: 1.15;
  font-size: 12px; color: rgba(255,255,255,0.72);
}

.cta-urgency-guarantee strong {
  font-size: 13.5px;
  color: white;
  font-weight: 700;
  letter-spacing: -0.005em;
  margin-bottom: 1px;
}
@media (max-width: 640px){

  .cta-urgency-guarantees { gap: 8px; }

  .cta-urgency-guarantee { padding: 8px 13px; }

  .cta-urgency-guarantee svg { width: 18px; height: 18px; }

  .cta-urgency-guarantee strong { font-size: 12.5px; }

  .cta-urgency-guarantee span { font-size: 11px; }
}


.cta-urgency .ctas {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
  position: relative; z-index: 1;
}

.cta-urgency-subnote {
  margin-top: 16px; font-size: 12.5px; color: rgba(255,255,255,0.62);
  letter-spacing: 0.02em; position: relative; z-index: 1;
}

.cta-urgency-subnote strong { color: rgba(255,255,255,0.86); }


/* CTA VARIANT: neighbor/social-proof — lighter background, avatar row, "join your neighbors" framing */
.cta-neighbors {
  background:
    radial-gradient(ellipse 80% 80% at 0% 100%, rgba(82,203,190,0.16), transparent 55%),
    linear-gradient(135deg, #ffffff 0%, #f3f9fc 100%);
  border: 1px solid var(--hairline);
  border-radius: var(--r-2xl);
  padding: clamp(32px, 4vw, 48px) clamp(24px, 4vw, 52px);
  margin: clamp(56px, 7vw, 88px) 0;
  box-shadow: var(--shadow-md);
  text-align: center;
  position: relative; overflow: hidden;
}

.cta-neighbors-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--brand-green);
  padding: 6px 14px; border-radius: var(--r-pill);
  background: rgba(82,182,98,0.1); border: 1px solid rgba(82,182,98,0.28);
  margin-bottom: 18px;
}

.cta-neighbors-eyebrow .pulse {
  width: 7px; height: 7px; border-radius: 50%; background: var(--brand-green);
  box-shadow: 0 0 0 0 rgba(82,182,98,0.6);
  animation: heroPulse 2s infinite;
}

.cta-neighbors-avatars {
  display: inline-flex; margin-bottom: 18px;
}

.cta-neighbors-avatars .avatar {
  width: 40px; height: 40px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: white; font-weight: 700; font-size: 14px; letter-spacing: -0.01em;
  border: 3px solid white;
  margin-left: -10px;
  box-shadow: 0 2px 6px rgba(10,20,36,0.14);
}

.cta-neighbors-avatars .avatar:first-child { margin-left: 0; }

.cta-neighbors-avatars .avatar.a1 { background: linear-gradient(135deg, var(--brand-blue), var(--brand-blue-700)); }

.cta-neighbors-avatars .avatar.a2 { background: linear-gradient(135deg, var(--brand-teal), var(--brand-teal-600)); }

.cta-neighbors-avatars .avatar.a3 { background: linear-gradient(135deg, #6b8cc1, #3a5b7d); }

.cta-neighbors-avatars .avatar.a4 { background: linear-gradient(135deg, var(--brand-green), var(--brand-green-600)); }

.cta-neighbors-avatars .avatar.a5 {
  background: white; color: var(--brand-blue);
  font-size: 12px; letter-spacing: -0.03em;
  box-shadow: 0 2px 6px rgba(10,20,36,0.14), inset 0 0 0 1px var(--hairline);
}

.cta-neighbors h3 {
  font-size: clamp(22px, 2.4vw + 10px, 34px);
  line-height: 1.15; letter-spacing: -0.02em; font-weight: 800;
  color: var(--ink); margin-bottom: 10px;
  max-width: 680px; margin-inline: auto;
}

.cta-neighbors p {
  color: var(--ink-soft); font-size: 16px; line-height: 1.55;
  max-width: 560px; margin: 0 auto 24px;
}

.cta-neighbors .ctas { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

.cta-neighbors-stars {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 16px; color: var(--ink-muted); font-size: 13px;
}

.cta-neighbors-stars .stars { color: var(--brand-gold); letter-spacing: 1.5px; font-size: 14px; }

.cta-neighbors-stars strong { color: var(--ink); }


/* ============================================================================
   FEATURES
   ============================================================================ */
.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 640px){
 .feature-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1000px){
 .feature-grid { grid-template-columns: repeat(3, 1fr); }
}


/* 4-tile variant (used after pass 3+ sharpen) — 4 columns only at wide desktop */
@media (min-width: 1100px) {
  .feature-grid-4 { grid-template-columns: repeat(4, 1fr); }
}


.feature-tile {
  background: white;
  border-radius: var(--r-xl);
  padding: 32px 28px 28px;
  border: 1px solid var(--hairline);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease-swift), box-shadow 0.3s var(--ease-swift);
  position: relative;
}

.feature-tile:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}


.feature-tile-head {
  display: flex; align-items: flex-start; gap: 11px;
  margin-bottom: 10px;
}

.feature-tile-mark { flex: none; color: var(--brand-blue); margin-top: 1px; }

.feature-tile-mark svg { display: block; width: 24px; height: 24px; }


.feature-tile h3 {
  font-size: 19px;
  font-weight: 800;
  margin: 0;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.2;
}

.feature-tile p {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.6;
}


/* ============================================================================
   HEAD-TO-HEAD COMPARISON (v44 pass 3+)
   Desktop: clean 3-column table (label | them | us). Mobile: stacked cards with
   the label as a header and them/us rendering side-by-side below.
   ============================================================================ */
.compare-table {
  max-width: 960px;
  margin: 0 auto;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: white;
  border: 1px solid var(--hairline);
  box-shadow: 0 4px 14px rgba(0,0,0,0.04);
}

.compare-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  align-items: center;
  border-bottom: 1px solid var(--hairline);
}

.compare-row:last-child { border-bottom: none; }

.compare-row:not(.compare-head):hover {
  background: rgba(11,125,179,0.02);
}

.compare-cell {
  padding: 18px 22px;
  font-size: 15px;
  line-height: 1.4;
}

.compare-cell-label {
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.compare-cell-them {
  text-align: center;
  color: var(--ink-muted);
  border-left: 1px solid var(--hairline);
}

.compare-cell-us {
  text-align: center;
  background: linear-gradient(180deg, rgba(82,203,190,0.06) 0%, rgba(82,203,190,0.04) 100%);
  border-left: 1px solid var(--hairline);
}

/* Header row */
.compare-head {
  background: var(--surface-sunken);
  border-bottom: 2px solid var(--hairline);
}

.compare-head .compare-cell {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  padding: 16px 22px;
}

.compare-head .compare-cell-label {
  color: var(--ink-soft);
}

.compare-head .compare-cell-them {
  color: var(--ink-muted);
}

.compare-head .compare-cell-us {
  color: var(--brand-blue);
  background: linear-gradient(180deg, rgba(82,203,190,0.12) 0%, rgba(82,203,190,0.08) 100%);
}


/* Check/X marks for binary rows */
.compare-mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px;
  border-radius: 50%;
}

.compare-mark svg { width: 18px; height: 18px; }

.compare-mark-check {
  background: rgba(82,203,190,0.18);
  color: var(--brand-teal);
}

.compare-mark-x {
  background: rgba(193,39,45,0.12);
  color: var(--brand-red);
}


/* Text row variants — muted (them) vs win (us) */
.compare-text-muted {
  color: var(--ink-muted);
  font-size: 14px;
}

.compare-text-win {
  color: var(--ink);
  font-weight: 700;
  font-size: 14.5px;
  letter-spacing: -0.01em;
}


.compare-footnote {
  max-width: 760px;
  margin: 20px auto 0;
  text-align: center;
  font-size: 12.5px;
  color: var(--ink-muted);
  font-style: italic;
  line-height: 1.5;
}


/* Mobile: rows become stacked cards — label on top, them+us side-by-side below */
@media (max-width: 720px) {
  .compare-head { display: none; }
  .compare-row {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    padding: 14px 16px;
    gap: 8px;
  }
  .compare-cell {
    padding: 6px 8px;
    font-size: 14px;
  }
  .compare-cell-label {
    grid-column: 1 / -1;
    padding-bottom: 4px;
    font-size: 14.5px;
    border-bottom: 1px dashed var(--hairline);
  }
  .compare-cell-them, .compare-cell-us {
    border-left: none;
    text-align: left;
  }
  .compare-cell-them::before {
    content: "Typical: ";
    font-size: 11px; font-weight: 800;
    color: var(--brand-red);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    display: block; margin-bottom: 2px;
  }
  .compare-cell-us::before {
    content: "Sparkled: ";
    font-size: 11px; font-weight: 800;
    color: var(--brand-teal);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    display: block; margin-bottom: 2px;
  }
  .compare-cell-us {
    background: none;
  }
  .compare-mark {
    width: 26px; height: 26px;
  }
  .compare-mark svg { width: 14px; height: 14px; }
  .compare-text-muted, .compare-text-win {
    font-size: 13px;
  }
}


/* ============================================================================
   PROCESS
   ============================================================================ */
.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 560px){
 .process-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1000px){
 .process-grid { grid-template-columns: repeat(4, 1fr); }
}


.process-step {
  padding: 32px 24px 28px;
  background: white; border-radius: var(--r-xl);
  border: 1px solid var(--hairline);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease-swift), box-shadow 0.3s var(--ease-swift);
}

.process-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}


/* The step number IS the mark here — the sequence is the information, so it
   replaces the icon rather than sitting next to it, and the big outlined
   corner watermark that used to repeat it is gone. */
.process-step-head {
  display: flex; align-items: flex-start; gap: 11px;
  margin-bottom: 8px;
}

.process-step-num {
  flex: none; width: 24px;
  font-size: 17px; font-weight: 700; line-height: 1.35;
  color: var(--brand-blue);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.01em;
}


.process-step h3 {
  font-size: 18px; font-weight: 800;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0;
  line-height: 1.2;
}

.process-step p {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.6;
}


/* ============================================================================
   GALLERY (v44 pass 3A rebuild)
   Real install photos with bottom gradient captions + service-type tags
   ============================================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 640px){
 .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1000px){
 .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}


.gallery-item {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
  transition: transform 0.3s var(--ease-swift), box-shadow 0.3s var(--ease-swift);
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(0,0,0,0.18);
}


.gallery-image {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.gallery-image img {
  width: 100%; height: 100%; display: block;
  object-fit: cover;
  transition: transform 0.6s var(--ease-smooth);
}

.gallery-item:hover .gallery-image img { transform: scale(1.05); }


/* Bottom gradient overlay so captions remain readable against bright lights */
.gallery-item::after {
  content: ""; position: absolute;
  left: 0; right: 0; bottom: 0; height: 45%;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.78) 100%);
  pointer-events: none;
}


.gallery-caption {
  position: absolute; left: 18px; right: 18px; bottom: 16px;
  z-index: 1; color: white;
  display: flex; flex-direction: column; gap: 2px;
}

.gallery-caption strong {
  font-size: 17px; font-weight: 700; letter-spacing: -0.01em;
  text-shadow: 0 2px 6px rgba(0,0,0,0.4);
}

.gallery-caption span {
  font-size: 13.5px; color: rgba(255,255,255,0.88);
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}


/* Service-type tag top-left */
.gallery-tag {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  padding: 5px 11px; border-radius: var(--r-pill);
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
}

.gallery-tag-permanent {
  background: rgba(11,125,179,0.92);
  color: white;
}

.gallery-tag-christmas {
  background: rgba(193,39,45,0.92);
  color: white;
}

.gallery-tag-smartclip {
  background: rgba(82,203,190,0.94);
  color: #062321;
}


/* Gallery watermark — bottom-right corner, subtle attribution mark.
   Layout: © glyph on left, "Sparkled / Lighting" stacked to its right,
   © vertically centered between the two text lines.
   Tuned to recede into dark photo regions (sky, roofs, lawn) rather than
   compete with the lit-up details. Lower opacity + softer shadow +
   no blend mode means it sits quietly without lifting on dark areas.
   pointer-events:none so hover/click pass through; aria-hidden so screen
   readers skip it (purely decorative attribution mark). */
.gallery-watermark {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 4px;
  pointer-events: none;
  user-select: none;
  -webkit-user-select: none;
  opacity: 0.45;
}

.gallery-watermark-c {
  font-size: 16px;
  font-weight: 400;
  color: white;
  line-height: 1;
  text-shadow: 0 1px 2px rgba(0,0,0,0.6);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, system-ui, sans-serif;
}

.gallery-watermark-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
  line-height: 1;
}

.gallery-watermark-text span {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: white;
  text-shadow: 0 1px 2px rgba(0,0,0,0.6);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, system-ui, sans-serif;
}
@media (max-width: 600px){

  .gallery-watermark { right: 10px; bottom: 10px; gap: 3px; opacity: 0.40; }

  .gallery-watermark-c { font-size: 14px; }

  .gallery-watermark-text span { font-size: 8px; }
}


/* ============================================================================
   REVIEWS
   ============================================================================ */
.reviews-head { display: flex; align-items: center; justify-content: center; gap: 20px; margin-bottom: 32px; flex-wrap: wrap; }

.review-summary { display: flex; align-items: center; gap: 12px; padding: 10px 18px; background: white; border-radius: var(--r-pill); border: 1px solid var(--hairline); }

.review-summary .stars { color: var(--brand-gold); font-size: 16px; letter-spacing: 1px; }

.review-summary strong { font-size: 14px; font-weight: 700; }

.review-summary span { font-size: 13px; color: var(--ink-muted); }


/* ============================================================================
   REVIEW HERO — featured full-width testimonial
   ============================================================================ */
.review-hero {
  position: relative;
  background: white;
  border: 1px solid var(--hairline);
  border-radius: var(--r-2xl);
  padding: clamp(32px, 5vw, 52px) clamp(28px, 5vw, 56px);
  margin-bottom: 24px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.05);
  overflow: hidden;
}

/* Gold accent stripe down the left edge */
.review-hero::before {
  content: "";
  position: absolute; left: 0; top: 0; bottom: 0; width: 5px;
  background: linear-gradient(180deg, var(--brand-gold) 0%, #d89510 100%);
}

.review-hero-quote {
  position: absolute;
  top: 28px; right: 32px;
  width: 64px; height: 64px;
  color: var(--brand-gold);
  opacity: 0.18;
  pointer-events: none;
}

.review-hero .review-stars {
  color: var(--brand-gold); font-size: 22px; letter-spacing: 3px; margin-bottom: 18px;
}

.review-hero blockquote {
  font-size: clamp(18px, 1.5vw + 12px, 22px);
  line-height: 1.5;
  color: var(--ink);
  font-weight: 500;
  margin-bottom: 28px;
  max-width: 880px;
  position: relative; z-index: 1;
}

.review-hero .review-author {
  display: flex; align-items: center; gap: 16px;
}


/* ============================================================================
   REVIEW CARDS — supporting review grid
   ============================================================================ */
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 640px){
 .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1000px){
 .reviews-grid { grid-template-columns: repeat(3, 1fr); }
}


.review-card {
  padding: 26px 24px;
  border-radius: var(--r-xl);
  background: white;
  border: 1px solid var(--hairline);
  display: flex; flex-direction: column;
  transition: transform 0.3s var(--ease-swift), box-shadow 0.3s var(--ease-swift);
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.review-card .review-stars {
  color: var(--brand-gold); font-size: 17px; letter-spacing: 2px; margin-bottom: 12px;
}

.review-card blockquote {
  font-size: 14.5px; line-height: 1.6; color: var(--ink);
  margin-bottom: 18px; font-weight: 500; flex: 1;
}


/* ============================================================================
   REVIEW AUTHOR BLOCK — shared by hero + supporting cards
   ============================================================================ */
.review-author {
  display: flex; align-items: center; gap: 12px;
}

.review-author-text {
  display: flex; flex-direction: column;
}

.review-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-blue-700));
  color: white; font-weight: 700; font-size: 14px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.review-avatar-lg {
  width: 52px; height: 52px; font-size: 16px;
  box-shadow: 0 4px 12px rgba(11,125,179,0.25);
}

.review-name { font-weight: 700; font-size: 14.5px; color: var(--ink); letter-spacing: -0.01em; }

.review-location { font-size: 12.5px; color: var(--ink-muted); }


/* Source badge — color-coded per platform */
.review-source {
  margin-left: auto; font-size: 11px; font-weight: 700;
  display: inline-flex; align-items: center; gap: 4px;
  padding: 5px 10px; border-radius: var(--r-sm);
  text-transform: uppercase; letter-spacing: 0.05em;
}

.review-source-google {
  background: rgba(66,133,244,0.12);
  color: #1a73e8;
}

.review-source-facebook {
  background: rgba(24,119,242,0.12);
  color: #1877f2;
}

.reviews-viewall {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px; border-radius: var(--r-btn);
  background: white; border: 1.5px solid var(--brand-blue); color: var(--brand-blue);
  font-weight: 600; font-size: 14.5px;
  transition: all 0.22s var(--ease-swift);
}

.reviews-viewall:hover { background: var(--brand-blue); color: white; transform: translateY(-1px); }

.reviews-viewall svg { width: 16px; height: 16px; }


/* ============================================================================
   SERVICE AREA
   ============================================================================ */
/* ============================================================================
   SERVICE AREA (v44 pass 3A polish)
   ============================================================================ */
.area-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 560px){
 .area-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1000px){
 .area-grid { grid-template-columns: repeat(4, 1fr); }
}


.area-card {
  background: white; border-radius: var(--r-xl);
  padding: 26px 24px;
  border: 1px solid var(--hairline);
  transition: transform 0.3s var(--ease-swift), box-shadow 0.3s var(--ease-swift), border-color 0.3s;
}

.area-card:hover {
  border-color: var(--brand-blue);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.area-card h3 {
  font-size: 17px; font-weight: 800; margin-bottom: 14px;
  letter-spacing: -0.015em;
  display: flex; align-items: center; gap: 8px;
}

.area-card h3 .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--brand-green);
  flex-shrink: 0;
}

.area-card .count {
  margin-left: auto; font-size: 12px;
  color: var(--ink-muted); font-weight: 600;
}

.area-card ul {
  list-style: none; display: flex; flex-wrap: wrap; gap: 6px;
  margin-bottom: 18px;
  padding: 0;
}

.area-card li { line-height: 1; }


/* City pills — clickable links to per-city pages */
.city-pill {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 600;
  padding: 5px 11px;
  background: var(--surface-sunken);
  border-radius: var(--r-pill);
  color: var(--ink-soft);
  text-decoration: none;
  border: 1px solid transparent;
  transition: background-color 0.18s var(--ease-swift),
              color 0.18s var(--ease-swift),
              border-color 0.18s var(--ease-swift);
  cursor: pointer;
  font-family: inherit;
  line-height: 1.3;
}

.city-pill:hover,
.city-pill:focus-visible {
  background: rgba(11,125,179,0.08);
  color: var(--brand-blue);
  border-color: rgba(11,125,179,0.22);
}

.city-pill:focus-visible {
  outline: 2px solid var(--brand-blue);
  outline-offset: 2px;
}


/* "+N more" / "Show less" toggle button */
.city-pill-more {
  background: transparent;
  color: var(--brand-blue);
  border: 1px solid rgba(11,125,179,0.32);
  font-weight: 700;
}

.city-pill-more:hover,
.city-pill-more:focus-visible {
  background: var(--brand-blue);
  color: white;
  border-color: var(--brand-blue);
}

.city-pill-more .less-label { display: none; }

.city-pill-more[aria-expanded="true"] .more-label { display: none; }

.city-pill-more[aria-expanded="true"] .less-label { display: inline; }


/* Hidden cities revealed when expanded */
.more-cities[hidden] { display: none; }


/* Bottom "Explore [County]" link — style preserved from previous .area-card a */
.county-link {
  color: var(--brand-blue);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.22s var(--ease-swift);
}

.county-link:hover { gap: 8px; }


/* Morgan/Box Elder secondary mention — sits below the 4-card grid */
.area-extension {
  margin-top: 28px;
  text-align: center;
  font-size: 14px;
  color: var(--ink-soft);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.area-extension span[aria-hidden="true"] {
  color: var(--brand-gold);
  margin-right: 6px;
  font-size: 12px;
  vertical-align: middle;
}

.area-extension a {
  color: var(--brand-blue);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(11,125,179,0.25);
  transition: border-color 0.18s var(--ease-swift);
}

.area-extension a:hover { border-bottom-color: var(--brand-blue); }


/* ============================================================================
   FAQ (v44 pass 3A polish)
   ============================================================================ */
.faq-wrap {
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  margin-bottom: 12px;
  overflow: hidden;
  transition: box-shadow 0.25s var(--ease-swift), border-color 0.25s;
}

.faq-item:hover:not([open]) {
  border-color: rgba(11,125,179,0.3);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.faq-item[open] {
  box-shadow: var(--shadow-md);
  border-color: var(--brand-blue);
}

.faq-item summary {
  list-style: none; padding: 20px 24px;
  cursor: pointer;
  font-size: 16.5px; font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
  user-select: none;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  font-size: 26px; font-weight: 300;
  color: var(--brand-blue);
  transition: transform 0.25s var(--ease-spring);
  flex-shrink: 0; line-height: 1;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item .faq-answer {
  padding: 0 24px 22px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.7;
}


/* ============================================================================
   FINAL CTA (v44 pass 3A polish)
   ============================================================================ */
.final-cta {
  background:
    radial-gradient(ellipse 60% 80% at 20% 20%, rgba(82,203,190,0.22), transparent 55%),
    radial-gradient(ellipse 60% 60% at 85% 85%, rgba(243,178,29,0.18), transparent 50%),
    linear-gradient(135deg, #0a1a2e 0%, #0f2a44 100%);
  color: white;
  border-radius: clamp(24px, 3vw, 40px);
  padding: clamp(56px, 7vw, 96px) clamp(28px, 5vw, 64px);
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

/* Subtle twinkle decoration */
.final-cta::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    radial-gradient(1.5px 1.5px at 18% 22%, rgba(255,255,255,0.5), transparent 70%),
    radial-gradient(1px 1px at 72% 18%, rgba(255,255,255,0.35), transparent 70%),
    radial-gradient(1.8px 1.8px at 84% 72%, rgba(243,178,29,0.45), transparent 70%),
    radial-gradient(1.2px 1.2px at 32% 78%, rgba(82,203,190,0.4), transparent 70%),
    radial-gradient(1px 1px at 58% 42%, rgba(255,255,255,0.3), transparent 70%);
  pointer-events: none;
}

.final-cta > * { position: relative; z-index: 1; }

.final-cta h2 {
  color: white;
  font-size: clamp(30px, 3vw + 16px, 52px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin-bottom: 18px;
  max-width: 780px;
  margin-inline: auto;
}

.final-cta p {
  color: rgba(255,255,255,0.85);
  font-size: var(--fs-lg);
  line-height: 1.55;
  max-width: 620px;
  margin: 0 auto 34px;
}

.final-cta .ctas {
  display: flex; gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.final-cta-trust {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 28px;
  padding: 10px 18px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-pill);
  color: rgba(255,255,255,0.85);
  font-size: 13.5px;
}

.final-cta-trust .stars {
  color: var(--brand-gold);
  letter-spacing: 1.5px;
  font-size: 13px;
}

.final-cta-trust strong {
  color: white;
  font-weight: 700;
}
@media (max-width: 480px){

  .final-cta .ctas > * { flex: 1 1 100%; }
}


/* Media safeguards to prevent overflow */
@media (max-width: 600px) {
  .hero h1 { line-height: 1.04; }
  .hero-ctas .btn { flex: 1 1 calc(50% - 6px); justify-content: center; }
  .hero-ctas .btn-lg { padding: 15px 16px; font-size: 14.5px; }
}


.thank-you-signoff::before { content: "—"; color: var(--ink-faint); }


/* ============================================================================
   SOCIAL PROOF TOAST NOTIFICATIONS
   Bottom-center, bold and noticeable, multi-line scannable format.
   14–18 second default duration, dismissible, hover pauses auto-hide.
   ============================================================================ */
.toast-container {
  position: fixed;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 500;
  display: flex; flex-direction: column;
  gap: 12px;
  width: calc(100vw - 32px); max-width: 360px;
  pointer-events: none;
  align-items: center;
  transition: bottom 0.45s cubic-bezier(0.33, 1, 0.68, 1);
}
@media (max-width: 520px){

  .toast-container { bottom: 12px; width: calc(100vw - 24px); }
}

.toast {
  pointer-events: auto;
  width: 100%;
  background: linear-gradient(180deg, #ffffff 0%, #fafbff 100%);
  border-radius: var(--r-xl);
  box-shadow:
    0 25px 70px rgba(10,20,36,0.35),
    0 10px 24px rgba(10,20,36,0.2),
    0 0 0 1px rgba(10,20,36,0.08);
  padding: 16px 44px 16px 18px;
  display: flex; align-items: flex-start; gap: 14px;
  transform: translateY(140%) scale(0.92);
  opacity: 0;
  transition: transform 0.5s var(--ease-spring), opacity 0.3s var(--ease-swift), box-shadow 0.3s ease;
  position: relative;
  border-top: 4px solid var(--brand-teal);
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  animation: toastPopIn 0.7s var(--ease-spring);
}

@keyframes toastPopIn {
  0% { transform: translateY(140%) scale(0.92); }
  60% { transform: translateY(-8px) scale(1.03); }
  100% { transform: translateY(0) scale(1); }
}

.toast-icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--surface-tinted); color: var(--brand-blue);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 1px;
  box-shadow: 0 2px 6px rgba(10,20,36,0.08);
}

.toast-icon svg { width: 24px; height: 24px; }

.toast-body { flex: 1; min-width: 0; }

.toast-line1 {
  font-size: 15.5px; font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--brand-blue-ink);
  line-height: 1.2;
}

.toast-line1 .toast-where { color: var(--brand-blue); }

.toast-line2 {
  font-size: 13px; color: var(--ink-soft); line-height: 1.3;
  margin-top: 4px; font-weight: 500;
}

.toast-line3 {
  font-size: 11.5px; color: var(--ink-muted); letter-spacing: 0.02em;
  margin-top: 5px;
  display: flex; align-items: center; gap: 5px;
}

.toast-line3 .meta-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--brand-green);
  box-shadow: 0 0 0 0 rgba(82,182,98,0.6);
  animation: pulseDot 2s infinite;
  flex-shrink: 0;
}

.toast-line4 {
  font-size: 13px; font-weight: 800;
  color: #d42020;
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px dashed rgba(10,20,36,0.12);
  letter-spacing: -0.005em;
}

.toast-close {
  position: absolute;
  top: 10px; right: 10px;
  width: 26px; height: 26px; border: none; background: rgba(10,20,36,0.04);
  color: var(--ink-muted);
  font-size: 20px; line-height: 1; cursor: pointer;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  transition: all 0.15s;
}

.toast-close:hover { background: var(--surface-sunken); color: var(--ink); }


/* Type variants with colored outer glow */
.toast.type-purchase {
  border-top-color: var(--brand-green);
  box-shadow:
    0 25px 70px rgba(82,182,98,0.28),
    0 10px 24px rgba(10,20,36,0.22),
    0 0 0 1px rgba(82,182,98,0.2);
}

.toast.type-purchase .toast-icon { background: rgba(82,182,98,0.14); color: var(--brand-green); }


.toast.type-quote {
  border-top-color: var(--brand-teal);
  box-shadow:
    0 25px 70px rgba(82,203,190,0.32),
    0 10px 24px rgba(10,20,36,0.22),
    0 0 0 1px rgba(82,203,190,0.2);
}

.toast.type-quote .toast-icon { background: rgba(82,203,190,0.16); color: var(--brand-teal); }


.toast.type-stats {
  border-top-color: var(--brand-blue);
  box-shadow:
    0 25px 70px rgba(11,125,179,0.3),
    0 10px 24px rgba(10,20,36,0.22),
    0 0 0 1px rgba(11,125,179,0.18);
}

.toast.type-stats .toast-icon { background: rgba(11,125,179,0.12); color: var(--brand-blue); }


.toast.type-review {
  border-top-color: var(--brand-gold);
  box-shadow:
    0 25px 70px rgba(243,178,29,0.34),
    0 10px 24px rgba(10,20,36,0.2),
    0 0 0 1px rgba(243,178,29,0.22);
}

.toast.type-review .toast-icon { background: rgba(243,178,29,0.18); color: var(--brand-gold-ink); }


.toast-stars {
  color: var(--brand-gold); font-size: 15px; letter-spacing: 2px; margin-bottom: 4px;
  filter: drop-shadow(0 1px 1px rgba(243,178,29,0.35));
}
