/* ============================================
   Leak Repair Florida — Premium Design System
   leakrepairflorida.com
   Coastal navy-teal + warm gold accent
   ============================================ */

:root {
  --navy: #0a3d4d;
  --navy-deep: #062a3a;
  --navy-soft: #0f5063;
  --teal: #0e7490;
  --teal-mid: #06a3b8;
  --teal-bright: #22d3ee;
  --accent: #fbbf24;
  --accent-deep: #f59e0b;
  --accent-soft: #fef3c7;
  --accent-glow: rgba(251, 191, 36, 0.32);
  --water: #06a3b8;
  --water-soft: #e0f7fa;
  --water-mist: #f0fbfc;
  --cream: #fdfaf6;
  --warm: #f5f1ea;
  --text: #0c1924;
  --text-muted: #4a5668;
  --text-light: #8693a3;
  --bg: #ffffff;
  --bg-soft: #f7fafb;
  --bg-card: #ffffff;
  --border: #e4e8ee;
  --border-soft: #eef1f5;
  --success: #0ea25b;
  --danger: #dc2626;
  --gold: #f5b400;
  --shadow-sm: 0 1px 3px rgba(10, 61, 77, 0.06);
  --shadow-md: 0 6px 20px rgba(10, 61, 77, 0.08);
  --shadow-lg: 0 18px 50px rgba(10, 61, 77, 0.16);
  --shadow-xl: 0 28px 80px rgba(10, 61, 77, 0.24);
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --max-w: 1200px;
  --font-display: 'Bricolage Grotesque', 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

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

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "ss01", "cv11";
}

img, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--teal-mid); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--navy); }
p { margin-bottom: 1em; color: var(--text); }
p:last-child { margin-bottom: 0; }
ul, ol { padding-left: 1.4em; margin-bottom: 1em; }
li { margin-bottom: 0.4em; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.05;
  letter-spacing: -0.035em;
}
h1 { font-size: clamp(2.4rem, 6.5vw, 4.6rem); margin-bottom: 0.5em; font-weight: 600; }
h2 { font-size: clamp(1.9rem, 4.2vw, 3rem); margin-bottom: 0.55em; font-weight: 600; letter-spacing: -0.03em; }
h3 { font-size: clamp(1.18rem, 2vw, 1.4rem); margin-bottom: 0.4em; font-weight: 600; letter-spacing: -0.02em; line-height: 1.25; }
h4 { font-size: 1.05rem; margin-bottom: 0.3em; font-weight: 600; }

/* ============== Icon System ============== */
.ico { width: 18px; height: 18px; display: inline-block; flex-shrink: 0; vertical-align: middle; }
.ico-star { width: 16px; height: 16px; color: var(--gold); display: inline-block; }

