/* =========================================================
   Home Builder Marketers - Reviews Hub
   Brand-matched to homebuildermarketers.com (Urbanist + teal + navy).
   Custom motion via IntersectionObserver (in app.js).
   ========================================================= */

:root {
  --teal:           #05C3C3;
  --teal-hover:     #04AEAE;
  --teal-dark:      #038080;
  --teal-glow:      rgba(5, 195, 195, 0.35);
  --teal-soft:      rgba(5, 195, 195, 0.12);
  --teal-subtle:    rgba(5, 195, 195, 0.06);
  --navy:           #0B1120;
  --navy-mid:       #111B2E;
  --navy-light:     #1A2540;
  --navy-glow:      rgba(11, 17, 32, 0.08);
  --white:          #FFFFFF;
  --off-white:      #F5F7FA;
  --cream:          #FAFBFD;
  --text-primary:   #1A1F36;
  --text-secondary: #4A5568;
  --text-muted:     #8492A6;
  --gold:           #D4A853;
  --google-star:    #FBBC04;
  --border:         rgba(11, 17, 32, 0.08);
  --border-strong:  rgba(11, 17, 32, 0.14);
  --border-light:   rgba(255, 255, 255, 0.10);

  --font: 'Urbanist', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --text-display: clamp(3rem, 6.5vw, 5.5rem);
  --text-h1: clamp(2.5rem, 5vw, 4.25rem);
  --text-h2: clamp(2rem, 3.4vw, 3.25rem);
  --text-h3: clamp(1.5rem, 2.2vw, 2rem);
  --text-body-lg: 1.25rem;
  --text-body: 1.0625rem;
  --text-sm: 0.9375rem;
  --text-xs: 0.8125rem;

  --max-w: 1280px;
  --max-w-narrow: 820px;
  --gutter: clamp(1.25rem, 3vw, 2.5rem);
  --section-y: clamp(5rem, 9vw, 9rem);

  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-full: 9999px;

  --shadow-sm: 0 2px 8px rgba(11,17,32,0.04), 0 1px 2px rgba(11,17,32,0.06);
  --shadow-md: 0 4px 16px rgba(11,17,32,0.06), 0 2px 4px rgba(11,17,32,0.04);
  --shadow-lg: 0 18px 48px rgba(11,17,32,0.10), 0 6px 16px rgba(11,17,32,0.05);
  --shadow-xl: 0 28px 72px rgba(11,17,32,0.14), 0 10px 24px rgba(11,17,32,0.08);
  --shadow-teal: 0 14px 38px rgba(5, 195, 195, 0.32), 0 4px 12px rgba(5, 195, 195, 0.18);
  --shadow-card-hover: 0 24px 60px rgba(11,17,32,0.12), 0 8px 18px rgba(11,17,32,0.06);

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-smooth: cubic-bezier(0.65, 0, 0.35, 1);
  --duration-fast: 220ms;
  --duration: 480ms;
  --duration-slow: 800ms;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: var(--text-body);
  line-height: 1.65;
  color: var(--text-primary);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--duration-fast) var(--ease-out); }
a:hover { color: var(--teal); }

::selection { background: var(--teal); color: var(--white); }

.wrap { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 var(--gutter); }
.wrap-narrow { max-width: var(--max-w-narrow); }

/* =====  Typography  ===== */
h1, h2, h3, h4 {
  font-family: var(--font);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--text-primary);
  line-height: 1.05;
  margin: 0 0 .4em;
}
h1 { font-size: var(--text-h1); letter-spacing: -0.035em; }
.h2 { font-size: var(--text-h2); font-weight: 800; letter-spacing: -0.03em; line-height: 1.08; margin: 0 0 .4em; color: var(--text-primary); display: block; }
h3 { font-size: var(--text-h3); font-weight: 700; letter-spacing: -0.02em; }
h4 { font-size: 1.25rem; font-weight: 700; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 700;
  color: var(--teal);
  margin: 0 0 18px;
  padding: 6px 14px;
  background: var(--teal-soft);
  border-radius: var(--r-full);
  border: 1px solid var(--teal-soft);
  position: relative;
}
.eyebrow::before {
  content: ""; display: inline-block; width: 6px; height: 6px;
  background: var(--teal); border-radius: 50%;
  box-shadow: 0 0 0 4px var(--teal-soft);
  animation: pulseDot 2s ease-in-out infinite;
}
.eyebrow.plain { background: transparent; border: none; padding: 0; color: var(--teal); }
.eyebrow.plain::before { display: none; }

@keyframes pulseDot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.2); opacity: 0.7; }
}

.lede {
  font-size: var(--text-body-lg);
  line-height: 1.55;
  color: var(--text-secondary);
  max-width: 720px;
  font-weight: 400;
  margin: 0;
}

.section-head { text-align: center; max-width: 760px; margin: 0 auto 64px; }
.section-head .eyebrow { margin-bottom: 20px; }
.section-head .lede { margin: 16px auto 0; }

