*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('/fonts/inter-latin.woff2') format('woff2');
}
@font-face {
  font-family: 'Sora';
  font-style: normal;
  font-weight: 600 800;
  font-display: swap;
  src: url('/fonts/sora-latin.woff2') format('woff2');
}

:root {
  /* Original Eco Pro Wash palette — navy backgrounds, blue accent, green action */
  --navy-ink:  #08101C;
  --navy-deep: #0D1B2E;
  --navy:      #0A1A3A;
  --blue:      #1565C0;
  --blue-light:#42A5F5;
  --green-act: #43A047;
  --green-act-dark: #2E7D32;

  /* Semantic names carried over from the prior build, remapped to the palette above */
  --green-900: #0D1B2E;   /* dark sections / footer / announce bar (navy) */
  --green-700: #1565C0;   /* primary accent: links, labels, toggles, icons (blue) */
  --green-500: #43A047;   /* positive ticks, footer headings, focus ring (green) */
  --green-050: #E9F1FB;   /* light blue-tinted section washes */
  --aqua-500:  #42A5F5;
  --charcoal-900: #0F1E30; /* headings + emphasis (deep navy) */
  --slate-600: #475569;
  --slate-200: #E2E8F0;
  --white: #FFFFFF;
  --amber-400: #FBBF24;
}

/* overflow-x on BOTH html and body — on iOS Safari the scroller is <html>, so
   clipping only <body> doesn't stop the page from sliding side to side. */
html { scroll-behavior: smooth; overflow-x: hidden; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}
body { font-family: 'Inter', sans-serif; color: var(--slate-600); background: var(--white); overflow-x: hidden; width: 100%; }
@media (max-width: 767px) { body { padding-bottom: 72px; } }
img { max-width: 100%; display: block; }
a { color: inherit; }
:focus-visible { outline: 3px solid var(--green-500); outline-offset: 2px; }

.container { max-width: 1160px; margin: 0 auto; padding: 0 6%; }
section { padding: 96px 6%; }
@media (max-width: 720px) { section { padding: 64px 6%; } }

h1, h2, h3, h4 { font-family: 'Sora', sans-serif; color: var(--charcoal-900); letter-spacing: -0.02em; }
h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); font-weight: 800; line-height: 1.1; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.5rem); font-weight: 800; line-height: 1.2; margin-bottom: 16px; }
h2.light, h1.light { color: var(--white); }
p { line-height: 1.7; font-size: 1.05rem; }
.section-lead { color: var(--slate-600); max-width: 560px; line-height: 1.8; }
.section-head { text-align: center; margin: 0 auto 56px; max-width: 720px; }
.section-head .section-lead { margin: 0 auto; }

/* ─── SKIP LINK ─── */
.skip-link {
  position: absolute; top: -60px; left: 12px; z-index: 999;
  background: var(--green-700); color: var(--white); padding: 12px 20px;
  border-radius: 6px; text-decoration: none; font-size: .85rem; font-weight: 700;
  transition: top .2s;
}
.skip-link:focus { top: 12px; }

/* ─── ANNOUNCEMENT BAR ─── */
#announce-bar {
  background: var(--green-900); color: var(--white); text-align: center;
  font-size: .82rem; font-weight: 600; padding: 10px 44px 10px 16px; position: relative; display: none;
}
#announce-bar a { color: var(--white); text-decoration: underline; }
#announce-bar .announce-close {
  position: absolute; right: 10px; top: 50%; transform: translateY(-50%);
  background: none; border: none; color: rgba(255,255,255,.7); font-size: 1.1rem; cursor: pointer; padding: 4px 8px;
}
#announce-bar .announce-close:hover { color: var(--white); }

