/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ===== SKIP LINK ===== */
.skip-link {
  position: absolute;
  top: -999px;
  left: var(--sp-4);
  background: var(--green-dark);
  color: var(--white-tint);
  padding: var(--sp-2) var(--sp-4);
  border-radius: var(--radius-sm);
  z-index: 9999;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
}
.skip-link:focus { top: var(--sp-4); }

/* ===== VISUALLY HIDDEN ===== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

:root {
  /* OKLCH palette — committed green strategy */
  --green:       oklch(65% 0.20 145);
  --green-dark:  oklch(52% 0.18 145);
  --green-deep:  oklch(20% 0.06 145);
  --green-mid:   oklch(38% 0.12 145);
  --green-light: oklch(96% 0.04 145);
  --green-pale:  oklch(98.5% 0.015 145);

  --yellow:      oklch(84% 0.17 90);
  --yellow-dark: oklch(72% 0.16 90);

  --ink:         oklch(20% 0.04 145);
  --ink-mid:     oklch(34% 0.06 145);
  --muted:       oklch(52% 0.04 145);
  --border:      oklch(90% 0.025 145);
  --surface:     oklch(99% 0.008 145);
  --white-tint:  oklch(99.5% 0.005 145);

  /* Spacing — 4pt base */
  --sp-1: 4px;   --sp-2: 8px;   --sp-3: 12px;
  --sp-4: 16px;  --sp-5: 20px;  --sp-6: 24px;
  --sp-8: 32px;  --sp-10: 40px; --sp-12: 48px;
  --sp-16: 64px; --sp-20: 80px; --sp-24: 96px;

  --radius-sm:   10px;
  --radius-md:   18px;
  --radius-lg:   28px;
  --radius-xl:   40px;
  --radius-full: 999px;

  --font-head: 'Poppins', sans-serif;
  --font-body: 'Nunito', sans-serif;

  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-out-expo:  cubic-bezier(0.16, 1, 0.3, 1);

  --shadow-sm: 0 2px 8px oklch(20% 0.06 145 / 0.07);
  --shadow-md: 0 8px 28px oklch(20% 0.06 145 / 0.11);
  --shadow-lg: 0 20px 56px oklch(20% 0.06 145 / 0.16);
}

html { scroll-behavior: smooth; }

:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--surface);
  line-height: 1.65;
  overflow-x: hidden;
  font-optical-sizing: auto;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
h1, h2, h3, h4 { text-wrap: balance; }
p { text-wrap: pretty; }

/* ===== UTILITY ===== */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 var(--sp-6);
}

.section { position: relative; padding: var(--sp-24) 0 var(--sp-20); }

.section-header {
  text-align: center;
  max-width: 580px;
  margin: 0 auto var(--sp-16);
}

.section-header h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--ink);
  margin: var(--sp-3) 0 var(--sp-4);
  line-height: 1.15;
}

.section-header p {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 54ch;
  margin: 0 auto;
}

.section-tag {
  display: inline-block;
  background: var(--green-light);
  color: var(--green-dark);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: var(--radius-full);
}

.badge {
  display: inline-block;
  background: var(--yellow);
  color: var(--ink);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.82rem;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  margin-bottom: var(--sp-5);
  letter-spacing: 0.02em;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.92rem;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform var(--ease-out-quart) 200ms,
              box-shadow var(--ease-out-quart) 200ms,
              background 150ms ease,
              border-color 150ms ease;
  white-space: nowrap;
}

.btn--primary {
  background: var(--green);
  color: var(--white-tint);
  border-color: var(--green);
  box-shadow: 0 4px 18px oklch(65% 0.20 145 / 0.32);
}
.btn--primary:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px oklch(65% 0.20 145 / 0.38);
}

.btn--outline {
  background: transparent;
  color: var(--white-tint);
  border-color: oklch(99% 0.005 145 / 0.55);
}
.btn--outline:hover {
  background: oklch(99% 0.005 145 / 0.10);
  border-color: var(--white-tint);
}

.btn--outline-green {
  background: transparent;
  color: var(--green-dark);
  border-color: var(--green);
}
.btn--outline-green:hover {
  background: var(--green-light);
  transform: translateY(-2px);
}

