/* ============================================================
   FONTS — Self-hosted Inter (variable font, latin subset)
   Downloaded from Google Fonts; served locally to avoid
   the Google Fonts roundtrip on every page load.
   ============================================================ */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('/assets/fonts/inter-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
                 U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
                 U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ============================================================
   Panther Coatings — styles.css  (v0.1 · Step 5)
   Mobile-first · Token-driven · No frameworks
   Source of truth: design/design-system.md
   ============================================================ */


/* ============================================================
   1. DESIGN TOKENS
   ============================================================ */
:root {
  /* --- Color palette --- */
  --color-black:        #0F0F0F;
  --color-charcoal:     #1F2125;
  --color-ink:          #111827;
  --color-text-muted:   #4B5563;
  --color-text-subtle:  #6B7280;
  --color-border:       #E5E7EB;
  --color-bg-section:   #F4F5F7;
  --color-bg-soft:      #FAFAFA;
  --color-white:        #FFFFFF;
  --color-blue:         #89CFF0;   /* Panther Blue — brand accent (buttons, dark-section eyebrows) */
  --color-blue-dark:    #1B7DAA;   /* on-white text/links/eyebrows — WCAG AA on white */
  --color-blue-soft:    #DCEEF8;   /* subtle tints */
  --color-success:      #16A34A;
  --color-error:        #DC2626;

  /* --- Spacing scale (4px base) --- */
  --space-1:   4px;
  --space-2:   8px;
  --space-3:  12px;
  --space-4:  16px;
  --space-5:  24px;
  --space-6:  32px;
  --space-7:  48px;
  --space-8:  64px;
  --space-9:  96px;
  --space-10: 128px;

  /* --- Typography --- */
  --font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Mobile type scale (default / base) */
  --text-display-xl: 46px;
  --text-display-lg: 38px;
  --text-h1:         34px;
  --text-h2:         30px;
  --text-h3:         22px;
  --text-h4:         19px;
  --text-body-lg:    18px;
  --text-body:       17px;
  --text-body-sm:    15px;
  --text-eyebrow:    14px;

  /* --- Layout --- */
  --container-max:     1200px;
  --container-gutter:  var(--space-4);  /* 16px mobile */
  --section-pad-y:     var(--space-7);  /* 48px mobile */
  --section-compact-y: var(--space-6);  /* 32px mobile */

  /* --- Radii --- */
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 12px;

  /* --- Shadows --- */
  --shadow-card:       0 2px 8px rgba(0,0,0,.06);
  --shadow-card-hover: 0 8px 24px rgba(0,0,0,.10);
  --shadow-header:     0 1px 0 var(--color-border);

  /* --- Transitions --- */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 350ms ease;
}

/* Desktop token overrides */
@media (min-width: 1024px) {
  :root {
    --text-display-xl: 80px;
    --text-display-lg: 60px;
    --text-h1:         52px;
    --text-h2:         44px;
    --text-h3:         28px;
    --text-h4:         22px;
    --container-gutter:  var(--space-5);  /* 24px */
    --section-pad-y:     var(--space-9);  /* 96px */
    --section-compact-y: var(--space-7);  /* 48px */
  }
}


/* ============================================================
   2. RESET + BASE
   ============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-family);
  font-size: var(--text-body);
  line-height: 1.6;
  color: var(--color-ink);
  background-color: var(--color-white);
  -webkit-font-smoothing: antialiased;
  /* Bottom padding so sticky mobile CTA bar doesn't overlap content */
  padding-bottom: 64px;
}

@media (min-width: 769px) {
  body { padding-bottom: 0; }
}

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

address { font-style: normal; }

a { color: var(--color-blue-dark); text-decoration: none; }
a:hover { text-decoration: underline; }

ul, ol { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-family);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-ink);
}

p { max-width: 70ch; }

strong { font-weight: 700; }


/* ============================================================
   3. ACCESSIBILITY — SKIP LINK + FOCUS
   ============================================================ */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-4);
  z-index: 9999;
  padding: var(--space-2) var(--space-4);
  background: var(--color-black);
  color: var(--color-white);
  font-size: var(--text-body-sm);
  font-weight: 600;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: top var(--transition-fast);
}

.skip-link:focus { top: var(--space-2); outline: 3px solid var(--color-blue); outline-offset: 2px; }

:focus-visible { outline: 3px solid var(--color-blue); outline-offset: 2px; }
:focus:not(:focus-visible) { outline: none; }

/* Visually hidden — accessible to screen readers, invisible on screen */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}


/* ============================================================
   4. LAYOUT UTILITIES
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-gutter);
  padding-right: var(--container-gutter);
}

.section {
  padding-top: var(--section-pad-y);
  padding-bottom: var(--section-pad-y);
}

.section--compact {
  padding-top: var(--section-compact-y);
  padding-bottom: var(--section-compact-y);
}

/* Background rhythm: white → gray → white → black */
.section--white    { background-color: var(--color-white); }
.section--gray     { background-color: var(--color-bg-section); }
.section--black    { background-color: var(--color-black); }
.section--charcoal { background-color: var(--color-charcoal); }

/* Section header (eyebrow → h2 → lede) */
.section-header { margin-bottom: var(--space-8); text-align: center; }
.section-header--left { text-align: left; }

.section-header .eyebrow { display: block; margin-bottom: var(--space-3); }

.section-header h2 {
  font-size: var(--text-h2);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--space-3);
}

.section-header .lede {
  font-size: var(--text-body-lg);
  color: var(--color-text-muted);
  max-width: 65ch;
  margin-left: auto;
  margin-right: auto;
}

.section-header--left .lede { margin-left: 0; }

/* Section text block — for split-layout sections (coverage, why-us)
   where the heading sits outside of .section-header */
.section-text-block .eyebrow { display: block; margin-bottom: var(--space-3); }

.section-text-block h2 {
  font-size: var(--text-h2);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-black);
  margin-bottom: var(--space-3);
}

.section-text-block > p {
  color: var(--color-text-muted);
  max-width: 52ch;
  margin-bottom: var(--space-5);
}

/* Grids */
.grid-2 { display: grid; grid-template-columns: 1fr; gap: var(--space-5); }
.grid-3 { display: grid; grid-template-columns: 1fr; gap: var(--space-5); }
.grid-4 { display: grid; grid-template-columns: 1fr; gap: var(--space-5); }
.grid-5 { display: grid; grid-template-columns: 1fr; gap: var(--space-4); }

@media (min-width: 640px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); gap: var(--space-8); align-items: center; }
  .grid-3 { grid-template-columns: repeat(3, 1fr); gap: var(--space-5); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); gap: var(--space-5); }
  .grid-5 { grid-template-columns: repeat(5, 1fr); }
}

.text-center { text-align: center; }
.text-left   { text-align: left; }


/* ============================================================
   5. TYPOGRAPHY HELPERS
   ============================================================ */
.eyebrow {
  display: inline-block;
  font-size: var(--text-eyebrow);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
}

.eyebrow--blue   { color: var(--color-blue-dark); }
.eyebrow--white  { color: var(--color-blue); }
.eyebrow--light  { color: var(--color-blue); }

.display-xl { font-size: var(--text-display-xl); font-weight: 800; line-height: 1.05; }