/* ============== Layout ============== */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
section { padding: 100px 0; position: relative; }
section.tight { padding: 60px 0; }
section.bg-soft { background: var(--bg-soft); }
section.bg-cream { background: var(--cream); }
section.bg-navy { background: var(--navy); color: #d9e6e4; }
section.bg-navy h2, section.bg-navy h3, section.bg-navy h4 { color: #fff; }

/* ============== Header ============== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--border-soft);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 76px; gap: 24px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-mark { width: 40px; height: 40px; flex-shrink: 0; }
.brand-text {
  font-family: var(--font-display); font-weight: 700; font-size: 1.32rem;
  color: var(--navy); letter-spacing: -0.035em; line-height: 1;
}
.brand-text em { color: var(--accent-deep); font-style: normal; font-weight: 700; }

.nav-links { display: flex; gap: 30px; list-style: none; padding: 0; margin: 0; }
.nav-links li { margin: 0; position: relative; }
.nav-links a {
  color: var(--text); font-weight: 500; font-size: 0.95rem;
  padding: 6px 0; position: relative;
  display: inline-flex; align-items: center; gap: 4px;
}
.nav-links a::after {
  content: ""; position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: var(--accent);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.25s ease;
}
.nav-links a:hover { color: var(--navy); }
.nav-links a:hover::after { transform: scaleX(1); }

.has-dropdown .caret { width: 12px; height: 12px; transition: transform 0.2s; }
.has-dropdown:hover .caret { transform: rotate(90deg); }
.dropdown {
  position: absolute; top: calc(100% + 12px); left: -20px;
  background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  padding: 12px; min-width: 280px;
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
  border: 1px solid var(--border);
}
.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-list { list-style: none; padding: 0; margin: 0; }
.dropdown-list li { margin: 0; }
.dropdown-list a {
  display: block; padding: 10px 14px; border-radius: 10px;
  font-size: 0.92rem; color: var(--text); font-weight: 500;
}
.dropdown-list a::after { display: none; }
.dropdown-list a:hover { background: var(--water-soft); color: var(--navy); }
.dropdown-list a strong { color: var(--accent-deep); }

.header-cta { display: inline-flex; align-items: center; gap: 16px; }
.tel-link {
  font-weight: 700; color: var(--navy); font-size: 1.02rem;
  display: inline-flex; align-items: center; gap: 8px;
  font-feature-settings: "tnum";
}
.tel-link .ico { color: var(--accent-deep); width: 18px; height: 18px; }
.tel-link:hover { color: var(--accent-deep); }
.menu-toggle {
  display: none; width: 40px; height: 40px;
  background: var(--bg-soft); border: 1px solid var(--border);
  border-radius: 10px; cursor: pointer;
  flex-direction: column; gap: 4px; align-items: center; justify-content: center; padding: 0;
}
.menu-toggle span { width: 18px; height: 2px; background: var(--navy); border-radius: 2px; }

/* ============== Buttons ============== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 15px 28px; border-radius: 999px;
  font-family: var(--font-body); font-weight: 600; font-size: 0.98rem;
  letter-spacing: -0.005em; text-decoration: none; border: 0;
  cursor: pointer; transition: all 0.2s ease; white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-primary {
  background: var(--navy); color: #fff;
  box-shadow: 0 6px 22px rgba(10, 61, 77, 0.32);
}
.btn-primary:hover { background: var(--navy-deep); color: #fff; box-shadow: 0 12px 30px rgba(10, 61, 77, 0.42); }
.btn-accent {
  background: var(--accent); color: var(--navy);
  box-shadow: 0 6px 22px var(--accent-glow);
}
.btn-accent:hover { background: var(--accent-deep); color: var(--navy); box-shadow: 0 12px 30px rgba(245, 158, 11, 0.45); }
.btn-secondary {
  background: transparent; color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-secondary:hover { background: var(--navy); color: #fff; }
.btn-ghost { background: rgba(255,255,255,.08); color: #fff; border: 1px solid rgba(255,255,255,.18); }
.btn-ghost:hover { background: rgba(255,255,255,.16); color: #fff; }
.btn-lg { padding: 18px 36px; font-size: 1.05rem; }
.btn-arrow {
  width: 22px; height: 22px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
}
.btn-accent .btn-arrow { background: rgba(10, 61, 77, 0.18); }
.btn-primary .btn-arrow { background: rgba(255, 255, 255, 0.18); }
.btn-arrow .ico { width: 12px; height: 12px; }

/* ============== Hero ============== */
.hero {
  padding: 70px 0 90px; position: relative; overflow: hidden;
  background: var(--cream);
}
.hero-bg-pattern {
  position: absolute; inset: 0; opacity: 0.6; pointer-events: none;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(6, 163, 184, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(251, 191, 36, 0.05) 0%, transparent 50%);
}
.hero-grid-bg {
  position: absolute; inset: 0; pointer-events: none; opacity: 0.6;
  background-image:
    linear-gradient(rgba(10, 61, 77, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 61, 77, 0.025) 1px, transparent 1px);
  background-size: 48px 48px;
}
.hero > .container { position: relative; z-index: 2; }
.hero-grid {
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: 60px; align-items: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  background: #fff; color: var(--navy);
  font-family: var(--font-body); font-weight: 600;
  font-size: 0.82rem; padding: 10px 18px; border-radius: 999px;
  margin-bottom: 24px; letter-spacing: 0.04em; text-transform: uppercase;
  border: 1px solid var(--border); box-shadow: var(--shadow-sm);
}
.live-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--success); animation: pulse-green 2s infinite;
  flex-shrink: 0;
}
@keyframes pulse-green {
  0% { box-shadow: 0 0 0 0 rgba(14, 162, 91, 0.5); }
  70% { box-shadow: 0 0 0 10px rgba(14, 162, 91, 0); }
  100% { box-shadow: 0 0 0 0 rgba(14, 162, 91, 0); }
}
.hero h1 { margin-bottom: 22px; }
.hero h1 .accent { color: var(--teal-mid); font-style: italic; font-weight: 500; }
.hero h1 .underline { position: relative; display: inline-block; }
.hero h1 .underline::after {
  content: ""; position: absolute; bottom: 0.05em; left: -2%; right: -2%;
  height: 0.18em; background: var(--accent);
  opacity: 0.85; border-radius: 2px; z-index: -1;
}
.hero .lead {
  font-size: 1.2rem; color: var(--text-muted);
  margin-bottom: 32px; line-height: 1.55; max-width: 560px;
}
.hero-cta-row { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 36px; }
.hero-trust {
  display: flex; flex-wrap: wrap; gap: 24px;
  font-size: 0.92rem; color: var(--text-muted);
  padding-top: 26px; border-top: 1px solid var(--border);
}
.hero-trust div { display: inline-flex; align-items: center; gap: 8px; font-weight: 500; }
.hero-trust .ico { color: var(--success); width: 16px; height: 16px; }