.btn--nav {
  background: var(--green);
  color: var(--white-tint);
  padding: 10px 20px;
  font-size: 0.85rem;
}
.btn--nav:hover { background: var(--green-dark); }

.btn--full { width: 100%; }

/* ===== PROMO BANNER ===== */
.promo-banner {
  background: var(--green);
  display: flex;
  align-items: center;
  overflow: hidden;
  height: 42px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1100;
}

.promo-banner__track {
  display: flex;
  flex: 1;
  overflow: hidden;
  white-space: nowrap;
  width: max-content;
  animation: promo-scroll 22s linear infinite;
  will-change: transform;
}

.promo-banner__content {
  display: inline-block;
  flex-shrink: 0;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--ink);
}

@keyframes promo-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.promo-banner__btn {
  flex-shrink: 0;
  background: var(--ink);
  color: var(--white-tint);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  margin-right: var(--sp-3);
  border-radius: 5px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 150ms ease;
}
.promo-banner__btn:hover { background: var(--green-dark); }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 42px;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 14px 0;
  transition: background 300ms ease, box-shadow 300ms ease, padding 300ms ease;
}

.navbar.scrolled {
  background: oklch(99.5% 0.005 145 / 0.97);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--border), var(--shadow-sm);
  padding: 10px 0;
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-family: var(--font-head);
  font-size: 1.05rem;
  color: var(--white-tint);
  transition: color 300ms ease;
}
.navbar.scrolled .navbar__logo { color: var(--ink); }

.navbar__logo-img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  border-radius: 50%;
  background: oklch(99% 0.005 145 / 0.12);
  transition: background 300ms ease;
}
.navbar.scrolled .navbar__logo-img { background: var(--green-light); }

.logo-text strong { color: var(--green); }

.navbar__links {
  display: flex;
  align-items: center;
  gap: var(--sp-8);
}

.navbar__links a {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.88rem;
  color: oklch(99% 0.005 145 / 0.88);
  transition: color 150ms ease;
}
.navbar__links a:hover { color: var(--yellow); }
.navbar.scrolled .navbar__links a { color: var(--ink); }
.navbar.scrolled .navbar__links a:hover { color: var(--green-dark); }

.navbar__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}
.navbar__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white-tint);
  border-radius: 2px;
  transition: all 200ms var(--ease-out-quart);
}
.navbar.scrolled .navbar__burger span { background: var(--ink); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--green-deep);
  display: flex;
  align-items: center;
  padding: 140px 0 80px;
  overflow: hidden;
  border-bottom: 3px solid var(--green);
}

.commercial-hero {
  min-height: auto;
  padding: 150px 0 96px;
}

/* Atmospheric tones in the hero */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 25% 55%, oklch(65% 0.20 145 / 0.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 72% 30%, oklch(84% 0.17 90 / 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.hero__bg-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.shape {
  position: absolute;
  border-radius: 50%;
  background: var(--green);
  opacity: 0.06;
}
.shape-1 { width: 540px; height: 540px; top: -140px; right: -80px; }
.shape-2 { width: 300px; height: 300px; bottom: 40px; right: 4%; }

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-12);
  align-items: center;
}

.hero__logo-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

/* Glow behind logo */
.hero__logo-wrap::before {
  content: '';
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, oklch(65% 0.20 145 / 0.18) 0%, transparent 70%);
  pointer-events: none;
}

.hero__logo-img {
  width: 100%;
  max-width: 440px;
  height: auto;
  filter: drop-shadow(0 24px 48px oklch(0% 0 0 / 0.4));
  animation: heroFloat 5s var(--ease-out-expo) infinite alternate;
  position: relative;
}

@keyframes heroFloat {
  from { transform: translateY(0); }
  to   { transform: translateY(-16px); }
}

.hero__text { color: var(--white-tint); }

.hero__text h1 {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 4.8vw, 3.6rem);
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: var(--sp-5);
  letter-spacing: -0.01em;
}

.hero__text h1 em {
  font-style: normal;
  color: var(--yellow);
}

.hero__text p {
  font-size: 1.05rem;
  color: oklch(99% 0.005 145 / 0.78);
  max-width: 48ch;
  margin-bottom: var(--sp-8);
  line-height: 1.7;
  letter-spacing: 0.01em;
}

