/* ============================================
   Indy Drain Pros — Premium Design System v2
   inddraincleaning.com
   ============================================ */

:root {
  --navy: #0a1f3a;
  --navy-deep: #050f1f;
  --navy-soft: #15294a;
  --accent: #3e9e8e;
  --accent-deep: #2d7e70;
  --accent-soft: #e8f5f2;
  --accent-glow: rgba(62, 158, 142, 0.32);
  --water: #2cb5d6;
  --water-soft: #e6f6fb;
  --cream: #fdfaf6;
  --warm: #f5f1ea;
  --text: #0d1828;
  --text-muted: #4a5668;
  --text-light: #8693a3;
  --bg: #ffffff;
  --bg-soft: #fafaf7;
  --bg-card: #ffffff;
  --border: #e4e8ee;
  --border-soft: #eef1f5;
  --success: #0ea25b;
  --gold: #f5b400;
  --shadow-sm: 0 1px 3px rgba(10, 31, 58, 0.06);
  --shadow-md: 0 6px 20px rgba(10, 31, 58, 0.08);
  --shadow-lg: 0 18px 50px rgba(10, 31, 58, 0.16);
  --shadow-xl: 0 28px 80px rgba(10, 31, 58, 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(--accent); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--accent-deep); }
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: #d9e2ec; }
section.bg-navy h2, section.bg-navy h3, section.bg-navy h4 { color: #fff; }

/* ============== Section Dividers (wavy SVG) ============== */
.wave-divider {
  position: absolute;
  left: 0;
  width: 100%;
  pointer-events: none;
  z-index: 1;
  line-height: 0;
}
.wave-divider svg { width: 100%; height: 60px; display: block; }
.wave-top { top: -1px; }
.wave-bot { bottom: -1px; }

/* ============== 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); font-style: normal; font-weight: 700; }
.brand:hover .brand-text { color: var(--navy); }

.nav-links { display: flex; gap: 30px; list-style: none; padding: 0; margin: 0; }
.nav-links li { margin: 0; }
.nav-links a {
  color: var(--text);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 6px 0;
  position: relative;
}
.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(--accent); }
.nav-links a:hover::after { transform: scaleX(1); }

.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); width: 18px; height: 18px; }
.tel-link:hover { color: var(--accent); }

/* ============== 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, 31, 58, 0.32);
}
.btn-primary:hover { background: var(--navy-deep); color: #fff; box-shadow: 0 12px 30px rgba(10, 31, 58, 0.42); }
.btn-accent {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 6px 22px var(--accent-glow);
}
.btn-accent:hover { background: var(--accent-deep); color: #fff; box-shadow: 0 12px 30px rgba(62, 158, 142, 0.42); }
.btn-secondary {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-secondary:hover { background: var(--navy); color: #fff; }
.btn-lg { padding: 18px 36px; font-size: 1.05rem; }
.btn-arrow {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.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.5;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(62, 158, 142, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(44, 181, 214, 0.05) 0%, transparent 50%);
}
.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(10, 31, 58, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 31, 58, 0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  opacity: 0.6;
}
.hero-decorative {
  position: absolute;
  right: -120px;
  top: 50%;
  transform: translateY(-50%);
  width: 600px;
  height: 600px;
  pointer-events: none;
  opacity: 0.6;
}

.hero > .container { position: relative; z-index: 2; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: start;
}
/* Hero image margin-top is set inline in index.html (margin:80px 0 0)
   because inline styles override external CSS — they win the cascade.
   Keep both in sync if adjusting. */

.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(--accent); 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 (big SVG) ============== */
.hero-illustration {
  position: relative;
  width: 100%;
  line-height: 0;
}
.hero-illustration img {
  display: block;
  width: 100%;
  height: auto;
}

/* Blog archive card thumbnails */
.blog-thumb {
  display: block;
  margin: -28px -28px 18px;
  border-top-left-radius: var(--radius);
  border-top-right-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3 / 2;
  background: var(--cream);
}
.blog-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.blog-thumb:hover img { transform: scale(1.04); }

/* Featured post hero uses a larger crop */
.bento-featured .blog-thumb {
  margin: 0;
  border-radius: var(--radius);
  aspect-ratio: 4 / 3;
  height: 100%;
}
.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(62, 158, 142, 0.25) 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 4s ease-in-out infinite 2s;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.hero-card-3 { animation-name: float-center; }
@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(--accent-soft);
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero-card-icon.water { background: var(--water-soft); color: var(--water); }
.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 36s 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-deco {
  position: absolute;
  top: 0;
  right: -100px;
  width: 400px;
  height: 100%;
  opacity: 0.04;
  pointer-events: none;
}
.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); font-size: 0.55em; font-weight: 500; margin-left: 4px; }
.stat-num sub { color: var(--accent); 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);
  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; }

