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

:root {
  --dark:    #0A3D42;
  --dark2:   #062E33;
  --peach:   #F2A98A;
  --peach2:  #E8916E;
  --sky:     #7DCBD4;
  --white:   #ffffff;
  --canvas:  #F5F5F0;
  --gray:    #888;
  --text:    #1A1A1A;
  --border:  #E0E0E0;
  --teal:    #0A3D42;
  --offwhite: #f7f5f0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  overflow-y: auto;
  height: auto;
}
body {
  font-family: 'Inter', sans-serif; color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  overflow-y: auto;
  height: auto;
}
a { text-decoration: none; color: inherit; }
img { display: block; }

/* ─── HEADER ─────────────────────────────────────── */
header {
  position: sticky; top: 0; z-index: 200;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  padding: 0 48px;
  overflow: visible;
  animation: hdr-drop 0.55s cubic-bezier(0.16, 1, 0.3, 1) 0.05s both;
}
@keyframes hdr-drop {
  from { opacity: 0; transform: translateY(-12px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hdr {
  max-width: 1400px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr auto 1fr;
  grid-template-rows: 70px;
  align-items: center;
  overflow: visible;
}
.hdr-logo { height: 175px; width: auto; }
.hdr-nav { justify-self: center; display: flex; align-items: center; gap: 32px; }
.hdr-nav a {
  font-size: 17px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--dark); transition: color 0.2s;
}
.hdr-nav a:hover { color: var(--peach); }

/* ─── SERVICES DROPDOWN ───────────────────────── */
.nav-dropdown {
  position: relative; display: flex; align-items: center;
  padding-bottom: 24px; margin-bottom: -24px;
}
.nav-dropdown-trigger {
  display: flex; align-items: center; gap: 5px;
  font-size: 17px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--dark); transition: color 0.2s;
  cursor: pointer; white-space: nowrap;
}
.nav-dropdown-trigger:hover { color: var(--peach); }
.nav-dropdown-trigger svg { transition: transform 0.22s; flex-shrink: 0; }
.nav-dropdown:hover .nav-dropdown-trigger svg { transform: rotate(180deg); }
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 8px 36px rgba(0,0,0,0.13);
  min-width: 230px;
  padding: 6px 0;
  z-index: 300;
  border-top: 3px solid var(--dark);
}
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a {
  display: block !important;
  padding: 13px 22px !important;
  font-size: 13px !important; font-weight: 700 !important;
  letter-spacing: 0.1em !important; text-transform: uppercase !important;
  color: var(--dark) !important;
  border-bottom: 1px solid #f0f0ee !important;
  transition: color 0.18s, background 0.18s;
  white-space: nowrap;
}
.nav-dropdown-menu a:last-child { border-bottom: none !important; }
.nav-dropdown-menu a:hover { color: var(--peach) !important; background: #f8f7f5 !important; }

.hdr-right {
  justify-self: end;
  display: flex; align-items: center; gap: 12px;
}
.hdr-cta {
  background: var(--peach); color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 13px 28px; border-radius: 4px; border: none; cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s;
}
.hdr-cta:hover { background: var(--peach2); transform: translateY(-1px); }

/* ─── HAMBURGER / MOBILE NAV ──────────────────────── */
.hdr-hamburger {
  display: none;
  flex-direction: column; justify-content: center; align-items: center; gap: 5px;
  width: 44px; height: 44px;
  background: none; border: none; cursor: pointer;
  padding: 0; flex-shrink: 0;
}
.hdr-hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--dark); border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.hdr-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hdr-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hdr-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  border-top: 1px solid var(--border);
  padding-bottom: 8px;
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  padding: 14px 24px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 17px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--dark);
  border-bottom: 1px solid var(--border);
  transition: color 0.2s, background 0.2s;
}
.mobile-nav a:hover { color: var(--peach); background: var(--canvas); }
.mobile-nav-cta {
  display: block;
  margin: 14px 24px 6px;
  text-align: center;
  background: var(--peach) !important; color: var(--white) !important;
  padding: 14px 24px !important;
  border-radius: 4px;
  border-bottom: none !important;
}
.mobile-nav-cta:hover { background: var(--peach2) !important; }

/* ─── HERO (homepage only) ───────────────────────── */
.hero {
  min-height: 100vh;
  position: relative; overflow: clip;
  display: flex; flex-direction: column;
  background:
    linear-gradient(180deg,
      rgba(4,28,32,0.72) 0%,
      rgba(4,28,32,0.48) 30%,
      rgba(4,28,32,0.10) 58%,
      rgba(4,28,32,0.52) 100%
    ),
    url('hero-neo-van.jpg') center/cover no-repeat;
}

.hero-inner {
  flex: 1;
  position: relative; z-index: 1;
  max-width: 1400px; margin: 0 auto;
  padding: 28px 48px 48px; width: 100%;
  display: flex; flex-direction: column; align-items: center; text-align: center;
}

.hero-h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(88px, 14vw, 190px);
  line-height: 0.88; letter-spacing: 0.02em;
  color: var(--white); margin-bottom: 0;
}

/* Animatable custom property for text reveal */
@property --reveal-pos {
  syntax: '<percentage>';
  initial-value: 0%;
  inherits: false;
}
/* Squeegee position same coordinate system as reveal so they track exactly */
@property --sq-pos {
  syntax: '<percentage>';
  initial-value: -8%;
  inherits: false;
}

/* ─── SQUEEGEE ANIMATION ─────────────────────────── */
.hero-title-wrap {
  position: relative;
  display: inline-block;
  margin-bottom: 24px;
}

/* Text starts invisible revealed left→right as squeegee passes */
.hero-h1 {
  mask-image: linear-gradient(to right,
    white var(--reveal-pos),
    transparent calc(var(--reveal-pos) + 5%));
  -webkit-mask-image: linear-gradient(to right,
    white var(--reveal-pos),
    transparent calc(var(--reveal-pos) + 5%));
  animation: text-reveal 2.4s cubic-bezier(0.22, 0.04, 0.38, 1) 0.5s both;
}
@keyframes text-reveal {
  from { --reveal-pos: -5%; }
  to   { --reveal-pos: 108%; }
}

/* Squeegee left is driven by --sq-pos (same % system as the text reveal) */
.squeegee-wrapper {
  position: absolute;
  top: -28px;
  bottom: -28px;
  left: var(--sq-pos);
  width: 180px;
  z-index: 4;
  pointer-events: none;
  opacity: 0;
  animation: squeegee-travel 2.4s cubic-bezier(0.22, 0.04, 0.38, 1) 0.5s both;
}
.squeegee-svg { width: 100%; height: 100%; }
@keyframes squeegee-travel {
  0%   { --sq-pos: -8%;  opacity: 0; }
  4%   { --sq-pos: -4%;  opacity: 1; }
  85%  { --sq-pos: 102%; opacity: 1; }
  100% { --sq-pos: 108%; opacity: 0; }
}