.hero__text p strong { color: var(--yellow); }

.hero__ctas {
  display: flex;
  gap: var(--sp-4);
  flex-wrap: wrap;
  margin-bottom: var(--sp-12);
}

.hero__specs {
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 600;
  color: oklch(99% 0.005 145 / 0.65);
  letter-spacing: 0.02em;
}

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--green);
  padding: var(--sp-6) 0;
  position: relative;
  z-index: 1;
}

.trust-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--sp-3);
}

.trust-item {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--ink);
  letter-spacing: 0.01em;
}

.trust-sep {
  color: oklch(20% 0.06 145 / 0.35);
  font-size: 0.9rem;
  line-height: 1;
  user-select: none;
}

/* ===== PROBLEM SECTION ===== */
.problem { background: var(--white-tint); }

.problem__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-20);
  align-items: center;
}

.problem__text .section-tag { margin-bottom: var(--sp-4); }

.problem__text h2 {
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 3.5vw, 2.5rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: var(--sp-5);
  color: var(--ink);
  letter-spacing: -0.01em;
}

.problem__text p {
  color: var(--muted);
  font-size: 1rem;
  margin-bottom: var(--sp-4);
  line-height: 1.75;
  max-width: 56ch;
}
.problem__text p strong { color: var(--green-dark); }
.problem__text .btn { margin-top: var(--sp-2); }

.problem__cards {
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
}

.problem-card {
  border-radius: var(--radius-md);
  padding: var(--sp-6) var(--sp-8);
}

.problem-card--bad {
  background: oklch(97% 0.025 25);
  border: 2px solid oklch(92% 0.04 25);
}

.problem-card--good {
  background: var(--green-light);
  border: 2px solid oklch(88% 0.07 145);
}

.problem-card__label {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.88rem;
  margin-bottom: var(--sp-3);
  color: var(--ink-mid);
}

.problem-card ul { display: flex; flex-direction: column; gap: var(--sp-2); }

.problem-card li {
  font-size: 0.92rem;
  color: var(--ink-mid);
  line-height: 1.5;
}

/* ===== HOW IT WORKS — editorial numbered ===== */
.how-it-works {
  background: var(--green-light);
  padding-bottom: 120px;
}

.how-it-works .section-header h2 { color: var(--ink); }
.how-it-works .section-header p  { color: var(--muted); }

.hiw-steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 760px;
  margin: 0 auto;
}

.hiw-step {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: var(--sp-6);
  align-items: start;
  padding: var(--sp-10) 0;
  border-bottom: 1px solid var(--border);
  transition: opacity 0.6s var(--ease-out-quart),
              transform 0.6s var(--ease-out-quart);
}
.hiw-step:last-child { border-bottom: none; }

.hiw-step__num {
  font-family: var(--font-head);
  font-size: 4.5rem;
  font-weight: 800;
  line-height: 1;
  color: var(--green);
  letter-spacing: -0.03em;
  padding-top: 4px;
  font-variant-numeric: tabular-nums;
  user-select: none;
}

.hiw-step__body { padding-top: var(--sp-3); }

.hiw-step__body h3 {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: var(--sp-3);
  color: var(--ink);
}

.hiw-step__body p {
  font-size: 0.98rem;
  color: var(--muted);
  max-width: 52ch;
  line-height: 1.7;
}

/* ===== PHOTO GALLERY ===== */
.gallery {
  background: var(--white-tint);
  padding-bottom: 0;
}

.before-after-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-10);
  margin-bottom: var(--sp-20);
}

.ba-single {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.ba-single img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s var(--ease-out-quart);
}
.ba-single:hover img { transform: scale(1.025); }

/* Van section — committed green moment */
.van-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
  background: var(--green-deep);
  padding: var(--sp-20) var(--sp-16) 120px;
}

.van-img-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--green-mid);
  position: relative;
}
.van-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 1;
}
/* van-img-wrap::before placeholder removed — trucks.jpg is live */

.van-text .section-tag {
  background: oklch(99% 0.005 145 / 0.12);
  color: oklch(99% 0.005 145 / 0.7);
  margin-bottom: var(--sp-4);
}

