:root {
  --ink: #101820;
  --muted: #5f6b73;
  --line: #dfe6e2;
  --panel: #ffffff;
  --field: #f8faf7;
  --green: #0f6a4d;
  --green-dark: #094332;
  --amber: #ffd33d;
  --blue: #174d79;
  --soft: #eef4ef;
  --shadow: 0 18px 45px rgba(16, 24, 32, 0.14);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: #fbfcfa;
  line-height: 1.5;
}

a { color: inherit; text-decoration: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 28px;
  min-height: 72px;
  padding: 0 clamp(18px, 4vw, 56px);
  background: rgba(251, 252, 250, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  font-weight: 850;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand span { color: var(--green); }

.nav {
  display: flex;
  gap: 18px;
  flex: 1;
  color: #33424b;
  font-size: 0.94rem;
}

.nav a { padding: 8px 0; }
.nav a:hover { color: var(--green); }

.header-cta {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 6px;
  background: var(--green);
  color: #fff;
  font-weight: 750;
}

.hero {
  min-height: calc(100vh - 72px);
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(360px, 0.72fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  padding: clamp(54px, 7vw, 96px) clamp(18px, 5vw, 72px);
  background:
    linear-gradient(90deg, rgba(9, 22, 22, 0.88) 0%, rgba(9, 22, 22, 0.74) 42%, rgba(9, 22, 22, 0.16) 100%),
    url("/assets/hero-recycling-yard.png") center / cover no-repeat;
  color: #fff;
}

.hero-copy,
.hero-support {
  max-width: 800px;
}

.eyebrow {
  margin: 0 0 12px;
  color: #1d7557;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  font-weight: 850;
}

.hero .eyebrow { color: #98f0be; }

h1, h2, h3 { margin: 0; line-height: 1.04; letter-spacing: 0; }

h1 {
  max-width: 760px;
  font-size: clamp(3rem, 6.8vw, 6.6rem);
  font-weight: 900;
}

h2 {
  font-size: clamp(2rem, 3.8vw, 3.9rem);
  font-weight: 880;
}

h3 { font-size: 1.15rem; font-weight: 830; }

.lead {
  max-width: 700px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.page-hero .lead,
.content p,
.band p,
.page-card p,
.cards p,
.side-panel p,
.form-note {
  color: var(--muted);
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.trust-strip span {
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.12);
  padding: 9px 12px;
  border-radius: 999px;
  font-size: 0.9rem;
}

.outcome-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  max-width: 720px;
  margin-top: 18px;
}

.outcome-strip span {
  display: block;
  min-height: 74px;
  padding: 13px 14px;
  border-left: 3px solid #98f0be;
  background: rgba(16, 24, 32, 0.42);
}

.outcome-strip strong {
  display: block;
  margin-bottom: 4px;
  color: #ffffff;
}

.proof-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: #dfe6e2;
  border-bottom: 1px solid var(--line);
}

.proof-bar div {
  min-height: 118px;
  display: grid;
  align-content: center;
  gap: 6px;
  padding: 20px clamp(18px, 4vw, 54px);
  background: #ffffff;
}

.proof-bar strong {
  color: var(--green);
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1;
}

.proof-bar span {
  max-width: 270px;
  color: #43515a;
  font-weight: 720;
}

.hero-panel {
  width: 100%;
  max-width: 500px;
  justify-self: end;
  grid-row: 1 / span 2;
  grid-column: 2;
  padding: 22px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.hero-panel.compact { justify-self: stretch; }

.quote-form {
  display: grid;
  gap: 14px;
}

.quote-form label {
  display: block;
  margin-bottom: 7px;
  color: #24343c;
  font-size: 0.88rem;
  font-weight: 780;
}

.quote-form input,
.quote-form select {
  width: 100%;
  min-height: 54px;
  border: 1px solid #cdd8d2;
  border-radius: 6px;
  background: var(--field);
  padding: 0 14px;
  color: var(--ink);
  font: inherit;
}

.quote-form input:focus,
.quote-form select:focus {
  outline: 3px solid rgba(15, 106, 77, 0.18);
  border-color: var(--green);
}

.plate-field input {
  background: linear-gradient(90deg, #2d5aa7 0 34px, var(--amber) 34px);
  color: #111;
  border-color: #c2a723;
  padding-left: 48px;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 0.04em;
  font-size: 1.22rem;
}

.quote-form button,
.secondary-button {
  min-height: 56px;
  border: 0;
  border-radius: 6px;
  background: var(--green);
  color: #fff;
  font: inherit;
  font-weight: 850;
  cursor: pointer;
}

.quote-form button:hover,
.secondary-button:hover,
.header-cta:hover { background: var(--green-dark); }

.form-note {
  margin: 0;
  font-size: 0.86rem;
}

.next-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
  color: #31424b;
  font-size: 0.78rem;
  font-weight: 760;
}

.next-steps span {
  min-height: 42px;
  display: grid;
  place-items: center;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #ffffff;
  text-align: center;
}

.quote-result {
  display: none;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #f3f8f4;
  padding: 14px;
}

.quote-result.active { display: block; }

.quote-result strong {
  display: block;
  font-size: 1.65rem;
  line-height: 1.1;
}

.lead-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 12px;
}

.lead-fields label { margin: 0; }
.lead-fields .wide { grid-column: 1 / -1; }

.section {
  padding: clamp(54px, 7vw, 92px) clamp(18px, 5vw, 72px);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
  gap: clamp(26px, 5vw, 76px);
  align-items: start;
}

.cards,
.page-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.cards article,
.page-card,
.side-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  padding: 20px;
}

.page-card {
  display: block;
  min-height: 188px;
}

.page-card span {
  display: block;
  margin-bottom: 16px;
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 850;
}

.page-card strong {
  display: block;
  font-size: 1.18rem;
  line-height: 1.15;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 26px;
  margin-bottom: 24px;
}

.band {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 32px;
  background: var(--soft);
  border-block: 1px solid var(--line);
}

.value-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.2fr);
  gap: clamp(28px, 5vw, 72px);
  background: #101820;
  color: #fff;
}