/* Water droplets created by JS, appear as blade passes */
@keyframes water-spot-life {
  0%   { opacity: 0;   transform: scale(0.2); }
  18%  { opacity: 0.9; transform: scale(1.15); }
  45%  { opacity: 0.7; transform: scale(1); }
  100% { opacity: 0;   transform: scale(0.5); }
}
.water-spot {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 32%,
    rgba(255,255,255,0.92) 0%,
    rgba(200,238,255,0.65) 50%,
    rgba(170,220,248,0.3) 100%
  );
  box-shadow:
    0 0 5px rgba(190,230,255,0.55),
    inset 0 1px 2px rgba(255,255,255,0.85);
  pointer-events: none;
  z-index: 3;
  opacity: 0;
}

/* Sparkles created by JS, burst alongside bubbles */
@keyframes sparkle-life {
  0%   { opacity: 0; transform: scale(0.1) rotate(0deg); }
  22%  { opacity: 1; transform: scale(1.3) rotate(60deg); }
  55%  { opacity: 0.85; transform: scale(1) rotate(120deg); }
  100% { opacity: 0; transform: scale(0.2) rotate(200deg); }
}
.sparkle {
  position: absolute;
  pointer-events: none;
  z-index: 3;
  opacity: 0;
  line-height: 1;
  user-select: none;
  color: rgba(255, 230, 160, 0.95);
  text-shadow:
    0 0 6px rgba(255, 200, 80, 0.8),
    0 0 14px rgba(255, 220, 120, 0.4);
}

.hero-sub {
  font-size: clamp(14px, 3.5vw, 19px); line-height: 1.6;
  color: rgba(255,255,255,0.75);
  margin-bottom: 36px; text-align: center;
}

.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; padding: 20px 0 28px; }
.hero-btn-primary {
  background: var(--peach); color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  padding: 20px 56px; border-radius: 6px; border: none; cursor: pointer;
  min-width: 220px; justify-content: center;
  transition: background 0.2s, transform 0.15s; display: inline-flex; align-items: center;
}
.hero-btn-primary:hover { background: var(--peach2); transform: translateY(-2px); }
.hero-btn-ghost {
  background: rgba(0,0,0,0.38); color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  padding: 19px 52px; border-radius: 6px; border: 2px solid rgba(255,255,255,0.45);
  cursor: pointer; transition: all 0.2s; display: inline-flex; align-items: center;
  justify-content: center; gap: 8px; min-width: 220px;
}
.hero-btn-ghost:hover { border-color: rgba(255,255,255,0.85); background: rgba(0,0,0,0.55); }

/* Scroll cue */
.hero-scroll-cue {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  margin-bottom: 24px; cursor: pointer; text-decoration: none;
}
.hero-scroll-cue span {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.hero-scroll-arrow {
  font-size: 22px; color: rgba(255,255,255,0.55);
  animation: bounce-down 1.5s ease-in-out infinite;
}
@keyframes bounce-down {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(7px); }
}

/* Bottom group trust badges + buttons, pinned to bottom of hero */
.hero-bottom {
  margin-top: auto; width: 100%;
}

/* Trust badges */
.hero-trust {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  border-top: 1px solid rgba(255,255,255,0.5);
  padding: 14px 0 20px; width: 100%; gap: 0;
}
.hero-badge {
  display: flex; align-items: center; gap: 9px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,1);
  padding: 0 28px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.6);
}
.hero-badge + .hero-badge { border-left: 1px solid rgba(255,255,255,0.22); }
.hero-badge-icon {
  width: 20px; height: 20px; border-radius: 50%;
  background: rgba(255,255,255,0.65); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; flex-shrink: 0;
}

/* ─── PAGE HERO (inner pages) ────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 100%);
  padding: 100px 48px 80px;
  color: var(--white);
  position: relative;
  overflow: clip;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 90%; height: 200%;
  background: url('neo-logo-transparent.png') center/contain no-repeat;
  opacity: 0.05;
  pointer-events: none;
}
.page-hero-inner {
  max-width: 1400px; margin: 0 auto; position: relative; z-index: 1;
}
.page-hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(56px, 8vw, 110px);
  line-height: 0.9; letter-spacing: 0.02em;
  color: var(--white); margin-bottom: 16px;
}
.page-hero-sub {
  font-size: 18px; color: rgba(255,255,255,0.65);
  max-width: 520px; line-height: 1.6;
}

/* ─── STATS BAND ─────────────────────────────────── */
.stats-band { background: var(--white); padding: 80px 48px; }
.stats-band-inner { max-width: 1400px; margin: 0 auto; text-align: center; }
.stats-tagline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 5.5vw, 72px); letter-spacing: 0.02em; line-height: 1.0;
  color: var(--dark); margin-bottom: 0;
}
.stats-tagline-accent { color: var(--peach); }
.stats-row {
  display: flex; gap: 48px; align-items: center; justify-content: center;
  margin: 36px 0 0; flex-wrap: wrap;
}
.stats-item { display: flex; align-items: center; gap: 12px; }
.stats-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px; letter-spacing: 0.02em; color: var(--dark);
}
.stats-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gray);
}
.stats-divider { width: 1px; height: 32px; background: var(--border); }

/* Stats band scroll cue */
.stats-scroll-cue {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  margin-top: 40px; text-decoration: none;
}
.stats-scroll-cue span {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(10,61,66,0.55);
}
.stats-scroll-arrow {
  font-size: 22px; color: var(--peach);
  animation: bounce-down 1.5s ease-in-out infinite;
}

/* ─── SHARED SECTION STYLES ──────────────────────── */
.sec { padding: 96px 48px; position: relative; }
.sec-inner { max-width: 1400px; margin: 0 auto; }
.sec-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--peach); margin-bottom: 10px;
}
.sec-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 5vw, 64px); letter-spacing: 0.02em;
  line-height: 1.0; margin-bottom: 16px;
}
.sec-sub {
  font-size: 17px; color: var(--gray);
  line-height: 1.7; max-width: 560px; margin-bottom: 56px;
}