.van-text h3 {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  margin-bottom: var(--sp-4);
  color: var(--white-tint);
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.van-text p {
  font-size: 1rem;
  color: oklch(99% 0.005 145 / 0.72);
  margin-bottom: var(--sp-6);
  line-height: 1.7;
}
.van-text p strong { color: var(--yellow); }

.van-features {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  margin-bottom: var(--sp-8);
}
.van-features li {
  font-size: 0.92rem;
  color: oklch(99% 0.005 145 / 0.8);
}

/* ===== SERVICES / PRICING ===== */
.services { background: var(--green-light); }

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-8);
  align-items: start;
  margin-bottom: var(--sp-8);
}

.pricing-card {
  background: var(--white-tint);
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--sp-8) var(--sp-8);
  text-align: center;
  transition: border-color 200ms ease,
              box-shadow 200ms ease,
              transform 200ms var(--ease-out-quart);
  position: relative;
}
.pricing-card:hover {
  border-color: var(--green);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.pricing-card--featured {
  border-color: var(--green);
  background: var(--white-tint);
  box-shadow: var(--shadow-lg);
  transform: scale(1.04);
}
.pricing-card--featured:hover { transform: scale(1.04) translateY(-4px); }

.pricing-card__badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--yellow);
  color: var(--ink);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.75rem;
  padding: 4px 16px;
  border-radius: var(--radius-full);
  white-space: nowrap;
  letter-spacing: 0.02em;
}

.pricing-card__availability {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: var(--sp-3);
  padding: 4px 12px;
  background: oklch(94% 0.02 145);
  border-radius: var(--radius-full);
  display: inline-block;
  letter-spacing: 0.02em;
}
.pricing-card__availability--limited {
  background: oklch(96% 0.06 90);
  color: oklch(52% 0.12 75);
}

.pricing-card__tier {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: var(--sp-4);
  letter-spacing: -0.01em;
}
.pricing-card--featured .pricing-card__tier { color: var(--green-dark); }

.pricing-card__price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  margin-bottom: var(--sp-8);
  padding-bottom: var(--sp-6);
  border-bottom: 1px solid var(--border);
}

.price-dollar {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--muted);
  line-height: 1;
  align-self: flex-start;
  margin-top: 8px;
}

.price-amount {
  font-family: var(--font-head);
  font-size: 3.8rem;
  font-weight: 800;
  color: var(--ink);
  line-height: 1;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.03em;
}

.pricing-card--featured .price-dollar,
.pricing-card--featured .price-amount { color: var(--green-dark); }

.price-per {
  font-size: 0.82rem;
  color: var(--muted);
  align-self: flex-end;
  margin-bottom: 8px;
}

.pricing-card__features {
  text-align: left;
  margin-bottom: var(--sp-8);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.pricing-card__features li {
  font-size: 0.9rem;
  color: var(--ink-mid);
}

.pricing-note {
  text-align: center;
  font-size: 0.88rem;
  color: var(--muted);
}
.pricing-note a { color: var(--green-dark); font-weight: 600; text-decoration: underline; }
.pricing-note a:hover { color: var(--green); }

.partner-callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-6);
  margin-top: var(--sp-8);
  padding: var(--sp-6) var(--sp-8);
  background: var(--white-tint);
  border: 2px solid oklch(28% 0.10 255);
  border-radius: var(--radius-md);
  flex-wrap: wrap;
}

.partner-callout__logo {
  width: 160px;
  height: auto;
  object-fit: contain;
  flex-shrink: 0;
}

.partner-callout__text {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
  min-width: 0;
}

.partner-callout__text strong {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.25;
}

.partner-callout__text span {
  font-size: 1rem;
  line-height: 1.5;
  color: var(--muted);
}

@media (max-width: 600px) {
  .partner-callout { flex-direction: column; align-items: flex-start; }
  .partner-callout__logo { width: 140px; }
}

/* ===== COMMERCIAL ACCOUNTS ===== */
.commercial {
  background: var(--white-tint);
  overflow: hidden;
}

.commercial__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: var(--sp-16);
  align-items: start;
}

.commercial__content h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.12;
  color: var(--ink);
  margin: var(--sp-3) 0 var(--sp-5);
  letter-spacing: -0.01em;
}