.gradient-text {
  background: linear-gradient(135deg, var(--text-primary) 30%, var(--teal) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.text-accent { color: var(--teal); }

/* Underline-accent on key words: <span class="hl">word</span> */
.hl {
  position: relative;
  display: inline-block;
  white-space: nowrap;
}
.hl::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0.08em;
  height: 0.32em;
  background: var(--teal);
  opacity: 0.28;
  z-index: -1;
  border-radius: 4px;
  transform: skewX(-4deg);
}

/* =====  Buttons  ===== */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 30px;
  border-radius: var(--r-full);
  font-weight: 700;
  font-size: var(--text-sm);
  font-family: var(--font);
  border: 1.5px solid transparent;
  transition: transform var(--duration) var(--ease-spring),
              box-shadow var(--duration) var(--ease-out),
              background var(--duration-fast) var(--ease-out),
              color var(--duration-fast) var(--ease-out),
              border-color var(--duration-fast) var(--ease-out);
  cursor: pointer;
  text-decoration: none !important;
  white-space: nowrap;
  letter-spacing: 0.005em;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  line-height: 1.2;
}
.btn-lg { padding: 17px 34px; font-size: var(--text-body); gap: 12px; }

/* Clean inline arrow that slides on hover (no extra circle) */
.btn .btn-arrow {
  display: inline-block;
  font-size: 1.05em;
  font-weight: 600;
  line-height: 1;
  transition: transform var(--duration) var(--ease-spring);
  opacity: 0.9;
}
.btn:hover .btn-arrow { transform: translateX(4px); opacity: 1; }

.btn-primary {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-hover) 100%);
  color: var(--white);
  box-shadow: 0 6px 16px rgba(5,195,195,0.28),
              0 2px 4px rgba(5,195,195,0.18),
              inset 0 1px 0 rgba(255,255,255,0.22);
}
/* Soft glossy sweep that travels left to right on hover */
.btn-primary::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(120deg,
    transparent 0%,
    rgba(255,255,255,0.32) 50%,
    transparent 100%);
  transform: translateX(-100%);
  transition: transform 700ms var(--ease-out);
  pointer-events: none;
  z-index: -1;
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--teal-hover) 0%, var(--teal-dark) 100%);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(5,195,195,0.38),
              0 4px 10px rgba(5,195,195,0.22),
              inset 0 1px 0 rgba(255,255,255,0.30);
}
.btn-primary:hover::before { transform: translateX(100%); }
.btn-primary:active { transform: translateY(0); box-shadow: 0 4px 12px rgba(5,195,195,0.30); }
.btn-ghost {
  background: transparent;
  color: var(--text-primary);
  border-color: var(--border-strong);
}
.btn-ghost:hover {
  background: var(--text-primary);
  color: var(--white);
  border-color: var(--text-primary);
  transform: translateY(-2px);
}
.btn-ghost-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn-ghost-light:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}

/* =====  Nav  ===== */
.nav {
  position: sticky; top: 0; z-index: 200;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--duration) var(--ease-out), background var(--duration) var(--ease-out);
}
.nav.is-scrolled {
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.95);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 78px; gap: 24px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 44px; height: 44px;
  object-fit: contain;
  flex-shrink: 0;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text strong {
  font-weight: 800; font-size: 15px; letter-spacing: -0.015em; color: var(--navy);
}
.brand-text em {
  font-style: normal; font-size: 10px; text-transform: uppercase;
  letter-spacing: 0.22em; color: var(--teal); font-weight: 700;
}

.nav nav { display: flex; align-items: center; gap: 30px; }
.nav nav a:not(.btn) {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-secondary);
  position: relative;
  padding: 6px 0;
}
.nav nav a:not(.btn):hover { color: var(--navy); }
.nav nav a.is-active { color: var(--navy); }
.nav nav a.is-active::before {
  content: ""; position: absolute; left: 0; right: 0; bottom: -6px;
  height: 2px; background: var(--teal);
  border-radius: 2px;
}
/* Nav primary button gets a slightly tighter pad than hero buttons */
.nav nav .btn { padding: 11px 24px; font-size: var(--text-sm); }
.nav nav .btn .btn-arrow { font-size: 1em; }

@media (max-width: 880px) {
  .nav nav a:not(.btn) { display: none; }
  .nav-inner { height: 68px; }
}

/* =====  Reveal animations (CSS-only, fail-safe)
   Default: visible. JS adds `.js-on` to <html> to opt into hiding;
   IntersectionObserver removes `.js-on .reveal` hiding when in view.
   Approach: hide ONLY when JS is confirmed loaded AND element hasn't entered yet.
   ===== */
.reveal { opacity: 1; transform: none; transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out); }
.reveal-stagger > * { opacity: 1; transform: none; transition: opacity 600ms var(--ease-out), transform 600ms var(--ease-out); }