/* ─── SERVICES ───────────────────────────────────── */
.services { background: var(--canvas); }
.svc-grid-top {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 20px; margin-bottom: 20px;
}
.svc-grid-bot {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.svc-grid-all {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.svc-card {
  background: var(--dark);
  border-radius: 16px; overflow: hidden;
  position: relative; cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  min-height: 380px;
}
.svc-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(6,46,51,0.97) 0%, rgba(10,61,66,0.4) 60%, transparent 100%);
  transition: background 0.3s;
}
.svc-card:hover { transform: translateY(-6px); box-shadow: 0 24px 56px rgba(6,46,51,0.3); }
.svc-card:hover::before { background: linear-gradient(to top, rgba(6,46,51,0.98) 0%, rgba(10,61,66,0.6) 70%, transparent 100%); }
.svc-card-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 36px 40px; z-index: 1; }
.svc-icon { font-size: 32px; margin-bottom: 16px; }
.svc-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 34px; letter-spacing: 0.03em;
  color: var(--white); margin-bottom: 10px;
  text-shadow: 1px 1px 0 rgba(0,0,0,0.9), -1px -1px 0 rgba(0,0,0,0.9), 1px -1px 0 rgba(0,0,0,0.9), -1px 1px 0 rgba(0,0,0,0.9), 0 2px 12px rgba(0,0,0,0.8);
}
.svc-card p { font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.7; margin-bottom: 20px; }
.svc-features { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
.svc-features li {
  font-size: 13px; color: rgba(255,255,255,0.8);
  display: flex; align-items: center; gap: 10px;
}
.svc-features li::before {
  content: '✓'; width: 18px; height: 18px;
  background: var(--peach); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; color: white; flex-shrink: 0;
}
.svc-link {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--peach); display: inline-flex; align-items: center; gap: 6px;
}
.svc-link:hover { color: #f5c0a8; }
.svc-card-reveal {
  opacity: 0; transform: translateY(10px);
  transition: opacity 0.32s ease, transform 0.32s ease;
}
.svc-card:hover .svc-card-reveal,
.svc-card-sm:hover .svc-card-reveal { opacity: 1; transform: translateY(0); }
.svc-card-sm {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 16px; padding: 36px 32px;
  cursor: pointer; transition: all 0.3s;
  min-height: 240px;
}
.svc-card-sm:hover { border-color: var(--peach); transform: translateY(-6px); box-shadow: 0 24px 56px rgba(6,46,51,0.18); }
.svc-card-sm h3 { font-family: 'Bebas Neue', sans-serif; font-size: 26px; letter-spacing: 0.03em; color: var(--dark); margin-bottom: 8px; }
.svc-card-sm p { font-size: 14px; color: var(--gray); line-height: 1.6; margin-bottom: 16px; }
.svc-card-sm .svc-link { color: var(--dark); }
.svc-card-sm .svc-icon { font-size: 26px; margin-bottom: 14px; }
.svc-card-sm-dark {
  background: var(--dark); border: none;
  display: flex; flex-direction: column; justify-content: flex-end;
}
.svc-card-sm-dark h3 { color: var(--white); }
.svc-card-sm-dark p { color: rgba(255,255,255,0.6); }
.svc-card-sm-dark .svc-link { color: var(--peach); }

/* ─── PROCESS ─────────────────────────────────────── */
.process { background: var(--white); }
.process-grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-top: 48px;
}
.process-step {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  flex: 1; max-width: 210px;
  position: relative; z-index: 1;
  transition: transform 0.3s ease;
}
.process-step:hover { transform: translateY(-6px); }
.process-circle {
  width: 130px; height: 130px; border-radius: 50%;
  background: var(--dark);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  margin-bottom: 20px;
  box-shadow: 0 8px 28px rgba(10,61,66,0.3);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.process-step:hover .process-circle {
  box-shadow: 0 16px 40px rgba(10,61,66,0.45);
  transform: scale(1.06);
}
.process-badge {
  position: absolute; top: 2px; right: 2px;
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--peach);
  color: #fff;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 15px; letter-spacing: 0.05em;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.process-circle svg { width: 52px; height: 52px; color: white; }
.process-step h3 { font-family: 'Bebas Neue', sans-serif; font-size: 26px; letter-spacing: 0.08em; margin-bottom: 8px; color: var(--dark); }
.process-step p { font-size: 14px; color: var(--gray); line-height: 1.6; max-width: 160px; }
.process-arrow {
  display: flex; align-items: center;
  margin-top: 52px;
  flex-shrink: 0;
  color: var(--peach);
  padding: 0 4px;
}

/* ─── OUR STORY ───────────────────────────────────── */
.story { background: var(--canvas); }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
@keyframes photo-float {
  0%, 100% { transform: translateY(0px);    box-shadow: 0 32px 80px rgba(10,61,66,0.20); }
  50%       { transform: translateY(-12px);  box-shadow: 0 44px 96px rgba(10,61,66,0.28); }
}
.story-img-wrap { position: relative; }
.story-img {
  width: 100%; border-radius: 16px; object-fit: cover;
  aspect-ratio: 4/5; display: block;
}
.story-img-badge {
  position: absolute; bottom: 28px; left: 28px;
  background: var(--peach); color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 10px 22px; border-radius: 4px;
}
.story-text p {
  font-size: 16px; color: #555; line-height: 1.8; margin-bottom: 20px;
}
.story-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 40px; }
.btn-solid {
  background: var(--dark); color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 14px 32px; border-radius: 4px; border: none; cursor: pointer;
  transition: background 0.2s;
}
.btn-solid:hover { background: var(--dark2); }
.btn-outline-dark {
  background: transparent; color: var(--dark);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 13px 32px; border-radius: 4px; border: 2px solid var(--dark); cursor: pointer;
  transition: all 0.2s;
}
.btn-outline-dark:hover { background: var(--dark); color: var(--white); }

/* ─── WHY NEO ─────────────────────────────────────── */
.why { background: var(--dark); color: var(--white); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.why .sec-title { color: var(--white); }
.why .sec-sub { color: rgba(255,255,255,0.6); }
.why-features { display: flex; flex-direction: column; gap: 32px; }
.why-feat { display: flex; gap: 20px; }
.why-feat-icon {
  width: 52px; height: 52px; border-radius: 10px;
  background: rgba(242,169,138,0.15); border: 1px solid rgba(242,169,138,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; flex-shrink: 0;
}
.why-feat-text h4 { font-family: 'Bebas Neue', sans-serif; font-size: 22px; letter-spacing: 0.03em; margin-bottom: 6px; color: var(--white); }
.why-feat-text p { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.6; }
.why-owners-photo {
  width: 100%;
  border-radius: 16px;
  margin-top: 36px;
  object-fit: cover;
  box-shadow: 0 16px 48px rgba(0,0,0,0.25);
  display: block;
}
@media (max-width: 960px) {
  .why-owners-photo {
    margin-top: 32px;
    max-height: 360px;
    border-radius: 12px;
  }
}
@media (max-width: 640px) {
  .why-owners-photo {
    max-height: 260px;
    border-radius: 10px;
  }
}
.quote-box {
  background: var(--white); border-radius: 16px;
  padding: 48px 44px; color: var(--text);
}
.quote-box-tag {
  display: inline-block;
  background: var(--peach); color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 5px 16px; border-radius: 2px; margin-bottom: 20px;
}
.quote-box h3 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(26px, 4vw, 36px); letter-spacing: 0.02em; margin-bottom: 8px; color: var(--dark); }
.quote-box p { font-size: 14px; color: var(--gray); line-height: 1.6; margin-bottom: 28px; }
.form-field {
  width: 100%; padding: 14px 16px;
  border: 1.5px solid var(--border); border-radius: 6px;
  font-size: 14px; font-family: 'Inter', sans-serif;
  color: var(--text); background: #FAFAFA;
  transition: border-color 0.2s; margin-bottom: 12px;
}
.form-field:focus { outline: none; border-color: var(--dark); background: var(--white); }
.form-submit {
  width: 100%; background: var(--peach); color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 16px; border-radius: 6px; border: none; cursor: pointer;
  transition: background 0.2s; margin-top: 4px;
}
.form-submit:hover { background: var(--peach2); }

/* ─── GOOGLE REVIEWS ─────────────────────────────── */
.grev-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 32px; flex-wrap: wrap; gap: 16px;
}
.grev-all-btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--dark); border: 2px solid var(--dark);
  padding: 12px 28px; border-radius: 4px; text-decoration: none;
  transition: all 0.2s; white-space: nowrap;
}
.grev-all-btn:hover { background: var(--dark); color: var(--white); }
@media (max-width: 640px) {
  .grev-header { flex-direction: column; align-items: flex-start; }
  .grev-all-btn { width: 100%; justify-content: center; }
}