/* ============== Services — Bento Grid ============== */
.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(62, 158, 142, 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(--accent); transition: all 0.4s; }
.bento-icon {
  width: 56px;
  height: 56px;
  background: var(--accent-soft);
  color: var(--accent);
  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);
}
.bento-card:hover .bento-link { color: var(--accent); }
.bento-card:hover .bento-link .ico { transform: translateX(6px); }

/* Bento sizing variants */
.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; }

/* Featured "Emergency" card */
.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(62, 158, 142, 0.3) 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: #fff; 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 ============== */
.signs-section {
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.signs-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 80% 20%, rgba(44, 181, 214, 0.06) 0%, transparent 50%);
  pointer-events: none;
}
.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);
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -0.04em;
}
.sign-icon {
  width: 44px;
  height: 44px;
  background: var(--accent-soft);
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  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 (visual pipe) ============== */
.process-section { background: #fff; }
.process-timeline {
  position: relative;
  padding: 40px 0;
}
.process-pipe {
  position: absolute;
  left: 8%;
  right: 8%;
  top: 56px;
  height: 80px;
  z-index: 0;
}
.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: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  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; }

/* ============== Pricing Cards ============== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 24px;
}
.price-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  transition: all 0.25s;
  position: relative;
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--accent); }
.price-card.featured {
  background: linear-gradient(180deg, #fff 0%, #f0faf7 100%);
  border-color: var(--accent);
  border-width: 2px;
}
.price-tag-corner {
  position: absolute;
  top: -12px;
  right: 20px;
  background: var(--accent);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 6px 14px;
  border-radius: 999px;
}
.price-card-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
  font-weight: 600;
}
.price-card-name { font-family: var(--font-display); font-size: 1.4rem; font-weight: 600; color: var(--navy); margin-bottom: 10px; letter-spacing: -0.02em; }
.price-card-price {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 6px;
}
.price-card-price small {
  font-size: 0.55em;
  color: var(--text-muted);
  font-weight: 500;
}
.price-card-meta { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 18px; }
.price-card ul { list-style: none; padding: 0; margin: 0; }
.price-card ul li {
  padding: 8px 0 8px 26px;
  position: relative;
  font-size: 0.93rem;
  color: var(--text);
  border-bottom: 1px solid var(--border-soft);
}
.price-card ul li:last-child { border-bottom: 0; }
.price-card ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 16px;
  height: 16px;
  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: 10px 10px;
  background-position: center;
  background-repeat: no-repeat;
}
.pricing-note { text-align: center; font-size: 0.9rem; color: var(--text-light); font-style: italic; margin-top: 14px; }

/* ============== Comparison ============== */
.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(--accent);
  border-width: 2px;
  background: linear-gradient(180deg, #fff 0%, #f0faf7 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, #e8f5f2 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: #fff;
  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; }

/* ============== 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(62, 158, 142, 0.18) 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); 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: #fff;
  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: rgba(255, 255, 255, 0.8); }

/* ============== Why Choose Us (on navy) ============== */
.why-section {
  background: var(--navy);
  color: #d9e2ec;
  position: relative;
  overflow: hidden;
}
.why-section::before {
  content: "";
  position: absolute;
  inset: 0;
  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;
  pointer-events: none;
}
.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(62, 158, 142, 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(62, 158, 142, 0.6);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 14px;
}
.why-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(62, 158, 142, 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 + Reviews ============== */
.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(--gold);
  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(--accent-soft);
  color: var(--accent);
  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(--accent) 0%, var(--accent-deep) 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);
  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-list { }
.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(--accent); 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);
  font-weight: 600;
  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(62, 158, 142, 0.22) 0%, transparent 70%);
}
.final-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  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;
  pointer-events: none;
}
.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: #050f1f; color: #8a94a3; 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(62, 158, 142, 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: #8a94a3; 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-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;
}