.text-white   { color: var(--color-white) !important; }
.text-muted   { color: var(--color-text-muted); }
.text-subtle  { color: var(--color-text-subtle); }
.text-blue    { color: var(--color-blue); }
.text-blue-dk { color: var(--color-blue-dark); }


/* ============================================================
   6. BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 14px 24px;
  min-height: 44px;
  font-family: var(--font-family);
  font-size: var(--text-body);
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: var(--radius-md);
  cursor: pointer;
  white-space: nowrap;
  transition:
    background-color var(--transition-fast),
    color var(--transition-fast),
    border-color var(--transition-fast),
    transform var(--transition-fast);
}

.btn:hover  { text-decoration: none; }
.btn:active { transform: translateY(1px); }

/* Primary: black → hover blue */
.btn--primary {
  background-color: var(--color-black);
  color: var(--color-white);
  border-color: var(--color-black);
}
.btn--primary:hover {
  background-color: var(--color-blue);
  color: var(--color-black);
  border-color: var(--color-blue);
}

/* Secondary: white, black border → hover black */
.btn--secondary {
  background-color: var(--color-white);
  color: var(--color-black);
  border-color: var(--color-black);
}
.btn--secondary:hover {
  background-color: var(--color-black);
  color: var(--color-white);
}

/* Blue: blue bg, black text */
.btn--blue {
  background-color: var(--color-blue);
  color: var(--color-black);
  border-color: var(--color-blue);
}
.btn--blue:hover {
  background-color: var(--color-blue-dark);
  border-color: var(--color-blue-dark);
}

/* Ghost: transparent, white border (on dark bg) */
.btn--ghost {
  background-color: transparent;
  color: var(--color-white);
  border-color: rgba(255,255,255,.6);
}
.btn--ghost:hover {
  background-color: var(--color-white);
  color: var(--color-black);
  border-color: var(--color-white);
}

/* Sizes */
.btn--sm  { padding: 8px 16px; font-size: var(--text-body-sm); min-height: 36px; }
.btn--lg  { padding: 18px 32px; font-size: var(--text-body-lg); min-height: 56px; }
.btn--full { width: 100%; }

.btn:disabled,
.btn[aria-disabled="true"] { opacity: 0.4; cursor: not-allowed; transform: none; }


/* ============================================================
   7. TOP UTILITY BAND
   ============================================================ */
.topband {
  background-color: var(--color-charcoal);
  color: #D1D5DB;
  font-size: var(--text-body-sm);
  padding: var(--space-2) 0;
}

.topband__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-1);
  text-align: center;
}

.topband a { color: inherit; white-space: nowrap; }
.topband a:hover { color: var(--color-blue); text-decoration: none; }

.topband__group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  align-items: center;
  justify-content: center;
}

.topband__item { display: flex; align-items: center; gap: var(--space-1); }

@media (min-width: 768px) {
  .topband__inner { flex-direction: row; justify-content: space-between; text-align: left; }
  .topband__group { gap: var(--space-5); }
}


/* ============================================================
   8. PROMO BAR
   ============================================================ */
.promobar {
  background-color: var(--color-blue);
  color: var(--color-black);
  padding: var(--space-2) var(--space-5);
  text-align: center;
  font-size: var(--text-body-sm);
  font-weight: 600;
  position: relative;
}

.promobar__text { display: block; padding-right: var(--space-8); }

.promobar a { color: var(--color-black); text-decoration: underline; }

.promobar__close {
  position: absolute;
  right: var(--space-4);
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  color: var(--color-black);
  padding: var(--space-1);
  min-width: 28px;
  min-height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  opacity: 0.6;
}

.promobar__close:hover { opacity: 1; }
.promobar[hidden] { display: none; }

@media (min-width: 768px) {
  .promobar { font-size: var(--text-body); padding: var(--space-3) var(--space-5); }
  .promobar__text { padding-right: var(--space-10); }
}


/* ============================================================
   9. SITE HEADER + NAVIGATION
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background-color: var(--color-white);
  box-shadow: var(--shadow-header);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: var(--space-4);
}

/* Logo */
.site-header__logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  flex-shrink: 0;
}

.site-header__logo img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}
@media (min-width: 1024px) {
  .site-header__logo img { width: 64px; height: 64px; }
}

.logo-placeholder {
  width: 44px;
  height: 44px;
  background-color: var(--color-blue-soft);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-blue-dark);
  flex-shrink: 0;
  border: 1px dashed var(--color-blue-dark);
}

.site-header__logo-name {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--color-black);
  line-height: 1.1;
}
@media (min-width: 1024px) {
  .site-header__logo-name { font-size: 22px; }
}

.site-header__logo:hover .site-header__logo-name { color: var(--color-blue-dark); }

/* Dark variant — used in footer */
.logo-placeholder--dark {
  background-color: var(--color-charcoal);
  border-color: #333;
  color: var(--color-blue);
}

/* Desktop nav */
.nav-desktop { display: none; align-items: center; gap: var(--space-1); }

.nav-desktop__link {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-ink);
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-sm);
  text-decoration: none;
  white-space: nowrap;
  transition: color var(--transition-fast), background-color var(--transition-fast);
}

.nav-desktop__link:hover {
  color: var(--color-black);
  background-color: var(--color-bg-section);
  text-decoration: none;
}

/* Services dropdown */
.nav-dropdown { position: relative; }

.nav-dropdown__toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  user-select: none;
}

.nav-dropdown__toggle::after {
  content: "▾";
  font-size: 11px;
  transition: transform var(--transition-fast);
}

.nav-dropdown:hover .nav-dropdown__toggle::after { transform: rotate(180deg); }

.nav-dropdown__menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card-hover);
  padding: var(--space-2) 0;
  padding-top: 12px;
  z-index: 300;
}

.nav-dropdown:hover .nav-dropdown__menu,
.nav-dropdown:focus-within .nav-dropdown__menu { display: block; }

.nav-dropdown__menu a {
  display: block;
  padding: var(--space-2) var(--space-5);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-ink);
  text-decoration: none;
}

.nav-dropdown__menu a:hover { background-color: var(--color-bg-section); color: var(--color-black); }

/* Header CTA */
.site-header__cta { display: none; }

/* Hamburger */
.nav-hamburger {
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-2);
  display: flex;
  flex-direction: column;
  gap: 5px;
  border-radius: var(--radius-sm);
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}

.nav-hamburger__bar {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--color-black);
  border-radius: 2px;
  transition: transform var(--transition-base), opacity var(--transition-fast);
}

.nav-hamburger[aria-expanded="true"] .nav-hamburger__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger[aria-expanded="true"] .nav-hamburger__bar:nth-child(2) { opacity: 0; }
.nav-hamburger[aria-expanded="true"] .nav-hamburger__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 190;
  background-color: var(--color-white);
  padding: 80px var(--space-5) var(--space-7);
  overflow-y: auto;
  flex-direction: column;
  gap: var(--space-2);
}

.nav-mobile.is-open { display: flex; }

.nav-mobile__link {
  display: block;
  font-size: 22px;
  font-weight: 700;
  color: var(--color-black);
  padding: var(--space-4) 0;
  border-bottom: 1px solid var(--color-border);
  text-decoration: none;
}

.nav-mobile__link:hover { color: var(--color-blue-dark); text-decoration: none; }