/* ─── TESTIMONIALS ────────────────────────────────── */
.reviews { background: var(--canvas); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review-card { background: var(--white); border-radius: 16px; padding: 36px 32px; border: 1px solid var(--border); }
.review-stars { color: var(--peach); font-size: 18px; letter-spacing: 3px; margin-bottom: 16px; }
.review-text { font-size: 15px; color: #555; line-height: 1.7; margin-bottom: 24px; }
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer-av {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--dark); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Bebas Neue', sans-serif; font-size: 18px; letter-spacing: 0.03em;
  flex-shrink: 0;
}
.reviewer-name { font-size: 14px; font-weight: 700; color: var(--dark); }
.reviewer-loc { font-size: 12px; color: var(--gray); }

/* ─── FAQ ────────────────────────────────────────── */
.faq { background: var(--white); }
.faq-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 0 80px; align-items: start; }
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--border); padding: 22px 0; cursor: pointer; }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px; font-weight: 700; letter-spacing: 0.03em; color: var(--dark);
}
.faq-toggle {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--canvas); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--dark); flex-shrink: 0;
  transition: all 0.2s; font-weight: 300;
}
.faq-a { font-size: 14px; color: var(--gray); line-height: 1.7; margin-top: 12px; display: none; }
.faq-item.open .faq-a { display: block; }
.faq-item.open .faq-toggle { background: var(--peach); border-color: var(--peach); color: white; transform: rotate(45deg); }
.faq-contact {
  background: var(--dark); border-radius: 16px;
  padding: 48px 44px; color: var(--white);
}
.faq-contact h3 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(26px, 4vw, 36px); letter-spacing: 0.02em; margin-bottom: 12px; }
.faq-contact p { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.6; margin-bottom: 32px; }
.contact-row { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.contact-icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(242,169,138,0.15); border: 1px solid rgba(242,169,138,0.3);
  display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0;
}
.contact-label { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.45); }
.contact-value { font-size: 15px; font-weight: 600; color: var(--white); }
.btn-peach-full {
  display: flex; align-items: center; justify-content: center;
  background: var(--peach); color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 15px 32px; border-radius: 4px; border: none; cursor: pointer;
  transition: background 0.2s; margin-top: 32px; width: 100%;
}
.btn-peach-full:hover { background: var(--peach2); }

/* ─── CTA BAND ────────────────────────────────────── */
.cta-band {
  background: var(--peach); color: var(--white);
  padding: 80px 48px; text-align: center;
}
.cta-band h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 6vw, 72px); letter-spacing: 0.03em;
  margin-bottom: 12px;
}
.cta-band p { font-size: 18px; color: rgba(255,255,255,0.85); margin-bottom: 40px; }
.cta-band-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-white {
  background: var(--white); color: var(--peach2);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 15px 36px; border-radius: 4px; border: none; cursor: pointer;
  transition: all 0.2s;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }
.btn-ghost-white2 {
  background: transparent; color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 14px 36px; border-radius: 4px; border: 2px solid rgba(255,255,255,0.5);
  cursor: pointer; transition: all 0.2s;
}
.btn-ghost-white2:hover { border-color: white; }

/* ─── FOOTER ──────────────────────────────────────── */
footer { background: var(--dark2); color: var(--white); padding: 72px 48px 36px; }
.footer-inner { max-width: 1400px; margin: 0 auto; }
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
  padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.08); margin-bottom: 32px;
}
.footer-logo { height: 52px; filter: brightness(0) invert(1); opacity: 0.85; margin-bottom: 16px; }
.footer-desc { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.7; max-width: 280px; margin-bottom: 24px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.6);
  transition: all 0.2s;
}
.footer-social a:hover { background: var(--peach); border-color: var(--peach); color: white; }
.footer-col h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--peach); margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col ul li a { font-size: 14px; color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: rgba(255,255,255,0.3); flex-wrap: wrap; gap: 8px;
}
.footer-motto { font-style: italic; color: rgba(255,255,255,0.4); }