/* Hero illustration (right side) */
.hero-illustration { position: relative; width: 100%; aspect-ratio: 1 / 1; }
.hero-illust-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%);
  border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-xl);
}
.hero-illust-bg::before {
  content: ""; position: absolute; top: -30%; right: -20%;
  width: 80%; height: 80%;
  background: radial-gradient(circle, rgba(251, 191, 36, 0.2) 0%, transparent 65%);
}
.hero-illust-svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-floating-card {
  position: absolute; background: #fff; border-radius: var(--radius);
  box-shadow: var(--shadow-lg); padding: 16px 18px;
  display: flex; align-items: center; gap: 12px; z-index: 2;
}
.hero-card-1 { top: 28px; left: -28px; animation: float 4s ease-in-out infinite; }
.hero-card-2 { bottom: 40px; right: -20px; animation: float 4s ease-in-out infinite 1s; }
.hero-card-3 { top: 50%; right: -36px; transform: translateY(-50%); animation: float-center 4s ease-in-out infinite 2s; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes float-center { 0%, 100% { transform: translateY(-50%); } 50% { transform: translateY(calc(-50% - 8px)); } }
.hero-card-icon {
  width: 38px; height: 38px; border-radius: 10px;
  background: var(--water-soft); color: var(--teal-mid);
  display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.hero-card-icon.gold { background: var(--accent-soft); color: var(--accent-deep); }
.hero-card-icon.success-soft { background: #e6f7ee; color: var(--success); }
.hero-card-icon svg { width: 20px; height: 20px; }
.hero-card-text strong {
  display: block; color: var(--navy); font-family: var(--font-display);
  font-weight: 600; font-size: 0.95rem; line-height: 1.1;
}
.hero-card-text small { display: block; color: var(--text-muted); font-size: 0.78rem; margin-top: 2px; }

/* ============== Marquee Ticker ============== */
.ticker-band {
  background: var(--navy); color: #fff;
  padding: 22px 0; overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.ticker-track {
  display: flex; gap: 60px;
  animation: ticker 38s linear infinite; white-space: nowrap;
}
.ticker-item {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--font-display); font-weight: 500;
  font-size: 1.4rem; letter-spacing: -0.02em;
  color: #fff; flex-shrink: 0;
}
.ticker-item .dot { width: 8px; height: 8px; background: var(--accent); border-radius: 50%; flex-shrink: 0; }
.ticker-item em { color: var(--accent); font-style: normal; font-weight: 600; }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ============== Stats Band ============== */
.stats-band { padding: 80px 0; background: #fff; border-bottom: 1px solid var(--border-soft); position: relative; overflow: hidden; }
.stats-band-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
.stat-card { text-align: left; padding: 0 32px; border-right: 1px solid var(--border-soft); }
.stat-card:first-child { padding-left: 0; }
.stat-card:last-child { border-right: 0; padding-right: 0; }
.stat-num {
  font-family: var(--font-display); font-size: clamp(2.6rem, 5.5vw, 4.4rem);
  font-weight: 600; color: var(--navy); letter-spacing: -0.045em;
  line-height: 0.95; margin-bottom: 12px; font-feature-settings: "tnum";
}
.stat-num span { color: var(--accent-deep); font-size: 0.55em; font-weight: 500; margin-left: 4px; }
.stat-num sub { color: var(--accent-deep); font-size: 0.4em; font-weight: 500; vertical-align: baseline; margin-left: 4px; }
.stat-label { color: var(--text-muted); font-size: 0.92rem; line-height: 1.4; letter-spacing: 0.02em; }

/* ============== Section Heads ============== */
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--accent-deep); font-family: var(--font-body);
  font-weight: 600; font-size: 0.82rem;
  text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 14px;
}
.section-eyebrow::before { content: ""; width: 28px; height: 1.5px; background: var(--accent); display: inline-block; }
.section-head { text-align: center; max-width: 740px; margin: 0 auto 56px; }
.section-head h2 { margin-bottom: 16px; }
.section-head p { color: var(--text-muted); font-size: 1.1rem; }
.section-head.left { text-align: left; margin-left: 0; }
.section-head.left .section-eyebrow { justify-content: flex-start; }

/* ============== Bento Grid (Services) ============== */
.services-bento {
  display: grid; grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: minmax(280px, auto); gap: 18px;
}
.bento-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  position: relative; display: flex; flex-direction: column; overflow: hidden;
}
.bento-card:hover {
  transform: translateY(-4px); box-shadow: var(--shadow-lg);
  border-color: rgba(6, 163, 184, 0.4);
}
.bento-bg-svg {
  position: absolute; bottom: -20px; right: -20px;
  width: 160px; height: 160px; opacity: 0.05;
  color: var(--navy); pointer-events: none;
}
.bento-card:hover .bento-bg-svg { opacity: 0.12; color: var(--teal-mid); transition: all 0.4s; }
.bento-icon {
  width: 56px; height: 56px;
  background: var(--water-soft); color: var(--teal-mid);
  border-radius: 14px; display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 22px; position: relative; z-index: 1;
}
.bento-icon svg { width: 30px; height: 30px; }
.bento-card h3 { margin-bottom: 12px; font-size: 1.32rem; position: relative; z-index: 1; }
.bento-card p {
  color: var(--text-muted); font-size: 0.96rem; margin-bottom: 20px;
  flex-grow: 1; position: relative; z-index: 1;
}
.bento-link {
  color: var(--navy); font-weight: 600; font-size: 0.92rem;
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: auto; position: relative; z-index: 1;
}
.bento-link .ico { width: 16px; height: 16px; transition: transform 0.2s; color: var(--accent-deep); }
.bento-card:hover .bento-link { color: var(--accent-deep); }
.bento-card:hover .bento-link .ico { transform: translateX(6px); }

.bento-wide { grid-column: span 3; }
.bento-md { grid-column: span 2; }
.bento-tall { grid-column: span 2; grid-row: span 2; }
.bento-sm { grid-column: span 2; }
.bento-default { grid-column: span 2; }

.bento-featured {
  grid-column: span 3; grid-row: span 2;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%);
  color: #fff; border: 0;
}
.bento-featured::before {
  content: ""; position: absolute; top: -30%; right: -20%;
  width: 70%; height: 70%;
  background: radial-gradient(circle, rgba(251, 191, 36, 0.28) 0%, transparent 60%);
}
.bento-featured h3, .bento-featured p, .bento-featured .bento-link { color: #fff; }
.bento-featured p { color: rgba(255, 255, 255, 0.78); font-size: 1.02rem; }
.bento-featured .bento-icon { background: var(--accent); color: var(--navy); width: 64px; height: 64px; }
.bento-featured .bento-icon svg { width: 34px; height: 34px; }
.bento-featured h3 { font-size: 1.85rem; }
.bento-featured .bento-link { color: var(--accent); font-size: 1rem; }
.bento-featured .bento-extra {
  display: flex; gap: 20px; margin-top: 24px;
  padding-top: 24px; border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative; z-index: 1;
}
.bento-featured .bento-stat { flex: 1; }
.bento-featured .bento-stat-num {
  font-family: var(--font-display); font-size: 1.8rem; font-weight: 600;
  color: #fff; letter-spacing: -0.03em; line-height: 1; margin-bottom: 4px;
}
.bento-featured .bento-stat-num sup { color: var(--accent); font-size: 0.55em; font-weight: 500; top: -0.5em; }
.bento-featured .bento-stat-lbl { font-size: 0.78rem; color: rgba(255, 255, 255, 0.65); text-transform: uppercase; letter-spacing: 0.05em; }

/* ============== Signs / Symptoms Grid ============== */
.signs-section { background: var(--cream); position: relative; overflow: hidden; }
.signs-section::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(circle at 80% 20%, rgba(6, 163, 184, 0.06) 0%, transparent 50%);
}
.signs-grid {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 18px; position: relative;
}
.sign-card {
  padding: 28px 22px; background: #fff;
  border-radius: var(--radius-lg); border: 1px solid var(--border);
  transition: transform 0.25s, box-shadow 0.25s; position: relative; overflow: hidden;
}
.sign-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.sign-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: linear-gradient(90deg, var(--accent) 0%, var(--accent-deep) 100%);
}
.sign-num {
  font-family: var(--font-display); font-size: 2.6rem; font-weight: 600;
  color: var(--bg-soft); -webkit-text-stroke: 1.5px var(--accent-deep);
  line-height: 1; margin-bottom: 10px; letter-spacing: -0.04em;
}
.sign-icon {
  width: 44px; height: 44px; background: var(--water-soft); border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--teal-mid); margin-bottom: 16px;
}
.sign-icon .ico { width: 22px; height: 22px; }
.sign-card h3 { color: var(--navy); font-size: 1.08rem; margin-bottom: 10px; letter-spacing: -0.015em; }
.sign-card p { color: var(--text-muted); font-size: 0.93rem; line-height: 1.55; }