.nav-mobile__sub { padding-left: var(--space-5); }
.nav-mobile__sub a {
  display: block;
  font-size: 17px;
  font-weight: 500;
  color: var(--color-text-muted);
  padding: var(--space-3) 0;
  text-decoration: none;
}
.nav-mobile__sub a:hover { color: var(--color-blue-dark); }

.nav-mobile__cta { margin-top: var(--space-5); }

/* Mobile nav close button */
.nav-mobile__close {
  position: absolute;
  top: var(--space-5);
  right: var(--space-5);
  background: none;
  border: none;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  color: var(--color-black);
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  transition: background-color var(--transition-fast);
}
.nav-mobile__close:hover { background-color: var(--color-bg-section); }

/* Mobile nav sub-links (under Services) */
.nav-mobile__sub-link {
  display: block;
  font-size: 17px;
  font-weight: 500;
  color: var(--color-text-muted);
  padding: var(--space-3) 0;
  border-bottom: none;
  text-decoration: none;
}
.nav-mobile__sub-link:hover { color: var(--color-blue-dark); text-decoration: none; }

/* Mobile nav CTA button stack */
.nav-mobile__cta-stack {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

/* Section label within mobile nav (e.g. "Services" — non-interactive) */
.nav-mobile__section-label {
  display: block;
  font-size: var(--text-eyebrow);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-subtle);
  padding: var(--space-3) 0 var(--space-1);
  pointer-events: none;
  user-select: none;
}

@media (min-width: 1024px) {
  .nav-desktop  { display: flex; }
  .site-header__cta { display: flex; }
  .nav-hamburger { display: none; }
  .site-header__inner { height: 88px; }
}


/* ============================================================
   10. HERO
   ============================================================ */
.hero {
  background-color: var(--color-black);
  color: var(--color-white);
  padding: var(--space-9) 0;
  position: relative;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  align-items: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0F0F0F 0%, #1a1d20 100%);
  z-index: 0;
}

.hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero__content { max-width: 620px; }

.hero__eyebrow { margin-bottom: var(--space-3); }

.hero h1 {
  font-size: var(--text-display-xl);
  font-weight: 800;
  line-height: 1.05;
  color: var(--color-white);
  margin-bottom: var(--space-4);
  max-width: 18ch;
}

.hero h1 .accent { color: var(--color-blue); }

.hero__lede {
  font-size: var(--text-body-lg);
  color: #D1D5DB;
  line-height: 1.6;
  max-width: 52ch;
  margin-bottom: var(--space-6);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

/* ── Star rating badge ── */
.hero__rating {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: var(--space-5);
  font-size: var(--text-body-sm);
  color: #9CA3AF;
}
.hero__rating-stars {
  color: #FBBF24;
  font-size: 1rem;
  letter-spacing: 1px;
}
.hero__rating-text {
  color: #D1D5DB;
  font-weight: 500;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-5);
}

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-body-sm);
  color: #9CA3AF;
}

.hero__trust-item::before {
  content: "✓";
  color: var(--color-blue);
  font-weight: 700;
  font-size: 15px;
  line-height: 1;
}

.hero__image-col { display: none; }

@media (min-width: 1024px) {
  .hero { min-height: 640px; }

  .hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8);
    align-items: center;
  }

  .hero__image-col { display: block; }

  .hero__image-wrap {
    aspect-ratio: 4 / 3;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
  }

  .hero__image-wrap img,
  .hero__image-wrap .img-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
  }
}

/* ── Centered hero variant (no image column — text + actions centered) ── */
.hero--centered .hero__inner { display: block; }
.hero--centered .hero__content { max-width: none; text-align: center; }
.hero--centered h1 { max-width: none; }
.hero--centered .hero__lede {
  max-width: 60ch;
  margin-left: auto;
  margin-right: auto;
}
.hero--centered .hero__actions,
.hero--centered .hero__rating,
.hero--centered .hero__trust { justify-content: center; }


/* ============================================================
   11. IMAGE PLACEHOLDER HELPER
   ============================================================ */
.img-placeholder {
  background: repeating-linear-gradient(
    45deg,
    #2a2a2a,
    #2a2a2a 10px,
    #222 10px,
    #222 20px
  );
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-align: center;
  padding: var(--space-5);
  width: 100%;
  height: 100%;
}

.img-placeholder--light {
  background: repeating-linear-gradient(
    45deg,
    #e5e7eb,
    #e5e7eb 10px,
    #f4f5f7 10px,
    #f4f5f7 20px
  );
  color: #9CA3AF;
}

.img-placeholder span {
  background: rgba(0,0,0,.45);
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-sm);
  color: #bbb;
}

.img-placeholder--light span {
  background: rgba(255,255,255,.75);
  color: #6B7280;
}

/* Cover variant — stretches placeholder to fill any position:relative parent */
.img-placeholder--cover {
  position: absolute;
  inset: 0;
  width: auto;
  height: auto;
}


/* ============================================================
   12. TRUST STRIP
   ============================================================ */
.trust-strip { background-color: var(--color-bg-section); padding: var(--section-compact-y) 0; }

.trust-strip__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}

@media (min-width: 640px) {
  .trust-strip__grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--space-4);
  }
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4) var(--space-5);
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-border);
}

.trust-badge__icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background-color: var(--color-blue-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.trust-badge__text strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--color-black);
  line-height: 1.2;
  margin-bottom: 2px;
}

.trust-badge__text span { font-size: var(--text-body-sm); color: var(--color-text-muted); }



/* ============================================================
   12b. BADGE ROW (warranty-guarantees trust strip)
   ============================================================ */
.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-5);
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  max-width: 1100px;
}
.badge-row img {
  max-width: 140px;
  height: auto;
  flex: 0 0 auto;
}

/* ============================================================
   13. SERVICE CARDS
   ============================================================ */
.service-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-card);
  transition: box-shadow var(--transition-base), transform var(--transition-base);
  text-decoration: none;
  color: inherit;
}

.service-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-2px);
  text-decoration: none;
}

.service-card__image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
}

.service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.service-card__image .img-placeholder--light {
  position: absolute;
  inset: 0;
}

/* Icon-led service card image (used on commercial facility cards) */
.service-card__image--icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-charcoal);
  color: var(--color-white);
  aspect-ratio: unset;
  padding: var(--space-5) 0;
}

.service-card__image--icon .service-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 104px;
  height: 104px;
  border-radius: 50%;
  background: var(--color-blue);
  color: var(--color-white);
  box-shadow: 0 4px 20px rgba(137, 207, 240, 0.25);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.service-card:hover .service-card__image--icon .service-card__icon {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(137, 207, 240, 0.4);
}