html.js-on .reveal:not(.is-in) {
  opacity: 0;
  transform: translateY(28px);
}
html.js-on .reveal-stagger:not(.is-in) > * {
  opacity: 0;
  transform: translateY(20px);
}
.reveal.is-in, .reveal-stagger.is-in > * { opacity: 1; transform: none; }
.reveal-stagger.is-in > *:nth-child(1) { transition-delay: 0ms; }
.reveal-stagger.is-in > *:nth-child(2) { transition-delay: 80ms; }
.reveal-stagger.is-in > *:nth-child(3) { transition-delay: 160ms; }
.reveal-stagger.is-in > *:nth-child(4) { transition-delay: 240ms; }
.reveal-stagger.is-in > *:nth-child(5) { transition-delay: 320ms; }
.reveal-stagger.is-in > *:nth-child(6) { transition-delay: 400ms; }
.reveal-stagger.is-in > *:nth-child(7) { transition-delay: 480ms; }
.reveal-stagger.is-in > *:nth-child(8) { transition-delay: 560ms; }
.reveal-stagger.is-in > *:nth-child(n+9) { transition-delay: 600ms; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-stagger > *,
  html.js-on .reveal:not(.is-in),
  html.js-on .reveal-stagger:not(.is-in) > * {
    opacity: 1 !important; transform: none !important; transition: none !important;
  }
}

/* =====  Hero  ===== */
.hero {
  padding: clamp(80px, 11vw, 140px) 0 clamp(56px, 8vw, 100px);
  position: relative;
  overflow: hidden;
  background: var(--white);
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(50% 60% at 85% 0%, var(--teal-soft) 0%, transparent 60%),
    radial-gradient(40% 50% at 0% 30%, rgba(11,17,32,0.04) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}
.hero .wrap { position: relative; z-index: 1; }

.hero-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 980px) {
  .hero-layout { grid-template-columns: 1fr; gap: 56px; }
}

.hero h1 {
  font-size: var(--text-display);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.98;
  margin: 24px 0 28px;
}
.hero .lede {
  font-size: var(--text-body-lg);
  color: var(--text-secondary);
  margin-bottom: 36px;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-cta.center { justify-content: center; }

/* Animated rating badge (right side of hero) */
.rating-badge {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 36px 32px;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
  position: relative;
  text-align: center;
  overflow: hidden;
}
.rating-badge::before {
  content: "";
  position: absolute; top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: conic-gradient(from 0deg,
    transparent 0deg,
    var(--teal-soft) 60deg,
    transparent 120deg,
    transparent 360deg);
  animation: spin 8s linear infinite;
  z-index: 0;
}
.rating-badge > * { position: relative; z-index: 1; }
.rating-badge .inner {
  background: var(--white);
  border-radius: calc(var(--r-xl) - 1px);
  padding: 24px 16px;
}
.rating-google-row {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: var(--text-xs); font-weight: 700;
  color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.16em;
  margin-bottom: 16px;
}
.rating-google-row::before {
  content: "G"; display: grid; place-items: center;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--google-star); color: var(--white); font-weight: 900;
}
.rating-num-big {
  font-size: clamp(72px, 9vw, 112px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--navy);
  margin-bottom: 8px;
}
.stars-big {
  color: var(--google-star);
  font-size: 24px;
  letter-spacing: 4px;
  margin-bottom: 12px;
  display: flex; justify-content: center;
}
.stars-big span { display: inline-block; animation: starPop 600ms var(--ease-spring) both; }
.stars-big span:nth-child(1) { animation-delay: 250ms; }
.stars-big span:nth-child(2) { animation-delay: 380ms; }
.stars-big span:nth-child(3) { animation-delay: 510ms; }
.stars-big span:nth-child(4) { animation-delay: 640ms; }
.stars-big span:nth-child(5) { animation-delay: 770ms; }
@keyframes starPop {
  0% { opacity: 0; transform: scale(0.3) rotate(-20deg); }
  100% { opacity: 1; transform: scale(1) rotate(0deg); }
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
.rating-sub {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 600;
}
.rating-sub strong { color: var(--navy); font-weight: 800; }

/* Trust mini-strip under hero */
.hero-trust {
  margin-top: 56px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 28px;
  padding-top: 36px;
  border-top: 1px solid var(--border);
}
.hero-trust-label {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-muted);
  font-weight: 700;
}
.hero-trust-items {
  display: flex; flex-wrap: wrap; gap: 22px; align-items: center;
  font-size: 14px; color: var(--text-secondary); font-weight: 600;
}
.hero-trust-items span { display: inline-flex; align-items: center; gap: 6px; }
.hero-trust-items span::before { content: "\2713"; color: var(--teal); font-weight: 800; }