/* ─── NAV ─── */
nav.site-nav {
  position: sticky; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 6%; height: 76px; background: var(--navy-ink);
  box-shadow: 0 1px 0 rgba(255,255,255,.06); transition: box-shadow .2s;
}
/* Above #mobile-nav (300) so the hamburger stays tappable to close the open menu */
nav.site-nav { z-index: 320; }
nav.site-nav.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,.45); }
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo svg { height: 46px; width: auto; display: block; }
.nav-logo span { font-family: 'Sora', sans-serif; font-weight: 700; font-size: 1.15rem; color: var(--white); }
.nav-links { display: flex; align-items: center; gap: 22px; list-style: none; }
.nav-links > li { position: relative; }
.nav-links a { color: rgba(255,255,255,.72); text-decoration: none; font-size: .92rem; font-weight: 500; transition: color .2s; white-space: nowrap; }
.nav-links a:hover, .nav-links a.active { color: var(--blue-light); }
.nav-dropdown { position: relative; }
.nav-dropdown-panel {
  display: none; position: absolute; top: 100%; left: 0; background: var(--white);
  border: 1px solid var(--slate-200); border-radius: 12px; box-shadow: 0 12px 32px rgba(17,24,39,.12);
  padding: 10px; min-width: 220px; z-index: 50;
}
/* grid (not block) so the 13 service areas sit in two columns and the panel
   doesn't run off the bottom of the screen */