.service-card__body {
  padding: var(--space-5);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card__eyebrow { margin-bottom: var(--space-2); }

.service-card h3 {
  font-size: var(--text-h3);
  font-weight: 700;
  color: var(--color-black);
  margin-bottom: var(--space-3);
}

.service-card p {
  font-size: var(--text-body);
  color: var(--color-text-muted);
  line-height: 1.6;
  flex: 1;
  margin-bottom: var(--space-4);
  max-width: none;
}

.service-card__link {
  font-size: var(--text-body);
  font-weight: 600;
  color: var(--color-blue-dark);
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  align-self: flex-start;
}

.service-card:hover .service-card__link { color: var(--color-black); }
.service-card__link::after { content: " →"; }


/* ============================================================
   14. COVERAGE MAP
   ============================================================ */
.coverage__map-wrap {
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  margin-bottom: var(--space-5);
}

@media (min-width: 1024px) { .coverage__map-wrap { margin-bottom: 0; } }

.coverage__map-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.coverage__text p { max-width: 52ch; }

.coverage__cities {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin: var(--space-4) 0;
}

.coverage__city-tag {
  display: inline-block;
  padding: var(--space-1) var(--space-3);
  background: var(--color-blue-soft);
  color: var(--color-blue-dark);
  font-size: var(--text-body-sm);
  font-weight: 600;
  border-radius: 100px;
  white-space: nowrap;
}


/* ============================================================
   15. QUOTE FORM / GHL EMBED (dark section)
   ============================================================ */
.quote-section { background-color: var(--color-charcoal); padding: var(--section-pad-y) 0; }

.quote-section__content h2,
.quote-section h2 {
  color: var(--color-white);
  font-size: var(--text-h2);
  font-weight: 700;
  margin-bottom: var(--space-4);
}

.quote-section__content .lede,
.quote-section .lede {
  color: #9CA3AF;
  font-size: var(--text-body-lg);
  margin-bottom: var(--space-5);
  max-width: 48ch;
  margin-left: auto;
  margin-right: auto;
}

.quote-section p,
.quote-section__content p {
  color: #9CA3AF;
}

.quote-section__content .fallback {
  margin-top: var(--space-5);
  font-size: var(--text-body-sm);
  color: #6B7280;
}

.quote-section__content .fallback a { color: var(--color-white); font-weight: 600; }

.quote-section__embed {
  background: var(--color-black);
  border: 1px solid #333;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 720px;
  display: flex;
  align-items: stretch;
}

.quote-section__embed iframe {
  width: 100%;
  min-height: 720px;
  border: none;
  display: block;
}

/* Scheduler confirmation notes (3-step list) */
.schedule-notes {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin: var(--space-5) 0;
}

.schedule-note {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--text-body);
  color: #9CA3AF;
  line-height: 1.5;
}

.schedule-note::before {
  content: "✓";
  color: var(--color-blue);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ============================================================
   NETLIFY ESTIMATE FORM
   ============================================================ */
.quote-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}
@media (min-width: 640px) { .quote-form { grid-template-columns: 1fr 1fr; } }
.quote-form__field { display: flex; flex-direction: column; gap: var(--space-2); }
.quote-form__field--full { grid-column: 1 / -1; }
.quote-form__field label {
  font-size: var(--text-body-sm);
  font-weight: 600;
  color: var(--color-black);
}
.quote-form__field label .req { color: var(--color-blue-dark); }
.quote-form__field input,
.quote-form__field select,
.quote-form__field textarea {
  width: 100%;
  padding: 12px 14px;
  font: inherit;
  color: var(--color-black);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.quote-form__field input:focus,
.quote-form__field select:focus,
.quote-form__field textarea:focus {
  outline: none;
  border-color: var(--color-blue-dark);
  box-shadow: 0 0 0 3px var(--color-blue-soft);
}
.quote-form__field textarea { min-height: 130px; resize: vertical; }
.quote-form__submit { grid-column: 1 / -1; }
.quote-form__hint {
  grid-column: 1 / -1;
  font-size: var(--text-body-sm);
  color: var(--color-text-subtle);
  margin: 0;
}
/* Form card — white panel used when form sits on dark backgrounds */
.quote-form-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-7) var(--space-6);
  max-width: 780px;
  margin: 0 auto;
}
/* TODO placeholder for optional GHL quote form below scheduler */
.quote-form-placeholder {
  border: 2px dashed #3a3a3a;
  border-radius: var(--radius-md);
  padding: var(--space-6) var(--space-5);
  margin-top: var(--space-7);
  text-align: center;
  color: #555;
  font-size: var(--text-body-sm);
  line-height: 1.6;
}

.quote-form-placeholder strong {
  display: block;
  color: var(--color-blue);
  font-size: var(--text-body);
  margin-bottom: var(--space-2);
}


/* ============================================================
   16. PROCESS STEPS
   ============================================================ */
.process__steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
  list-style: none; /* <ol> reset — numbers shown via .process-step__num */
}

@media (min-width: 640px) { .process__steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .process__steps { grid-template-columns: repeat(5, 1fr); gap: var(--space-5); } }

.process-step {
  text-align: center;
  padding: var(--space-5);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.process-step__num {
  font-size: 40px;
  font-weight: 800;
  color: var(--color-blue);
  line-height: 1;
  margin-bottom: var(--space-3);
  display: block;
}

.process-step h3 {
  font-size: var(--text-h4);
  font-weight: 700;
  color: var(--color-black);
  margin-bottom: var(--space-2);
}

.process-step p {
  font-size: var(--text-body-sm);
  color: var(--color-text-muted);
  line-height: 1.5;
  max-width: none;
}


/* ============================================================
   17. STATS ROW
   ============================================================ */
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0;
  text-align: center;
  background: var(--color-charcoal);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.stat-item {
  padding: var(--space-7) var(--space-5);
  position: relative;
}

.stat-item + .stat-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(255,255,255,0.12);
}

.stat-item__number {
  font-size: 52px;
  font-weight: 800;
  color: var(--color-blue);
  line-height: 1;
  display: block;
  letter-spacing: -1px;
}

.stat-item__label {
  font-size: var(--text-body-sm);
  font-weight: 600;
  color: #9CA3AF;
  margin-top: var(--space-2);
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@media (min-width: 768px) {
  .stat-item__number { font-size: 64px; }
  .stat-item__label  { font-size: var(--text-body-sm); }
}


/* ============================================================
   18. BEFORE / AFTER TEASER
   ============================================================ */
.before-after__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}

@media (min-width: 640px) { .before-after__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .before-after__grid { grid-template-columns: repeat(3, 1fr); } }

.before-after-card {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

.before-after-card img { width: 100%; height: 100%; object-fit: cover; }
.before-after-card .img-placeholder--light { position: absolute; inset: 0; }

/* Before/After comparison pair (used on service pages) */
.ba-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.ba-pair__img {
  position: relative;
  overflow: hidden;
}

.ba-pair__img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-slow);
}

.ba-pair:hover .ba-pair__img img { transform: scale(1.03); }

.ba-label {
  position: absolute;
  top: var(--space-2);
  left: var(--space-2);
  padding: 3px 10px;
  background: rgba(0,0,0,.65);
  color: var(--color-white);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  border-radius: var(--radius-sm);
  pointer-events: none;
}

.ba-label--after { background: var(--color-blue-dark); }

/* Service page intro (2-col: text + photo) */
.service-intro__img {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

.service-intro__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* ============================================================
   19. COLOR FLAKE TEASER
   ============================================================ */
.flake-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
  margin-bottom: var(--space-6);
  list-style: none; /* <ul> reset */
}

@media (min-width: 768px) { .flake-grid { grid-template-columns: repeat(6, 1fr); gap: var(--space-4); } }

.flake-card {
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  background-color: var(--color-bg-section);
  border: 1px solid var(--color-border);
  cursor: pointer;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.flake-card:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-card-hover);
}