.commercial__content p {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.75;
  max-width: 58ch;
}

.commercial__proof-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-4);
  margin-top: var(--sp-8);
}

.commercial-proof {
  background: var(--green-light);
  border: 1.5px solid oklch(88% 0.07 145);
  border-radius: var(--radius-md);
  padding: var(--sp-5);
}

.commercial-proof strong {
  display: block;
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
}

.commercial-proof span {
  display: block;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.55;
}

.commercial__quote-card {
  background: var(--green-light);
  border: 2px solid oklch(88% 0.07 145);
  border-radius: var(--radius-lg);
  padding: var(--sp-10);
  box-shadow: var(--shadow-md);
}

.commercial__quote-kicker {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-dark);
  margin-bottom: var(--sp-2);
}

.commercial__quote-card h3 {
  font-family: var(--font-head);
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: var(--sp-3);
  line-height: 1.2;
}

.commercial__quote-card > p:not(.commercial__quote-kicker) {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.65;
  margin-bottom: var(--sp-6);
}

.commercial-form .form-row {
  margin-bottom: 0;
}

.commercial-form .form-note a {
  color: var(--green-dark);
  font-weight: 700;
  text-decoration: underline;
}

/* ===== SERVICE AREA — deep green, stays on-brand ===== */
.service-area { background: var(--green-deep); }

.service-area .section-header h2 { color: var(--white-tint); }
.service-area .section-header p  { color: oklch(99% 0.005 145 / 0.65); }

.service-area__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-12);
  align-items: start;
}

.sa-card {
  background: oklch(99% 0.005 145 / 0.06);
  border: 1.5px solid oklch(99% 0.005 145 / 0.18);
  border-radius: var(--radius-md);
  padding: var(--sp-8) var(--sp-8);
}
.sa-card__title {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white-tint);
  text-align: center;
  margin-bottom: var(--sp-1);
}
.sa-card__subtitle {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--yellow);
  text-align: center;
  margin-bottom: var(--sp-6);
  letter-spacing: 0.01em;
}
.sa-locations {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  justify-content: center;
  margin-bottom: var(--sp-6);
}
.sa-loc {
  background: var(--green);
  color: var(--white-tint);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.84rem;
  padding: 6px 16px;
  border-radius: var(--radius-full);
}
.sa-card__contact {
  text-align: center;
  color: oklch(99% 0.005 145 / 0.72);
  font-size: 0.92rem;
  line-height: 1.6;
}
.sa-card__contact strong {
  color: var(--white-tint);
  font-size: 1.05rem;
}

.sa-note { color: var(--white-tint); padding: var(--sp-2) 0; }
.sa-note p {
  font-size: 0.98rem;
  font-weight: 500;
  line-height: 1.75;
  margin-bottom: var(--sp-4);
  color: oklch(99% 0.005 145 / 0.75);
}
.sa-note__btns {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  margin-top: var(--sp-8);
}
.sa-btn {
  display: block;
  text-align: center;
  background: transparent;
  color: var(--white-tint);
  border: 2px solid oklch(99% 0.005 145 / 0.45);
  border-radius: var(--radius-full);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.88rem;
  padding: 14px 24px;
  transition: background 200ms ease, border-color 200ms ease, color 200ms ease;
}
.sa-btn:hover {
  background: var(--white-tint);
  border-color: var(--white-tint);
  color: var(--ink);
}

/* ===== WHY US — numbered manifest ===== */
.why-us {
  background: var(--white-tint);
  padding-bottom: 120px;
}

.why-manifest {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: var(--sp-16);
  max-width: 960px;
  margin: 0 auto;
}

.wm-item {
  display: flex;
  gap: var(--sp-6);
  padding: var(--sp-8) 0;
  border-bottom: 1px solid var(--border);
  transition: background 200ms ease;
}
.wm-item:nth-last-child(-n+2) { border-bottom: none; }

.wm-num {
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--green);
  padding-top: 4px;
  flex-shrink: 0;
  width: 20px;
}

.wm-body h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: var(--sp-2);
}

.wm-body p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
  max-width: 40ch;
}

/* ===== GOOGLE REVIEWS MARQUEE ===== */
.google-reviews-section {
  background: var(--white-tint);
  padding: var(--sp-12) 0;
  overflow: hidden;
}

