/* ==========================================================================
   Waste Certified — landing page
   Tokens sampled from the design mockup + brand seal SVGs
   ========================================================================== */
:root {
  /* Palette from the Waste Certified seal: navy #132A3E, green #3F9B4F / #5FBF77, cream #F6F4EC */
  --navy: #132a3e;
  --navy-deep: #0d1f2f;
  --navy-text: #132a3e;
  --green: #3f9b4f;
  --green-dark: #35873f;
  --green-bright: #5fbf77;
  --green-deep: #2f8040;
  --green-tint: #dff2e4;
  --green-tint-2: #c9e9d2;
  --cream: #f6f4ec;
  --gray-strip: #eeebe3;
  --white: #ffffff;
  --ink: #132a3e;
  --muted: #55636f;
  --muted-2: #8590a0;
  --line: #e4e2da;
  --line-2: #d5d9de;
  --red: #d4405a;
  --red-soft: #e04b63;
  --shadow-card: 0 30px 60px -20px rgba(6, 18, 30, .6), 0 10px 24px -12px rgba(6, 18, 30, .4);
  --shadow-soft: 0 10px 30px -12px rgba(19, 42, 62, .18), 0 2px 6px rgba(19, 42, 62, .05);
  --radius: 12px;
  --container: 1320px;
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --ease-spring: cubic-bezier(.34, 1.56, .64, 1);
  --font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, p { margin: 0; }
button, input, select { font: inherit; color: inherit; }
button { cursor: pointer; }
[hidden] { display: none !important; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 30px;
}
.section { padding: 64px 0; }

/* ---------- Typography ---------- */
.h2 {
  text-wrap: balance;
  font-size: 35px;
  line-height: 1.18;
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--navy);
}
.h2--center { text-align: center; }
.lead {
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
}
.text-green { color: var(--green-bright); }
.eyebrow {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--green-bright);
}
.section__head { text-align: center; margin-bottom: 30px; }
.section__sub {
  text-wrap: balance;
  margin-top: 6px;
  font-size: 18px;
  color: var(--muted);
  font-weight: 500;
}

/* ---------- Brand wordmark ---------- */
.brand { display: inline-flex; align-items: center; gap: 14px; line-height: 1; }
.brand__seal {
  width: 84px; height: 84px; flex: 0 0 auto;
  transition: transform .8s var(--ease-spring);
}

.brand__text { display: inline-flex; flex-direction: column; align-items: center; }
.brand__word {
  font-size: 32px;
  font-weight: 900;
  letter-spacing: -.035em;
  white-space: nowrap;
}
.brand__waste { color: var(--white); }
.brand__certified { color: var(--green-bright); }
.brand__tag {
  margin-top: 8px;
  font-size: 14px;
  font-weight: 700;
  color: rgba(255,255,255,.92);
  letter-spacing: .01em;
}
.brand--footer .brand__seal { width: 120px; height: 120px; }
.brand--footer .brand__word { font-size: 34px; }
.brand--footer .brand__tag { font-size: 14.5px; margin-top: 9px; }

/* ---------- Buttons ---------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 28px;
  height: 50px;
  border: 0;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15.5px;
  letter-spacing: .005em;
  color: var(--white);
  background: var(--green);
  box-shadow: 0 8px 20px -8px rgba(63, 155, 79, .7), inset 0 1px 0 rgba(255,255,255,.18);
  transition: transform .25s var(--ease-out), box-shadow .25s var(--ease-out), background-color .2s ease;
  overflow: hidden;
  isolation: isolate;
}
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 20%, rgba(255,255,255,.22) 50%, transparent 80%);
  transform: translateX(-120%);
  transition: transform .7s var(--ease-out);
  z-index: -1;
}


.btn:active { transform: translateY(0) scale(.99); }
.btn:focus-visible { outline: 3px solid rgba(95,191,119,.55); outline-offset: 2px; }
.btn--block { width: 100%; height: 54px; font-size: 16.5px; }
.btn--lg { height: 54px; padding: 0 34px; font-size: 16.5px; }
.btn__arrow { width: 20px; height: 20px; transition: transform .3s var(--ease-out); }

.btn__spinner {
  position: absolute;
  width: 20px; height: 20px;
  border-radius: 50%;
  border: 2.5px solid rgba(255,255,255,.35);
  border-top-color: #fff;
  opacity: 0;
  animation: spin .8s linear infinite;
}
.btn.is-loading { pointer-events: none; }
.btn.is-loading .btn__label, .btn.is-loading .btn__arrow { opacity: 0; }
.btn.is-loading .btn__spinner { opacity: 1; }
@keyframes spin { to { transform: rotate(360deg); } }

.fineprint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 14px;
  font-size: 12.5px;
  color: var(--muted);
}
.fineprint svg { width: 14px; height: 14px; color: var(--muted-2); }
.fineprint--light { color: rgba(255,255,255,.82); }
.fineprint--light svg { color: var(--green-bright); }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  background: var(--navy);
  background-image:
    radial-gradient(900px 500px at 85% -10%, rgba(95,191,119,.10), transparent 60%),
    radial-gradient(700px 400px at -10% 110%, rgba(95,191,119,.08), transparent 60%),
    linear-gradient(180deg, #183349 0%, var(--navy) 55%, #10253a 100%);
  color: var(--white);
  overflow: hidden;
}
.hero__glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  will-change: transform;
}
.hero__glow--1 { width: 760px; height: 760px; right: -260px; top: -340px; background: radial-gradient(circle, rgba(95,191,119,.14) 0%, rgba(95,191,119,.05) 35%, transparent 65%); animation: drift 14s ease-in-out infinite alternate; }
.hero__glow--2 { width: 640px; height: 640px; left: -300px; bottom: -340px; background: radial-gradient(circle, rgba(95,191,119,.10) 0%, rgba(95,191,119,.04) 35%, transparent 65%); animation: drift 18s ease-in-out infinite alternate-reverse; }
@keyframes drift { from { transform: translate3d(0,0,0) scale(1); } to { transform: translate3d(30px, 40px, 0) scale(1.08); } }

.nav .brand__seal { animation: sealIn 1.1s var(--ease-out) both; }
@keyframes sealIn { from { opacity: 0; transform: rotate(-70deg) scale(.7); } to { opacity: 1; transform: none; } }
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0 0;
  animation: fadeDown .8s var(--ease-out) both;
}
.nav__right { display: flex; align-items: center; gap: 22px; }
.brand__tagline { font-size: 14px; font-weight: 700; color: rgba(255,255,255,.92); letter-spacing: .01em; }
.nav__phone { display: inline-flex; align-items: center; gap: 8px; color: #fff; font-weight: 700; font-size: 15px; white-space: nowrap; }
.nav__phone svg { width: 18px; height: 18px; color: var(--green-bright); }
.nav__cta { height: 44px; padding: 0 20px; font-size: 14.5px; }
.nav__eyebrow {
  display: block;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.92);
}
.nav__links {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 10px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
}
.nav__links a { color: rgba(255,255,255,.78); position: relative; transition: color .2s; }
.nav__links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -4px; height: 1.5px;
  background: var(--green-bright); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease-out);
}



.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 500px;
  gap: 28px;
  align-items: start;
  padding: 24px 0 52px;
}
.hero__content { padding-top: 40px; }
.hero__title {
  text-wrap: balance;
  margin-top: 18px;
  font-size: 68px;
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -.028em;
  color: var(--white);
}
.hero__title--tight { font-size: 58px; }
.hero__sub {
  margin-top: 24px;
  font-size: 24px;
  line-height: 1.55;
  font-weight: 500;
  color: rgba(255,255,255,.94);
}

.features {
  display: flex;
  margin-top: 52px;
}
.feature {
  flex: 1 1 0;
  padding: 0 12px 0 0;
  margin-right: 16px;
  border-right: 1px solid rgba(255,255,255,.14);
  display: flex;
  flex-direction: column;
}
.feature:last-child { border-right: 0; margin-right: 0; padding-right: 0; }
.feature__icon {
  width: 36px; height: 36px;
  color: var(--green-bright);
  margin-bottom: 14px;
  filter: drop-shadow(0 0 10px rgba(95,191,119,.35));
  transition: transform .4s var(--ease-spring);
}

.feature strong { font-size: 15.5px; font-weight: 700; line-height: 1.35; white-space: nowrap; }
.feature span:not(.feature__icon) { margin-top: 4px; font-size: 13.5px; white-space: nowrap; color: rgba(255,255,255,.7); line-height: 1.4; }

/* ---------- Form card ---------- */
.form-card {
  background: var(--white);
  color: var(--ink);
  border-radius: 14px;
  padding: 30px 32px 26px;
  box-shadow: var(--shadow-card);
  position: relative;
  z-index: 2;
}
.form-card.is-highlight { animation: cardHighlight 1.6s var(--ease-out); }
@keyframes cardHighlight {
  0%   { box-shadow: var(--shadow-card), 0 0 0 0 rgba(95,191,119,0); }
  25%  { box-shadow: var(--shadow-card), 0 0 0 8px rgba(95,191,119,.6); }
  100% { box-shadow: var(--shadow-card), 0 0 0 16px rgba(95,191,119,0); }
}
.form-card__title {
  text-wrap: balance;
  font-size: 25.5px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--navy);
}
.form-card__sub { margin-top: 7px; font-size: 15px; color: var(--muted); }