/* ============== Process Timeline ============== */
.process-section { background: #fff; }
.process-steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  position: relative; z-index: 1;
}
.process-step { text-align: center; padding: 0 14px; }
.process-step-circle {
  width: 110px; height: 110px; border-radius: 50%;
  background: #fff; display: inline-flex; align-items: center; justify-content: center;
  position: relative; margin: 0 auto 22px;
  border: 2px solid var(--border); transition: all 0.3s;
}
.process-step:hover .process-step-circle {
  transform: scale(1.05); border-color: var(--accent);
  box-shadow: 0 10px 30px var(--accent-glow);
}
.process-step-num {
  position: absolute; top: -8px; right: -4px;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--accent); color: var(--navy);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 1.1rem;
  border: 3px solid #fff; box-shadow: 0 4px 12px var(--accent-glow);
}
.process-step-svg { width: 48px; height: 48px; color: var(--navy); }
.process-step h3 { font-size: 1.18rem; margin-bottom: 8px; }
.process-step p { color: var(--text-muted); font-size: 0.94rem; }

/* ============== Comparison Cards ============== */
.compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.compare-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 36px;
  position: relative; overflow: hidden;
}
.compare-card.highlight {
  border-color: var(--teal-mid); border-width: 2px;
  background: linear-gradient(180deg, #fff 0%, var(--water-mist) 100%);
}
.compare-illust {
  width: 100%; height: 140px; margin-bottom: 24px;
  border-radius: var(--radius); background: var(--bg-soft);
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.compare-card.highlight .compare-illust { background: linear-gradient(135deg, var(--water-soft) 0%, #fff 100%); }
.compare-illust svg { width: 100%; height: 100%; }
.compare-head { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.compare-card h3 {
  color: var(--navy); margin: 0; font-size: 1.6rem;
  display: inline-flex; align-items: center; gap: 12px;
}
.badge {
  font-size: 0.68rem; background: var(--accent); color: var(--navy);
  padding: 4px 12px; border-radius: 999px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.05em;
}
.badge-mute { background: var(--bg-soft); color: var(--text-muted); border: 1px solid var(--border); }
.compare-card > p { color: var(--text-muted); font-size: 1rem; margin-bottom: 18px; }
.compare-card ul { list-style: none; padding: 0; margin: 0; }
.compare-card ul li {
  padding: 12px 0 12px 30px; border-bottom: 1px solid var(--border-soft);
  font-size: 0.96rem; color: var(--text); position: relative;
}
.compare-card ul li::before {
  content: ""; position: absolute; left: 0; top: 16px;
  width: 18px; height: 18px; background: var(--success); border-radius: 50%;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-size: 12px 12px; background-position: center; background-repeat: no-repeat;
}
.compare-card ul li:last-child { border-bottom: 0; }

/* ============== Decision Matrix Table ============== */
.matrix-wrap { overflow-x: auto; }
.matrix-table {
  width: 100%; border-collapse: separate; border-spacing: 0;
  background: #fff; border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--border);
  font-family: var(--font-body);
}
.matrix-table thead tr { background: var(--navy); color: #fff; }
.matrix-table th {
  text-align: left; padding: 18px 22px;
  font-family: var(--font-display); font-weight: 600;
  font-size: 0.95rem; letter-spacing: -0.01em;
}
.matrix-table tbody { font-size: 0.95rem; }
.matrix-table tbody tr { border-top: 1px solid var(--border-soft); }
.matrix-table td { padding: 18px 22px; color: var(--text-muted); }
.matrix-table td:first-child { font-weight: 500; color: var(--navy); }
.matrix-table td a { font-weight: 600; }

/* ============== Areas Section ============== */
.areas-section { background: var(--cream); }
.areas-layout {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 50px; align-items: start;
}
.areas-map {
  background: var(--navy); border-radius: var(--radius-xl);
  padding: 36px 30px; position: relative; overflow: hidden;
  min-height: 460px; box-shadow: var(--shadow-lg);
}
.areas-map::before {
  content: ""; position: absolute; top: -20%; right: -20%;
  width: 70%; height: 70%;
  background: radial-gradient(circle, rgba(251, 191, 36, 0.16) 0%, transparent 60%);
}
.areas-map-title {
  font-family: var(--font-display); color: #fff;
  font-size: 1.1rem; font-weight: 500; margin-bottom: 4px;
  position: relative; letter-spacing: -0.02em;
}
.areas-map-sub { color: rgba(255, 255, 255, 0.6); font-size: 0.88rem; margin-bottom: 24px; position: relative; }
.areas-map-svg { position: relative; width: 100%; }
.areas-map-stats {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 14px; margin-top: 28px; padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12); position: relative;
}
.areas-map-stat-num {
  font-family: var(--font-display); color: #fff;
  font-size: 1.8rem; font-weight: 600; letter-spacing: -0.03em; line-height: 1;
}
.areas-map-stat-num span { color: var(--accent); font-size: 0.6em; }
.areas-map-stat-lbl { color: rgba(255, 255, 255, 0.6); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.05em; margin-top: 6px; }

.areas-content h2 { margin-bottom: 16px; }
.areas-content > p { color: var(--text-muted); margin-bottom: 28px; font-size: 1.05rem; }
.area-region-label {
  font-family: var(--font-display); font-weight: 600;
  color: var(--navy); margin: 24px 0 14px;
  font-size: 1rem; letter-spacing: -0.01em;
  display: flex; align-items: center; gap: 10px;
}
.area-region-label .ico { color: var(--accent-deep); width: 18px; height: 18px; }
.area-region-label::after { content: ""; flex: 1; height: 1px; background: var(--border); margin-left: 8px; }
.areas-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 10px;
}
.area-pill {
  display: block; padding: 12px 14px;
  border: 1px solid var(--border); border-radius: 10px;
  background: #fff; color: var(--navy);
  font-weight: 600; font-size: 0.9rem; transition: all 0.2s;
}
.area-pill:hover {
  background: var(--accent); color: var(--navy); border-color: var(--accent);
  transform: translateY(-2px); box-shadow: 0 6px 16px var(--accent-glow);
}
.area-pill small {
  display: block; font-size: 0.74rem;
  color: var(--text-light); font-weight: 400; margin-top: 2px;
}
.area-pill:hover small { color: var(--navy-soft); }

/* ============== Why Section (on navy) ============== */
.why-section {
  background: var(--navy); color: #d9e6e4;
  position: relative; overflow: hidden;
}
.why-section::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 48px 48px;
}
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; position: relative; }
.why-card {
  padding: 32px 28px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg); transition: all 0.25s;
  position: relative; overflow: hidden;
}
.why-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(251, 191, 36, 0.4); transform: translateY(-4px);
}
.why-card::before {
  content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--accent) 0%, transparent 100%);
  opacity: 0; transition: opacity 0.3s;
}
.why-card:hover::before { opacity: 1; }
.why-num {
  font-family: var(--font-display); font-size: 2.6rem; font-weight: 600;
  color: transparent; -webkit-text-stroke: 1.5px rgba(251, 191, 36, 0.6);
  letter-spacing: -0.04em; line-height: 1; margin-bottom: 14px;
}
.why-card-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(251, 191, 36, 0.15); color: var(--accent);
  display: inline-flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.why-card-icon .ico { width: 24px; height: 24px; }