.google-reviews-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--sp-4);
  margin-bottom: var(--sp-8);
}

.google-reviews-badge {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
}

.google-reviews-count {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.google-reviews-stars {
  color: #FBBC05;
  font-size: 1.3rem;
  letter-spacing: 2px;
}

.google-reviews-count strong {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ink);
}

.google-reviews-cta {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 600;
  color: #4285F4;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.2s;
}
.google-reviews-cta:hover { opacity: 0.75; }

/* Reviews carousel */
.reviews-carousel {
  position: relative;
  padding: 0 var(--sp-6);
}

.reviews-carousel__viewport {
  overflow: hidden;
}

.reviews-carousel__track {
  display: flex;
  gap: var(--sp-5);
  transition: transform 0.55s var(--ease-out-quart);
  will-change: transform;
}

.reviews-carousel__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--ink);
  font-family: var(--font-head);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
}
.reviews-carousel__nav:hover { background: var(--green-pale); }
.reviews-carousel__nav--prev { left: -4px; }
.reviews-carousel__nav--next { right: -4px; }

.reviews-carousel__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: var(--sp-6);
}
.reviews-carousel__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: var(--border);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.reviews-carousel__dot.is-active {
  background: var(--green);
  transform: scale(1.25);
}

@media (prefers-reduced-motion: reduce) {
  .reviews-carousel__track { transition: none; }
}

.gr-card {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  background: var(--green-pale);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--sp-6) var(--sp-6);
  width: 300px;
  flex-shrink: 0;
  text-decoration: none;
  color: var(--ink);
  transition: box-shadow 0.2s, transform 0.2s;
}
.gr-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.gr-card__stars {
  color: #FBBC05;
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.gr-card p {
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--ink-mid);
  flex: 1;
}

.gr-card__author {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  margin-top: auto;
}

.gr-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.gr-card__author strong {
  font-family: var(--font-head);
  font-size: 0.88rem;
  color: var(--ink);
}

@media (max-width: 600px) {
  .google-reviews-header { flex-direction: column; align-items: flex-start; }
  .gr-card { width: 260px; }
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  background: var(--green-light);
  padding-bottom: 120px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
  margin-bottom: var(--sp-12);
  align-items: start;
}

.testimonial-card {
  background: var(--white-tint);
  border-radius: var(--radius-md);
  padding: var(--sp-8);
  box-shadow: var(--shadow-sm);
  transition: transform 200ms var(--ease-out-quart), box-shadow 200ms ease;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.testimonial-card--featured {
  background: var(--green-deep);
  color: var(--white-tint);
  box-shadow: var(--shadow-lg);
}

.testimonial-card__stars {
  font-size: 0.95rem;
  margin-bottom: var(--sp-4);
  letter-spacing: 0.04em;
}

.testimonial-card p {
  font-size: 0.93rem;
  line-height: 1.75;
  color: inherit;
  margin-bottom: var(--sp-6);
  font-style: italic;
}
.testimonial-card--featured p { color: oklch(99% 0.005 145 / 0.8); }

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}

.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white-tint);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.82rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonial-card__author strong {
  display: block;
  font-family: var(--font-head);
  font-size: 0.9rem;
}

.testimonial-card__author span {
  font-size: 0.78rem;
  color: var(--muted);
}
.testimonial-card--featured .testimonial-card__author span { color: oklch(99% 0.005 145 / 0.5); }

.testimonials-cta {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-4);
}
.testimonials-cta p {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--ink-mid);
}

/* ===== FAQ ===== */
.faq { background: var(--white-tint); }

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child { border-top: 1px solid var(--border); }

.faq-item__q {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  color: var(--ink);
  padding: var(--sp-6) 0;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--sp-4);
  transition: color 150ms ease;
}
.faq-item__q::-webkit-details-marker { display: none; }
.faq-item__q::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--green);
  flex-shrink: 0;
  transition: transform 250ms var(--ease-out-quart);
  line-height: 1;
}
.faq-item[open] .faq-item__q { color: var(--green-dark); }
.faq-item[open] .faq-item__q::after { transform: rotate(45deg); }
.faq-item__q:focus-visible { outline-offset: -3px; }