/* ============== 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); }
.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); white-space: nowrap; font-feature-settings: "tnum"; }

/* ============== 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; }
  .stat-card:nth-child(2) { border-right: 0; }
  .stats-band-inner .stat-card:nth-child(odd) { padding-right: 0; }
}

@media (max-width: 900px) {
  /* Hero collapses to single column — text first (H1, lead, CTAs, trust), image at the BOTTOM */
  .hero { padding: 32px 0 56px; }
  .hero-grid { grid-template-columns: 1fr; gap: 28px; }
  .hero-grid .hero-illustration {
    max-height: 56vh; overflow: hidden;
    margin-top: 0;   /* reset desktop offset on mobile */
  }
  .hero-grid .hero-illustration img { object-fit: cover; max-height: 56vh; }
  .compare-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-pipe { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .final-cta-grid { grid-template-columns: 1fr; gap: 36px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
  .signs-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-decorative { display: none; }
  .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; }
  .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; }
}

@media print {
  .site-header, .final-cta, .site-footer, .ticker-band { display: none; }
  body { font-size: 11pt; }
}

/* ============================================================
   Mobile Responsive Overrides for Combo Pages
   ------------------------------------------------------------
   Combo pages (root-removal-*, main-sewer-line-repair-*,
   grease-trap-cleaning-*, etc.) use inline grid-template-columns
   on .services-bento elements which override media queries.
   These rules use attribute selectors + !important to honor
   responsive breakpoints regardless of inline declarations.
   ============================================================ */