.nav-dropdown:hover .nav-dropdown-panel, .nav-dropdown:focus-within .nav-dropdown-panel {
  display: grid; grid-template-columns: 1fr 1fr; column-gap: 4px; min-width: 400px;
}
.nav-dropdown-panel a { display: block; padding: 10px 14px; border-radius: 8px; font-size: .9rem; color: var(--charcoal-900); }
.nav-dropdown-panel a:hover { background: var(--green-050); color: var(--blue); }
.nav-right { display: flex; align-items: center; gap: 18px; }
.nav-phone { display: flex; align-items: center; gap: 7px; text-decoration: none; color: rgba(255,255,255,.85); font-weight: 600; font-size: .92rem; white-space: nowrap; }
.nav-phone svg { width: 18px; height: 18px; color: var(--blue-light); }
.nav-phone:hover { color: var(--blue-light); }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; border-radius: 12px; padding: 14px 28px; font-weight: 600; font-size: .92rem; text-decoration: none; cursor: pointer; transition: all .2s; min-height: 48px; border: none; font-family: 'Inter', sans-serif; }
.btn-primary { background: linear-gradient(135deg, var(--green-act), var(--green-act-dark)); color: var(--white); box-shadow: 0 4px 16px rgba(67,160,71,.25); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(67,160,71,.42); }
.btn-secondary { background: var(--white); color: var(--blue); border: 1.5px solid var(--blue); }
.btn-secondary:hover { background: var(--green-050); }
.btn-outline-light { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,.5); }
.btn-outline-light:hover { background: rgba(255,255,255,.1); border-color: var(--white); }
.btn-sm { padding: 10px 20px; font-size: .85rem; min-height: 40px; }
/* min 44x44 tap target (Apple HIG / Material minimum) — it was 40x32 and hard to hit */
.hamburger {
  display: none; flex-direction: column; align-items: center; justify-content: center;
  gap: 5px; cursor: pointer; background: none; border: none; padding: 8px;
  min-width: 44px; min-height: 44px; -webkit-tap-highlight-color: transparent; touch-action: manipulation;
}
.hamburger span { width: 24px; height: 2px; background: rgba(255,255,255,.85); transition: transform .25s, opacity .2s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
body.menu-open { overflow: hidden; }
/* Sized so the whole menu fits a real phone without scrolling: the full list needs to
   clear ~660px of usable height in mobile Safari, not just the 844px device viewport. */
#mobile-nav { position: fixed; inset: 0 0 72px 0; z-index: 300; background: var(--navy-ink); display: flex; flex-direction: column; padding: 80px 8% 14px; gap: 2px; overflow-y: auto; }
#mobile-nav a, #mobile-nav button { font-family: 'Sora', sans-serif; font-size: 1.05rem; font-weight: 700; color: rgba(255,255,255,.9); text-decoration: none; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,.1); background: none; border-left: none; border-right: none; border-top: none; text-align: left; cursor: pointer; }
#mobile-nav .mnav-phone { color: var(--blue-light); }
#mobile-nav .mnav-group { font-family: 'Sora', sans-serif; font-size: .68rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--blue-light); padding: 12px 0 2px; border-bottom: none; }
/* 6 service areas as 2 columns = 3 rows instead of 6, saving ~130px */
#mobile-nav .mnav-subgrid { display: grid; grid-template-columns: 1fr 1fr; column-gap: 14px; }
#mobile-nav a.mnav-sub { font-size: .92rem; font-weight: 600; color: rgba(255,255,255,.6); padding: 8px 0 8px 12px; }

/* ─── STICKY MOBILE ACTION BAR ─── */
.mobile-action-bar { display: none; }
@media (max-width: 767px) {
  .mobile-action-bar {
    display: grid; grid-template-columns: repeat(3, 1fr); position: fixed; bottom: 0; left: 0; right: 0; z-index: 250;
    background: var(--white); border-top: 1px solid var(--slate-200); padding-bottom: env(safe-area-inset-bottom);
    box-shadow: 0 -4px 16px rgba(17,24,39,.08);
  }
  .mobile-action-bar a, .mobile-action-bar button {
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px;
    padding: 10px 4px; text-decoration: none; color: var(--charcoal-900); font-size: .68rem; font-weight: 600;
    background: none; border: none; cursor: pointer; font-family: 'Inter', sans-serif;
  }
  .mobile-action-bar svg { width: 20px; height: 20px; color: var(--green-700); }
  .mobile-action-bar .mab-book { background: var(--green-act); color: var(--white); }
  .mobile-action-bar .mab-book svg { color: var(--white); }
}

/* ─── HERO ─── */
.hero {
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(21,101,192,.14) 0%, transparent 60%),
    linear-gradient(160deg, #08101C 0%, #0D1B2E 55%, #0A1520 100%);
  position: relative; overflow: hidden; color: var(--white);
  display: flex; align-items: center; padding: 80px 6% 90px; min-height: 640px;
}
.hero::before {
  content: ''; position: absolute; inset: 0; opacity: .08; pointer-events: none;
  background-image: radial-gradient(circle at 20% 30%, #fff 2px, transparent 2.5px), radial-gradient(circle at 70% 60%, #fff 3px, transparent 3.5px), radial-gradient(circle at 85% 20%, #fff 1.5px, transparent 2px), radial-gradient(circle at 40% 80%, #fff 2px, transparent 2.5px);
  background-size: 300px 300px;
}
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; max-width: 1160px; margin: 0 auto; position: relative; z-index: 1; width: 100%; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.25); padding: 6px 16px; border-radius: 999px; font-size: .78rem; font-weight: 600; letter-spacing: .5px; margin-bottom: 20px; }
.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero-brand-name {
  font-family: 'Sora', sans-serif; font-size: clamp(2.6rem, 6vw, 4.4rem);
  font-weight: 800; line-height: 1.02; color: var(--white);
  letter-spacing: .01em; text-transform: uppercase; margin-bottom: 12px;
}
.hero h1.hero-tagline {
  font-size: clamp(1.1rem, 2.1vw, 1.65rem); font-weight: 500; line-height: 1.35;
  letter-spacing: 0; color: rgba(255,255,255,.75); margin-bottom: 22px;
}
.hero-sub { color: rgba(255,255,255,.85); font-size: 1.1rem; line-height: 1.8; max-width: 540px; margin-bottom: 32px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 28px; }
.hero-trust { display: flex; gap: 20px; flex-wrap: wrap; font-size: .85rem; color: rgba(255,255,255,.8); }
.hero-trust span { display: inline-flex; align-items: center; gap: 6px; }
.hero-trust svg { width: 16px; height: 16px; color: var(--green-500); flex-shrink: 0; }
.hero-art { width: 100%; max-width: 420px; justify-self: center; }
.wave-divider { display: block; width: 100%; line-height: 0; margin-top: -2px; }
.wave-divider svg { width: 100%; height: auto; display: block; }
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; } .hero-art { max-width: 280px; } }