.flake-card img { width: 100%; height: 100%; object-fit: cover; }

.flake-card__label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,.7) 0%, transparent 100%);
  padding: var(--space-2) var(--space-3);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-white);
  text-align: center;
}

/* Dark-tone placeholder for flakes like Nightfall, Orbit */
.img-placeholder--dark-swatch {
  background: repeating-linear-gradient(
    45deg,
    #2a2d32,
    #2a2d32 10px,
    #1e2024 10px,
    #1e2024 20px
  );
  color: #555;
}

.img-placeholder--dark-swatch span {
  background: rgba(0,0,0,.5);
  color: #888;
}

.flake-card--more {
  background-color: var(--color-black);
}

/* The <a> inside the "more" li fills the card */
.flake-card--more a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  text-decoration: none;
  color: var(--color-blue);
}

.flake-card--more:hover {
  background-color: var(--color-charcoal);
  transform: scale(1.03);
}

.flake-card--more a span {
  font-size: var(--text-body-sm);
  font-weight: 700;
  text-align: center;
  padding: var(--space-3);
  line-height: 1.3;
}


/* ============================================================
   20. TEAM GRID
   ============================================================ */
.team-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: box-shadow var(--transition-base), transform var(--transition-base);
}

.team-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-2px);
}

.team-card__photo {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  position: relative;
}

.team-card__photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.team-card__photo .img-placeholder--light { position: absolute; inset: 0; }

.team-card__body { padding: var(--space-5) var(--space-4); }

.team-card__name {
  font-size: var(--text-h3);
  font-weight: 700;
  color: var(--color-black);
  margin-bottom: var(--space-1);
}

.team-card__role {
  font-size: var(--text-body-sm);
  font-weight: 600;
  color: var(--color-blue-dark);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}


/* ============================================================
   21. WHY PANTHER / BENEFITS
   ============================================================ */
.benefits-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3);
  margin-top: var(--space-5);
}

@media (min-width: 640px) { .benefits-list { grid-template-columns: repeat(2, 1fr); } }

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  padding: var(--space-4);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

.benefit-item__icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background-color: var(--color-blue-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.benefit-item__text strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--color-black);
  margin-bottom: 2px;
}

.benefit-item__text span {
  font-size: var(--text-body-sm);
  color: var(--color-text-muted);
  line-height: 1.5;
}

.why-us__image {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  margin-top: var(--space-6);
}

@media (min-width: 1024px) { .why-us__image { margin-top: 0; } }


/* ============================================================
   22. TESTIMONIALS
   ============================================================ */
.testimonial-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-top: 4px solid var(--color-blue);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  box-shadow: var(--shadow-card);
  transition: box-shadow var(--transition-base);
}

.testimonial-card:hover { box-shadow: var(--shadow-card-hover); }

.testimonial-card__stars {
  color: var(--color-blue);
  font-size: 18px;
  letter-spacing: 2px;
  line-height: 1;
}

.testimonial-card__quote {
  font-size: var(--text-body-lg);
  font-style: italic;
  color: var(--color-ink);
  line-height: 1.6;
  flex: 1;
  max-width: none;
}

.testimonial-card__footer {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  background-color: var(--color-blue-soft);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: var(--color-blue-dark);
}

.testimonial-card__name {
  font-size: var(--text-body-sm);
  font-weight: 700;
  color: var(--color-black);
  display: block;
}

.testimonial-card__meta { font-size: 12px; color: var(--color-text-subtle); }


/* ============================================================
   23. FAQ ACCORDION (native details/summary)
   ============================================================ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--color-white);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-4) var(--space-5);
  font-size: var(--text-body);
  font-weight: 600;
  color: var(--color-black);
  cursor: pointer;
  list-style: none;
  gap: var(--space-4);
  transition: background-color var(--transition-fast);
}

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

.faq-item summary:hover { background-color: var(--color-bg-section); }

.faq-item summary::after {
  content: "+";
  font-size: 24px;
  font-weight: 300;
  color: var(--color-blue-dark);
  flex-shrink: 0;
  line-height: 1;
  transition: transform var(--transition-base);
}

.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item[open] summary { border-bottom: 1px solid var(--color-border); }

.faq-item__answer {
  padding: var(--space-5);
  font-size: var(--text-body);
  color: var(--color-text-muted);
  line-height: 1.7;
  max-width: none;
}

.faq-item__answer a { color: var(--color-blue-dark); font-weight: 600; }


/* ============================================================
   24. CTA BANNER
   ============================================================ */
.cta-banner {
  background-color: var(--color-black);
  padding: var(--section-compact-y) 0;
  text-align: center;
}

.cta-banner h2 {
  font-size: var(--text-h2);
  font-weight: 800;
  color: var(--color-blue);
  margin-bottom: var(--space-3);
}

.cta-banner p {
  font-size: var(--text-body-lg);
  color: #9CA3AF;
  margin-bottom: var(--space-6);
  max-width: 52ch;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  justify-content: center;
}


/* ============================================================
   25. FOOTER
   ============================================================ */
.site-footer {
  background-color: var(--color-black);
  color: #9CA3AF;
  padding: var(--space-9) 0 0;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-7);
  margin-bottom: var(--space-8);
}

@media (min-width: 640px)  { .site-footer__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .site-footer__grid { grid-template-columns: repeat(4, 1fr); gap: var(--space-8); } }

.site-footer h4 {
  font-size: var(--text-eyebrow);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-blue);
  margin-bottom: var(--space-4);
}

.site-footer ul { display: flex; flex-direction: column; gap: var(--space-2); }

.site-footer ul li { font-size: var(--text-body-sm); color: #9CA3AF; line-height: 1.6; }

.site-footer ul li a { color: #9CA3AF; text-decoration: none; transition: color var(--transition-fast); }
.site-footer ul li a:hover { color: var(--color-white); text-decoration: none; }

.site-footer__logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
  text-decoration: none;
}

.site-footer__logo img { width: 40px; height: 40px; object-fit: contain; border-radius: var(--radius-sm); }

.site-footer__logo-name { font-size: 17px; font-weight: 800; color: var(--color-white); }

.site-footer__tagline { font-size: var(--text-body-sm); color: #6B7280; margin-bottom: var(--space-5); max-width: 30ch; }

/* Full-width "Also Serving" city band — sits between the 4-column grid and the bottom bar */
.site-footer__extra-areas {
  border-top: 1px solid #1F2125;
  padding: var(--space-5) 0;
  text-align: center;
  font-size: var(--text-body-sm);
  color: #6B7280;
  line-height: 2;
}
.site-footer__extra-areas-label {
  display: inline-block;
  color: var(--color-blue);
  font-weight: 700;
  text-transform: uppercase;
  font-size: var(--text-eyebrow);
  letter-spacing: 0.1em;
  margin-right: var(--space-3);
}
.site-footer__extra-areas a {
  color: #9CA3AF;
  text-decoration: none;
  white-space: nowrap;
  transition: color var(--transition-fast);
}
.site-footer__extra-areas a:hover { color: var(--color-white); }

.site-footer__bottom {
  border-top: 1px solid #1F2125;
  padding: var(--space-5) 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  align-items: center;
  text-align: center;
}

@media (min-width: 768px) {
  .site-footer__bottom { flex-direction: row; justify-content: space-between; text-align: left; }
}

.site-footer__copyright { font-size: var(--text-body-sm); color: #4B5563; }

.site-footer__legal { display: flex; gap: var(--space-4); }
.site-footer__legal a { font-size: var(--text-body-sm); color: #4B5563; text-decoration: none; }
.site-footer__legal a:hover { color: var(--color-white); }


/* ============================================================
   26. STICKY MOBILE BOTTOM CTA BAR
   ============================================================ */
.mobile-cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 150;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid #333;
  background-color: var(--color-black);
}

.mobile-cta-bar__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-3);
  font-family: var(--font-family);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  min-height: 56px;
  cursor: pointer;
  border: none;
  transition: background-color var(--transition-fast);
}

.mobile-cta-bar__btn--call {
  background-color: var(--color-charcoal);
  color: var(--color-white);
  border-right: 1px solid #333;
}

.mobile-cta-bar__btn--call:hover {
  background-color: #2d3139;
  text-decoration: none;
  color: var(--color-white);
}

.mobile-cta-bar__btn--estimate {
  background-color: var(--color-blue);
  color: var(--color-black);
}

.mobile-cta-bar__btn--estimate:hover {
  background-color: var(--color-blue-dark);
  text-decoration: none;
  color: var(--color-black);
}

@media (min-width: 769px) { .mobile-cta-bar { display: none; } }


/* ============================================================
   29. COLORS PAGE — full swatch grid
   ============================================================ */
.color-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
  list-style: none;
}