.why-card h3 { color: #fff; font-size: 1.18rem; margin-bottom: 10px; }
.why-card p { color: rgba(255, 255, 255, 0.7); font-size: 0.96rem; }

/* ============== Trust strip ============== */
.trust-strip {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px; margin-bottom: 44px;
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 28px 30px; box-shadow: var(--shadow-sm);
}
.trust-badge { display: flex; align-items: center; gap: 16px; }
.trust-badge strong {
  display: block; color: var(--navy); font-size: 1rem;
  font-weight: 700; font-family: var(--font-display);
}
.trust-badge small { display: block; color: var(--text-muted); font-size: 0.82rem; margin-top: 2px; }
.trust-badge-num {
  width: 58px; height: 58px; background: var(--navy); color: #fff;
  border-radius: 14px; display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 600;
  letter-spacing: -0.03em; flex-shrink: 0;
}
.trust-badge-letter {
  width: 58px; height: 58px; background: var(--accent); color: var(--navy);
  border-radius: 14px; display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1.55rem; font-weight: 700; flex-shrink: 0;
}
.trust-badge-icon {
  width: 58px; height: 58px; background: var(--water-soft); color: var(--teal-mid);
  border-radius: 14px; display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.trust-badge-icon .ico { width: 26px; height: 26px; }
.trust-stars { display: flex; gap: 2px; margin-bottom: 2px; }

/* ============== Testimonials ============== */
.testimonials-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 22px;
}
.testimonial {
  background: #fff; padding: 30px; padding-top: 36px;
  border-radius: var(--radius-lg); border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; position: relative; transition: all 0.25s;
}
.testimonial:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.testimonial-quote-mark { position: absolute; top: 18px; right: 24px; color: var(--accent-soft); }
.testimonial-quote-mark svg { width: 48px; height: 48px; }
.testimonial-stars { display: flex; gap: 2px; margin-bottom: 16px; }
.testimonial blockquote {
  font-size: 1rem; color: var(--text); line-height: 1.65;
  margin-bottom: 20px; flex-grow: 1;
}
.testimonial cite {
  font-style: normal; font-weight: 700; color: var(--navy);
  font-size: 1rem; display: flex; align-items: center; gap: 12px;
  font-family: var(--font-display);
}
.testimonial-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-mid) 0%, var(--navy-soft) 100%);
  color: #fff; display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; flex-shrink: 0;
}
.testimonial cite div { display: flex; flex-direction: column; }
.testimonial cite small {
  display: block; font-weight: 500; color: var(--accent-deep);
  font-size: 0.78rem; margin-top: 2px;
  text-transform: uppercase; letter-spacing: 0.06em; font-family: var(--font-body);
}