/* =====  Marquee  ===== */
.marquee {
  background: var(--navy);
  color: var(--white);
  overflow: hidden;
  padding: 22px 0;
  position: relative;
}
.marquee::before, .marquee::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 80px;
  pointer-events: none; z-index: 2;
}
.marquee::before { left: 0; background: linear-gradient(90deg, var(--navy), transparent); }
.marquee::after  { right: 0; background: linear-gradient(-90deg, var(--navy), transparent); }
.marquee-track {
  display: flex; gap: 0;
  animation: marquee 95s linear infinite;
  width: max-content;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
  font-size: 17px;
  font-weight: 700;
  padding: 0 28px;
  display: inline-flex; align-items: center; gap: 14px;
  color: rgba(255,255,255,0.92);
  white-space: nowrap;
}
.marquee-item::after {
  content: "★"; color: var(--teal); font-size: 14px;
  margin-left: 6px;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* =====  Section spacing  ===== */
section { padding: var(--section-y) 0; }
section.tight { padding: clamp(3rem, 5vw, 5rem) 0; }

/* =====  Stats grid (big numbers)  ===== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.stat-card {
  background: var(--white);
  padding: 40px 28px 32px;
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: transform var(--duration) var(--ease-out),
              box-shadow var(--duration) var(--ease-out),
              border-color var(--duration) var(--ease-out);
}
.stat-card::before {
  content: "";
  position: absolute; left: 0; top: 0; height: 3px; width: 0;
  background: var(--teal);
  transition: width 700ms var(--ease-out);
}
.stat-card.is-in::before, .reveal-stagger.is-in .stat-card::before { width: 100%; }
.stat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); border-color: var(--teal-glow); }
.stat-card .stat-icon {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  background: var(--teal-soft);
  color: var(--teal-dark);
  border-radius: var(--r-md);
  margin-bottom: 20px;
  font-size: 20px;
}
.stat-num {
  font-size: clamp(36px, 4.4vw, 52px);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1;
  color: var(--navy);
  margin-bottom: 12px;
  font-variant-numeric: tabular-nums;
}
.stat-label {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
}
.stat-label strong { color: var(--navy); font-weight: 700; }
@media (max-width: 900px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .stats-grid { grid-template-columns: 1fr; } }

/* =====  Results section  ===== */
.results { background: var(--off-white); position: relative; }
.results::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(50% 60% at 50% 0%, var(--teal-subtle) 0%, transparent 60%);
  pointer-events: none;
}
.results .wrap { position: relative; }

/* =====  Featured Reviews preview  ===== */
.featured-preview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 920px) { .featured-preview { grid-template-columns: 1fr; } }

.section-cta-center { text-align: center; margin-top: 48px; }

/* =====  Review cards  ===== */
.filter-bar { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 48px; justify-content: center; }
.chip {
  background: transparent;
  border: 1.5px solid var(--border-strong);
  color: var(--text-secondary);
  padding: 10px 20px;
  border-radius: var(--r-full);
  font-size: var(--text-sm);
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font);
  transition: all var(--duration-fast) var(--ease-out);
  letter-spacing: 0.01em;
}
.chip:hover { border-color: var(--teal); color: var(--teal); transform: translateY(-1px); }
.chip.is-active {
  background: var(--navy); border-color: var(--navy); color: var(--white);
  box-shadow: 0 4px 14px rgba(11,17,32,0.18);
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 980px) { .review-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .review-grid { grid-template-columns: 1fr; } }

.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px;
  display: flex; flex-direction: column; gap: 14px;
  transition: transform var(--duration) var(--ease-out),
              box-shadow var(--duration) var(--ease-out),
              border-color var(--duration) var(--ease-out);
  position: relative;
  overflow: hidden;
}
.review-card::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--teal-dark));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--duration) var(--ease-out);
}
.review-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--teal-glow);
}
.review-card:hover::before { transform: scaleX(1); }
.review-card[data-featured="true"] {
  background: linear-gradient(180deg, var(--cream), var(--white));
}
.review-card[data-featured="true"]::after {
  content: "★ Featured";
  position: absolute; top: 16px; right: 16px;
  font-size: 10px; text-transform: uppercase; letter-spacing: 0.16em;
  background: var(--navy); color: var(--white);
  padding: 5px 10px; border-radius: var(--r-full);
  font-weight: 700;
}
.review-head { display: flex; align-items: center; gap: 14px; }
.review-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-soft), var(--off-white));
  display: grid; place-items: center;
  font-family: var(--font); font-weight: 800; color: var(--navy); font-size: 16px;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid var(--white);
  box-shadow: var(--shadow-sm);
}
.review-avatar img { width: 100%; height: 100%; object-fit: cover; }
.review-name { font-weight: 700; font-size: var(--text-body); color: var(--text-primary); }
.review-meta { font-size: 13px; color: var(--text-muted); display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.review-stars { color: var(--google-star); font-size: 15px; letter-spacing: 2px; line-height: 1; }
.review-highlight {
  font-family: var(--font);
  font-size: 19px;
  line-height: 1.35;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin: 0;
}
.review-text {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-secondary);
  margin: 0;
}
.review-trunc { color: var(--text-muted); }
.review-readmore {
  display: inline-block;
  margin-top: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--teal-hover);
  border-bottom: 1.5px solid currentColor;
  padding-bottom: 1px;
  transition: color var(--duration-fast) var(--ease-out);
}
.review-readmore:hover { color: var(--navy); }
.review-text em { color: var(--text-muted); font-style: italic; }
.review-source {
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.14em; font-weight: 700;
  color: var(--text-muted);
  padding-top: 14px;
  border-top: 1px dashed var(--border-strong);
  display: flex; justify-content: space-between; align-items: center;
  margin-top: auto;
}
.verified-badge { display: inline-flex; align-items: center; gap: 4px; color: var(--teal-dark); }
.verified-badge::before { content: "\2713"; font-size: 13px; font-weight: 800; }

.reviews-foot { text-align: center; margin-top: 56px; color: var(--text-muted); font-size: var(--text-sm); }
.reviews-foot a { color: var(--teal-hover); font-weight: 700; border-bottom: 1.5px solid currentColor; padding-bottom: 1px; }