.value-panel p { color: #c4d0ca; }

.value-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.value-steps article {
  min-height: 260px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.06);
}

.value-steps span {
  display: block;
  margin-bottom: 72px;
  color: #98f0be;
  font-weight: 900;
}

.value-steps strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.14rem;
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 460px);
  gap: clamp(24px, 5vw, 68px);
  padding: clamp(48px, 7vw, 86px) clamp(18px, 5vw, 72px);
  background: linear-gradient(135deg, #eef4ef 0%, #f9fbf7 52%, #eaf2f7 100%);
  border-bottom: 1px solid var(--line);
}

.page-hero .lead {
  color: #40505a;
}

.page-hero h1 {
  max-width: 780px;
  font-size: clamp(2.6rem, 5.8vw, 5.8rem);
}

.content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 44px;
}

.content article {
  max-width: 860px;
}

.legal-copy article {
  max-width: 940px;
}

.content h2 { margin-top: 36px; font-size: clamp(1.8rem, 3vw, 3rem); }
.content h2:first-child { margin-top: 0; }
.content p { font-size: 1.04rem; }

.checks {
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.checks li {
  padding-left: 28px;
  position: relative;
}

.checks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 12px;
  height: 12px;
  background: var(--green);
  border-radius: 50%;
}

.side-panel {
  position: sticky;
  top: 96px;
  align-self: start;
  display: grid;
  gap: 10px;
}

.side-panel a {
  color: var(--blue);
  font-weight: 760;
}

.footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  padding: 38px clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
  background: #101820;
  color: #eef4ef;
}

.contact-band {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(340px, 520px);
  gap: clamp(24px, 5vw, 60px);
  align-items: start;
  background: #f5f8f5;
  border-top: 1px solid var(--line);
}

.contact-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 20px;
  box-shadow: 0 12px 35px rgba(16, 24, 32, 0.08);
}

.contact-form .wide {
  grid-column: 1 / -1;
}

.footer p {
  max-width: 760px;
  color: #b9c6c0;
}

.footer div:last-child {
  display: grid;
  gap: 8px;
}

@media (max-width: 920px) {
  .site-header { gap: 14px; }
  .nav { display: none; }
  .hero,
  .page-hero,
  .split,
  .band,
  .proof-bar,
  .value-panel,
  .content,
  .contact-band,
  .footer {
    grid-template-columns: 1fr;
  }
  .hero {
    min-height: auto;
    background-position: center right;
  }
  .hero-panel {
    grid-row: auto;
    grid-column: auto;
    justify-self: stretch;
    max-width: none;
  }
  .cards,
  .page-grid,
  .value-steps,
  .outcome-strip {
    grid-template-columns: 1fr;
  }
  .side-panel { position: static; }
  .section-head { display: block; }
}

@media (max-width: 560px) {
  .site-header { min-height: 64px; }
  .brand { font-size: 0.95rem; }
  .header-cta { padding: 0 12px; }
  .hero,
  .page-hero,
  .section {
    padding-inline: 16px;
  }
  h1 { font-size: clamp(2.35rem, 12vw, 3.25rem); }
  .hero { padding-block: 34px; }
  .hero .lead { margin-top: 16px; font-size: 1.04rem; }
  .lead-fields { grid-template-columns: 1fr; }
  .next-steps { grid-template-columns: 1fr; }
}