.faq-item__a {
  font-size: 0.97rem;
  color: var(--muted);
  line-height: 1.75;
  padding-bottom: var(--sp-6);
  max-width: 65ch;
}

/* ===== CONTACT ===== */
.contact { background: var(--white-tint); }

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-20);
  align-items: start;
}

.contact__info .section-tag { margin-bottom: var(--sp-4); }

.contact__info h2 {
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: var(--sp-5);
  color: var(--ink);
  letter-spacing: -0.01em;
}

.contact__info > p {
  color: var(--muted);
  font-size: 1rem;
  margin-bottom: var(--sp-8);
  max-width: 48ch;
}

.contact-details { display: flex; flex-direction: column; gap: var(--sp-5); }

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
}

.contact-detail__icon {
  font-size: 1.3rem;
  width: 46px;
  height: 46px;
  background: var(--green-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail strong {
  display: block;
  font-family: var(--font-head);
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 2px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.contact-detail a,
.contact-detail span {
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--ink);
  font-size: 0.92rem;
}
.contact-detail a:hover { color: var(--green-dark); }

/* Form / Booking */
.contact__form-wrap {
  background: var(--green-light);
  border-radius: var(--radius-lg);
  padding: var(--sp-10) var(--sp-10);
}

.booking-panel {
  background: var(--green-deep);
  border-radius: var(--radius-lg);
  padding: var(--sp-12) var(--sp-10);
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
  height: 100%;
  min-height: 320px;
  justify-content: center;
}

.booking-panel__pre {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: oklch(70% 0.10 145);
  margin: 0;
}

.booking-panel__headline {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.05;
  color: var(--white-tint);
  margin: 0;
}

.btn--booking-main {
  display: block;
  width: 100%;
  background: var(--white-tint);
  color: var(--green-deep);
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 800;
  padding: 16px 28px;
  border-radius: var(--radius-full);
  text-align: center;
  text-decoration: none;
  margin-top: var(--sp-3);
  transition: transform var(--ease-out-quart) 200ms,
              box-shadow var(--ease-out-quart) 200ms;
}
.btn--booking-main:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px oklch(99% 0.005 145 / 0.18);
}

.booking-panel__note {
  font-size: 0.82rem;
  color: oklch(72% 0.06 145);
  text-align: center;
  margin: 0;
}

.contact-form h3 {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: var(--sp-8);
  color: var(--ink);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: var(--sp-4);
}

.form-group label {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.8rem;
  color: var(--ink-mid);
  letter-spacing: 0.02em;
}

.form-label__optional { font-weight: 400; opacity: 0.6; }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 15px;
  border: 2px solid oklch(88% 0.05 145);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.93rem;
  color: var(--ink);
  background: var(--white-tint);
  transition: border-color 150ms ease, box-shadow 150ms ease;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px oklch(65% 0.20 145 / 0.14);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: oklch(55% 0.20 25);
  box-shadow: 0 0 0 3px oklch(55% 0.20 25 / 0.12);
}

.form-group textarea { resize: vertical; }

.form-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: var(--sp-3);
}

.form-success {
  text-align: center;
  padding: var(--sp-10) var(--sp-5);
}
.form-success__icon { font-size: 3.2rem; margin-bottom: var(--sp-4); }
.form-success h3 {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: var(--sp-3);
  color: var(--ink);
}
.form-success p { color: var(--muted); }

/* ===== FOOTER ===== */
.footer {
  background: var(--green-deep);
  color: oklch(99% 0.005 145 / 0.72);
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--sp-12);
  padding: var(--sp-20) var(--sp-6) var(--sp-12);
}

.footer__logo-link { display: inline-block; margin-bottom: var(--sp-4); }