/* ─── PAGE BANNER (sub-pages) ─── */
.page-banner {
  background: linear-gradient(160deg, #08101C 0%, #0D1B2E 100%); color: var(--white);
  padding: 130px 6% 56px; position: relative; overflow: hidden;
}
.page-banner::before {
  content: ''; position: absolute; inset: 0; opacity: .08; pointer-events: none;
  background-image: radial-gradient(circle at 25% 40%, #fff 2px, transparent 2.5px), radial-gradient(circle at 80% 30%, #fff 2px, transparent 2.5px);
  background-size: 260px 260px;
}
.page-banner-inner { max-width: 720px; position: relative; z-index: 1; }
.breadcrumb { font-size: .82rem; color: rgba(255,255,255,.65); margin-bottom: 16px; }
.breadcrumb a { color: rgba(255,255,255,.85); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { margin: 0 6px; color: rgba(255,255,255,.4); }
.breadcrumb.on-light { color: var(--slate-600); }
.breadcrumb.on-light a { color: var(--slate-600); }
.page-banner h1 { color: var(--white); margin-bottom: 14px; }
.page-banner .page-lead { color: rgba(255,255,255,.85); font-size: 1.05rem; max-width: 620px; }

/* ─── BADGE PILLS / TRUST BAR ─── */
.badge-row { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.badge-pill {
  display: inline-flex; align-items: center; gap: 8px; background: var(--green-050); color: var(--green-900);
  border-radius: 999px; padding: 10px 18px; font-size: .85rem; font-weight: 600;
}
.badge-pill svg { width: 18px; height: 18px; color: var(--green-700); flex-shrink: 0; }
.badge-row.on-dark .badge-pill { background: rgba(255,255,255,.08); color: var(--white); border: 1px solid rgba(255,255,255,.15); }
.badge-row.on-dark .badge-pill svg { color: var(--green-500); }

/* ─── CARDS ─── */
.card {
  background: var(--white); border: 1px solid var(--slate-200); border-radius: 16px;
  box-shadow: 0 4px 24px rgba(17,24,39,.06); transition: transform .2s ease, box-shadow .2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(17,24,39,.1); }

/* ─── HOW IT WORKS ─── */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 8px; }
.step-card { padding: 32px 28px; text-align: left; }
.step-num { width: 40px; height: 40px; border-radius: 999px; background: var(--green-700); color: var(--white); display: flex; align-items: center; justify-content: center; font-family: 'Sora', sans-serif; font-weight: 700; margin-bottom: 18px; }
.step-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.step-card p { font-size: .92rem; color: var(--slate-600); }
@media (max-width: 780px) { .steps-grid { grid-template-columns: 1fr; } }

/* ─── SERVICES ─── */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
/* Must come AFTER the base rule above — same specificity, so source order decides.
   This previously sat before it and was silently overridden, leaving 3 squeezed
   columns on phones and pushing the page into horizontal overflow. */
@media (max-width: 780px) { .services-grid { grid-template-columns: 1fr; } }
.svc-card { padding: 36px 30px; }
.svc-icon { width: 52px; height: 52px; color: var(--green-700); margin-bottom: 18px; }
.svc-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.svc-card p { font-size: .92rem; }
.svc-card ul { margin: 16px 0 0; padding-left: 0; list-style: none; display: flex; flex-direction: column; gap: 8px; }
.svc-card ul li { font-size: .85rem; color: var(--slate-600); display: flex; gap: 8px; align-items: flex-start; }
.svc-card ul li svg { width: 16px; height: 16px; color: var(--green-500); flex-shrink: 0; margin-top: 2px; }

/* ─── ONE-TIME STRIP ─── */
.onetime-strip { margin-top: 40px; border: 1.5px solid var(--slate-200); border-radius: 16px; overflow: hidden; }
.onetime-header { background: var(--green-700); color: var(--white); padding: 16px 32px; font-family: 'Sora', sans-serif; font-weight: 700; }
.onetime-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.onetime-item { padding: 24px 32px; border-right: 1px solid var(--slate-200); text-align: center; }
.onetime-item:last-child { border-right: none; }
.onetime-qty { font-size: .72rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--green-700); margin-bottom: 6px; }
.onetime-price { font-family: 'Sora', sans-serif; font-size: 2rem; font-weight: 800; color: var(--charcoal-900); }
.onetime-desc { font-size: .82rem; color: var(--slate-600); margin-top: 4px; }
.onetime-book { margin-top: 14px; }
@media (max-width: 700px) { .onetime-grid { grid-template-columns: 1fr; } .onetime-item { border-right: none; border-bottom: 1px solid var(--slate-200); } .onetime-item:last-child { border-bottom: none; } }

/* ─── TIER / FREQ TOGGLES ─── */
.toggle-row { display: flex; justify-content: center; gap: 10px; margin-bottom: 44px; flex-wrap: wrap; }
.toggle-btn {
  padding: 13px 32px; font-size: .88rem; font-weight: 700; background: var(--white); color: var(--charcoal-900);
  border: 1.5px solid var(--slate-200); border-radius: 999px; cursor: pointer; transition: all .2s; font-family: 'Inter', sans-serif;
}
.toggle-btn.active { background: var(--green-700); color: var(--white); border-color: var(--green-700); }
.toggle-btn:not(.active):hover { border-color: var(--green-500); color: var(--green-700); }

/* ─── PRICING ─── */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1000px; margin: 0 auto; }
.plan { padding: 36px 30px; position: relative; }
.plan.featured { border-color: var(--green-700); border-width: 2px; }
.plan-ribbon { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--amber-400); color: var(--charcoal-900); font-size: .72rem; font-weight: 800; letter-spacing: .5px; padding: 6px 16px; border-radius: 999px; white-space: nowrap; }
.plan-name { font-family: 'Sora', sans-serif; font-weight: 700; font-size: 1.1rem; margin-bottom: 14px; }
.plan-price { font-family: 'Sora', sans-serif; font-size: 2.6rem; font-weight: 800; color: var(--charcoal-900); line-height: 1; }
.plan-price sup { font-size: 1.1rem; }
.plan-price.custom { font-size: 1.9rem; }
.plan-freq { font-size: .82rem; color: var(--slate-600); margin: 6px 0 24px; }
.plan-perks { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.plan-perks li { display: flex; gap: 10px; align-items: flex-start; font-size: .88rem; }
.plan-perks li svg { width: 18px; height: 18px; color: var(--green-500); flex-shrink: 0; margin-top: 1px; }
@media (max-width: 780px) { .pricing-grid { grid-template-columns: 1fr; } }

/* ─── BUSINESS TIER (dark) ─── */
.business-section { background: var(--green-900); color: var(--white); }
.business-section h2 { color: var(--white); }
.business-section .section-lead { color: rgba(255,255,255,.75); }
.business-section .card { background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.15); }
.business-section .plan-name, .business-section .plan-price { color: var(--white); }
.business-section .plan-freq { color: rgba(255,255,255,.6); }
.business-section .plan-perks li { color: rgba(255,255,255,.85); }