/* Tablet (1040px) — collapse 4/5/6-col bento grids to 3 columns */
@media (max-width: 1040px) {
  .services-bento[style*="grid-template-columns"] {
    grid-template-columns: repeat(3, 1fr) !important;
    grid-auto-rows: auto !important;
  }
  /* Inline-styled stats-band wrappers — keep flow but tighten */
  main section[class*="stats-band"] .stats-band-inner {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Small tablet (820px) — collapse to 2 columns */
@media (max-width: 820px) {
  .services-bento[style*="grid-template-columns"] {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  /* When-to-call and related-link grids — already use auto-fit
     minmax, just ensure gap doesn't get too tight */
  main section .container > div[style*="display: grid"][style*="auto-fit"] {
    gap: 16px;
  }
}

/* Mobile (640px) — single column for all combo grids */
@media (max-width: 640px) {
  .services-bento[style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
  }
  /* Force all inline-styled grid containers to single column */
  main section .container > div[style*="grid-template-columns"]:not([style*="auto-fit"]) {
    grid-template-columns: 1fr !important;
  }
  /* Final CTA mini-stats stay 2x2 (they're already 1fr 1fr) */
  .final-cta-side { grid-template-columns: 1fr 1fr !important; }

  /* Container padding */
  .container { padding: 0 18px; }

  /* Section spacing tightened */
  section { padding: 56px 0; }
  .page-header { padding: 44px 0 32px; }

  /* Stats band — single column with tighter typography */
  .stats-band { padding: 50px 0; }
  .stats-band-inner { gap: 28px; }
  .stat-num {
    font-size: clamp(2rem, 9vw, 2.8rem) !important;
    margin-bottom: 8px;
  }
  .stat-label { font-size: 0.88rem; }

  /* Hero / page-header copy */
  .page-header .lead { font-size: 1.02rem; line-height: 1.55; }
  .hero-cta-row { gap: 10px; margin-top: 22px !important; margin-bottom: 24px; }
  .hero-cta-row .btn { width: 100%; justify-content: center; }
  .hero-trust { gap: 12px 18px; font-size: 0.85rem; padding-top: 20px; margin-top: 22px !important; }
  .hero-trust div { font-size: 0.85rem; }

  /* Breadcrumbs */
  .breadcrumbs { font-size: 0.78rem; padding: 12px 0 0; }
  .breadcrumbs ol { gap: 5px; }
  .breadcrumbs li + li::before { margin-right: 5px; }

  /* Bento cards */
  .bento-card { padding: 22px; }
  .bento-card h3 { font-size: 1.15rem; }
  .bento-card p { font-size: 0.92rem; }
  .bento-icon { width: 46px; height: 46px; margin-bottom: 14px; }
  .bento-icon svg { width: 24px; height: 24px; }

  /* FAQ items */
  .faq-section { padding: 50px 0; }
  .faq-side { margin-bottom: 8px; }
  .faq-side h2 { font-size: 1.8rem; }
  .faq-side p { font-size: 0.95rem; margin-bottom: 18px; }
  .faq-item { padding: 18px 20px; margin-bottom: 10px; }
  .faq-item h3 { font-size: 1rem; gap: 10px; margin-bottom: 8px; }
  .faq-item h3::before { font-size: 0.85rem; margin-top: 2px; }
  .faq-item p { padding-left: 26px; font-size: 0.92rem; }

  /* Compare grid cards */
  .compare-card { padding: 24px 22px; }
  .compare-card h3 { font-size: 1.3rem; }
  .compare-card ul li { font-size: 0.92rem; padding: 10px 0 10px 28px; }

  /* Final CTA */
  .final-cta { padding: 60px 0; }
  .final-cta h2 { font-size: clamp(1.7rem, 7vw, 2.4rem); margin-bottom: 14px; }
  .final-cta p { font-size: 1rem; margin-bottom: 24px; }
  .final-cta-row { gap: 10px; }
  .final-cta-row .btn { width: 100%; justify-content: center; }
  .cta-mini-stat { padding: 16px 12px; }
  .cta-mini-num { font-size: 1.6rem; }
  .cta-mini-lbl { font-size: 0.7rem; margin-top: 6px; }

  /* Section heads */
  .section-head { margin-bottom: 36px; }
  .section-head h2 { font-size: clamp(1.7rem, 6.5vw, 2.2rem); }
  .section-head p { font-size: 1rem; }

  /* Body paragraphs */
  section .container > div p { font-size: 1rem !important; line-height: 1.65 !important; }
}

/* Tight mobile (480px) — preserve tel-link visibility, shrink header */
@media (max-width: 480px) {
  .header-inner { gap: 10px; height: 60px; }
  .brand-text { font-size: 1.05rem; }
  .brand-mark { width: 34px; height: 34px; }
  .tel-link { font-size: 0.88rem; gap: 6px; font-weight: 700; }
  .tel-link .ico { width: 14px; height: 14px; }

  /* Container even tighter */
  .container { padding: 0 14px; }

  /* H1 sized down */
  h1 { font-size: clamp(1.85rem, 8vw, 2.4rem) !important; }
  .page-header h1 { margin-bottom: 12px; }

  /* Bento cards padding */
  .bento-card { padding: 18px; }

  /* Compare cards */
  .compare-card { padding: 20px 18px; }

  /* Stats band */
  .stat-num { font-size: 2rem !important; }

  /* Inline pricing-card boxes from combo pages */
  main section .container > div > div[style*="background:#fff"][style*="border:1px solid"] {
    padding: 18px !important;
  }
  /* Inline when-to-call boxes */
  main section .container > div[style*="display: grid"] > div[style*="background:#fff"][style*="border-radius:14px"] {
    padding: 20px !important;
  }
  /* Inline related-links blocks */
  main section .container a[style*="background:#fff"][style*="border-radius:12px"] {
    padding: 16px !important;
  }
  /* Inline body paragraphs marked with style="font-size: 1.05rem" should shrink */
  section .container p[style*="font-size: 1.05rem"] {
    font-size: 0.98rem !important;
    line-height: 1.65 !important;
  }
}

/* Improve touch targets across mobile */
@media (max-width: 720px) {
  /* All buttons get adequate tap area */
  .btn { min-height: 44px; }
  .nav-links a, .footer-col a { min-height: 32px; display: inline-flex; align-items: center; }
  /* Tel-link gets larger tap target */
  .tel-link { min-height: 44px; padding: 4px 0; }
  /* Prevent horizontal scroll from any oversized inline element */
  body { overflow-x: hidden; }
  main, section, .container { max-width: 100%; overflow-x: hidden; }
  /* SVG icons in inline-styled grids — prevent overflow */
  section svg { max-width: 100%; }
}

/* ============================================================
   Mobile Hamburger Menu + Drawer (global)
   ------------------------------------------------------------
   Hamburger button (.nav-toggle) lives inside .site-header.
   When clicked, JS toggles body.nav-open which reveals the
   .mobile-drawer slide-in panel + .mobile-drawer-overlay scrim.
   Hidden on tablet/desktop; visible on mobile (≤820px).
   ============================================================ */

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 0;
  padding: 10px;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  border-radius: 8px;
  transition: background 0.2s ease;
  flex-shrink: 0;
}
.nav-toggle:hover { background: var(--bg-soft); }
.nav-toggle:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.nav-toggle-bar {
  display: block;
  width: 22px;
  height: 2.5px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
  transform-origin: center;
}

/* Hamburger transforms into X when nav is open */
body.nav-open .nav-toggle-bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
body.nav-open .nav-toggle-bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
body.nav-open .nav-toggle-bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Mobile drawer — hidden by default, slide-in from right on mobile */
.mobile-drawer {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(86vw, 360px);
  background: #fff;
  z-index: 200;
  padding: 92px 28px 32px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -18px 0 50px rgba(10, 31, 58, 0.18);
}
.mobile-drawer ul {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}
.mobile-drawer ul li {
  margin: 0;
  border-bottom: 1px solid var(--border-soft);
}
.mobile-drawer ul li:last-child { border-bottom: 0; }
.mobile-drawer ul a {
  display: block;
  padding: 16px 4px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.08rem;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.mobile-drawer ul a:hover,
.mobile-drawer ul a:focus { color: var(--accent); }

.mobile-drawer-cta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
}
.mobile-drawer-cta .btn {
  width: 100%;
  justify-content: center;
  padding: 16px 20px;
  font-size: 1rem;
}
.mobile-drawer-cta .btn .ico { width: 18px; height: 18px; }

/* Backdrop scrim behind the drawer */
.mobile-drawer-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 31, 58, 0.55);
  backdrop-filter: blur(2px);
  z-index: 150;
  opacity: 0;
  transition: opacity 0.25s ease;
  cursor: pointer;
}