@media (min-width: 640px)  { .color-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .color-grid { grid-template-columns: repeat(4, 1fr); gap: var(--space-5); } }

.color-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
  transition: box-shadow var(--transition-base), transform var(--transition-base);
  cursor: default;
}

.color-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-3px);
}

.color-card__swatch {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  position: relative;
}

.color-card__swatch img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ============================================================
   FEATURE LIST ITEMS — concrete-coatings.html comparison table
   ============================================================ */
.feature-list-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--text-body-sm);
}
.feature-list-item--pro {
  color: #D1D5DB;
}
.feature-list-item--con {
  color: var(--color-text-muted);
}
.feature-list-item__icon {
  font-weight: 700;
  flex-shrink: 0;
}
.feature-list-item--pro .feature-list-item__icon {
  color: #89CFF0;
}
.feature-list-item--con .feature-list-item__icon {
  color: var(--color-error);
}

/* ============================================================
   ACCESSIBILITY — prefers-reduced-motion
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}


/* Footer social icons (Facebook / Instagram) */
.site-footer__social { display: flex; gap: var(--space-3); align-items: center; }
.site-footer__social a { color: #4B5563; display: inline-flex; transition: color .15s ease; }
.site-footer__social a:hover { color: var(--color-white); }
.ss-footer__links + .site-footer__social, .site-footer__social { line-height: 0; }


/* ============================================================
   ENHANCEMENT v2 — HERO FULL-BLEED BACKGROUND IMAGE
   The hero image is now the background of the section,
   with a directional gradient overlay for text readability.
   ============================================================ */
.hero {
  background-image: url('../assets/images/garage-after/garage-fresh-flake-install.avif');
  background-size: cover;
  background-position: center 35%;
  min-height: 600px;
}

/* Override the default flat gradient with a directional overlay:
   dark on the left (text side) → fades to reveal the floor on the right */
.hero::before {
  background: linear-gradient(
    105deg,
    rgba(8,8,8,0.96) 0%,
    rgba(8,8,8,0.88) 38%,
    rgba(8,8,8,0.50) 65%,
    rgba(8,8,8,0.18) 100%
  );
}

/* Mobile: uniform dark overlay since there's no right "reveal" column */
@media (max-width: 1023px) {
  .hero::before {
    background: rgba(8,8,8,0.82);
  }
}

@media (min-width: 1024px) {
  .hero {
    min-height: 760px;
  }
  /* Hide the separate image column — the bg image IS the visual */
  .hero__image-col {
    display: none;
  }
  /* Let content span the full width */
  .hero__inner {
    grid-template-columns: 1fr;
  }
  .hero__content {
    max-width: 700px;
  }
}


/* ============================================================
   ENHANCEMENT v2 — SVG ICON SIZING
   Trust badges and benefit items use SVG instead of emoji.
   The icon containers already have the right size/bg; just
   ensure SVG inherits the correct color.
   ============================================================ */
.trust-badge__icon svg,
.benefit-item__icon svg {
  display: block;
  color: var(--color-blue-dark);
  flex-shrink: 0;
}

/* Testimonial stars — use gold (matches hero star rating) */
.testimonial-card__stars {
  color: #FBBF24;
}


/* ============================================================
   ENHANCEMENT v2 — BEFORE / AFTER SLIDER
   Interactive drag-to-compare component. The "after" pane
   uses clip-path which JS updates on pointer/touch drag.
   ============================================================ */
.ba-slider {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius-lg);
  cursor: ew-resize;
  user-select: none;
  touch-action: pan-y;
  box-shadow: 0 4px 24px rgba(0,0,0,.15);
}

.ba-slider__pane {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.ba-slider__pane img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  display: block;
}

.ba-slider__before { z-index: 1; }

.ba-slider__after {
  z-index: 2;
  clip-path: inset(0 50% 0 0); /* JS updates the right value */
  will-change: clip-path;
}

/* Before / After badges — direct children of .ba-slider so always visible */
.ba-slider__badge {
  position: absolute;
  top: var(--space-3);
  padding: 3px 10px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: var(--radius-sm);
  pointer-events: none;
  z-index: 6;
  line-height: 1.4;
}

.ba-slider__badge--before {
  left: var(--space-3);
  background: rgba(0,0,0,0.62);
  color: var(--color-white);
}

.ba-slider__badge--after {
  right: var(--space-3);
  background: var(--color-blue-dark);
  color: var(--color-white);
}

/* Vertical divider line + draggable handle */
.ba-slider__divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 44px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  will-change: left;
}

.ba-slider__divider:focus-visible {
  outline: 3px solid var(--color-blue);
  outline-offset: -2px;
}

.ba-slider__line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  transform: translateX(-50%);
  background: rgba(255,255,255,0.9);
  box-shadow: 0 0 8px rgba(0,0,0,0.45);
  pointer-events: none;
}

.ba-slider__handle {
  width: 42px;
  height: 42px;
  background: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 14px rgba(0,0,0,0.32);
  color: var(--color-charcoal);
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.ba-slider:hover .ba-slider__handle,
.ba-slider:active .ba-slider__handle {
  transform: scale(1.12);
  box-shadow: 0 4px 18px rgba(0,0,0,0.40);
}

/* "Drag to compare" hint — fades out after first interaction */
.ba-slider__hint {
  position: absolute;
  bottom: var(--space-3);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,0.60);
  color: var(--color-white);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
  white-space: nowrap;
  pointer-events: none;
  z-index: 8;
  opacity: 1;
  transition: opacity 0.5s ease;
}

.ba-slider.has-interacted .ba-slider__hint {
  opacity: 0;
}