/* ============== FAQ ============== */
.faq-section { background: var(--cream); }
.faq-layout {
  display: grid; grid-template-columns: 1fr 1.8fr;
  gap: 60px; align-items: start;
}
.faq-side { position: sticky; top: 100px; }
.faq-side .section-eyebrow { display: inline-flex; }
.faq-side h2 { text-align: left; margin-bottom: 20px; }
.faq-side p { color: var(--text-muted); margin-bottom: 24px; }
.faq-item {
  border: 1px solid var(--border); background: #fff;
  border-radius: var(--radius); padding: 24px 28px;
  margin-bottom: 12px; transition: all 0.25s;
}
.faq-item:hover { border-color: var(--teal-mid); box-shadow: var(--shadow-sm); }
.faq-item h3 {
  color: var(--navy); font-size: 1.08rem; margin-bottom: 10px;
  display: flex; align-items: flex-start; gap: 14px; letter-spacing: -0.015em;
}
.faq-item h3::before {
  content: counter(faq-counter, decimal-leading-zero);
  counter-increment: faq-counter;
  font-family: var(--font-display); color: var(--accent-deep);
  font-weight: 700; font-size: 0.92rem; flex-shrink: 0; margin-top: 4px;
  letter-spacing: 0.02em;
}
.faq-list { counter-reset: faq-counter; }
.faq-item p { color: var(--text-muted); font-size: 0.98rem; padding-left: 36px; }