/* Activate hamburger + drawer at tablet/mobile (≤820px) */
@media (max-width: 820px) {
  /* Hide desktop nav and book CTA in header */
  .primary-nav { display: none; }
  .header-cta .btn { display: none; }

  /* Show hamburger button */
  .nav-toggle { display: flex; }

  /* Show drawer wrapper + overlay (still translated off-screen until nav-open) */
  .mobile-drawer { display: block; }
  .mobile-drawer-overlay { display: block; pointer-events: none; }

  /* When nav is open — slide drawer in + fade overlay in */
  body.nav-open { overflow: hidden; }
  body.nav-open .mobile-drawer { transform: translateX(0); }
  body.nav-open .mobile-drawer-overlay { opacity: 1; pointer-events: auto; }

  /* Slightly tighter header on mobile */
  .header-inner { gap: 12px; }
  .header-cta { gap: 12px; }
}

/* Tighter mobile-drawer padding on very small screens */
@media (max-width: 480px) {
  .mobile-drawer { padding: 80px 22px 28px; width: min(90vw, 340px); }
  .mobile-drawer ul a { padding: 14px 4px; font-size: 1.02rem; }
}

/* Header stays sticky on top; ensure drawer renders above it */
.site-header { z-index: 100; }
.mobile-drawer-overlay { z-index: 150; }
.mobile-drawer { z-index: 200; }