/* =====  Video showcase  =====
   Featured 16:9 player on the left, vertical thumbnail strip on the right.
   On smaller screens the strip becomes a horizontal scroller below the player.
   ====================================================================== */
.video-showcase {
  background:
    radial-gradient(60% 80% at 20% 0%, rgba(5,195,195,0.08) 0%, transparent 60%),
    var(--off-white);
  position: relative;
  overflow: hidden;
}
.video-showcase::before {
  content: "";
  position: absolute; right: -10%; bottom: -10%;
  width: 60%; height: 60%;
  background: radial-gradient(circle, var(--teal-soft) 0%, transparent 70%);
  pointer-events: none;
}
.video-showcase .wrap { position: relative; }

.video-layout {
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  gap: 28px;
  align-items: stretch;   /* both columns share the same row height */
}
@media (max-width: 1020px) {
  .video-layout { grid-template-columns: 1fr; gap: 24px; align-items: start; }
}

/* === Main player === */
.video-main {
  background: var(--navy);
  border-radius: var(--r-xl);
  padding: 0;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
  display: flex;          /* allows .video-main-frame to fill */
  flex-direction: column;
  min-width: 0;
}
.video-main-frame {
  position: relative;
  width: 100%;
  /* 4:5 portrait-friendly frame for vertical testimonials (still works for landscape via object-fit: contain) */
  aspect-ratio: 4 / 5;
  background: var(--navy);
  overflow: hidden;
}
@media (max-width: 640px) {
  /* on very small screens use full 9:16 so vertical videos use all available height */
  .video-main-frame { aspect-ratio: 9 / 16; }
}
.video-main-frame iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
  z-index: 2;
}
/* Poster (shown until user clicks play) */
.video-poster {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, transparent 40%, rgba(11,17,32,0.85) 100%),
    var(--navy-mid);
  background-size: cover; background-position: center;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 3;
  transition: opacity var(--duration) var(--ease-out);
}
.video-poster.is-hidden { opacity: 0; pointer-events: none; }
.video-poster::before {
  content: "";
  position: absolute; inset: 0;
  background-image: var(--poster);
  background-size: cover;
  background-position: center;
  opacity: 0.65;
  z-index: 0;
}
.play-button {
  position: relative;
  z-index: 2;
  width: 92px; height: 92px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  display: grid; place-items: center;
  box-shadow: 0 12px 40px rgba(5,195,195,0.4), 0 0 0 0 rgba(5,195,195,0.5);
  transition: transform var(--duration) var(--ease-spring),
              box-shadow var(--duration) var(--ease-out);
  cursor: pointer;
  animation: pulsePlay 2.4s ease-in-out infinite;
}
.play-button:hover { transform: scale(1.08); box-shadow: 0 20px 60px rgba(5,195,195,0.6); }
.play-button svg { width: 36px; height: 36px; margin-left: 4px; fill: var(--navy); }
@keyframes pulsePlay {
  0%, 100% { box-shadow: 0 12px 40px rgba(5,195,195,0.4), 0 0 0 0 rgba(5,195,195,0.4); }
  50%       { box-shadow: 0 12px 40px rgba(5,195,195,0.4), 0 0 0 16px rgba(5,195,195,0); }
}

/* Caption pinned to bottom of player */
.video-caption {
  position: absolute; left: 0; right: 0; bottom: 0;
  z-index: 4;
  padding: 24px 28px 22px;
  color: var(--white);
  pointer-events: none;
  background: linear-gradient(180deg, transparent 0%, rgba(11,17,32,0.85) 100%);
}
.video-caption .eyebrow {
  background: rgba(5,195,195,0.18);
  color: var(--teal);
  border: 1px solid rgba(5,195,195,0.30);
  margin-bottom: 10px;
}
.video-caption h3 {
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 800;
  color: var(--white);
  margin: 0 0 6px;
  letter-spacing: -0.02em;
}
.video-caption .meta {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  display: flex; gap: 14px; flex-wrap: wrap;
  font-weight: 600;
}
.video-caption .meta span { display: inline-flex; align-items: center; gap: 6px; }
.video-caption .meta span::before { content: ""; width: 4px; height: 4px; border-radius: 50%; background: var(--teal); }
.video-caption .meta span:first-child::before { display: none; }

/* === Thumb strip (right side) === */
.video-thumbs {
  display: flex;
  flex-direction: column;
  gap: 14px;
  height: 100%;            /* fill the row, JS syncs to video player height */
  min-height: 0;           /* allow internal scroll */
  overflow-y: auto;
  padding-right: 6px;
  scrollbar-width: thin;
  scrollbar-color: var(--border-strong) transparent;
}
.video-thumbs::-webkit-scrollbar { width: 6px; }
.video-thumbs::-webkit-scrollbar-thumb { background: var(--border-strong); border-radius: 3px; }
.video-thumbs::-webkit-scrollbar-track { background: transparent; }

@media (max-width: 1020px) {
  .video-thumbs {
    flex-direction: row;
    overflow-x: auto;
    overflow-y: hidden;
    height: auto; max-height: none;
    padding-right: 0; padding-bottom: 8px;
    scroll-snap-type: x mandatory;
  }
  .video-thumb { flex: 0 0 280px; scroll-snap-align: start; }
}