/* ============== Final CTA ============== */
.final-cta {
  background: var(--navy); color: #fff;
  padding: 90px 0; position: relative; overflow: hidden;
}
.final-cta::before {
  content: ""; position: absolute; top: -50%; left: -10%;
  width: 50%; height: 200%;
  background: radial-gradient(circle, rgba(251, 191, 36, 0.18) 0%, transparent 70%);
}
.final-cta::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 32px 32px;
}
.final-cta-grid {
  display: grid; grid-template-columns: 1.4fr 1fr;
  gap: 60px; align-items: center; position: relative; z-index: 1;
}
.final-cta h2 {
  color: #fff; font-size: clamp(2rem, 5vw, 3.4rem);
  margin-bottom: 18px; letter-spacing: -0.035em;
}
.final-cta p { color: rgba(255, 255, 255, 0.78); font-size: 1.12rem; margin-bottom: 32px; }
.final-cta-row { display: flex; gap: 14px; flex-wrap: wrap; }
.final-cta-side { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.cta-mini-stat {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius); padding: 22px 18px;
  text-align: center; position: relative; overflow: hidden;
}
.cta-mini-stat::before {
  content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--accent) 50%, transparent 100%);
  opacity: 0.5;
}
.cta-mini-num {
  font-family: var(--font-display); font-size: 2rem;
  font-weight: 600; color: #fff; letter-spacing: -0.03em; line-height: 1;
}
.cta-mini-num sup { font-size: 0.5em; color: var(--accent); margin-left: 2px; font-weight: 500; top: -0.6em; }
.cta-mini-num span { color: var(--accent); }
.cta-mini-lbl { font-size: 0.78rem; color: rgba(255, 255, 255, 0.65); margin-top: 8px; text-transform: uppercase; letter-spacing: 0.06em; }