/* ============================================================
   ENHANCEMENT v2 — SCROLL-IN FADE ANIMATIONS
   Elements start invisible and translate up; IntersectionObserver
   adds .is-visible when they enter the viewport. JS skips
   elements already above the fold (they appear immediately).
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Respect reduced-motion preference for all new animations */
@media (prefers-reduced-motion: reduce) {
  .fade-up,
  .fade-up.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .ba-slider__hint { display: none; }
}


/* ============================================================
   ENHANCEMENT v4 — TYPOGRAPHY UPGRADE
   Bigger, bolder headings + smoother mobile-to-desktop scaling.
   ============================================================ */

/* Tablet mid-point — smooth step between 17px mobile and 44px desktop h2 */
@media (min-width: 640px) and (max-width: 1023px) {
  :root {
    --text-display-xl: 58px;
    --text-h2:         36px;
    --text-h3:         25px;
    --text-body:       17px;
  }
}

/* Section headings — weight 800 + tighter line-height for authority */
.section-header h2,
.section-text-block h2 {
  font-weight: 800;
  line-height: 1.1;
}

/* Section lede — bigger on desktop so it reads as a real subtitle */
@media (min-width: 1024px) {
  .section-header .lede,
  .section-text-block > p {
    font-size: 20px;
    line-height: 1.65;
  }
  /* Hero lede — slightly larger too */
  .hero__lede {
    font-size: 20px;
  }
}

/* Stats section heading — already has inline style override; bump it globally */
@media (min-width: 1024px) {
  .stats-row ~ * h2,
  #stats-heading {
    font-size: var(--text-h2);
    font-weight: 800;
  }
}

/* FAQ summary text — benefits from the larger body token but enforce min */
@media (min-width: 1024px) {
  .faq-item summary {
    font-size: 18px;
  }
}

/* Testimonial quote — up a notch on desktop */
@media (min-width: 1024px) {
  .testimonial-card__quote {
    font-size: 19px;
  }
}

/* Service card heading */
@media (min-width: 1024px) {
  .service-card h3 {
    font-size: 22px;
  }
}

/* CTA banner heading — make it shout */
@media (min-width: 1024px) {
  .cta-banner h2 {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.05;
  }
}


/* ============================================================
   ENHANCEMENT v3 — ICON UPGRADE
   Bold gradient+glow treatment replaces the flat pale-blue
   circle on all trust badges, benefit items, and process steps.
   Icons switch to white so they read clearly on dark backgrounds.
   ============================================================ */

/* — Trust badge icons — */
.trust-badge__icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(145deg, var(--color-blue) 0%, var(--color-blue-dark) 100%);
  border-radius: 14px;
  box-shadow:
    0 0 0 4px rgba(137, 207, 240, 0.18),
    0 8px 20px rgba(27, 125, 170, 0.28);
  transition: box-shadow var(--transition-base), transform var(--transition-fast);
}

.trust-badge:hover .trust-badge__icon {
  box-shadow:
    0 0 0 5px rgba(137, 207, 240, 0.28),
    0 12px 28px rgba(27, 125, 170, 0.40);
  transform: translateY(-2px) scale(1.05);
}

.trust-badge__icon svg {
  width: 28px;
  height: 28px;
  color: var(--color-white);
}


/* — Benefit item icons — */
.benefit-item__icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(145deg, var(--color-blue) 0%, var(--color-blue-dark) 100%);
  border-radius: 12px;
  box-shadow:
    0 0 0 3px rgba(137, 207, 240, 0.15),
    0 6px 16px rgba(27, 125, 170, 0.22);
  flex-shrink: 0;
  transition: box-shadow var(--transition-base), transform var(--transition-fast);
}

.benefit-item:hover .benefit-item__icon {
  box-shadow:
    0 0 0 4px rgba(137, 207, 240, 0.24),
    0 8px 22px rgba(27, 125, 170, 0.32);
  transform: translateY(-1px) scale(1.04);
}

.benefit-item__icon svg {
  width: 22px;
  height: 22px;
  color: var(--color-white);
}


/* — Process step icons —
   New .process-step__icon-wrap wraps both the icon container
   and the repositioned step-number badge. */
.process-step__icon-wrap {
  position: relative;
  width: 64px;
  height: 64px;
  margin: 0 auto var(--space-4);
}

.process-step__icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(145deg, var(--color-blue) 0%, var(--color-blue-dark) 100%);
  border-radius: 16px;
  box-shadow:
    0 0 0 4px rgba(137, 207, 240, 0.18),
    0 8px 24px rgba(27, 125, 170, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  transition: box-shadow var(--transition-base), transform var(--transition-fast);
}

.process-step:hover .process-step__icon {
  box-shadow:
    0 0 0 5px rgba(137, 207, 240, 0.26),
    0 10px 30px rgba(27, 125, 170, 0.38);
  transform: translateY(-2px);
}

.process-step__icon svg {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
}

/* Number badge: small chip in top-right corner of the icon wrap */
.process-step__icon-wrap .process-step__num {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 22px;
  height: 22px;
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
  background: var(--color-charcoal);
  color: var(--color-blue);
  border-radius: 50%;
  border: 2px solid var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
}


/* ============================================================
   SET 1 — VISUAL ATMOSPHERE
   ============================================================ */

/* — Trust strip: dark background so it flows from the dark hero — */
.trust-strip {
  background-color: var(--color-charcoal);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.trust-badge {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.10);
  box-shadow: none;
}

.trust-badge__text strong { color: var(--color-white); }
.trust-badge__text span   { color: #9CA3AF; }

/* Trust badge link inside dark strip */
.trust-badge__text strong a { color: var(--color-white); }


/* — Stats section: full dark (class changed to section--black in HTML) — */
#stats-heading       { color: var(--color-white); }


/* — Hero trust chips: styled as frosted-glass pill badges — */
.hero__trust { gap: var(--space-3); }

.hero__trust-item {
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 100px;
  padding: 8px 18px;
  color: rgba(255,255,255,0.95);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.hero__trust-item::before {
  color: var(--color-blue);
  font-size: 15px;
}


/* — Promo bar: pulsing live dot — */
.promobar__pulse {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-black);
  opacity: 0.7;
  position: relative;
  margin-right: 6px;
  vertical-align: middle;
  flex-shrink: 0;
}

.promobar__pulse::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: var(--color-black);
  opacity: 0.35;
  animation: pulse-ring 2.2s ease-out infinite;
}

@keyframes pulse-ring {
  0%   { transform: scale(1);   opacity: 0.35; }
  65%  { transform: scale(2.4); opacity: 0;    }
  100% { transform: scale(2.4); opacity: 0;    }
}

@media (prefers-reduced-motion: reduce) {
  .promobar__pulse::before { animation: none; }
}


/* — CTA banner: social proof line styling — */
.cta-banner__social-proof {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-blue);
  letter-spacing: 0.02em;
  margin-bottom: var(--space-4);
  max-width: none;
}


/* — Footer: thin brand accent line at top — */
.site-footer {
  border-top: 3px solid var(--color-blue-dark);
}


/* ============================================================
   SET 4 — INTERACTIVE & VISUAL
   ============================================================ */

