:root {
  --ink: #0b2418;
  --forest: #073d25;
  --forest-dark: #032b1a;
  --leaf: #9ac42e;
  --leaf-bright: #b9db4a;
  --cream: #f6f3e8;
  --paper: #fffef9;
  --muted: #607067;
  --line: #dce4da;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(7, 61, 37, 0.13);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", sans-serif;
  line-height: 1.6;
}

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

button,
input,
select {
  font: inherit;
}

.announcement {
  display: flex;
  justify-content: center;
  gap: 18px;
  padding: 8px 24px;
  color: #dcebb8;
  background: var(--forest-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-align: center;
  text-transform: uppercase;
}

.announcement a {
  color: var(--leaf-bright);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: 14px 28px;
  background: rgba(255, 254, 249, 0.92);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  font-family: "League Spartan", sans-serif;
  font-size: 1.18rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.brand img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

nav {
  display: flex;
  gap: 28px;
  font-size: 0.88rem;
  font-weight: 700;
}

nav a {
  transition: color 160ms ease;
}

nav a:hover {
  color: #6b9412;
}

.site-header > .button,
.header-actions {
  justify-self: end;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.phone-link {
  color: var(--forest);
  font-size: 0.82rem;
  font-weight: 800;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:focus-visible,
a:focus-visible,
summary:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 3px solid var(--leaf-bright);
  outline-offset: 3px;
}

.button-small {
  min-height: 42px;
  padding: 0 19px;
  font-size: 0.84rem;
}

.button-dark {
  color: var(--white);
  background: var(--forest);
}

.button-primary {
  color: var(--forest-dark);
  background: var(--leaf-bright);
  box-shadow: 0 14px 30px rgba(154, 196, 46, 0.25);
}

.button-primary:hover {
  background: #c4e65b;
  box-shadow: 0 18px 35px rgba(154, 196, 46, 0.32);
}

.button-outline {
  color: var(--forest);
  border-color: var(--forest);
}

.button-full {
  width: 100%;
  border: 0;
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  min-height: 720px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 70px 28px 90px;
  overflow: hidden;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.eyebrow {
  margin: 0 0 12px;
  color: #71951f;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin-top: 0;
  font-family: "League Spartan", sans-serif;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

h1 {
  max-width: 720px;
  margin-bottom: 24px;
  font-size: clamp(3.7rem, 6.8vw, 6.6rem);
}

h1 em {
  display: block;
  color: #719d1c;
  font-style: normal;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2.6rem, 5vw, 4.8rem);
}

h3 {
  margin-bottom: 10px;
  font-size: 1.65rem;
}

.hero-intro {
  max-width: 585px;
  margin: 0;
  color: var(--muted);
  font-size: 1.15rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-top: 34px;
}

.text-link {
  font-size: 0.9rem;
  font-weight: 800;
}

.text-link span {
  display: inline-block;
  margin-left: 5px;
  color: #719d1c;
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 32px 0 0;
  padding: 0;
  color: var(--muted);
  font-size: 0.83rem;
  font-weight: 700;
  list-style: none;
}

.trust-list li::before {
  content: "✓";
  margin-right: 7px;
  color: #719d1c;
  font-weight: 900;
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 590px;
  isolation: isolate;
}

.hero-visual::before {
  position: absolute;
  z-index: -2;
  width: 480px;
  height: 480px;
  border-radius: 48% 52% 64% 36% / 43% 40% 60% 57%;
  background: #edf2dc;
  content: "";
  transform: rotate(-9deg);
}

.hero-visual::after {
  position: absolute;
  z-index: -1;
  width: 380px;
  height: 380px;
  border: 2px dashed rgba(113, 157, 28, 0.3);
  border-radius: 50%;
  content: "";
}

.bin {
  position: relative;
  width: 275px;
  height: 400px;
  transform: rotate(3deg);
}

.bin-handle {
  position: absolute;
  z-index: 1;
  top: 2px;
  left: 98px;
  width: 80px;
  height: 45px;
  border: 13px solid #062e1c;
  border-bottom: 0;
  border-radius: 20px 20px 0 0;
}

.bin-lid {
  position: absolute;
  z-index: 3;
  top: 33px;
  left: -12px;
  width: 300px;
  height: 58px;
  border: 8px solid #062e1c;
  border-radius: 22px 22px 11px 11px;
  background: linear-gradient(180deg, #b1d544, #8cb52a);
  box-shadow: 0 12px 0 #052a19;
}

.bin-body {
  position: absolute;
  top: 78px;
  left: 12px;
  display: grid;
  place-items: center;
  width: 252px;
  height: 305px;
  overflow: hidden;
  border: 8px solid #062e1c;
  border-radius: 10px 10px 55px 55px;
  background: linear-gradient(135deg, #0b512f, #032b1a 70%);
  box-shadow: 0 26px 50px rgba(5, 50, 29, 0.28);
  clip-path: polygon(0 0, 100% 0, 89% 100%, 11% 100%);
}

.bin-body img {
  width: 128px;
  opacity: 0.82;
  filter: drop-shadow(0 8px 15px rgba(0, 0, 0, 0.22));
}

.bin-shine {
  position: absolute;
  top: -120px;
  left: 25px;
  width: 40px;
  height: 500px;
  background: rgba(255, 255, 255, 0.06);
  transform: rotate(15deg);
}

.bin-wheel {
  position: absolute;
  bottom: 0;
  width: 53px;
  height: 53px;
  border: 8px solid #062e1c;
  border-radius: 50%;
  background: #9ac42e;
}

.bin-wheel-left {
  left: 45px;
}

.bin-wheel-right {
  right: 45px;
}

.route-card,
.finish-card {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 17px;
  border: 1px solid rgba(7, 61, 37, 0.12);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.route-card {
  top: 100px;
  left: 10px;
}

.finish-card {
  right: -5px;
  bottom: 105px;
}

.route-card strong,
.finish-card strong,
.route-card span,
.finish-card span {
  display: block;
}

.route-card strong,
.finish-card strong {
  font-size: 0.83rem;
}

.route-card div span,
.finish-card div span {
  color: var(--muted);
  font-size: 0.7rem;
}

.route-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--leaf);
  box-shadow: 0 0 0 6px rgba(154, 196, 46, 0.2);
}

.leaf {
  color: var(--leaf);
  font-size: 1.4rem;
  transform: rotate(45deg);
}

.spark {
  position: absolute;
  color: var(--leaf);
  font-size: 2.5rem;
}

.spark-one {
  top: 82px;
  right: 95px;
}

.spark-two {
  bottom: 70px;
  left: 70px;
  font-size: 1.4rem;
}

.problem-strip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  max-width: 1224px;
  margin: 0 auto;
  padding: 22px 28px;
  border-radius: 22px;
  color: var(--white);
  background: var(--forest);
}

.problem-strip p {
  max-width: 500px;
  margin: 0;
  font-family: "League Spartan", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.15;
}

.problem-points {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.problem-points span {
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 99px;
  color: #dcebb8;
  font-size: 0.73rem;
  font-weight: 700;
}

.section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 125px 28px;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 54px;
}

.section-heading > p:last-child,
.split-heading > p {
  color: var(--muted);
}

.split-heading {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: end;
  gap: 80px;
  max-width: none;
}

.split-heading h2 {
  margin-bottom: 0;
}

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

.step {
  position: relative;
  min-height: 300px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.featured-step {
  border-color: #dce9bb;
  background: #f1f5e7;
  transform: translateY(-18px);
}

.step-number {
  position: absolute;
  top: 28px;
  right: 28px;
  color: #a8b2ac;
  font-family: "League Spartan", sans-serif;
  font-size: 0.8rem;
  font-weight: 800;
}

.step-icon {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  margin-bottom: 55px;
  border-radius: 20px;
  color: var(--forest);
  background: var(--leaf-bright);
  font-size: 1.4rem;
  font-weight: 900;
}

.step p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.pricing-section {
  max-width: none;
  padding-right: max(28px, calc((100vw - 1224px) / 2));
  padding-left: max(28px, calc((100vw - 1224px) / 2));
  background: var(--cream);
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 0.72fr;
  gap: 20px;
  align-items: stretch;
}

.price-card,
.neighbor-card {
  position: relative;
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.price-card-featured {
  border: 2px solid var(--leaf);
  box-shadow: var(--shadow);
}

.popular {
  position: absolute;
  top: -14px;
  right: 28px;
  padding: 6px 13px;
  border-radius: 99px;
  color: var(--forest-dark);
  background: var(--leaf-bright);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-label,
.mini-eyebrow {
  color: #71951f;
  font-size: 0.71rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.price {
  margin: 27px 0 5px;
  font-family: "League Spartan", sans-serif;
  font-size: 3.8rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.05em;
}

.price span {
  display: block;
  margin-bottom: 5px;
  color: var(--muted);
  font-family: "DM Sans", sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.price small {
  font-size: 1rem;
}

.price-note {
  min-height: 48px;
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.price-card ul {
  display: grid;
  gap: 9px;
  margin: 25px 0 30px;
  padding: 22px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.price-card li {
  font-size: 0.82rem;
  font-weight: 600;
}

.price-card li::before {
  content: "✓";
  margin-right: 8px;
  color: #719d1c;
}

.neighbor-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  color: var(--white);
  background: var(--forest);
}

.neighbor-card::before {
  position: absolute;
  top: -80px;
  right: -70px;
  width: 230px;
  height: 230px;
  border: 35px solid rgba(185, 219, 74, 0.08);
  border-radius: 50%;
  content: "";
}

.neighbor-card .mini-eyebrow {
  color: var(--leaf-bright);
}

.neighbor-card p {
  color: #c8d7cf;
  font-size: 0.87rem;
}

.neighbor-card a {
  margin-top: 15px;
  color: var(--leaf-bright);
  font-size: 0.8rem;
  font-weight: 800;
}

.story-section {
  padding-top: 95px;
  padding-bottom: 95px;
}

.story-card {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  align-items: center;
  gap: 90px;
  padding: 72px;
  border-radius: 40px;
  color: var(--white);
  background: var(--forest-dark);
}

.story-mark {
  color: var(--leaf-bright);
  font-family: "League Spartan", sans-serif;
  font-size: clamp(6rem, 13vw, 11rem);
  font-weight: 800;
  letter-spacing: -0.09em;
  transform: rotate(-6deg);
}

.story-copy .eyebrow {
  color: var(--leaf-bright);
}

.story-copy p:not(.eyebrow) {
  color: #c7d5cd;
}

.story-values {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 24px;
}

.story-values span {
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 99px;
  font-size: 0.7rem;
  font-weight: 700;
}

.faq-section {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 100px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

details {
  border-bottom: 1px solid var(--line);
}

summary {
  position: relative;
  padding: 24px 45px 24px 0;
  font-family: "League Spartan", sans-serif;
  font-size: 1.28rem;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  position: absolute;
  top: 22px;
  right: 5px;
  color: #719d1c;
  content: "+";
  font-size: 1.8rem;
}

details[open] summary::after {
  content: "−";
}

details p {
  margin: -5px 0 24px;
  color: var(--muted);
  font-size: 0.9rem;
}

.quote-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 90px;
  align-items: center;
  max-width: 1224px;
  margin: 60px auto 0;
  padding: 85px;
  border-radius: 40px;
  color: var(--white);
  background: var(--forest);
}

.eyebrow-light {
  color: var(--leaf-bright);
}

.quote-copy > p:not(.eyebrow) {
  color: #c7d5cd;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.contact-links a {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: var(--leaf-bright);
  font-size: 0.76rem;
  font-weight: 800;
}

.quote-promise {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  margin-top: 30px;
}

.quote-promise span {
  display: grid;
  flex: 0 0 28px;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: var(--forest);
  background: var(--leaf-bright);
  font-weight: 900;
}

.quote-promise p {
  margin: 2px 0 0;
  color: #c7d5cd;
  font-size: 0.8rem;
}

.quote-promise strong {
  color: var(--white);
}

.quote-form {
  padding: 30px;
  border-radius: 24px;
  color: var(--ink);
  background: var(--white);
}

.hidden-field {
  position: absolute;
  left: -9999px;
}

.quote-form label {
  display: grid;
  gap: 7px;
  margin-bottom: 15px;
  font-size: 0.72rem;
  font-weight: 800;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
}

input,
select {
  width: 100%;
  min-height: 49px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 11px;
  color: var(--ink);
  background: #fbfcf8;
  font-size: 0.84rem;
}

.checkbox {
  display: flex !important;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 9px !important;
  color: var(--muted);
  font-weight: 600 !important;
}

.checkbox input {
  width: 17px;
  min-height: 17px;
  accent-color: var(--forest);
}

.form-status,
.form-note {
  margin-bottom: 0;
  text-align: center;
}

.form-status {
  color: #47710d;
  font-size: 0.78rem;
  font-weight: 800;
}

.form-note {
  color: var(--muted);
  font-size: 0.64rem;
}

.quick-contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 12px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 700;
}

.quick-contact a {
  color: var(--forest);
  text-decoration: underline;
  text-underline-offset: 3px;
}

footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: 40px 28px;
  color: var(--muted);
  font-size: 0.72rem;
}

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 18px;
}

.footer-contact a {
  color: var(--forest);
  font-weight: 800;
}

footer p:last-child {
  justify-self: end;
}

.footer-brand img {
  width: 42px;
  height: 42px;
}

.simple-header {
  grid-template-columns: 1fr auto;
}

.legal-page {
  max-width: 840px;
  margin: 0 auto;
  padding: 90px 28px 120px;
}

.legal-page h1 {
  max-width: 760px;
  margin-bottom: 28px;
  font-size: clamp(3rem, 7vw, 5.8rem);
}

.legal-page h2 {
  margin: 42px 0 12px;
  font-size: 2rem;
}

.legal-page p {
  color: var(--muted);
}

.legal-page a {
  color: var(--forest);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-updated {
  margin-top: 45px;
  font-size: 0.8rem;
}

@media (max-width: 1000px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    align-items: start;
    min-height: auto;
    padding-top: 60px;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero-visual {
    min-height: 520px;
  }

  .pricing-grid {
    grid-template-columns: 1fr 1fr;
  }

  .neighbor-card {
    grid-column: 1 / -1;
    min-height: 240px;
  }

  .story-card,
  .quote-section {
    gap: 50px;
    padding: 55px;
  }

  .faq-section {
    gap: 60px;
  }
}

@media (max-width: 760px) {
  .announcement {
    display: block;
    padding: 7px 14px;
    font-size: 0.58rem;
  }

  .announcement a {
    display: none;
  }

  .site-header {
    padding: 10px 16px;
  }

  .brand {
    font-size: 0.9rem;
  }

  .brand img {
    width: 43px;
    height: 43px;
  }

  .site-header .button {
    min-height: 39px;
    padding: 0 14px;
    font-size: 0.69rem;
  }

  .phone-link {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 45px 18px 65px;
  }

  h1 {
    font-size: clamp(3rem, 15vw, 4.5rem);
  }

  .hero-intro {
    font-size: 1rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 15px;
  }

  .text-link {
    text-align: center;
  }

  .trust-list {
    gap: 8px 14px;
    font-size: 0.7rem;
  }

  .hero-visual {
    min-height: 480px;
    transform: scale(0.86);
  }

  .hero-visual::before {
    width: 420px;
    height: 420px;
  }

  .route-card {
    left: -25px;
  }

  .finish-card {
    right: -25px;
  }

  .problem-strip {
    align-items: flex-start;
    flex-direction: column;
    margin: 0 14px;
    padding: 22px;
  }

  .problem-points {
    justify-content: flex-start;
  }

  .section {
    padding: 85px 18px;
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .split-heading,
  .steps,
  .pricing-grid,
  .story-card,
  .faq-section,
  .quote-section {
    grid-template-columns: 1fr;
  }

  .split-heading {
    gap: 15px;
  }

  .steps {
    gap: 14px;
  }

  .featured-step {
    transform: none;
  }

  .step {
    min-height: auto;
    padding: 27px;
  }

  .step-icon {
    margin-bottom: 30px;
  }

  .pricing-section {
    padding-right: 18px;
    padding-left: 18px;
  }

  .neighbor-card {
    grid-column: auto;
  }

  .story-card {
    gap: 20px;
    padding: 35px 25px;
  }

  .story-mark {
    font-size: 6rem;
  }

  .faq-section {
    gap: 20px;
  }

  .quote-section {
    gap: 35px;
    margin: 25px 14px 0;
    padding: 38px 20px;
    border-radius: 28px;
  }

  .quote-form {
    padding: 22px 17px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  footer {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 35px 18px;
    text-align: center;
  }

  .footer-brand,
  footer p:last-child {
    justify-self: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