.video-thumb {
  display: grid;
  grid-template-columns: 110px 1fr;   /* taller portrait thumb */
  gap: 16px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  padding: 14px;
  cursor: pointer;
  text-align: left;
  width: 100%;
  font-family: var(--font);
  align-items: center;
  flex: 1 1 0;                        /* distribute remaining height in the column */
  min-height: 0;
  transition: transform var(--duration) var(--ease-out),
              box-shadow var(--duration) var(--ease-out),
              border-color var(--duration) var(--ease-out),
              background var(--duration) var(--ease-out);
}
.video-thumb:hover {
  transform: translateY(-2px);
  border-color: var(--teal);
  box-shadow: var(--shadow-md);
}
.video-thumb.is-active {
  border-color: var(--teal);
  background: linear-gradient(135deg, var(--white) 0%, var(--teal-subtle) 100%);
  box-shadow: 0 8px 24px rgba(5,195,195,0.18);
}
.video-thumb .thumb-img {
  position: relative;
  width: 110px;
  aspect-ratio: 9 / 14;               /* portrait, matches vertical source videos */
  min-height: 110px;                  /* never collapse below this */
  border-radius: var(--r-sm);
  overflow: hidden;
  background: var(--navy-mid);
  flex-shrink: 0;
}
.video-thumb .thumb-img::after {
  content: "";
  position: absolute; inset: 0;
  background-image: var(--poster);
  background-size: cover;
  background-position: center;
}
.video-thumb .thumb-img::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,17,32,0.1), rgba(11,17,32,0.5));
  z-index: 2;
}
.video-thumb .thumb-play {
  position: absolute; top: 50%; left: 50%;
  width: 32px; height: 32px;
  transform: translate(-50%, -50%);
  background: rgba(255,255,255,0.95);
  border-radius: 50%;
  display: grid; place-items: center;
  z-index: 3;
  transition: transform var(--duration) var(--ease-spring), background var(--duration-fast);
}
.video-thumb:hover .thumb-play { transform: translate(-50%, -50%) scale(1.12); background: var(--teal); }
.video-thumb:hover .thumb-play svg { fill: var(--white); }
.video-thumb.is-active .thumb-play { background: var(--teal); }
.video-thumb.is-active .thumb-play svg { fill: var(--white); }
.thumb-play svg { width: 12px; height: 12px; fill: var(--navy); margin-left: 2px; }
.video-thumb .thumb-duration {
  position: absolute; bottom: 6px; right: 6px;
  z-index: 3;
  background: rgba(11,17,32,0.78);
  color: var(--white);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.video-thumb .thumb-body { min-width: 0; display: flex; flex-direction: column; gap: 4px; }
.video-thumb .thumb-client { font-size: 11px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--teal-hover); font-weight: 800; }
.video-thumb .thumb-headline { font-size: 15px; font-weight: 700; color: var(--text-primary); line-height: 1.35; letter-spacing: -0.01em; overflow: hidden; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
.video-thumb .thumb-role { font-size: 13px; color: var(--text-muted); }
.video-thumb.is-active .thumb-headline { color: var(--navy); }

/* External link below player */
.video-extlink {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 16px;
  padding: 8px 14px;
  border-radius: var(--r-full);
  background: var(--white);
  border: 1px solid var(--border);
  font-size: 13px; font-weight: 700;
  color: var(--text-secondary);
  transition: all var(--duration-fast) var(--ease-out);
}
.video-extlink:hover { color: var(--teal); border-color: var(--teal); }

/* =====  Pull quote  ===== */
.pull {
  background: var(--navy);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.pull::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(40% 60% at 20% 50%, rgba(5,195,195,0.16) 0%, transparent 60%),
    radial-gradient(50% 70% at 90% 50%, rgba(5,195,195,0.08) 0%, transparent 60%);
}
.pull::after {
  content: "\201C";
  position: absolute; top: -40px; left: 5%;
  font-family: 'Urbanist', serif;
  font-size: 22rem;
  line-height: 1;
  color: rgba(5,195,195,0.10);
  font-weight: 900;
  pointer-events: none;
}
.pull blockquote {
  margin: 0; max-width: 980px; text-align: center; margin-inline: auto;
  position: relative; z-index: 1;
}
.pull blockquote p {
  font-family: var(--font);
  font-size: clamp(28px, 3.6vw, 46px);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.025em;
  margin: 0 0 32px;
  color: var(--white);
}
.pull blockquote p em {
  color: var(--teal);
  font-style: normal;
  font-weight: 800;
  position: relative;
  white-space: nowrap;
}
.pull blockquote p em::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: -4px;
  height: 3px;
  background: var(--teal);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 900ms var(--ease-out) 400ms;
}
.pull.is-in blockquote p em::after { transform: scaleX(1); }
.pull blockquote cite {
  font-style: normal; font-size: 13px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.7); font-weight: 700;
  display: inline-flex; align-items: center; gap: 10px;
}
.pull blockquote cite::before { content: "★"; color: var(--teal); }