/* ============== Footer ============== */
.site-footer { background: var(--navy-deep); color: #8a9b99; padding: 80px 0 32px; position: relative; overflow: hidden; }
.site-footer::before {
  content: ""; position: absolute; top: 0; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(251, 191, 36, 0.08) 0%, transparent 60%);
  pointer-events: none;
}
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; position: relative; }
.footer-col h4 {
  color: #fff; font-size: 0.88rem;
  text-transform: uppercase; letter-spacing: 0.1em;
  margin-bottom: 18px; font-family: var(--font-body);
}
.footer-col p, .footer-col li, .footer-col a { color: #8a9b99; font-size: 0.92rem; line-height: 1.7; }
.footer-col ul { list-style: none; padding: 0; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col a:hover { color: var(--accent); }
.footer-col .brand { margin-bottom: 16px; }
.footer-col .brand-text { color: #fff; }
.footer-meta {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 26px;
  display: flex; justify-content: space-between;
  font-size: 0.85rem; flex-wrap: wrap; gap: 12px; position: relative;
  color: #fff;
}
.footer-meta p { color: #fff; }
.footer-meta a { color: #fff; }
.footer-meta a:hover { color: var(--accent); }

/* ============== Breadcrumbs & inner page bits ============== */
.breadcrumbs { font-size: 0.88rem; color: var(--text-muted); padding: 20px 0 0; background: var(--bg-soft); }
.breadcrumbs ol { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.breadcrumbs li { display: inline; margin: 0; }
.breadcrumbs li + li::before { content: "›"; color: var(--text-light); margin-right: 8px; }
.breadcrumbs a { color: var(--text-muted); }
.breadcrumbs a:hover { color: var(--accent-deep); }
.breadcrumbs li:last-child { color: var(--navy); font-weight: 500; }

.page-header { background: linear-gradient(180deg, var(--cream) 0%, #fff 100%); padding: 64px 0 48px; border-bottom: 1px solid var(--border-soft); }
.page-header h1 { margin-bottom: 16px; }
.page-header .lead { font-size: 1.18rem; color: var(--text-muted); max-width: 780px; }

/* Skip link */
.skip-link { position: absolute; left: -9999px; top: 0; padding: 8px 16px; background: var(--navy); color: #fff; }
.skip-link:focus { left: 8px; top: 8px; z-index: 1000; }

.tel-inline { font-weight: 700; color: var(--accent-deep); white-space: nowrap; font-feature-settings: "tnum"; }

/* ============== Region city grids (service hub spokes) ============== */
.region-grid-section { background: var(--bg-soft); }
.region-block { margin-bottom: 48px; }
.region-block:last-child { margin-bottom: 0; }
.region-block-head {
  display: flex; align-items: baseline; justify-content: space-between;
  flex-wrap: wrap; gap: 10px; margin-bottom: 8px;
}
.region-block h3 {
  color: var(--navy); margin: 0;
  display: flex; align-items: center; gap: 12px;
}
.region-block h3 .count {
  font-family: var(--font-body); font-size: 0.82rem; font-weight: 600;
  color: var(--accent-deep); background: var(--accent-soft);
  padding: 4px 10px; border-radius: 999px; letter-spacing: 0;
}
.region-block-meta { color: var(--text-muted); font-size: 0.92rem; }
.region-block > p { margin-bottom: 20px; font-size: 0.95rem; color: var(--text-muted); }
.city-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 6px 24px;
  background: #fff; padding: 24px; border-radius: var(--radius);
  border: 1px solid var(--border);
}
.city-grid a {
  padding: 8px 0; font-size: 0.93rem; color: var(--text);
  border-radius: 4px; transition: color .15s;
}
.city-grid a:hover { color: var(--accent-deep); }

/* ============== Responsive ============== */
@media (max-width: 1040px) {
  .services-bento { grid-template-columns: repeat(4, 1fr); }
  .bento-featured { grid-column: span 4; grid-row: span 1; }
  .bento-wide, .bento-md, .bento-tall, .bento-sm, .bento-default { grid-column: span 2; grid-row: auto; }
  .signs-grid { grid-template-columns: repeat(3, 1fr); }
  .areas-layout { grid-template-columns: 1fr; gap: 40px; }
  .faq-layout { grid-template-columns: 1fr; gap: 30px; }
  .faq-side { position: static; }
  .stats-band-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
  .stat-card { border-right: 0; padding: 0; }
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 60px; }
  .compare-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .final-cta-grid { grid-template-columns: 1fr; gap: 36px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .signs-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-card-1 { left: 0; }
  .hero-card-2 { right: 0; }
  .hero-card-3 { right: 0; }
}

@media (max-width: 720px) {
  .nav-links { display: none; }
  .header-cta .btn { display: none; }
  .menu-toggle { display: inline-flex; }
  .header-inner { height: 64px; }
  section { padding: 64px 0; }
  .hero { padding: 50px 0 60px; }
  .ticker-item { font-size: 1.1rem; }
  .services-bento { grid-template-columns: 1fr; }
  .services-bento > * { grid-column: span 1 !important; grid-row: span 1 !important; }
  .signs-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-meta { flex-direction: column; }
  .btn { padding: 13px 24px; font-size: 0.95rem; }
  .final-cta-side { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .stats-band-inner { grid-template-columns: 1fr; gap: 32px; }
  .trust-strip { padding: 20px; }
  .hero-illustration { aspect-ratio: 4/3; }
}


/* FAQ always-open (no fold) */
details.faq-item { }
details.faq-item > summary {
  list-style: none;
  cursor: default;
  pointer-events: none;
}
details.faq-item > summary::-webkit-details-marker { display: none; }
details.faq-item > summary::marker { display: none; }
details.faq-item[open] > summary { pointer-events: none; }