.footer__logo-img {
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.footer__brand p {
  font-size: 0.88rem;
  color: oklch(99% 0.005 145 / 0.52);
  max-width: 28ch;
  margin-bottom: var(--sp-6);
  line-height: 1.65;
}

.footer__nap {
  margin-top: var(--sp-3);
  font-size: 0.82rem;
  opacity: 0.5;
  line-height: 1.7;
}
.footer__nap strong { opacity: 1; color: inherit; }
.footer__nap a { color: inherit; }

.footer__social { display: flex; gap: var(--sp-3); }

.social-link {
  width: 36px;
  height: 36px;
  background: oklch(99% 0.005 145 / 0.08);
  color: oklch(99% 0.005 145 / 0.7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.72rem;
  transition: background 200ms ease, color 200ms ease, transform 200ms var(--ease-out-quart);
}
.social-link:hover {
  background: var(--green);
  color: var(--white-tint);
  transform: translateY(-2px);
}

.footer__links h4 {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--white-tint);
  margin-bottom: var(--sp-5);
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.footer__links ul { display: flex; flex-direction: column; gap: var(--sp-3); }

.footer__links a {
  font-size: 0.88rem;
  color: oklch(99% 0.005 145 / 0.52);
  transition: color 150ms ease;
}
.footer__links a:hover { color: var(--green); }


.footer__bottom {
  border-top: 1px solid oklch(99% 0.005 145 / 0.08);
  padding: var(--sp-5) var(--sp-6);
}

.footer__bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  flex-wrap: wrap;
}

.footer__bottom p { font-size: 0.82rem; color: oklch(99% 0.005 145 / 0.35); }


/* ===== SCROLL ANIMATIONS ===== */
[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease-out-quart),
              transform 0.6s var(--ease-out-quart);
}
[data-animate].animated {
  opacity: 1;
  transform: translateY(0);
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  .hero__logo-img { animation: none; transform: translateY(0); }
  .promo-banner__track { animation: none; transform: translateX(0); }
  [data-animate] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .navbar__links {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: oklch(20% 0.06 145 / 0.97);
    backdrop-filter: blur(14px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: var(--sp-8);
    z-index: 999;
  }
  .navbar__links.open { display: flex; }
  .navbar__links a { font-size: 1.25rem; color: var(--white-tint); }
  .navbar__burger { display: flex; z-index: 1000; }
}

@media (max-width: 1024px) {
  .hero__inner { gap: var(--sp-8); }
  .hero__logo-img { max-width: 340px; }
  .pricing-cards {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: var(--sp-8);
  }
  .pricing-card--featured { transform: none; }
  .pricing-card--featured:hover { transform: translateY(-4px); }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .before-after-grid { grid-template-columns: 1fr; gap: var(--sp-6); }
  .van-section { grid-template-columns: 1fr; gap: var(--sp-10); padding: var(--sp-12) var(--sp-10); }
  .why-manifest { max-width: 100%; }
}

@media (max-width: 860px) {
  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__logo-wrap { order: -1; }
  .hero__logo-img { max-width: 280px; }
  .hero__specs { text-align: center; }
  .hero__ctas { justify-content: center; }
  .hero__text p { margin-left: auto; margin-right: auto; }
  .hiw-steps { max-width: 100%; }
  .hiw-step { grid-template-columns: 72px 1fr; gap: var(--sp-4); }
  .hiw-step__num { font-size: 3.5rem; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact__inner { grid-template-columns: 1fr; gap: var(--sp-10); }
  .trust-bar__inner { justify-content: center; }
  .problem__inner { grid-template-columns: 1fr; gap: var(--sp-10); }
  .service-area__inner { grid-template-columns: 1fr; }
  .commercial__inner { grid-template-columns: 1fr; gap: var(--sp-10); }
}

@media (max-width: 768px) {
  .why-manifest { grid-template-columns: 1fr; column-gap: 0; }
  .wm-item:nth-last-child(-n+2) { border-bottom: 1px solid var(--border); }
  .wm-item:last-child { border-bottom: none; }
  .form-row { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
  .contact__form-wrap { padding: var(--sp-8) var(--sp-6); }
  .commercial__quote-card { padding: var(--sp-8) var(--sp-6); }
  .section { padding: var(--sp-16) 0 var(--sp-16); }
  .van-section { padding: var(--sp-10) var(--sp-6); }
  .hiw-step { grid-template-columns: 1fr; gap: var(--sp-2); padding: var(--sp-8) 0; }
  .hiw-step__num { font-size: 2.8rem; }
}

@media (max-width: 480px) {
  .hero__logo-img { max-width: 220px; }
  .hero__logo-wrap::before { width: 260px; height: 260px; }
}