.steps { position: relative; margin-top: 24px; }
.steps__line {
  position: absolute;
  left: 12px; top: 26px; bottom: 30px;
  width: 2px;
  background: var(--line);
  border-radius: 2px;
  overflow: hidden;
}
.steps__line-fill {
  position: absolute; left: 0; top: 0; width: 100%; height: 0;
  background: var(--green);
  transition: height .6s var(--ease-out);
}
.step {
  position: relative;
  padding-left: 42px;
  margin-bottom: 18px;
}
.step:last-child { margin-bottom: 0; }
.step__num {
  position: absolute;
  left: 0; top: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: 12.5px;
  font-weight: 700;
  display: grid;
  place-items: center;
  box-shadow: 0 0 0 4px #fff;
  transition: transform .35s var(--ease-spring), background-color .3s, box-shadow .3s;
}
.step__num > * { grid-area: 1 / 1; transition: opacity .25s, transform .3s var(--ease-spring); }
.step__check { width: 15px; height: 15px; opacity: 0; transform: scale(.4); }
.step.is-active .step__num { transform: scale(1.12); box-shadow: 0 0 0 4px #fff, 0 0 0 8px rgba(63,155,79,.2); }
.step.is-done .step__num { background: var(--green-deep); }
.step.is-done .step__digit { opacity: 0; transform: scale(.4); }
.step.is-done .step__check { opacity: 1; transform: scale(1); }
.step__row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 12px; }
.step__row .field label { display: block; font-size: 12px; font-weight: 600; color: var(--muted); margin-bottom: 4px; }
.form-success__label { font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.form-success__range { margin: 4px 0 12px; font-size: 40px; font-weight: 800; letter-spacing: -.025em; line-height: 1; color: var(--green-deep); }
.form-success .btn { margin-top: 18px; }
.calc__cta { margin-top: 18px; height: 46px; }
.step__label {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  margin: 3px 0 8px;
}
.step input, .step select, .input-money input {
  width: 100%;
  height: 44px;
  padding: 0 14px;
  border: 1px solid var(--line-2);
  border-radius: 7px;
  background: #fff;
  font-size: 14px;
  color: var(--ink);
  outline: none;
  transition: border-color .2s, box-shadow .25s, background-color .2s;
  -webkit-appearance: none;
  appearance: none;
}
.step input::placeholder, .input-money input::placeholder { color: #a3aab2; }
.audit-form .btn--block { margin-top: 16px; }
.step input:focus, .step select:focus, .input-money:focus-within input {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(63,155,79,.16);
}
.step.is-invalid input, .step.is-invalid select { border-color: var(--red); box-shadow: 0 0 0 4px rgba(212,64,90,.12); animation: shake .4s ease; }
@keyframes shake { 10%, 90% { transform: translateX(-1px); } 20%, 80% { transform: translateX(2px); } 30%, 50%, 70% { transform: translateX(-3px); } 40%, 60% { transform: translateX(3px); } }
.select-wrap { position: relative; }
.select-wrap select { padding-right: 40px; color: #a3aab2; }
.select-wrap select.has-value { color: var(--ink); }
.select-wrap__chevron {
  position: absolute; right: 12px; top: 50%;
  width: 16px; height: 16px;
  transform: translateY(-50%);
  color: var(--muted);
  pointer-events: none;
  transition: transform .3s var(--ease-out);
}
.select-wrap:focus-within .select-wrap__chevron { transform: translateY(-50%) rotate(180deg); }
.input-money { position: relative; }
.input-money__sign {
  position: absolute; left: 14px; top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  color: var(--muted-2);
  pointer-events: none;
}
.input-money input { padding-left: 34px; }
.input-money input::-webkit-outer-spin-button, .input-money input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.input-money input[type=number] { -moz-appearance: textfield; appearance: textfield; }

.audit-form .btn { margin-top: 24px; }
.form-error {
  margin-top: 10px;
  font-size: 13px;
  color: var(--red);
  text-align: center;
}

/* success state */
.form-success { text-align: center; padding: 22px 6px 12px; animation: fadeUp .6s var(--ease-out) both; }
.form-success__icon { width: 74px; height: 74px; margin: 0 auto 14px; color: var(--green); }
.form-success__ring { stroke-dasharray: 180; stroke-dashoffset: 180; animation: dash 1s var(--ease-out) forwards; }
.form-success__tick { stroke-dasharray: 40; stroke-dashoffset: 40; animation: dash .5s .6s var(--ease-out) forwards; }
.form-success h3 { font-size: 22px; font-weight: 800; color: var(--navy); }
.form-success p { margin-top: 8px; font-size: 14.5px; color: var(--muted); line-height: 1.6; }
@keyframes dash { to { stroke-dashoffset: 0; } }

/* ==========================================================================
   TRUSTED BY
   ========================================================================== */
.trusted { background: var(--gray-strip); border-bottom: 1px solid #e4e1d8; }
.trusted__row {
  display: flex;
  align-items: center;
  gap: 28px;
  min-height: 138px;
  padding-top: 20px;
  padding-bottom: 20px;
}
.trusted__label {
  font-size: 12px;
  line-height: 1.35;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--navy);
  flex: 0 0 auto;
}
.trusted__label strong { display: block; font-weight: 800; }
.trusted__label span { color: var(--muted); font-weight: 500; }
.trusted__divider { width: 1px; height: 66px; background: #d3d0c6; flex: 0 0 auto; }
.trusted__more {
  font-size: 12px;
  line-height: 1.35;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  flex: 0 0 auto;
}
.logos-wrap {
  flex: 1 1 auto; min-width: 0; overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.logos-track { display: flex; width: max-content; animation: marquee 32s linear infinite; }
.logos-wrap:hover .logos-track { animation-play-state: paused; }
.logos, .logos-track > .logos--dup {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: flex-start;
  gap: 72px;
  padding: 4px 72px 4px 0;
}
.logo {
  color: var(--navy);
  display: flex;
  align-items: center;
  user-select: none;
  transition: transform .35s var(--ease-out), opacity .35s;
  opacity: .9;
}

/* NAPA */
.logo--napa { flex-direction: column; gap: 3px; }
.napa__hex {
  width: 68px; height: 44px;
  background: var(--navy);
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
  display: grid; place-items: center;
  color: #fff;
}
.napa__hex span { font-weight: 900; font-size: 16.5px; letter-spacing: .02em; font-style: italic; }
.napa__text { font-weight: 900; font-size: 14px; font-style: italic; letter-spacing: .02em; }
/* CARSTAR */
.logo--carstar { gap: 4px; }
.carstar__star { width: 38px; height: 30px; }
.carstar__text { font-weight: 900; font-size: 27px; font-style: italic; letter-spacing: -.02em; }
/* Caliber */
.logo--caliber {
  flex-direction: column;
  font-family: "Barlow Condensed", "Inter", sans-serif;
  font-weight: 800;
  font-size: 30px;
  line-height: .92;
  letter-spacing: .01em;
}
.logo--caliber span:first-child { border-bottom: 2px solid var(--navy); padding-bottom: 1px; }
/* Mister Car Wash */
.logo--mister { flex-direction: column; align-items: center; line-height: 1; }
.mister__script { font-weight: 800; font-style: italic; font-size: 30px; letter-spacing: -.02em; }
.mister__text { font-weight: 900; font-size: 14.5px; letter-spacing: .04em; margin-top: 2px; }
/* AutoNation */
.logo--autonation { flex-direction: column; align-items: flex-end; }
.logo--autonation span { font-weight: 800; font-size: 28px; letter-spacing: -.035em; line-height: 1; }
.autonation__swoosh { width: 140px; height: 8px; margin-top: 1px; }

/* ==========================================================================
   FEES / INVOICE
   ========================================================================== */
.fees { background: var(--cream); overflow: hidden; }
.fees__grid {
  display: grid;
  grid-template-columns: 500px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
}
.fees__copy .h2 { font-size: 36px; white-space: nowrap; }
.fees__copy .lead { margin-top: 18px; max-width: 440px; font-size: 16.5px; }
.checklist { margin-top: 24px; display: flex; flex-direction: column; gap: 9px; }
.checklist li {
  display: flex; align-items: center; gap: 13px;
  font-size: 17px; font-weight: 500; color: var(--ink);
}
.checkbox {
  width: 19px; height: 19px;
  border-radius: 4px;
  background: var(--red);
  color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 2px 6px rgba(212,64,90,.35);
  flex: 0 0 auto;
}
.checkbox svg { width: 12px; height: 12px; stroke-dasharray: 22; stroke-dashoffset: 22; }
[data-reveal].is-visible .checkbox svg { animation: dash .45s var(--ease-out) forwards; animation-delay: calc(var(--i, 0) * .12s + .25s); }

.invoice-wrap { position: relative; }
.invoice-scale { transform-origin: top left; max-width: 100%; }
.invoice-wrap { min-width: 0; }
.invoice {
  position: relative;
  width: 620px;
  background: #fff;
  border-radius: 8px;
  padding: 30px 34px 24px;
  box-shadow: 0 24px 50px -22px rgba(15,44,66,.35), 0 4px 14px -6px rgba(15,44,66,.12);
  color: #253341;
  transform: rotate(-.35deg);
  transition: transform .6s var(--ease-out);
}

.invoice__head { display: flex; justify-content: space-between; align-items: flex-start; }
.wm { display: flex; flex-direction: column; }
.wm__mark { width: 150px; height: auto; margin: -8px 0 0 -2px; }
.wm__name { margin-top: 4px; font-size: 10.5px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; color: #253341; }
.invoice__meta { text-align: left; }
.invoice__meta-title { display: block; font-size: 16px; font-weight: 800; letter-spacing: .02em; color: #1b2a38; text-align: right; }
.invoice__meta dl { display: grid; grid-template-columns: auto auto; gap: 3px 12px; margin: 8px 0 0; font-size: 11px; line-height: 1.35; }
.invoice__meta dt { color: #6b7178; }
.invoice__meta dd { margin: 0; color: #253341; }

.invoice__table { width: 100%; border-collapse: collapse; margin-top: 24px; font-size: 12.5px; }
.invoice__table th, .invoice__table td { padding: 7.5px 10px; text-align: right; white-space: nowrap; }
.invoice__table th:first-child, .invoice__table td:first-child { text-align: left; padding-left: 12px; }
.invoice__table th:last-child, .invoice__table td:last-child { padding-right: 12px; }
.invoice__table thead th { background: #dfe3e6; font-weight: 700; color: #1b2a38; }
.invoice__table tbody td { border-bottom: 1px solid #edf0f2; color: #34424f; }
.invoice__table tbody tr:last-child td { border-bottom: 1px solid #d9dee3; }
.invoice__table tfoot td { padding-top: 14px; padding-bottom: 8px; font-weight: 800; font-size: 14px; color: #1b2a38; }
.invoice__total { font-size: 15.5px; }
.strike { color: #9aa1a8; text-decoration: line-through; text-decoration-thickness: 1.5px; }
.junk { transition: background-color .3s; }
.invoice.is-drawn .junk { background: rgba(212,64,90,.035); }

.invoice__marks {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  color: var(--red);
}
.invoice__marks .draw {
  fill: none;
  stroke: currentColor;
  stroke-width: 3.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: .92;
}
.invoice.is-drawn .draw--circle { animation: dashLong 1.6s var(--ease-out) .35s forwards; }
.invoice.is-drawn .draw--total { animation: dashLong 1.1s var(--ease-out) 1.5s forwards; }
@keyframes dashLong { to { stroke-dashoffset: 0; } }

.note {
  position: absolute;
  left: calc(100% - 118px); top: 32%;
  color: var(--red);
  width: 150px;
  transform: rotate(-8deg);
}
.invoice-wrap { padding-right: 120px; }
.note__text {
  display: block;
  font-family: "Caveat", "Segoe Script", cursive;
  font-weight: 700;
  font-size: 32px;
  line-height: .95;
  letter-spacing: .01em;
}
.note__arrow { width: 58px; height: 66px; margin: 6px 0 0 -4px; }
.note__arrow .draw { stroke-dasharray: 160; stroke-dashoffset: 160; }
.note.is-visible .note__arrow .draw { animation: dash .9s var(--ease-out) .3s forwards; }
.note.is-visible .note__arrow .draw:last-child { animation-delay: 1s; animation-duration: .4s; }

/* ==========================================================================
   SHOPS
   ========================================================================== */
.shops { background: var(--white); }
.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.card {
  background: #fff;
  border: 1px solid #e3e6ea;
  border-radius: 12px;
  padding: 24px 22px 18px;
  box-shadow: 0 1px 2px rgba(15,44,66,.03);
  transition: transform .4s var(--ease-out), box-shadow .4s var(--ease-out), border-color .3s;
  position: relative;
  overflow: hidden;
}
.card::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 3px;
  background: linear-gradient(90deg, var(--green), var(--green-bright));
  transform: scaleX(0); transform-origin: left; transition: transform .5s var(--ease-out);
}


.card__top { display: flex; gap: 16px; align-items: flex-start; }
.card__icon { width: 54px; height: 54px; color: var(--navy); flex: 0 0 auto; transition: transform .4s var(--ease-spring); }
.card__logo { width: 100%; height: 100%; object-fit: contain; }
.card__icon--company {
  width: 136px; height: 76px;
  background: #fff;
  border: 1px solid #e6e3da;
  border-radius: 8px;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  padding: 5px;
}
.card__icon--company .card__logo--company { width: 100%; height: 100%; object-fit: contain; }
.card--company .card__top { flex-direction: column; }

.card__title { font-size: 17px; font-weight: 800; color: var(--navy); letter-spacing: -.01em; }
.card__quote { margin-top: 8px; font-size: 13.5px; line-height: 1.55; color: var(--muted); }
.card__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid #edf0f3;
}
.stat { text-align: center; }
.stat + .stat { border-left: 1px solid #dfe3e8; }
.stat__value { display: block; font-size: 30px; font-weight: 800; line-height: 1; color: var(--navy); letter-spacing: -.02em; }
.stat__value small { font-size: 22px; font-weight: 500; color: var(--navy); }
.stat--green .stat__value { color: var(--green-deep); }
.stat__label { display: block; margin-top: 4px; font-size: 13px; color: var(--muted); }
.stat--green .stat__label { color: var(--green-deep); font-weight: 600; }
.card__foot { margin-top: 18px; text-align: center; font-size: 13px; color: var(--muted); }
.card__foot span { margin: 0 8px; color: #c5cbd2; }


/* ---------- Social-proof strip (niche pages) ---------- */
.trusted--proof .container { padding-top: 22px; padding-bottom: 22px; }
.proof {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: center;
  min-height: 94px;
}
.proof__item {
  padding: 6px 28px;
  border-left: 1px solid #d3d0c6;
  text-align: center;
  color: var(--navy);
  line-height: 1.3;
}
.proof__item:first-child { border-left: 0; }
.proof__item strong { display: block; font-size: 22px; font-weight: 800; letter-spacing: -.02em; }
.proof__item span { display: block; margin-top: 4px; font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.proof__item:nth-child(2) strong { color: var(--green); letter-spacing: .06em; }
.proof__item:last-child strong { font-size: 15.5px; font-weight: 600; font-style: italic; letter-spacing: 0; color: var(--ink); }

/* proof items inside the template's trusted strip (niche pages) */
.logo--proof { flex-direction: column; align-items: center; text-align: center; gap: 4px; line-height: 1.2; }
.logo--proof strong { font-size: 24px; font-weight: 800; letter-spacing: -.02em; color: var(--navy); white-space: nowrap; }
.logo--proof span { font-size: 10.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); white-space: nowrap; }
.logo--proof-stars strong { color: var(--green); letter-spacing: .08em; font-size: 22px; }
.logo--proof-quote strong { font-size: 14.5px; font-weight: 600; font-style: italic; letter-spacing: 0; white-space: normal; max-width: 260px; line-height: 1.35; }
html[lang="es"] .logo--proof strong { font-size: 21px; }
html[lang="es"] .logo--proof span { font-size: 9.5px; letter-spacing: .08em; }
html[lang="es"] .logo--proof-quote strong { font-size: 13.5px; max-width: 230px; }
html[lang="es"] .logos--proofrow { gap: 18px; }

/* ---------- Case-study cards (niche pages: two per row) ---------- */
.cards--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 880px; margin: 0 auto; }
.card__where { margin-top: 3px; font-size: 13.5px; font-weight: 600; color: var(--muted); }
.card__pill {
  display: inline-block; margin-left: 6px; padding: 2px 9px; border-radius: 20px;
  font-size: 11px; font-weight: 700; letter-spacing: .02em; color: var(--green-deep); background: var(--green-tint);
  vertical-align: 1px;
}
.card__where + .card__quote { margin-top: 10px; }
.card__foot strong { color: var(--navy); font-weight: 800; }
.invoice__caption { margin: 18px 0 0; max-width: 620px; font-size: 14px; line-height: 1.55; color: var(--muted); font-style: italic; }
.promise__extra { margin-top: 10px; font-size: 14.5px; color: var(--green-bright); font-weight: 600; }

/* ==========================================================================
   HOW IT WORKS
   ========================================================================== */
.how { background: var(--cream); padding-bottom: 64px; }
.process {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 26px;
  margin-top: 34px;
  align-items: start;
}
.process__step { display: flex; gap: 16px; align-items: flex-start; }
.process__num {
  width: 44px; height: 44px; flex: 0 0 auto;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: 18px; font-weight: 800;
  display: grid; place-items: center;
  box-shadow: 0 8px 18px -6px rgba(63,155,79,.6);
  transition: transform .4s var(--ease-spring);
}

.process__step h3 { font-size: 16.5px; font-weight: 800; color: var(--navy); margin-top: 2px; }
.process__step p { margin-top: 6px; font-size: 14.5px; line-height: 1.55; color: var(--muted); max-width: 280px; }
.process__arrow { padding-top: 12px; color: var(--green); }
.process__arrow svg { width: 44px; height: 26px; }
.process__arrow .draw { stroke-dasharray: 60; stroke-dashoffset: 60; }
.process__arrow.is-visible .draw { animation: dash .8s var(--ease-out) .3s forwards; }

.promise {
  position: relative;
  margin-top: 36px;
  padding: 26px 32px;
  background: var(--navy);
  color: #fff;
  border-radius: 10px;
  text-align: center;
  overflow: hidden;
  box-shadow: 0 24px 40px -24px rgba(15,44,66,.6);
}
.promise::before {
  content: "";
  position: absolute;
  right: -40px; top: 50%;
  width: 230px; height: 230px;
  transform: translateY(-50%) rotate(-12deg);
  background: url("../assets/brand/waste-certified-seal-cream-green.svg") center / contain no-repeat;
  opacity: .08;
  pointer-events: none;
}
.promise__shine {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 30%, rgba(255,255,255,.07) 50%, transparent 70%);
  transform: translateX(-100%);
}
.promise.is-visible .promise__shine { animation: shine 2.2s var(--ease-out) .6s 1 forwards; }
@keyframes shine { to { transform: translateX(100%); } }
.promise__title { display: inline-flex; align-items: center; gap: 12px; }
.promise__shield { width: 30px; height: 30px; color: #fff; }
.promise__tick { stroke: var(--green-bright); stroke-width: 2.2; stroke-dasharray: 20; stroke-dashoffset: 20; }
.promise.is-visible .promise__tick { animation: dash .6s var(--ease-out) .5s forwards; }
.promise h3 { font-size: 22px; font-weight: 800; letter-spacing: -.01em; text-wrap: balance; }
.promise p { margin-top: 6px; font-size: 15px; color: rgba(255,255,255,.9); }


/* ---------- Hauler marquee ---------- */
.haulers { margin-top: 44px; text-align: center; }
.haulers__label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}
.marquee {
  position: relative;
  margin-top: 22px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 38s linear infinite;
}

.marquee__group {
  display: flex;
  align-items: center;
  gap: 72px;
  padding-right: 72px;
  flex: 0 0 auto;
}
.marquee__group li { flex: 0 0 auto; }
.marquee__group img {
  height: 42px;
  width: auto;
  max-width: none;
  opacity: .9;
  transition: opacity .35s ease, transform .35s var(--ease-out);
}

@keyframes marquee { to { transform: translate3d(-50%, 0, 0); } }

/* ==========================================================================
   CALCULATOR
   ========================================================================== */
.calc { background: var(--white); padding: 56px 0; overflow: hidden; }
.calc__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 580px);
  gap: 56px;
  align-items: center;
}
.calc__copy .h2 { font-size: 30px; }
.calc__copy .lead { margin-top: 12px; max-width: 460px; }
.calc__form { display: flex; gap: 16px; margin-top: 26px; max-width: 520px; }
.input-money--lg { flex: 0 0 230px; }
.input-money--lg input { height: 50px; font-size: 18px; font-weight: 600; padding-left: 36px; border-radius: 8px; }
.input-money--lg .input-money__sign { font-size: 16px; }
.calc__form .btn { flex: 1 1 auto; height: 50px; }

.calc__result {
  position: relative;
  background:
    radial-gradient(ellipse 62% 48% at 50% 44%, rgba(255,255,255,.75), transparent 72%),
    var(--green-tint);
  border-radius: 12px;
  padding: 30px 30px 26px;
  text-align: center;
  border: 1px solid rgba(63,155,79,.14);
}
/* ambient: gentle float + breathing glow (starts after the slide-in reveal) */
.calc__result.is-visible { animation: resultFloat 4.5s ease-in-out 1.2s infinite alternate; }
@keyframes resultFloat {
  from { transform: translateY(0); box-shadow: 0 10px 28px -14px rgba(63,155,79,.25), 0 0 0 0 rgba(63,155,79,.10); }
  to   { transform: translateY(-5px); box-shadow: 0 22px 40px -16px rgba(63,155,79,.42), 0 0 0 6px rgba(63,155,79,.06); }
}
/* pulse ring fired on Calculate */
.calc__result::before {
  content: "";
  position: absolute; inset: -1px;
  border-radius: inherit;
  pointer-events: none;
}
.calc__result.is-pulsing::before { animation: pulseRing .9s var(--ease-out); }
@keyframes pulseRing { 0% { box-shadow: 0 0 0 0 rgba(63,155,79,.45); } 100% { box-shadow: 0 0 0 26px rgba(63,155,79,0); } }
/* periodic light sheen sweeping across the panel */
.calc__result::after {
  content: "";
  position: absolute; inset: 0;
  border-radius: inherit;
  clip-path: inset(0 round 12px);
  background: linear-gradient(105deg, transparent 35%, rgba(255,255,255,.42) 50%, transparent 65%);
  transform: translateX(-120%);
  pointer-events: none;
}
.calc__result.is-visible::after { animation: resultSheen 6s var(--ease-out) 2s infinite; }
@keyframes resultSheen { 0% { transform: translateX(-120%); } 28% { transform: translateX(120%); } 100% { transform: translateX(120%); } }
/* number pop when a value lands */
.calc__range { display: block; }
.calc__range.is-popping { animation: numberPop .55s var(--ease-spring); }
@keyframes numberPop { 0% { transform: scale(1); } 40% { transform: scale(1.08); } 100% { transform: scale(1); } }
.calc__year strong { display: inline-block; }
.calc__year strong.is-popping { animation: numberPop .5s var(--ease-spring) .05s; }
.calc__result-label { font-size: 16px; font-weight: 600; color: var(--navy); }
.calc__range {
  margin-top: 10px;
  font-size: 46px;
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1;
  color: var(--green-deep);
  font-variant-numeric: tabular-nums;
}
.calc__year { margin-top: 12px; font-size: 15.5px; color: var(--ink); }
.calc__year strong { font-weight: 800; color: var(--navy); }
.calc__basis { margin-top: 6px; font-size: 12px; color: var(--muted); }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq { background: var(--cream); padding: 64px 0 60px; }
.faq__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 30px;
}
.faq__grid { row-gap: 34px; }
.faq__item { padding: 0 24px; border-left: 1px solid #dcd9cf; }
.faq__item:nth-child(4n+1) { border-left: 0; padding-left: 0; }
.faq__item:nth-child(4n) { padding-right: 0; }
.faq__q { font-size: 16px; font-weight: 800; color: var(--navy); line-height: 1.3; }
.faq__q button {
  all: unset;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  width: 100%; box-sizing: border-box;
  font: inherit; color: inherit; text-align: left;
  pointer-events: none;
}
.faq__chevron { display: none; width: 18px; height: 18px; flex: 0 0 auto; color: var(--green); transition: transform .35s var(--ease-out); }
.faq__a { display: block; }
.faq__a p { margin-top: 12px; font-size: 14px; line-height: 1.6; color: var(--muted); }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  position: relative;
  background: var(--navy);
  background-image:
    radial-gradient(700px 320px at 50% 110%, rgba(95,191,119,.10), transparent 60%),
    linear-gradient(180deg, #132a3e 0%, #0e2233 100%);
  color: #fff;
  overflow: hidden;
}
.footer__glow { position: absolute; left: 50%; bottom: -420px; width: 1100px; height: 700px; transform: translateX(-50%); background: radial-gradient(ellipse at center, rgba(95,191,119,.12) 0%, rgba(95,191,119,.04) 40%, transparent 70%); pointer-events: none; }
.footer__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 40px;
  padding-top: 52px;
  padding-bottom: 44px;
}
.brand--footer { justify-self: start; }
.footer__cta { text-align: center; max-width: 560px; }
.footer__cta h2 { font-size: 26px; font-weight: 800; letter-spacing: -.02em; text-wrap: balance; }
.footer__cta p { margin-top: 8px; font-size: 15.5px; color: rgba(255,255,255,.9); }
.footer__cta .btn { margin-top: 20px; }
.footer__points {
  justify-self: end;
  display: flex; flex-direction: column; gap: 14px;
  padding-left: 32px;
  border-left: 1px solid rgba(255,255,255,.14);
  font-size: 13.5px;
  color: rgba(255,255,255,.92);
}
.footer__points li { display: flex; align-items: center; gap: 10px; white-space: nowrap; }
.check-badge {
  width: 18px; height: 18px; flex: 0 0 auto;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 0 0 3px rgba(95,191,119,.2);
}
.check-badge svg { width: 11px; height: 11px; stroke-dasharray: 22; stroke-dashoffset: 22; }
[data-reveal].is-visible .check-badge svg { animation: dash .45s var(--ease-out) forwards; animation-delay: calc(var(--i, 0) * .15s + .3s); }
.footer__bottom {
  position: relative;
  display: flex; justify-content: center; align-items: center; gap: 16px; flex-wrap: wrap; text-align: center;
  padding-top: 18px; padding-bottom: 22px;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: 12px;
  color: rgba(255,255,255,.5);
}
.footer__bottom a { color: rgba(255,255,255,.7); transition: color .2s; }


/* ---------- Sticky mobile CTA (shown only on phones, after scrolling past the form) ---------- */
.sticky-cta { display: none; }


/* ---------- Page switcher (review aid) ---------- */
.page-switcher {
  background: #0b1c2b;
  border-bottom: 1px solid rgba(255,255,255,.08);
  font-size: 12.5px;
}
.page-switcher .container { display: flex; align-items: center; gap: 16px; min-height: 42px; }
.page-switcher__label {
  flex: 0 0 auto;
  font-size: 10.5px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: rgba(255,255,255,.45);
}
.page-switcher__links {
  display: flex; align-items: center; gap: 4px;
  overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none;
  padding: 4px 0;
}
.page-switcher__links::-webkit-scrollbar { display: none; }
.page-switcher a {
  flex: 0 0 auto;
  padding: 5px 11px; border-radius: 999px;
  font-weight: 600; color: rgba(255,255,255,.72);
  transition: background-color .2s, color .2s;
}
.page-switcher a[aria-current="page"] { background: var(--green); color: #fff; }
.footer__pages {
  position: relative;
  padding-top: 18px; padding-bottom: 4px;
  font-size: 12.5px; color: rgba(255,255,255,.55);
  text-align: center; line-height: 2;
}
.footer__pages span { margin-right: 4px; }
.footer__pages a { color: rgba(255,255,255,.75); font-weight: 600; }
.footer__pages a[aria-current="page"] { color: var(--green-bright); }

/* ==========================================================================
   ANIMATION SYSTEM
   ========================================================================== */
@keyframes fadeUp { from { opacity: 0; transform: translate3d(0, 28px, 0); } to { opacity: 1; transform: none; } }
@keyframes fadeDown { from { opacity: 0; transform: translate3d(0, -16px, 0); } to { opacity: 1; transform: none; } }
@keyframes fadeRight { from { opacity: 0; transform: translate3d(48px, 0, 0); } to { opacity: 1; transform: none; } }

/* hero entrance (runs on load) */
.hero-anim { animation: fadeUp .9s var(--ease-out) both; animation-delay: var(--d, 0s); }
.hero-anim--right { animation-name: fadeRight; animation-duration: 1s; }

/* scroll reveals */
[data-reveal] {
  opacity: 0;
  transition: opacity .8s var(--ease-out), transform .9s var(--ease-out);
  transition-delay: var(--d, 0s);
  will-change: opacity, transform;
}
[data-reveal="up"] { transform: translate3d(0, 30px, 0); }
[data-reveal="left"] { transform: translate3d(-40px, 0, 0); }
[data-reveal="right"] { transform: translate3d(40px, 0, 0); }
[data-reveal="scale"] { transform: scale(.94); }
[data-reveal="fade"] { transform: none; }
[data-reveal="line"] { opacity: 1; transform: none; transition: none; }
[data-reveal="stagger"] { opacity: 1; transform: none; transition: none; }
[data-reveal="stagger"] > * {
  opacity: 0;
  transform: translate3d(-16px, 0, 0);
  transition: opacity .6s var(--ease-out), transform .6s var(--ease-out);
  transition-delay: calc(var(--i, 0) * .1s);
}
[data-reveal].is-visible { opacity: 1; transform: none; }
[data-reveal="stagger"].is-visible > * { opacity: 1; transform: none; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1100px) {
  .hero__title, .hero__title--tight { font-size: 52px; }
  .hero__grid { grid-template-columns: minmax(0, 1fr) 440px; gap: 40px; }
  .logos { gap: 18px; }
  .carstar__text, .logo--autonation span { font-size: 20px; }
  .logo--caliber { font-size: 22px; }
  .mister__script { font-size: 22px; }
}
@media (max-width: 960px) {
  .section { padding: 60px 0; }
  .hero__grid { grid-template-columns: minmax(0, 1fr); gap: 40px; padding-bottom: 48px; }
  .hero__content { padding-top: 10px; }
  .hero__title, .hero__title--tight { font-size: 46px; }
  .hero__title br { display: none; }
  .form-card { max-width: 520px; min-width: 0; }
  .features { flex-wrap: wrap; gap: 20px 0; }
  .feature { flex: 1 1 45%; }
  .feature:nth-child(2) { border-right: 0; }
  .proof { grid-template-columns: repeat(2, minmax(0, 1fr)); row-gap: 18px; }
  .proof__item:nth-child(3) { border-left: 0; }
  .trusted__row { flex-wrap: wrap; justify-content: center; gap: 20px; }
  .trusted__divider { display: none; }
  .trusted__label, .trusted__more { text-align: center; }
  .trusted__more br { display: none; }
  .logos-wrap { flex-basis: 100%; }
  .fees__grid { grid-template-columns: minmax(0, 1fr); gap: 40px; }
  .fees__copy, .invoice-wrap { min-width: 0; }
  .fees__copy .h2 { white-space: normal; }
  .fees__copy .h2 br { display: none; }
  .invoice-wrap { padding-right: 0; }
  .note {
    position: relative; left: auto; right: auto; top: auto; bottom: auto; width: auto;
    display: flex; align-items: center; justify-content: flex-end; gap: 4px;
    margin: 10px 8px 0 0; transform: rotate(-3deg);
  }
  .note__text { font-size: 26px; }
  .note__arrow { order: -1; width: 46px; height: 52px; margin: 0; transform: rotate(150deg); }
  .cards, .cards--2 { grid-template-columns: minmax(0, 1fr); max-width: 540px; margin: 0 auto; }
  .process { grid-template-columns: minmax(0, 1fr); gap: 22px; }
  .process__arrow { display: none; }
  .calc__grid { grid-template-columns: minmax(0, 1fr); gap: 32px; }
  .faq__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px 0; }
  .faq__item:nth-child(n) { border-left: 1px solid #dcd9cf; padding: 0 24px; }
  .faq__item:nth-child(odd) { border-left: 0; padding-left: 0; }
  .faq__item:nth-child(even) { padding-right: 0; }
  .footer__grid { grid-template-columns: minmax(0, 1fr); text-align: center; gap: 30px; }
  .brand--footer, .footer__cta, .footer__points { justify-self: center; }
  .footer__cta { width: 100%; }
  .footer__points { border-left: 0; padding-left: 0; align-items: flex-start; }
  .footer__bottom { justify-content: center; text-align: center; }
}
@media (max-width: 600px) {
  .container { padding-left: 20px; padding-right: 20px; }
  .section { padding: 52px 0; }
  .h2 { font-size: 28px; }
  .section__sub { font-size: 16px; }

  /* header: seal left, eyebrow right, links centered underneath */
  .page-switcher__label { display: none; }
  .page-switcher .container { padding-left: 12px; padding-right: 12px; }
  .nav { flex-wrap: nowrap; align-items: center; gap: 12px; padding-top: 18px; }
  .brand__seal { width: 64px; height: 64px; }
  .nav__right { display: contents; }
  .nav__eyebrow { margin-left: auto; text-align: right; max-width: 190px; font-size: 10px; letter-spacing: .16em; line-height: 1.5; }
  .nav__links { flex-basis: 100%; justify-content: center; flex-wrap: wrap; margin-top: 0; padding-top: 12px; border-top: 1px solid rgba(255,255,255,.1); gap: 6px 18px; font-size: 10px; letter-spacing: .12em; }
  .nav__links li[aria-hidden] { display: none; }
  .nav__links a { padding: 10px 6px; margin: -10px -6px; } /* 40px+ tap targets */

  /* inputs at 16px so iOS doesn't zoom on focus */
  .step input, .step select, .input-money input { font-size: 16px; height: 48px; }
  .step__row { grid-template-columns: 1fr; }
  .nav__right { gap: 12px; }
  .nav__phone-num { display: none; }
  .nav__phone { width: 42px; height: 42px; justify-content: center; border-radius: 50%; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.14); }
  .nav__phone svg { width: 19px; height: 19px; }
  .nav__cta { height: 40px; padding: 0 14px; font-size: 13px; }
  .brand__tagline { display: none; }
  .form-success__range { font-size: 34px; }
  .select-wrap select { padding-right: 44px; }
  .btn { min-height: 48px; }

  /* trusted logos: single-row auto-scrolling strip */
  .trusted__row { gap: 16px; padding-top: 18px; padding-bottom: 18px; min-height: 0; }
  .logos-wrap { flex-basis: 100%; width: 100%; }
  .logos-track { animation-duration: 24s; }
  .logos, .logos-track > .logos--dup { gap: 40px; padding: 4px 40px 4px 0; }
  .logo { opacity: 1; }
  .trusted__label { order: -1; }

  .hero__grid { padding-bottom: 44px; }
  .hero__content { padding-top: 22px; }
  .eyebrow { font-size: 12.5px; letter-spacing: .18em; }
  .hero__title, .hero__title--tight { font-size: clamp(30px, 9vw, 34px); margin-top: 14px; }
  .hero__sub { font-size: 18px; margin-top: 18px; }
  .hero__sub br { display: none; }
  .features { margin-top: 36px; gap: 24px 0; }
  .feature { flex: 1 1 50%; border-right: 0; padding-right: 8px; margin-right: 0; }
  .feature strong, .feature span:not(.feature__icon) { white-space: normal; }
  .feature__icon { width: 30px; height: 30px; margin-bottom: 10px; }
  .form-card { padding: 24px 20px 20px; }

  /* invoice: narrower card, stacked header, Qty/Rate columns hidden so it stays legible */
  .invoice { width: 400px; padding: 20px 18px 16px; }
  .invoice__head { flex-direction: column; gap: 12px; }
  .wm__mark { width: 120px; margin: -4px 0 0 -2px; }
  .invoice__meta-title { text-align: left; }
  .invoice__table { margin-top: 16px; font-size: 13px; }
  .invoice__table th:nth-child(2), .invoice__table td:nth-child(2),
  .invoice__table th:nth-child(3), .invoice__table td:nth-child(3) { display: none; }
  .invoice__table th, .invoice__table td { padding: 9px 8px; }
  .checklist li { font-size: 16px; }

  .card { padding: 22px 18px 16px; }
  .card__icon--company { width: 118px; height: 66px; }
  .stat__value { font-size: 27px; }

  /* how it works: vertical timeline cards */
  .process { position: relative; gap: 14px; margin-top: 26px; padding-left: 0; }
  .process::before {
    content: "";
    position: absolute; left: 31px; top: 24px; bottom: 24px;
    width: 2px; border-radius: 2px;
    background: linear-gradient(180deg, var(--green) 0%, var(--green-bright) 100%);
    transform: scaleY(0); transform-origin: top;
    transition: transform 1.4s var(--ease-out) .25s;
  }
  .process.is-visible::before { transform: scaleY(1); }
  .process__step {
    position: relative;
    gap: 0;
    padding: 16px 16px 16px 64px;
    background: #fff;
    border: 1px solid #e6e3da;
    border-radius: 12px;
    box-shadow: 0 6px 18px -12px rgba(19,42,62,.25);
  }
  .process__num {
    position: absolute; left: 14px; top: 14px;
    width: 34px; height: 34px; font-size: 15px;
    box-shadow: 0 0 0 4px var(--cream), 0 6px 14px -6px rgba(63,155,79,.6);
  }
  .process__step h3 { font-size: 16px; margin-top: 4px; }
  .process__step p { font-size: 14.5px; max-width: none; margin-top: 5px; }

  .promise { padding: 24px 20px; margin-top: 30px; }
  .promise__title { flex-direction: column; gap: 8px; }
  .promise h3 { font-size: 20px; }
  .promise p { font-size: 14.5px; }
  .haulers { margin-top: 36px; }
  .haulers__label { font-size: 11.5px; letter-spacing: .1em; }
  .marquee__group { gap: 40px; padding-right: 40px; }
  .marquee__group img { height: 32px; }

  .calc { padding: 48px 0; }
  .calc__copy .h2 { font-size: 27px; }
  .calc__form { flex-direction: column; }
  .input-money--lg { flex-basis: auto; }
  .calc__result { padding: 26px 20px 22px; }
  .calc__range { font-size: 36px; }
  .proof { grid-template-columns: minmax(0, 1fr); row-gap: 14px; }
  .proof__item { border-left: 0; padding: 4px 0; }
  .proof__item strong { font-size: 20px; }
  .invoice__caption { font-size: 13.5px; }

  .faq { padding: 52px 0 48px; }
  /* FAQ: tap-to-expand accordion */
  .faq__grid { grid-template-columns: minmax(0, 1fr); gap: 0; border-top: 1px solid #dcd9cf; margin-top: 22px; }
  .faq__item, .faq__item:nth-child(n) { border-left: 0; padding: 0; border-bottom: 1px solid #dcd9cf; }
  .faq__q { font-size: 15.5px; }
  .faq__q button { pointer-events: auto; cursor: pointer; padding: 16px 0; -webkit-tap-highlight-color: transparent; }
  .faq__q button:focus-visible { outline: 2px solid var(--green); outline-offset: 4px; border-radius: 4px; }
  .faq__chevron { display: block; }
  .faq__a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .45s var(--ease-out); }
  .faq__a-inner { overflow: hidden; }
  .faq__a p { margin: 0 0 16px; font-size: 14.5px; }
  .faq__item.is-open .faq__a { grid-template-rows: 1fr; }
  .faq__item.is-open .faq__chevron { transform: rotate(180deg); }

  .footer__grid { padding-top: 40px; padding-bottom: 36px; gap: 26px; }
  .brand--footer .brand__seal { width: 96px; height: 96px; }
  .footer__cta h2 { font-size: 23px; }
  .footer__cta p { font-size: 15px; }
  .footer__points { gap: 12px; font-size: 13px; }
  .footer__bottom { padding-top: 16px; padding-bottom: 20px; }
  .promise::before { display: none; }

  .sticky-cta {
    display: block;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 50;
    padding: 10px 16px calc(10px + env(safe-area-inset-bottom, 0px));
    background: rgba(19,42,62,.9);
    -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255,255,255,.08);
    transform: translateY(110%);
    transition: transform .45s var(--ease-out);
    pointer-events: none;
  }
  .sticky-cta.is-visible { transform: none; pointer-events: auto; }
  .sticky-cta .btn { height: 50px; font-size: 16px; box-shadow: 0 6px 18px -6px rgba(95,191,119,.6); }
}


/* ---------- Hover effects: only on devices that can actually hover ---------- */
@media (hover: hover) {
  .brand:hover .brand__seal { transform: rotate(18deg) scale(1.05); }
  .btn:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: 0 14px 28px -10px rgba(63, 155, 79, .75), inset 0 1px 0 rgba(255,255,255,.18); }
  .btn:hover::after { transform: translateX(120%); }
  .btn:hover .btn__arrow { transform: translateX(4px); }
  .nav__links a:hover { color: #fff; }
  .nav__links a:hover::after { transform: scaleX(1); }
  .feature:hover .feature__icon { transform: translateY(-3px) scale(1.08); }
  .logo:hover { transform: translateY(-3px); opacity: 1; }
  .invoice:hover { transform: rotate(0deg) translateY(-3px); }
  .card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); border-color: #dfe4e9; }
  .card:hover::before { transform: scaleX(1); }
  .card:hover .card__icon { transform: scale(1.08) rotate(-3deg); }
  .process__step:hover .process__num { transform: scale(1.1) rotate(-6deg); }
  .marquee:hover .marquee__track { animation-play-state: paused; }
  .marquee__group li:hover img { opacity: 1; transform: scale(1.08); }
  .footer__bottom a:hover { color: #fff; }
  .page-switcher a:hover { background: rgba(255,255,255,.1); color: #fff; }
  .footer__pages a:hover { color: #fff; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001s !important; animation-delay: 0s !important; transition-duration: .001s !important; }
  [data-reveal], [data-reveal="stagger"] > * { opacity: 1; transform: none; }
  .invoice__marks .draw, .note__arrow .draw, .process__arrow .draw, .checkbox svg, .check-badge svg, .promise__tick { stroke-dashoffset: 0; }
  .marquee__track, .logos-track { animation: none; }
  .logos-wrap, .marquee { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .calc__result.is-visible, .calc__result.is-visible::after, .calc__result.is-pulsing::before { animation: none; }
}