/* — Process steps: horizontal connector line between cards — */
@media (min-width: 1024px) {
  .process__steps {
    position: relative;
  }
  /* Dashed line running through the centers of all step icons */
  .process__steps::before {
    content: '';
    position: absolute;
    top: 48px; /* vertically centered on the 64px icon */
    left: calc(10% + 32px);
    right: calc(10% + 32px);
    height: 2px;
    background: repeating-linear-gradient(
      to right,
      var(--color-blue) 0px,
      var(--color-blue) 8px,
      transparent 8px,
      transparent 18px
    );
    opacity: 0.45;
    pointer-events: none;
    z-index: 0;
  }
  .process-step {
    position: relative;
    z-index: 1;
  }
}


/* — Colors section: mosaic "+more" card — */
.flake-card--more {
  overflow: hidden;
}

.flake-mosaic {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 2px;
  opacity: 0.55;
}

.flake-mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.flake-card--more a {
  position: relative;
  z-index: 2;
  background: rgba(0,0,0,0.52);
  border-radius: 0;
  inset: 0;
}

.flake-card--more a span {
  font-size: 13px;
  font-weight: 800;
  color: var(--color-white);
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}


/* — Why Us: Polyurea vs Epoxy comparison table — */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: var(--space-5);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.comparison-table th {
  padding: var(--space-3) var(--space-4);
  font-size: var(--text-body-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-align: center;
  border-bottom: 2px solid var(--color-border);
}

.comparison-table th:first-child { text-align: left; }

.comparison-table th.col-polyurea {
  background: var(--color-blue-dark);
  color: var(--color-white);
  border-bottom-color: var(--color-blue-dark);
}

.comparison-table th.col-epoxy {
  background: var(--color-bg-section);
  color: var(--color-text-muted);
}

.comparison-table td {
  padding: var(--space-3) var(--space-4);
  font-size: var(--text-body-sm);
  border-bottom: 1px solid var(--color-border);
  background: var(--color-white);
  text-align: center;
  color: var(--color-text-muted);
}

.comparison-table td:first-child {
  text-align: left;
  font-weight: 600;
  color: var(--color-black);
}

.comparison-table tr:last-child td { border-bottom: none; }

.comparison-table td.win {
  color: var(--color-blue-dark);
  font-weight: 700;
}

.comparison-table td.lose {
  color: var(--color-text-subtle);
}

/* check / x icons in comparison table */
.cmp-yes::before { content: "✓"; color: var(--color-blue-dark); font-weight: 700; margin-right: 4px; }
.cmp-no::before  { content: "✗"; color: #D1D5DB; margin-right: 4px; }


/* ============================================================
   SET 3 — NAVIGATION
   ============================================================ */

/* Transparent header — only on the homepage hero.
   JS adds .site-header--solid when scrolled past the hero. */
.site-header--transparent {
  background-color: transparent;
  box-shadow: none;
  transition:
    background-color 0.35s ease,
    box-shadow 0.35s ease;
}

/* Nav links and logo name go white when transparent over the dark hero */
.site-header--transparent .nav-desktop__link {
  color: rgba(255,255,255,0.88);
}
.site-header--transparent .nav-desktop__link:hover {
  color: var(--color-white);
  background-color: rgba(255,255,255,0.10);
}
.site-header--transparent .site-header__logo-name {
  color: var(--color-white);
}
.site-header--transparent .nav-hamburger__bar {
  background-color: var(--color-white);
}
/* Ghost CTA button on transparent header */
.site-header--transparent .site-header__cta {
  background-color: transparent;
  border-color: rgba(255,255,255,0.55);
  color: var(--color-white);
}
.site-header--transparent .site-header__cta:hover {
  background-color: var(--color-white);
  border-color: var(--color-white);
  color: var(--color-black);
}

/* Dropdown on transparent header still needs white bg */
.site-header--transparent .nav-dropdown__menu {
  background: var(--color-white);
  border-color: var(--color-border);
}
.site-header--transparent .nav-dropdown__menu a {
  color: var(--color-ink);
}
.site-header--transparent .nav-dropdown__toggle::after {
  color: rgba(255,255,255,0.88);
}

/* Topband SVG icon sizing */
.topband__item svg {
  flex-shrink: 0;
  opacity: 0.7;
}


/* ============================================================
   SET 2 — CONTENT & CREDIBILITY
   ============================================================ */

/* — Service card: Most Popular badge — */
.service-card--featured {
  border-color: var(--color-blue-dark);
  border-width: 2px;
  position: relative;
}

.service-card__badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-blue-dark);
  color: var(--color-white);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 14px;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  white-space: nowrap;
  z-index: 2;
}


/* — Team card: tagline — */
.team-card__tagline {
  font-size: var(--text-body-sm);
  color: var(--color-text-muted);
  margin-top: var(--space-2);
  line-height: 1.4;
  font-style: italic;
}


/* — Testimonials: Google reviews link — */
.reviews-source {
  text-align: center;
  margin-top: var(--space-6);
  font-size: var(--text-body-sm);
  color: var(--color-text-muted);
}

.reviews-source a {
  font-weight: 600;
  color: var(--color-blue-dark);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.reviews-source a:hover { text-decoration: underline; }


/* — FAQ: Popular badge — */
.faq-item__popular {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  background: var(--color-blue-soft);
  color: var(--color-blue-dark);
  padding: 2px 8px;
  border-radius: var(--radius-sm);
  margin-left: var(--space-3);
  vertical-align: middle;
  position: relative;
  top: -1px;
}


/* — Estimate form: "What happens next" strip — */
.form-next-steps {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  justify-content: center;
  margin-bottom: var(--space-7);
}

.form-next-step {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex: 1;
  min-width: 180px;
  max-width: 220px;
}

.form-next-step__num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(137,207,240,0.15);
  border: 1px solid rgba(137,207,240,0.30);
  color: var(--color-blue);
  font-size: 14px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.form-next-step__text {
  font-size: var(--text-body-sm);
  color: #C8CDD6;
  line-height: 1.5;
}

.form-next-step__text strong {
  display: block;
  color: #FFFFFF;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 3px;
}

/* ============================================================
   FAQ PAGE — hero background image
   ============================================================ */
.hero--faq {
  background-image: url('../assets/images/service-pages/hero-garage.webp');
  background-size: cover;
  background-position: center 40%;
  min-height: 560px;
}

/* Directional overlay: dark on left for text legibility, reveals floor on right */
.hero--faq::before {
  background: linear-gradient(
    105deg,
    rgba(8,8,8,0.94) 0%,
    rgba(8,8,8,0.84) 40%,
    rgba(8,8,8,0.55) 68%,
    rgba(8,8,8,0.22) 100%
  );
}

@media (max-width: 1023px) {
  .hero--faq::before {
    background: rgba(8,8,8,0.82);
  }
}

@media (min-width: 1024px) {
  .hero--faq {
    min-height: 520px;
  }
}

/* Gallery card hover effect */
.before-after-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: default;
}
.before-after-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.14);
}

/* Trust badges on light/gray background — override global white text rule */
.section--gray .trust-badge__text strong,
.section--white .trust-badge__text strong { color: var(--color-ink) !important; }
.section--gray .trust-badge__text span,
.section--white .trust-badge__text span   { color: var(--color-text-muted) !important; }

/* Fix link color inside trust badge titles on light backgrounds */
.section--gray .trust-badge__text strong a,
.section--white .trust-badge__text strong a { color: var(--color-blue-dark) !important; }