/* =====  Guarantees  ===== */
.guarantee-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.guarantee {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 40px 32px 36px;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: transform var(--duration) var(--ease-out),
              box-shadow var(--duration) var(--ease-out),
              border-color var(--duration) var(--ease-out);
}
.guarantee::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--teal-dark));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--duration) var(--ease-out);
}
.guarantee:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--teal-glow);
}
.guarantee:hover::before { transform: scaleX(1); }
.g-num {
  font-family: var(--font);
  font-size: 56px;
  font-weight: 900;
  color: var(--teal);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 18px;
  display: inline-block;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0.85;
}
.guarantee h3 { margin-bottom: 14px; font-size: 22px; font-weight: 800; letter-spacing: -0.02em; }
.guarantee p { font-size: 15px; line-height: 1.65; color: var(--text-secondary); margin: 0; }
.guarantee p strong { color: var(--navy); font-weight: 700; }
@media (max-width: 860px) { .guarantee-grid { grid-template-columns: 1fr; } }

/* =====  Strip (logos / sources)  ===== */
.strip {
  background: var(--navy);
  color: var(--white);
  padding: 28px 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}
.strip-inner {
  display: flex; justify-content: space-between; flex-wrap: wrap;
  gap: 32px; align-items: center;
}
.strip-item { display: flex; align-items: center; gap: 12px; }
.strip-icon {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: grid; place-items: center;
  font-weight: 800; font-size: 14px; color: var(--teal);
}
.strip-text { display: flex; flex-direction: column; line-height: 1.2; }
.strip-label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.16em; color: rgba(255,255,255,0.5); font-weight: 700; }
.strip-value { font-family: var(--font); font-size: 16px; font-weight: 700; color: var(--white); }

/* =====  Clients tiles  ===== */
.clients { background: var(--off-white); }
.client-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.client {
  background: var(--white);
  padding: 26px 22px;
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 6px;
  transition: transform var(--duration) var(--ease-out),
              box-shadow var(--duration) var(--ease-out),
              border-color var(--duration) var(--ease-out);
  position: relative;
}
.client:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--teal-glow);
}
.client strong { font-size: 16px; font-weight: 800; color: var(--navy); letter-spacing: -0.015em; }
.client span { font-size: 13px; color: var(--text-muted); }
@media (max-width: 900px) { .client-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .client-grid { grid-template-columns: 1fr; } }

/* =====  Process steps  ===== */
.process { background: var(--navy); color: var(--white); position: relative; overflow: hidden; }
.process::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(40% 50% at 50% 0%, rgba(5,195,195,0.10), transparent 60%);
}
.process .section-head h2 { color: var(--white); }
.process .section-head .lede { color: rgba(255,255,255,0.65); }
.process-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  position: relative; z-index: 1;
}
.process-step {
  background: var(--navy-mid);
  border: 1px solid var(--border-light);
  border-radius: var(--r-lg);
  padding: 36px 28px;
  position: relative;
  transition: transform var(--duration) var(--ease-out),
              border-color var(--duration) var(--ease-out),
              background var(--duration) var(--ease-out);
}
.process-step:hover {
  transform: translateY(-4px);
  border-color: var(--teal);
  background: var(--navy-light);
}
.process-num {
  display: inline-grid; place-items: center;
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: var(--white);
  border-radius: var(--r-md);
  font-weight: 900; font-size: 22px;
  margin-bottom: 22px;
  box-shadow: 0 8px 24px rgba(5,195,195,0.32);
}
.process-step h3 { color: var(--white); font-size: 20px; margin-bottom: 12px; font-weight: 800; }
.process-step p { color: rgba(255,255,255,0.7); font-size: 15px; line-height: 1.65; margin: 0; }
@media (max-width: 860px) { .process-grid { grid-template-columns: 1fr; } }

/* =====  FAQ  ===== */
.faq-list { margin-top: 48px; border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 28px 0;
  font-family: var(--font);
  font-size: clamp(18px, 1.9vw, 22px);
  font-weight: 700;
  color: var(--text-primary);
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
  letter-spacing: -0.02em;
  transition: color var(--duration-fast) var(--ease-out);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  display: grid; place-items: center;
  width: 36px; height: 36px;
  background: var(--teal-soft);
  border-radius: 50%;
  color: var(--teal);
  font-size: 24px; font-weight: 300; line-height: 0;
  transition: transform var(--duration) var(--ease-out), background var(--duration) var(--ease-out);
  flex-shrink: 0;
}
.faq-item summary:hover { color: var(--teal); }
.faq-item summary:hover::after { background: var(--teal); color: var(--white); }
.faq-item[open] summary::after { content: "\2013"; background: var(--navy); color: var(--white); transform: rotate(180deg); }
.faq-item p {
  margin: 0 0 32px;
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.75;
  max-width: 800px;
}

/* =====  CTA blocks  ===== */
.cta { text-align: center; }
.cta-light {
  background:
    radial-gradient(50% 70% at 50% 0%, var(--teal-soft) 0%, transparent 60%),
    var(--white);
}
.cta-dark {
  background:
    radial-gradient(50% 70% at 50% 100%, rgba(5,195,195,0.18) 0%, transparent 60%),
    var(--navy);
  color: var(--white);
}
.cta-dark h2, .cta-dark .h2 { color: var(--white); }
.cta-dark .lede { color: rgba(255,255,255,0.75); margin-left: auto; margin-right: auto; }
.cta .lede { margin: 18px auto 36px; }
.cta-dark .btn-ghost {
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.cta-dark .btn-ghost:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}