/* ─── PROTECTION PLANS ───────────────────────────── */
.plans { background: var(--canvas); }
@keyframes plan-pulse {
  0%,100% { box-shadow: 0 32px 72px rgba(10,61,66,0.28); }
  50%      { box-shadow: 0 48px 96px rgba(10,61,66,0.45); }
}
.plans-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-top: 56px; align-items: stretch;
}
.plan-card {
  background: var(--white); border: 2px solid var(--border);
  border-radius: 20px; padding: 40px 36px;
  display: flex; flex-direction: column;
  transition: transform 0.28s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.28s ease;
}
.plan-card:hover { transform: translateY(-12px) scale(1.03); box-shadow: 0 28px 60px rgba(10,61,66,0.18); }
@keyframes plan-shine {
  0%   { left: -80%; opacity: 0; }
  10%  { opacity: 1; }
  50%  { left: 130%; opacity: 1; }
  51%  { opacity: 0; }
  100% { left: 130%; opacity: 0; }
}
.plan-card-featured {
  background: var(--dark); border-color: var(--dark);
  transform: scale(1.04);
  animation: plan-pulse 3s ease-in-out infinite;
  overflow: hidden;
  position: relative;
  transition: transform 0.28s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.28s ease;
}
.plan-card-featured::after {
  content: '';
  position: absolute;
  top: -50%; left: -80%;
  width: 50%; height: 200%;
  background: linear-gradient(105deg, transparent 35%, rgba(255,255,255,0.04) 50%, rgba(255,255,255,0.08) 52%, rgba(255,255,255,0.04) 54%, transparent 65%);
  transform: skewX(-10deg);
  animation: plan-shine 4s ease-in-out infinite;
  pointer-events: none;
}
.plan-card-featured:hover { animation-play-state: paused; transform: translateY(-12px) scale(1.07); box-shadow: 0 40px 80px rgba(10,61,66,0.32); }
.plan-badge {
  display: inline-block; align-self: flex-start;
  background: var(--peach); color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 20px; margin-bottom: 24px;
}
.plan-badge-spacer { height: 33px; margin-bottom: 24px; }
.plan-freq {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px; font-weight: 800; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--peach); margin-bottom: 12px;
}
.plan-card-featured .plan-freq { color: rgba(242,169,138,0.85); }
.plan-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 42px; letter-spacing: 0.03em; line-height: 1;
  color: var(--dark); margin-bottom: 6px;
}
.plan-card-featured .plan-name { color: var(--white); }
.plan-tagline { font-size: 14px; color: var(--gray); line-height: 1.5; margin-bottom: 28px; }
.plan-card-featured .plan-tagline { color: rgba(255,255,255,0.6); }
.plan-savings {
  background: var(--canvas); border-radius: 12px;
  padding: 20px 24px; margin-bottom: 28px; text-align: center;
}
.plan-card-featured .plan-savings { background: rgba(255,255,255,0.08); }
.plan-savings-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 52px; letter-spacing: 0.02em; line-height: 1; color: var(--dark);
}
.plan-card-featured .plan-savings-num { color: var(--white); font-size: 72px; }
.plan-savings-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--peach); margin-top: 2px; display: block;
}
.plan-card-featured .plan-savings-label { color: rgba(255,255,255,0.45); }
.plan-features {
  list-style: none; display: flex; flex-direction: column;
  gap: 12px; margin-bottom: 36px; flex: 1;
}
.plan-features li {
  font-size: 14px; color: #555;
  display: flex; align-items: center; gap: 10px; line-height: 1.5;
}
.plan-card-featured .plan-features li { color: rgba(255,255,255,0.8); }
.plan-features li::before {
  content: '✓'; width: 22px; height: 22px; border-radius: 50%;
  background: rgba(34,139,34,0.12); border: 1.5px solid #22a84a;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; color: #22a84a; flex-shrink: 0;
}
.plan-features li.plan-feature-no::before {
  content: '✕'; background: rgba(210,30,30,0.1); border-color: #d42020; color: #d42020;
}
.plan-card-featured .plan-features li::before {
  background: rgba(242,169,138,0.2); border-color: rgba(242,169,138,0.6);
}
.plan-cta {
  display: flex; align-items: center; justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 16px 32px; border-radius: 6px; border: none; cursor: pointer; transition: all 0.2s;
}
.plan-cta-dark { background: var(--dark); color: var(--white); }
.plan-cta-dark:hover { background: var(--dark2); }
.plan-cta-peach { background: var(--peach); color: var(--white); }
.plan-cta-peach:hover { background: var(--peach2); }
.plans-onetime {
  text-align: center; margin-top: 80px;
  padding: 48px 32px; border: 1px dashed var(--border); border-radius: 16px;
}
.plans-onetime p { font-size: 16px; color: var(--gray); margin-bottom: 36px; }
.plans-onetime strong { color: var(--dark); }

/* ─── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 960px) {
  /* Header — switch to flexbox so hamburger stays right when nav is hidden */
  header { padding: 0 20px; }
  .hdr { display: flex; justify-content: space-between; align-items: center; height: 70px; }
  .hdr-logo { height: 190px; }
  .hdr-nav { display: none; }
  .hdr-cta { display: none; }
  .hdr-hamburger { display: flex; }

  /* Hero */
  .hero-inner { padding: 60px 24px 48px; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .hero-stat { border-right: none; margin-bottom: 0; }

  /* Sections */
  .sec { padding: 64px 24px; }
  .page-hero { padding: 80px 24px 60px; }
  .stats-band { padding: 56px 24px; }
  .cta-band { padding: 56px 24px; }
  footer { padding: 56px 24px 32px; }

  /* Grids */
  .svc-grid-top { grid-template-columns: 1fr; }
  .svc-grid-bot { grid-template-columns: 1fr 1fr; }
  .svc-grid-all { grid-template-columns: 1fr 1fr; }
  .plans-grid { grid-template-columns: 1fr; }
  .plan-card-featured { transform: none; }
  .plan-card-featured:hover { transform: translateY(-12px) scale(1.03); box-shadow: 0 28px 60px rgba(10,61,66,0.28); }
  .process-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; align-items: unset; justify-content: unset; }
  .process-arrow { display: none; }
  .process-step { max-width: none; flex: none; background: var(--white); border-radius: 20px; padding: 28px 16px; box-shadow: 0 4px 20px rgba(10,61,66,0.08); border: 1px solid var(--border); }
  .story-grid { grid-template-columns: 1fr; gap: 40px; }
  .why-grid { grid-template-columns: 1fr; gap: 48px; }
  .quote-box { padding: 36px 28px; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .faq-wrap { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 12px; }
  .cta-band-btns { flex-direction: column; align-items: center; gap: 12px; }

  /* Contact cards — 1 column on tablet */
  .contact-cards { grid-template-columns: 1fr !important; }

  /* Serve grid (commercial) — 2 columns on tablet */
  .serve-grid { grid-template-columns: 1fr 1fr !important; }

  /* Service clean grid — 2 columns on tablet */
  .svc-clean-grid { grid-template-columns: 1fr 1fr; }

  /* Values grid (about) — 2 columns on tablet */
  .values-grid { grid-template-columns: 1fr 1fr !important; }
}