/* ─── BEFORE/AFTER SLIDER ─── */
.ba-slider { position: relative; max-width: 640px; margin: 0 auto; border-radius: 16px; overflow: hidden; aspect-ratio: 4/3; border: 1px solid var(--slate-200); }
.ba-slider .ba-after, .ba-slider .ba-before { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ba-slider .ba-after { clip-path: inset(0 0 0 50%); }
.ba-slider input[type="range"] { position: absolute; inset: 0; width: 100%; height: 100%; margin: 0; opacity: 0; cursor: ew-resize; }
.ba-handle { position: absolute; top: 0; bottom: 0; left: 50%; width: 3px; background: var(--white); pointer-events: none; box-shadow: 0 0 0 1px rgba(0,0,0,.1); }
.ba-handle::after { content: '⇔'; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 40px; height: 40px; background: var(--white); border-radius: 999px; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 12px rgba(0,0,0,.2); font-size: 1.1rem; color: var(--green-700); }
.ba-label { position: absolute; bottom: 12px; font-size: .72rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; background: rgba(17,24,39,.7); color: var(--white); padding: 4px 12px; border-radius: 6px; }
.ba-label.ba-label-before { left: 12px; }
.ba-label.ba-label-after { right: 12px; }

/* ─── REVIEWS CAROUSEL ─── */
/* Keep the carousel's horizontal swipe from chaining into the page (side-to-side drift) */
.reviews-track { display: flex; gap: 20px; overflow-x: auto; overscroll-behavior-x: contain; scroll-snap-type: x mandatory; padding: 8px 4px 20px; scrollbar-width: thin; max-width: 100%; }
.review-card { scroll-snap-align: start; flex: 0 0 320px; padding: 28px; }
.review-stars { color: var(--amber-400); font-size: .9rem; margin-bottom: 12px; }
.review-card p { font-size: .9rem; color: var(--slate-600); margin-bottom: 14px; }
.review-name { font-weight: 700; font-size: .88rem; }
.reviews-nav { display: flex; justify-content: center; gap: 10px; margin-top: 12px; }
.reviews-nav button { width: 40px; height: 40px; border-radius: 999px; border: 1.5px solid var(--slate-200); background: var(--white); cursor: pointer; font-size: 1rem; }
.reviews-nav button:hover { border-color: var(--green-700); color: var(--green-700); }
/* On phones, stack reviews vertically instead of a horizontal swipe row — a mid-page
   horizontal scroller is what makes the page feel like it drifts side to side. */
@media (max-width: 720px) {
  .reviews-track { display: block; overflow-x: visible; }
  .review-card { flex: none; width: auto; margin-bottom: 16px; }
  .reviews-nav { display: none; }
}

/* ─── FAQ ─── */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-group-title { font-family: 'Sora', sans-serif; font-weight: 700; font-size: 1.1rem; margin: 36px 0 12px; color: var(--green-700); }
.faq-group-title:first-child { margin-top: 0; }
.faq-item { border-bottom: 1px solid var(--slate-200); }
.faq-item summary {
  padding: 20px 4px; font-family: 'Sora', sans-serif; font-size: 1.02rem; font-weight: 700;
  cursor: pointer; list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 1.4rem; font-weight: 400; color: var(--green-700); flex-shrink: 0; transition: transform .2s; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { padding: 0 4px 22px; color: var(--slate-600); font-size: .95rem; line-height: 1.8; }

/* ─── CTA BAND ─── */
.cta-band { background: linear-gradient(160deg, #0D1B2E 0%, #0A1A3A 100%); color: var(--white); text-align: center; }
.cta-band h2 { color: var(--white); }
.cta-band p { color: rgba(255,255,255,.85); margin: 0 auto 28px; max-width: 560px; }
.cta-band .hero-actions { justify-content: center; }
.cta-microcopy { font-size: .82rem; color: rgba(255,255,255,.7); margin-top: 4px; }

/* ─── SERVICE AREA / CITY GRID ─── */
.cities-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 40px; }
.city-chip { display: block; text-align: center; padding: 18px; border: 1.5px solid var(--slate-200); border-radius: 12px; text-decoration: none; color: var(--charcoal-900); font-weight: 700; font-family: 'Sora', sans-serif; transition: all .2s; }
.city-chip:hover { border-color: var(--green-700); background: var(--green-050); color: var(--green-700); }
/* Served areas that don't (yet) have their own landing page — listed, not linked */
.city-chip.static { cursor: default; color: var(--slate-600); }
.city-chip.static:hover { border-color: var(--slate-200); background: transparent; color: var(--slate-600); }
@media (max-width: 700px) { .cities-grid { grid-template-columns: 1fr 1fr; } }

/* ─── FORM ─── */
.form-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: start; }
@media (max-width: 900px) { .form-grid { grid-template-columns: 1fr; } }
.form-card { background: var(--green-050); border: 1px solid var(--slate-200); border-radius: 16px; padding: 40px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.fg { margin-bottom: 18px; }
label { display: block; font-size: .82rem; font-weight: 600; color: var(--charcoal-900); margin-bottom: 6px; }
input, select, textarea {
  width: 100%; padding: 13px 16px; border: 1.5px solid var(--slate-200); background: var(--white);
  border-radius: 10px; font-family: 'Inter', sans-serif; font-size: .95rem; color: var(--charcoal-900); appearance: none;
}
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--green-700); box-shadow: 0 0 0 3px rgba(22,101,52,.12); }
textarea { resize: vertical; min-height: 110px; }
.field-error { color: #B91C1C; font-size: .8rem; margin-top: 6px; }
.field-hint { display: block; color: var(--slate-600); font-size: .82rem; margin-top: 6px; }
/* Checkboxes must opt out of the global input{width:100%;appearance:none} rule. */
.check-group { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 4px; }
.check-group label, .fg-inline { display: inline-flex; align-items: center; gap: 8px; font-size: .95rem; font-weight: 500; cursor: pointer; margin-bottom: 0; }
.check-group input[type="checkbox"], .fg-inline input[type="checkbox"] {
  width: 18px; height: 18px; padding: 0; flex: none; border-radius: 4px;
  appearance: auto; -webkit-appearance: auto; accent-color: var(--green-700); cursor: pointer;
}
/* Per-bin-type quantity selectors on the booking form */
.bin-qty-group { display: flex; flex-wrap: wrap; gap: 12px 20px; margin-top: 4px; }
.bin-qty { display: flex; align-items: center; gap: 8px; font-size: .95rem; font-weight: 500; margin-bottom: 0; }
.bin-qty select { width: auto; min-width: 68px; padding: 9px 12px; }
input[aria-invalid="true"], select[aria-invalid="true"], textarea[aria-invalid="true"] { border-color: #B91C1C; }
.form-error-summary { background: #FEF2F2; border: 1px solid #FCA5A5; color: #B91C1C; border-radius: 10px; padding: 16px 20px; margin-bottom: 20px; font-size: .88rem; }
.form-error-summary a { color: #B91C1C; text-decoration: underline; }
@media (max-width: 720px) { input, select, textarea { font-size: 16px; } }
.contact-items { display: flex; flex-direction: column; gap: 22px; margin: 28px 0; }
.citem { display: flex; gap: 16px; align-items: flex-start; }
.citem-icon { width: 44px; height: 44px; flex-shrink: 0; border-radius: 10px; background: var(--green-050); color: var(--green-700); display: flex; align-items: center; justify-content: center; }
.citem-label { font-size: .72rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--green-700); margin-bottom: 3px; }
.citem-val a { text-decoration: none; }
.citem-val a:hover { color: var(--green-700); }
.map-embed { border-radius: 16px; overflow: hidden; border: 1px solid var(--slate-200); }
.map-embed iframe { display: block; width: 100%; height: 260px; border: 0; }

/* ─── FOOTER ─── */
footer.site-footer { background: var(--green-900); color: rgba(255,255,255,.8); padding: 64px 6% 32px; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 44px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.12); }
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-brand span { font-family: 'Sora', sans-serif; font-weight: 700; color: var(--white); font-size: 1.1rem; }
.footer-tagline { font-size: .88rem; color: rgba(255,255,255,.65); line-height: 1.8; max-width: 280px; margin-bottom: 16px; }
.footer-col h5 { font-size: .72rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--green-500); margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
/* 13 areas in one column made the footer very tall — split into two */
.footer-col ul.footer-areas { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 14px; }
.footer-col a, .footer-col button { color: rgba(255,255,255,.7); text-decoration: none; font-size: .88rem; background: none; border: none; padding: 0; cursor: pointer; font-family: 'Inter', sans-serif; text-align: left; }
.footer-col a:hover, .footer-col button:hover { color: var(--white); }
.footer-social { display: flex; gap: 10px; margin-top: 14px; }
.footer-social a, .footer-social .todo-social { width: 34px; height: 34px; border-radius: 999px; background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; text-decoration: none; }
.footer-social svg { width: 16px; height: 16px; color: rgba(255,255,255,.7); }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; padding-top: 24px; font-size: .78rem; color: rgba(255,255,255,.5); }

/* ─── NEWSLETTER BLOCK ─── */
.newsletter-block { background: var(--green-050); border-radius: 16px; padding: 32px; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin: 0 6% 56px; }
.newsletter-block h4 { font-family: 'Sora', sans-serif; font-size: 1.1rem; margin-bottom: 4px; }
.newsletter-block p { font-size: .85rem; color: var(--slate-600); }
.newsletter-form { display: flex; gap: 10px; flex-wrap: wrap; }
.newsletter-form input { min-width: 220px; }

/* ─── QUOTE BUILDER (V2 Upgrade 1) ─── */
.quote-builder { background: var(--green-050); border-radius: 20px; padding: 40px; max-width: 720px; margin: 0 auto; overflow: hidden; }
.qb-step-label { font-family: 'Sora', sans-serif; font-weight: 700; font-size: .95rem; margin-bottom: 12px; }
.qb-chips { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 28px; }
.qb-chip { flex: 1 1 100px; }
/* 1x1 so the global `input { width:100% }` can't stretch these absolutely-positioned
   radios to full viewport width — that was forcing horizontal page overflow. */
.qb-chip input { position: absolute; opacity: 0; pointer-events: none; width: 1px; height: 1px; }
.qb-chip label { display: block; text-align: center; padding: 14px 10px; border: 1.5px solid var(--slate-200); border-radius: 12px; background: var(--white); cursor: pointer; font-weight: 700; transition: all .15s; margin-bottom: 0; }
.qb-chip input:checked + label { border-color: var(--green-700); background: var(--green-700); color: var(--white); }
.qb-chip input:focus-visible + label { outline: 3px solid var(--green-500); outline-offset: 2px; }
.qb-price-box { background: var(--white); border-radius: 16px; padding: 28px; text-align: center; margin-bottom: 20px; }
.qb-price { font-family: 'Sora', sans-serif; font-size: 3rem; font-weight: 800; color: var(--green-700); }
.qb-plan-name { font-weight: 700; margin-bottom: 4px; }
.qb-per-bin { font-size: .85rem; color: var(--green-700); font-weight: 600; margin-top: 6px; }
.qb-cta { text-align: center; }
.qb-business-note { text-align: center; font-size: .88rem; margin-top: 20px; }
.qb-business-note a { color: var(--green-700); font-weight: 600; }
@media (max-width: 480px) { .quote-builder { padding: 28px 20px; } .qb-price { font-size: 2.4rem; } }

/* ─── BLOG ─── */
.blog-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
@media (max-width: 780px) { .blog-grid { grid-template-columns: 1fr; } }
.blog-card { overflow: hidden; }
.blog-card-img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.blog-card-body { padding: 24px; }
.blog-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.blog-card p { font-size: .9rem; color: var(--slate-600); }
.blog-meta { font-size: .78rem; color: var(--slate-600); margin-top: 12px; }
.article-body { max-width: 720px; margin: 0 auto; }
.article-body h2 { font-size: 1.5rem; margin-top: 40px; }
.article-body p { margin-bottom: 20px; }
.article-body strong { color: var(--charcoal-900); }
.cta-box { background: var(--green-050); border-radius: 16px; padding: 24px 28px; margin: 32px 0; text-align: center; font-weight: 600; }
.cta-box a { color: var(--green-700); text-decoration: underline; }
.related-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 20px; }
@media (max-width: 780px) { .related-strip { grid-template-columns: 1fr; } }
.related-card { padding: 20px; font-size: .88rem; }
.related-card .tag { font-size: .7rem; font-weight: 700; text-transform: uppercase; color: var(--green-700); letter-spacing: .5px; }

/* ─── 404 / offline ─── */
.notfound-section { min-height: 70vh; display: flex; align-items: center; }

/* ─── PRINT ─── */
@media print {
  nav.site-nav, footer.site-footer, .mobile-action-bar, #announce-bar { display: none !important; }
}

/* ─── REVEAL ANIMATION ─── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

/* ─── ADS LANDING PAGES ─── */
.lp-page nav.site-nav .nav-links, .lp-page nav.site-nav .hamburger { display: none; }
.lp-trust-row { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; margin: 24px 0; }

@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .form-grid, .related-strip { gap: 32px; }
}
/* Small laptops: tighten the (now 10-item) nav and drop the phone-number text
   so every tab stays on one line before we fall back to the hamburger. */
@media (min-width: 981px) and (max-width: 1180px) {
  .nav-links { gap: 13px; }
  .nav-links a { font-size: .84rem; }
  .nav-right .nav-phone { display: none; }
}
@media (max-width: 980px) {
  .nav-links, .nav-right .nav-phone, .nav-right .btn { display: none; }
  .hamburger { display: flex; }
  .newsletter-block { flex-direction: column; text-align: center; margin: 0 4% 40px; }
}
@media (max-width: 480px) {
  .footer-top { grid-template-columns: 1fr; }
}