/* =====  Page header for interior pages  ===== */
.page-head {
  padding: clamp(90px, 11vw, 140px) 0 clamp(48px, 6vw, 80px);
  text-align: center;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.page-head::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(50% 80% at 50% 0%, var(--teal-soft) 0%, transparent 70%);
}
.page-head .wrap { position: relative; }
.page-head h1 {
  max-width: 880px;
  margin: 16px auto 24px;
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: -0.035em;
  font-weight: 900;
}
.page-head .lede { margin-left: auto; margin-right: auto; margin-top: 0; }

.breadcrumb {
  display: inline-flex; justify-content: center; gap: 6px; align-items: center;
  font-size: var(--text-xs); text-transform: uppercase; letter-spacing: 0.14em;
  font-weight: 700; color: var(--text-muted); margin-bottom: 24px;
  padding: 6px 14px; background: var(--off-white); border-radius: var(--r-full);
  border: 1px solid var(--border);
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--teal); }
.breadcrumb span::before { content: "\203A"; padding-right: 6px; color: var(--text-muted); }

/* =====  About page bits  ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: start;
}
.about-grid h2 { margin-bottom: 20px; }
.about-grid > div > .eyebrow { margin-bottom: 18px; }
.about-grid p { font-size: var(--text-body); color: var(--text-secondary); line-height: 1.75; margin: 0 0 16px; }
.about-grid p strong { color: var(--navy); font-weight: 700; }
@media (max-width: 920px) { .about-grid { grid-template-columns: 1fr; gap: 48px; } }

.info-list { list-style: none; padding: 0; margin: 0; }
.info-list li {
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  display: flex; justify-content: space-between; gap: 24px;
  align-items: center;
}
.info-list li:last-child { border-bottom: none; }
.info-list .label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
  color: var(--text-muted);
}
.info-list .val {
  font-weight: 700;
  color: var(--text-primary);
  text-align: right;
  font-size: 15px;
}
.info-list .val a { color: var(--teal-hover); font-weight: 700; }

/* =====  Legal prose (privacy, terms, 404 helpers)  ===== */
.legal-prose {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.75;
}
.legal-prose h2 {
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin: 48px 0 14px;
  padding-top: 8px;
  border-top: 1px solid var(--border);
  position: relative;
}
.legal-prose h2:first-of-type { border-top: 0; padding-top: 0; margin-top: 0; }
.legal-prose h2::before {
  content: "";
  position: absolute; top: -1px; left: 0;
  width: 56px; height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--teal-dark));
  border-radius: 2px;
}
.legal-prose h2:first-of-type::before { display: none; }
.legal-prose p { margin: 0 0 16px; }
.legal-prose ul {
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
}
.legal-prose ul li {
  position: relative;
  padding: 8px 0 8px 28px;
  border-bottom: 1px dashed var(--border);
}
.legal-prose ul li:last-child { border-bottom: 0; }
.legal-prose ul li::before {
  content: "";
  position: absolute; left: 6px; top: 18px;
  width: 8px; height: 8px;
  background: var(--teal);
  border-radius: 50%;
  box-shadow: 0 0 0 4px var(--teal-soft);
}
.legal-prose strong { color: var(--navy); font-weight: 700; }
.legal-prose a { color: var(--teal-hover); font-weight: 600; border-bottom: 1px solid currentColor; padding-bottom: 1px; }
.legal-prose a:hover { color: var(--navy); }
.legal-prose code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.9em;
  background: var(--off-white);
  padding: 2px 6px;
  border-radius: 4px;
  color: var(--navy);
  border: 1px solid var(--border);
}

/* =====  Footer  ===== */
.footer {
  background: var(--navy);
  color: var(--white);
  padding: 80px 0 32px;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--teal), transparent);
  opacity: 0.4;
}
.footer a { color: rgba(255,255,255,0.85); }
.footer a:hover { color: var(--teal); }
.footer-inner {
  display: grid; grid-template-columns: 1.6fr repeat(3, 1fr); gap: 56px;
}
.footer .brand-text strong { color: var(--white); }
.footer .brand-text em { color: var(--teal); }
.footer .muted { color: rgba(255,255,255,0.55); margin-top: 18px; line-height: 1.65; font-size: var(--text-sm); }
.footer strong { display: block; font-family: var(--font); font-size: 12px; text-transform: uppercase; letter-spacing: 0.18em; color: var(--teal); margin-bottom: 16px; font-weight: 800; }
.footer-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; font-size: var(--text-sm); color: rgba(255,255,255,0.85); }
.footer-fine {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  border-top: 1px solid var(--border-light);
  margin-top: 64px; padding-top: 28px;
  font-size: 13px; color: rgba(255,255,255,0.5);
}
@media (max-width: 760px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
}

/* =====  Print  ===== */
@media print {
  .nav, .footer, .cta, .filter-bar, .hero-cta, .marquee { display: none; }
  body { background: white; }
  .reveal, .reveal-stagger > * { opacity: 1 !important; transform: none !important; }
  .review-card, .stat-card, .guarantee { box-shadow: none; border: 1px solid #ccc; }
}