@media (max-width: 640px) {
  /* Hero zoom out on mobile */
  .hero {
    background:
      linear-gradient(180deg, rgba(4,28,32,0.25) 0%, rgba(4,28,32,0.55) 50%, rgba(4,28,32,0.88) 100%),
      url('hero-neo-van.jpg') center 70% / 110% auto no-repeat;
  }

  /* Header */
  header { padding: 0 16px; }
  .hdr-logo { height: 150px; }

  /* Hero */
  .hero { min-height: 58vh; background-position: 43% center; }
  .hero-inner { padding: 16px 20px 16px; }
  .hero-h1 { font-size: clamp(64px, 20vw, 88px); }
  .hero-btns { flex-direction: column; align-items: stretch; gap: 10px; }
  .hero-btn-primary, .hero-btn-ghost { justify-content: center; font-size: 13px; padding: 14px 24px; min-width: unset; }
  .hero-btn-ghost { display: none; }
  .hero-bottom { display: flex; flex-direction: column-reverse; }
  .hero-trust { display: flex; flex-direction: row; justify-content: space-between; align-items: center; gap: 0; padding: 12px 0 8px; flex-wrap: nowrap; border-top: none; border-bottom: 1px solid rgba(255,255,255,0.5); }
  .hero-btns { border-top: none; padding-top: 12px; }
  .squeegee-wrapper { width: 90px; top: -14px; bottom: -14px; }
  .hero-badge { padding: 0; font-size: 11px; letter-spacing: 0.06em; flex: 1; justify-content: center; text-align: center; flex-direction: column; gap: 6px; }
  .hero-badge + .hero-badge { border-left: none; }
  .hero-badge-icon { margin: 0 auto; }

  /* Sections */
  .sec { padding: 48px 20px; }
  .page-hero { padding: 64px 20px 48px; }
  .page-hero-title { font-size: clamp(40px, 11vw, 64px); }
  .stats-band { padding: 40px 20px; }
  .cta-band { padding: 48px 20px; }
  footer { padding: 48px 20px 28px; }

  /* Service cards */
  .svc-card { min-height: 240px; }
  .svc-card h3 { font-size: 18px; letter-spacing: 0.02em; }
  .svc-card-content { padding: 20px 16px; }
  .svc-card-sm { padding: 24px 20px; min-height: auto; }
  .svc-card::before { background: linear-gradient(to top, rgba(6,46,51,0.99) 0%, rgba(10,61,66,0.85) 55%, rgba(10,61,66,0.2) 100%); }

  /* Process cards */
  .process-circle { width: 90px; height: 90px; }
  .process-circle svg { width: 36px; height: 36px; }
  .process-badge { width: 28px; height: 28px; font-size: 12px; }

  /* Plans */
  .plan-card { padding: 28px 24px; }
  .plan-savings-num { font-size: 40px; }
  .plan-card-featured .plan-savings-num { font-size: 52px; }

  /* Stats */
  .stats-row { gap: 16px; flex-wrap: wrap; }
  .stats-divider { display: none; }

  /* Story */
  .story-btns { flex-direction: column; }
  .btn-solid, .btn-outline-dark { text-align: center; }

  /* Reviews */
  .reviews-grid { grid-template-columns: 1fr; }

  /* Quote / contact */
  .quote-box { padding: 28px 20px; }
  .faq-contact { padding: 32px 24px; }
  .contact-cards { grid-template-columns: 1fr !important; }
  .hours-card { padding: 32px 24px !important; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { font-size: 11px; }

  /* Inline grids */
  .values-grid { grid-template-columns: 1fr !important; }
  .serve-grid { grid-template-columns: 1fr !important; }

  /* Service clean cards — 1 column on mobile */
  .svc-clean-grid { grid-template-columns: 1fr; }
  .svc-clean-card { padding: 28px 24px; }
}

/* ─── SERVICE CLEAN CARDS ──────────────────────────────── */
:root { --dark: #0A3D42; --dark2: #062E33; --peach: #F2A98A; --peach2: #E8916E; --sky: #7DCBD4; --white: #ffffff; --canvas: #F5F5F0; --gray: #888; --text: #1A1A1A; --border: #E0E0E0; }
.svc-clean-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 52px;
}
.svc-clean-card {
  background: #fff;
  border-radius: 16px;
  border: none;
  border-top: 3px solid #0A3D42;
  padding: 36px 32px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(6,46,51,0.09);
  transition: transform 0.28s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.28s ease, border-top-color 0.22s;
}
.svc-clean-card:hover {
  transform: translateY(-20px) scale(1.07);
  box-shadow: 0 40px 80px rgba(6,46,51,0.22);
  border-top-color: var(--peach);
}
.serve-card:hover {
  transform: translateY(-20px) scale(1.07);
  box-shadow: 0 40px 80px rgba(6,46,51,0.22);
}
.svc-clean-icon {
  width: 52px; height: 52px;
  background: rgba(10,61,66,0.06);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  transition: transform 0.28s cubic-bezier(0.34,1.56,0.64,1), background 0.22s;
}
.svc-clean-card:hover .svc-clean-icon {
  transform: translateY(-4px) scale(1.15);
  background: rgba(242,169,138,0.18);
}
.svc-clean-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 17px; font-weight: 800;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: #0A3D42; margin-bottom: 12px;
}
.svc-clean-card p {
  font-size: 14px; color: #555; line-height: 1.7; margin-bottom: 20px;
}
.svc-clean-link {
  font-size: 13px; font-weight: 700;
  color: #0A3D42; text-decoration: none;
  letter-spacing: 0.04em;
  border-bottom: 1.5px solid #F2A98A;
  padding-bottom: 2px; transition: color 0.2s;
}
.svc-clean-link:hover { color: #F2A98A; }
.svc-clean-all-btn {
  display: inline-block; padding: 14px 40px;
  border: 2px solid #0A3D42; border-radius: 8px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px; font-weight: 800;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: #0A3D42; text-decoration: none; transition: all 0.2s;
}
.svc-clean-all-btn:hover { background: #0A3D42; color: #fff; }
.svc-clean-list {
  list-style: none; margin: 0 0 20px 0; padding: 0;
  display: flex; flex-direction: column; gap: 7px;
}
.svc-clean-list li {
  font-size: 13.5px; color: #555;
  padding-left: 18px; position: relative; line-height: 1.4;
}
.svc-clean-list li::before {
  content: '✓'; position: absolute; left: 0;
  color: #0A3D42; font-weight: 700; font-size: 12px;
}

/* ─── MOBILE ADDITIONS ─────────────────────────────────── */
@media (max-width: 960px) {
  /* Clean service cards */
  .svc-clean-grid { grid-template-columns: repeat(2, 1fr) !important; }
  /* Estimate page */
  .est-page { grid-template-columns: 1fr !important; }
  .est-left { padding: 48px 28px 40px !important; }
  .est-right { padding: 40px 20px !important; }
  /* Plans section text */
  .plans-onetime { text-align: center; padding: 32px 24px; }
  /* Section headings */
  .sec-title { font-size: clamp(32px, 6vw, 56px); }
}

@media (max-width: 640px) {
  /* Clean service cards — 1 col */
  .svc-clean-grid { grid-template-columns: 1fr !important; }
  .svc-clean-card { padding: 28px 24px !important; }
  /* Estimate form */
  .est-form-wrap { padding: 28px 20px !important; }
  .est-row { grid-template-columns: 1fr !important; gap: 0 !important; }
  /* Stats band text */
  .stats-tagline { font-size: clamp(32px, 8vw, 48px) !important; }
  .stats-scroll-cue span { font-size: 16px !important; letter-spacing: 0.14em !important; }
  /* CTA buttons full-width on mobile */
  .cta-band-btns a, .cta-band-btns button { width: 100%; text-align: center; }
  /* Plans one-time */
  .plans-onetime p { font-size: 14px; }
  /* Process grid single col */
  .process-grid { grid-template-columns: 1fr !important; }
  /* Ensure tap targets are large enough */
  .hdr-cta, .btn-solid, .btn-outline-dark, .form-submit, .plan-cta { min-height: 44px; }
  /* Reduce grid gaps on small screens */
  .reviews-grid, .svc-grid-bot, .svc-grid-top, .why-grid { gap: 16px !important; }
  /* About page value cards */
  .values-grid { gap: 16px !important; }
  /* Contact call box bigger on left */
  .contact-call-number { font-size: clamp(28px, 7vw, 40px); }
  /* Sec sub text */
  .sec-sub { font-size: 15px; }
  /* Prevent any element causing horizontal scroll */
  section, .sec-inner, .stats-band, .cta-band, footer { max-width: 100%; }
}

@media (max-width: 400px) {
  .est-left h1 { font-size: 36px !important; }
  .plan-savings-num { font-size: 34px !important; }
  .svc-clean-card { padding: 24px 18px !important; }
}

/* ─── SCROLL REVEAL ─────────────────────────────────────── */
.sr        { opacity: 0; transform: translateY(38px); transition: opacity 0.55s ease, transform 0.55s ease; }
.sr-left   { opacity: 0; transform: translateX(-50px); transition: opacity 0.55s ease, transform 0.55s ease; }
.sr-right  { opacity: 0; transform: translateX(50px); transition: opacity 0.55s ease, transform 0.55s ease; }
.sr.visible, .sr-left.visible, .sr-right.visible { opacity: 1; transform: none; }
.sr-d1 { transition-delay: 0.08s; }
.sr-d2 { transition-delay: 0.16s; }
.sr-d3 { transition-delay: 0.24s; }
.sr-d4 { transition-delay: 0.32s; }
.sr-d5 { transition-delay: 0.40s; }
.sr-d6 { transition-delay: 0.48s; }


/* ─── CONTACT PAGE ───────────────────────────────── */

/* ── HERO BANNER ── */
.contact-hero {
  background: var(--dark);
  padding: 72px 48px 80px;
  text-align: center;
  position: relative;
  overflow: clip;
}
.contact-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(232,168,124,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.contact-hero-neo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: clamp(400px, 100vw, 900px);
  width: auto;
  opacity: 0.07;
  pointer-events: none;
  user-select: none;
}
.contact-hero-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--peach);
  margin-bottom: 20px;
}
.contact-hero-eyebrow::before,
.contact-hero-eyebrow::after {
  content: '';
  width: 40px;
  height: 2px;
  background: var(--peach);
  border-radius: 2px;
}
.contact-hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(52px, 8vw, 96px);
  color: #fff;
  letter-spacing: 0.03em;
  line-height: 1;
  margin-bottom: 20px;
}
.contact-hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
  max-width: 520px;
  margin: 0 auto;
}

/* ── BODY SECTION ── */
.contact-body {
  background: #f7f5f0;
  padding: 80px 48px 100px;
}
.contact-body-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 72px;
  align-items: start;
}

/* LEFT */
.contact-left h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(32px, 4vw, 48px);
  color: var(--dark);
  letter-spacing: 0.03em;
  line-height: 1.05;
  margin-bottom: 14px;
}
.contact-left-sub {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 420px;
}

/* Props */
.contact-props { display: flex; flex-direction: column; gap: 28px; margin-bottom: 48px; }
.contact-prop { display: flex; align-items: flex-start; gap: 18px; }
.contact-prop-icon {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(10,61,66,0.08);
  border: 1.5px solid rgba(10,61,66,0.12);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
}
.contact-prop-text h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 17px;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: 0.03em;
  margin-bottom: 3px;
}
.contact-prop-text p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* Call box */
.contact-call-box {
  background: rgba(10,61,66,0.05);
  border: 1.5px solid rgba(10,61,66,0.1);
  border-radius: 14px;
  padding: 22px 28px;
  cursor: pointer;
  transition: background 0.2s;
}
.contact-call-box:hover { background: rgba(10,61,66,0.09); }
.contact-call-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 6px;
}
.contact-call-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  letter-spacing: 0.04em;
  color: var(--dark);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}
.contact-call-number:hover { color: var(--peach); }
.contact-call-hours {
  font-size: 12px;
  color: #aaa;
  margin-top: 4px;
}

/* Big phone number — left column */
.contact-call-big {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.contact-call-big-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255,255,255,0.5); margin-bottom: 10px;
}
.contact-call-big-number {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 5vw, 64px);
  letter-spacing: 0.03em; line-height: 1;
  color: var(--white); text-decoration: none;
  transition: color 0.2s;
}
.contact-call-big-number:hover { color: var(--peach); }
.contact-call-big-hours {
  font-size: 13px; color: rgba(255,255,255,0.45); margin-top: 8px;
}
@media (max-width: 960px) {
  .contact-call-big { margin-top: 28px; padding-top: 24px; }
  .contact-call-big-number { font-size: clamp(36px, 8vw, 52px); }
}

/* RIGHT form card */
.contact-form-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 56px rgba(6,46,51,0.10);
  padding: 48px 44px;
  position: sticky;
  top: 32px;
}
.contact-form-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--peach);
  margin-bottom: 6px;
}
.contact-form-heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  color: var(--dark);
  letter-spacing: 0.03em;
  margin-bottom: 6px;
  line-height: 1;
}
.contact-form-sub {
  font-size: 13px;
  color: #9ca3af;
  line-height: 1.6;
  margin-bottom: 28px;
}

/* Jobber embed */
#37116d18-391a-46b2-8327-ae4b0e8b2e62-4794170 {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}
@media (max-width: 640px) {
  #37116d18-391a-46b2-8327-ae4b0e8b2e62-4794170 {
    margin: 0 -8px;
    width: calc(100% + 16px);
  }
}

/* Mobile */
@media (max-width: 960px) {
  .contact-body { padding: 60px 24px 80px; }
  .contact-body-inner { grid-template-columns: 1fr; gap: 48px; }
  .contact-form-card { position: static; padding: 36px 28px; }
}
@media (max-width: 640px) {
  .contact-hero { padding: 56px 24px 64px; }
  .contact-body { padding: 48px 20px 64px; }
  .contact-form-card { padding: 28px 20px; }
  .contact-call-number { font-size: clamp(22px, 6vw, 32px); }
}


/* ─── ESTIMATE PAGE ──────────────────────────────── */

.est-page {
  min-height: 100vh;
  background: var(--offwhite);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}

/* ── LEFT PANEL ── */
.est-left {
  background: var(--dark);
  padding: 72px 56px 72px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: clip;
}
.est-left::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,168,124,0.08) 0%, transparent 70%);
}
.est-left-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--peach);
  margin-bottom: 16px;
}
.est-left h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(42px, 5vw, 64px);
  line-height: 1.0;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}
.est-left-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
  margin-bottom: 44px;
  max-width: 380px;
}

.est-props { display: flex; flex-direction: column; gap: 22px; margin-bottom: 48px; }
.est-prop { display: flex; align-items: flex-start; gap: 16px; }
.est-prop-icon {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(232,168,124,0.12);
  border: 1px solid rgba(232,168,124,0.2);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 17px;
}
.est-prop-text h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2px;
  letter-spacing: 0.02em;
}
.est-prop-text p {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}

.est-call-box {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 24px 28px;
}
.est-call-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 8px;
}
.est-call-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  letter-spacing: 0.04em;
  color: var(--peach);
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.est-call-number:hover { color: #f0c09a; }
.est-call-hours {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  margin-top: 4px;
}

/* ── RIGHT PANEL ── */
.est-right {
  padding: 72px 64px 72px 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--offwhite);
}

.est-form-wrap {
  width: 100%;
  max-width: 480px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 8px 48px rgba(6,46,51,0.10);
  padding: 44px 40px;
}

/* Progress bar */
.est-steps {
  display: flex;
  gap: 6px;
  margin-bottom: 36px;
}
.est-step-bar {
  flex: 1;
  height: 5px;
  border-radius: 999px;
  background: #e5e7eb;
  transition: background 0.3s;
}
.est-step-bar.active { background: var(--dark); }
.est-step-bar.done   { background: var(--peach); }

.est-form-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #9ca3af;
  margin-bottom: 6px;
}
.est-form-heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  color: var(--dark);
  letter-spacing: 0.03em;
  margin-bottom: 28px;
}

/* Form fields */
.est-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 14px; }
.est-field {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid #e5e7eb;
  border-radius: 10px;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  color: #1f2937;
  background: #fafafa;
  outline: none;
  transition: border-color 0.2s;
  margin-bottom: 14px;
}
.est-field:focus { border-color: var(--teal); background: #fff; }
.est-field::placeholder { color: #9ca3af; }
.est-field-group { margin-bottom: 0; }

.est-check-wrap {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 16px;
}
.est-check-wrap input[type="checkbox"] {
  width: 16px; height: 16px;
  accent-color: var(--teal);
  margin-top: 2px;
  flex-shrink: 0;
  cursor: pointer;
}
.est-check-wrap label {
  font-size: 12px;
  color: #6b7280;
  line-height: 1.55;
  cursor: pointer;
}

.est-btn-row {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-top: 8px;
}
.est-btn-back {
  background: transparent;
  border: none;
  color: #9ca3af;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  padding: 0 16px 0 0;
  font-family: 'Inter', sans-serif;
}
.est-btn-back:hover { color: #4b5563; }
.est-btn-next {
  background: var(--dark);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 14px 36px;
  font-size: 15px;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: background 0.2s;
  letter-spacing: 0.01em;
}
.est-btn-next:hover { background: var(--teal); }
.est-btn-next.peach { background: var(--peach); color: #fff; }
.est-btn-next.peach:hover { background: var(--peach2); }

/* Step panels */
.est-step { display: none; }
.est-step.active { display: block; }

/* Success step */
.est-success {
  text-align: center;
  padding: 20px 0;
}
.est-success-icon {
  width: 72px; height: 72px;
  background: rgba(232,168,124,0.12);
  border: 2px solid var(--peach);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 32px;
  margin: 0 auto 24px;
}
.est-success h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  color: var(--dark);
  letter-spacing: 0.03em;
  margin-bottom: 10px;
}
.est-success p {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.65;
  margin-bottom: 28px;
}

/* Textarea */
.est-textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid #e5e7eb;
  border-radius: 10px;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  color: #1f2937;
  background: #fafafa;
  outline: none;
  transition: border-color 0.2s;
  resize: none;
  margin-bottom: 14px;
}
.est-textarea:focus { border-color: var(--teal); background: #fff; }
.est-textarea::placeholder { color: #9ca3af; }

/* Tablet */
@media (max-width: 900px) {
  .est-page { grid-template-columns: 1fr; }
  .est-left { padding: 56px 28px 48px; }
  .est-right { padding: 48px 20px; }
  .est-form-wrap { padding: 32px 24px; }
}
/* Mobile */
@media (max-width: 640px) {
  .est-left { padding: 40px 20px 36px; }
  .est-right { padding: 32px 16px; }
  .est-form-wrap { padding: 24px 16px; }
}


/* ─── SERVICES PAGE ──────────────────────────────── */

.svc-row { display: flex; align-items: center; gap: clamp(32px, 5vw, 64px); padding: 80px 48px; max-width: 1200px; margin: 0 auto; }
.svc-row.reverse { flex-direction: row-reverse; }
.svc-row-img { flex: 0 0 48%; }
.svc-row-img img { width: 100%; height: 480px; object-fit: cover; border-radius: 12px; display: block; }
.svc-row-text { flex: 1; }
.svc-row-eyebrow { font-family: 'Barlow Condensed', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--peach); margin-bottom: 10px; }
.svc-row-text h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(28px, 4vw, 48px); color: var(--dark); line-height: 1; margin-bottom: 16px; }
.svc-row-text p { font-size: 16px; color: #444; line-height: 1.7; margin-bottom: 20px; }
.svc-row-list { list-style: none; padding: 0; margin: 0 0 28px; display: flex; flex-direction: column; gap: 10px; }
.svc-row-list li { display: flex; align-items: center; gap: 10px; font-size: 15px; color: var(--dark); font-weight: 500; }
.svc-row-list li::before { content: '✓'; width: 22px; height: 22px; background: var(--peach); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; flex-shrink: 0; }
.svc-row-divider { border: none; border-top: 1px solid #e0dedd; margin: 0 48px; }
@media (max-width: 900px) {
  .svc-row, .svc-row.reverse { gap: 40px; padding: 60px 32px; }
  .svc-row-img img { height: 360px; }
  .svc-row-divider { margin: 0 32px; }
}
@media (max-width: 768px) {
  .svc-row, .svc-row.reverse { flex-direction: column; gap: 28px; padding: 48px 20px; }
  .svc-row-img { flex: none; width: 100%; }
  .svc-row-img img { height: 260px; }
  .svc-row-divider { margin: 0 20px; }
}


/* ─── ABOUT PAGE ─────────────────────────────────── */

.team-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.team-portrait { width: 100%; aspect-ratio: 4/5; object-fit: cover; object-position: center 5%; border-radius: 16px; display: block; box-shadow: 0 32px 80px rgba(10,61,66,0.2); }
@media (max-width: 900px) { .team-grid { gap: 24px; } }
@media (max-width: 640px) { .team-grid { grid-template-columns: 1fr; } }


/* ─── HOMEPAGE ─── */

/* Hero load animations */
.hero-logo-mark {
  height: 100px; width: auto;
  filter: brightness(0) invert(1);
  opacity: 0;
  margin-bottom: 20px;
  animation: hero-logo-in 0.7s ease 0.15s both;
}
.hero-neo-watermark {
  position: absolute;
  top: 62%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 900px;
  width: auto;
  opacity: 0;
  animation: neo-watermark-in 2s ease 3s forwards;
  pointer-events: none;
  z-index: 0;
}
@keyframes neo-watermark-in {
  from { opacity: 0; }
  to   { opacity: 0.45; }
}
@keyframes hero-logo-in {
  from { opacity: 0; transform: translateY(-14px); }
  to   { opacity: 0.94; transform: translateY(0); }
}
.hero-sub {
  animation: hero-fade-up 0.75s ease 1.3s both;
}
.hero-bottom {
  animation: hero-fade-up 0.75s ease 1.65s both;
}
@keyframes hero-fade-up {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* CTA band logo */
.cta-logo {
  height: 64px; width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.88;
  display: block; margin: 0 auto 18px;
}


/* ─── HOMEPAGE — SERVICE CARDS ─── */

.svc-clean-img {
  width: calc(100% + 64px);
  margin: -36px -32px 24px;
  height: 200px;
  object-fit: cover;
  border-radius: 16px 16px 0 0;
  display: block;
}
@media (max-width: 640px) {
  .svc-clean-img { width: calc(100% + 48px); margin: -28px -24px 20px; }
}
