:root {
  --white: #ffffff;
  --cream: #f7f8f3;
  --soft: #eef2ea;
  --ink: #111811;
  --muted: #637061;
  --line: #dde5d7;
  --green: #51c21b;
  --green-dark: #236b12;
  --green-soft: #e8f8df;
  --shadow: 0 24px 70px rgba(20, 36, 17, 0.12);
  --shadow-strong: 0 32px 90px rgba(20, 36, 17, 0.18);
  --radius: 28px;
  --container: min(1180px, calc(100% - 32px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 8% 5%, rgba(81, 194, 27, .12), transparent 28rem),
    radial-gradient(circle at 100% 24%, rgba(81, 194, 27, .10), transparent 24rem);
  z-index: -1;
}

a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
.container { width: var(--container); margin: 0 auto; }
.hidden { display: none; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.site-header.scrolled {
  background: rgba(255, 255, 255, .84);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(221,229,215,.8);
  box-shadow: 0 12px 40px rgba(33,48,31,.08);
}
.nav {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  font-weight: 900;
}
.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--ink);
  color: white;
  font-size: .78rem;
  letter-spacing: -.04em;
}
.brand span:last-child { display: grid; line-height: 1.05; }
.brand small {
  color: var(--muted);
  font-size: .72rem;
  font-weight: 700;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}
.nav-links a {
  font-weight: 750;
  font-size: .94rem;
  color: rgba(17,24,17,.72);
}
.nav-links a:hover { color: var(--ink); }
.nav-button {
  padding: .82rem 1rem;
  border-radius: 999px;
  color: white !important;
  background: var(--ink);
}
.menu-toggle { display: none; }

.hero {
  position: relative;
  min-height: 100vh;
  padding: 8rem 0 4rem;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}
.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
  border: 0;
  background: #101810;
  z-index: -3;
}
.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: saturate(.95) contrast(1.05);
}
.hero-video-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 13, 8, .86) 0%, rgba(8, 13, 8, .66) 44%, rgba(8, 13, 8, .46) 100%),
    linear-gradient(180deg, rgba(8, 13, 8, .24) 0%, rgba(8, 13, 8, .82) 100%);
}
.hero-grid {
  display: grid;
  grid-template-columns: .95fr .55fr;
  gap: 2rem;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-copy { max-width: 710px; }
.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .55rem .85rem;
  border-radius: 999px;
  background: white;
  border: 1px solid var(--line);
  box-shadow: 0 10px 30px rgba(30,45,27,.06);
  color: var(--green-dark);
  font-weight: 850;
  font-size: .86rem;
}
.trust-pill span,
.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 99px;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(81,194,27,.13);
}
.hero h1 {
  font-family: "Manrope", "Inter", sans-serif;
  font-size: clamp(4.1rem, 8.6vw, 8.4rem);
  line-height: .88;
  letter-spacing: -.08em;
  margin: 1.2rem 0 0;
}
.headline-line {
  display: block;
  overflow: hidden;
  padding-bottom: .06em;
}
.headline-line span {
  display: block;
  transform: translateY(112%);
  animation: headlineReveal 1s cubic-bezier(.2,.75,.12,1) forwards;
}
.headline-line:nth-child(2) span { animation-delay: .12s; }
.headline-line:nth-child(3) span { animation-delay: .24s; }
.green { color: var(--green-dark); }
@keyframes headlineReveal { to { transform: translateY(0); } }

.hero-sub {
  max-width: 610px;
  margin: 1.35rem 0 0;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.75;
}
.hero-actions,
.contact-buttons {
  display: flex;
  gap: .85rem;
  flex-wrap: wrap;
  margin-top: 1.75rem;
}
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 54px;
  padding: 1rem 1.25rem;
  border-radius: 999px;
  font-weight: 900;
  border: 1px solid transparent;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}
.btn:hover { transform: translateY(-4px); }
.btn:active { transform: scale(.98); }
.btn-primary {
  background: var(--green);
  color: #071306;
  box-shadow: 0 18px 45px rgba(81,194,27,.25);
}
.btn-secondary {
  background: white;
  border-color: var(--line);
  color: var(--ink);
  box-shadow: 0 12px 35px rgba(33,48,31,.07);
}
.hero-proof {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 610px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255,255,255,.68);
  backdrop-filter: blur(10px);
  overflow: hidden;
}
.hero-proof div {
  padding: 1rem;
  border-right: 1px solid var(--line);
}
.hero-proof div:last-child { border-right: 0; }
.hero-proof strong { display: block; font-weight: 900; }
.hero-proof span { color: var(--muted); font-size: .9rem; }

.quote-card {
  align-self: end;
  justify-self: end;
  width: min(380px, 100%);
  margin-top: 20rem;
  padding: 1.35rem;
  border-radius: 30px;
  background: rgba(255,255,255,.92);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-strong);
  backdrop-filter: blur(16px);
}
.quote-card-top {
  display: flex;
  align-items: center;
  gap: .65rem;
  color: var(--green-dark);
  font-weight: 850;
  font-size: .9rem;
}
.quote-card h2 {
  margin: 1.1rem 0 .5rem;
  font-family: "Manrope", sans-serif;
  letter-spacing: -.055em;
  font-size: 2.75rem;
  line-height: .92;
}
.quote-card p { color: var(--muted); line-height: 1.65; }
.check-list { display: grid; gap: .55rem; margin: 1rem 0; }
.check-list span {
  padding: .8rem .85rem;
  border-radius: 16px;
  background: var(--green-soft);
  color: var(--green-dark);
  font-weight: 800;
}
.quote-link { font-weight: 900; color: var(--green-dark); }

.logo-strip {
  background: white;
  border-block: 1px solid var(--line);
}
.logo-strip-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
  color: var(--muted);
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .78rem;
}

.section {
  padding: 7.5rem 0;
  position: relative;
}
.eyebrow,
.section-label {
  margin: 0 0 .95rem;
  color: var(--green-dark);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-weight: 950;
  font-size: .78rem;
}
.section h2 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(2.5rem, 5.5vw, 5.6rem);
  line-height: .94;
  letter-spacing: -.075em;
}
.section p {
  color: var(--muted);
  line-height: 1.75;
}

.problem-grid {
  display: grid;
  grid-template-columns: .24fr .86fr 1fr;
  gap: 2rem;
  align-items: start;
}
.section-label {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  margin-top: .5rem;
}
.problem-copy p { font-size: 1.05rem; max-width: 630px; }
.problem-cards {
  display: grid;
  gap: 1rem;
}
.info-card,
.service-card,
.step-card,
.price-card,
.review-card,
.contact-panel {
  background: white;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.info-card {
  padding: 1.2rem;
  border-radius: 24px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.info-card:hover,
.service-card:hover,
.price-card:hover,
.review-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-strong);
}
.icon-circle {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green-dark);
  font-weight: 950;
  font-size: .78rem;
}
.info-card h3,
.service-card h3,
.step-card h3 {
  margin: 1rem 0 .45rem;
  font-family: "Manrope", sans-serif;
  letter-spacing: -.04em;
  font-size: 1.45rem;
}
.centered {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
}
.section-intro { max-width: 650px; margin: 1rem auto 0; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.service-card {
  border-radius: 30px;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}
.featured-service { transform: translateY(-18px); }
.service-image {
  height: 215px;
  background-size: cover;
  background-position: center;
}
.service-1 {
  background:
    linear-gradient(180deg, rgba(255,255,255,.05), rgba(17,24,17,.16)),
    radial-gradient(circle at 20% 30%, rgba(81,194,27,.22), transparent 24%),
    linear-gradient(135deg, #dce8d4, #f8fbf5);
}
.service-2 {
  background:
    linear-gradient(180deg, rgba(255,255,255,.02), rgba(17,24,17,.20)),
    radial-gradient(circle at 65% 20%, rgba(81,194,27,.30), transparent 22%),
    linear-gradient(135deg, #edf6e8, #dbe8d2);
}
.service-3 {
  background:
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(17,24,17,.14)),
    radial-gradient(circle at 55% 55%, rgba(81,194,27,.20), transparent 24%),
    linear-gradient(135deg, #f7f8f3, #dbe5d5);
}
.service-body { padding: 1.35rem; }
.service-body span,
.step-card span,
.plan-label {
  color: var(--green-dark);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .75rem;
  font-weight: 950;
}
.service-body a {
  display: inline-flex;
  margin-top: .6rem;
  color: var(--green-dark);
  font-weight: 950;
}

.video-break {
  position: relative;
  height: 72vh;
  overflow: hidden;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.video-break-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17,24,17,.82), rgba(17,24,17,.30), rgba(17,24,17,.72)),
    radial-gradient(circle at center, rgba(81,194,27,.15), transparent 32%);
}
.video-break-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
}
.video-break-content h2 {
  max-width: 980px;
  margin: 0 auto;
  font-family: "Manrope", sans-serif;
  font-size: clamp(3rem, 7vw, 7rem);
  line-height: .9;
  letter-spacing: -.08em;
}
.video-break-content .eyebrow { color: #b9ff94; }

.process-section { background: white; }
.process-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 3rem;
}
.process-copy {
  position: sticky;
  top: 120px;
  align-self: start;
}
.process-copy .btn { margin-top: 1.4rem; }
.steps { display: grid; gap: 1rem; }
.step-card {
  border-radius: 28px;
  padding: 1.6rem;
}
.step-card:nth-child(2) { margin-left: 3rem; }
.step-card:nth-child(3) { margin-left: 6rem; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.price-card {
  position: relative;
  border-radius: 30px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  min-height: 455px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.price-card.highlighted {
  background:
    radial-gradient(circle at 50% 0%, rgba(81,194,27,.18), transparent 38%),
    white;
  border-color: rgba(81,194,27,.35);
  transform: translateY(-18px);
}
.popular-badge {
  position: absolute;
  right: 1rem;
  top: 1rem;
  padding: .45rem .7rem;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green-dark);
  font-size: .78rem;
  font-weight: 950;
}
.price-card h3 {
  margin: 1rem 0 .4rem;
  font-family: "Manrope", sans-serif;
  font-size: 4rem;
  line-height: .95;
  letter-spacing: -.075em;
}
.price-card h3 span {
  font-size: 1rem;
  letter-spacing: 0;
  color: var(--muted);
}
.price-card ul {
  margin: 1rem 0 1.35rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: .8rem;
}
.price-card li {
  color: var(--muted);
  font-weight: 700;
}
.price-card li::before {
  content: "";
  display: inline-block;
  width: .52rem;
  height: .52rem;
  border-radius: 50%;
  background: var(--green);
  margin-right: .7rem;
  box-shadow: 0 0 0 5px rgba(81,194,27,.12);
}
.price-card .btn { width: 100%; margin-top: auto; }

.trust-section { background: var(--ink); color: white; }
.trust-section .eyebrow { color: #baff98; }
.trust-section p { color: rgba(255,255,255,.70); }
.trust-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 2rem;
}
.reviews { display: grid; gap: 1rem; }
.review-card {
  border-radius: 24px;
  padding: 1.25rem;
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.10);
  box-shadow: none;
}
.review-card p {
  color: rgba(255,255,255,.82);
  margin-top: 0;
  font-size: 1.05rem;
}
.review-card strong { color: #baff98; }

.faq-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 2rem;
}
.faq-list { display: grid; gap: .8rem; }
.faq-item {
  background: white;
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 14px 45px rgba(20,36,17,.06);
}
.faq-item button {
  width: 100%;
  padding: 1.15rem 1.2rem;
  background: transparent;
  border: 0;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  color: var(--ink);
  text-align: left;
  font-weight: 950;
}
.faq-item button span {
  width: 20px;
  height: 20px;
  position: relative;
  flex: 0 0 auto;
}
.faq-item button span::before,
.faq-item button span::after {
  content: "";
  position: absolute;
  left: 3px;
  right: 3px;
  top: 9px;
  height: 2px;
  background: var(--green-dark);
  transition: transform .2s ease;
}
.faq-item button span::after { transform: rotate(90deg); }
.faq-item.active button span::after { transform: rotate(0); }
.faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .3s ease;
}
.faq-content p {
  overflow: hidden;
  margin: 0;
  padding: 0 1.2rem;
}
.faq-item.active .faq-content { grid-template-rows: 1fr; }
.faq-item.active .faq-content p { padding-bottom: 1.15rem; }

.contact-section { padding-top: 2rem; }
.contact-panel {
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 2rem;
  align-items: start;
  border-radius: 38px;
  padding: clamp(1.4rem, 4vw, 3rem);
  background:
    radial-gradient(circle at 0% 0%, rgba(81,194,27,.17), transparent 34%),
    white;
}
.contact-buttons a {
  display: inline-flex;
  padding: .9rem 1rem;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green-dark);
  font-weight: 950;
}
form { display: grid; gap: .9rem; }
label {
  display: grid;
  gap: .45rem;
  font-weight: 850;
  color: rgba(17,24,17,.72);
}
input, select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: .95rem 1rem;
  color: var(--ink);
  background: #fbfcf8;
}
input:focus, select:focus {
  outline: none;
  border-color: rgba(81,194,27,.55);
  box-shadow: 0 0 0 5px rgba(81,194,27,.13);
}
form .btn { width: 100%; }

.footer {
  padding: 2rem 0;
  background: white;
  border-top: 1px solid var(--line);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}
.footer p { color: var(--muted); margin: 0; }

/* Varied scroll animations */
.reveal {
  opacity: 0;
  transition:
    opacity .8s cubic-bezier(.2,.72,.18,1),
    transform .8s cubic-bezier(.2,.72,.18,1),
    filter .8s cubic-bezier(.2,.72,.18,1),
    clip-path .8s cubic-bezier(.2,.72,.18,1);
  will-change: opacity, transform, filter, clip-path;
}
.fade { transform: translateY(12px); }
.rise { transform: translateY(54px); }
.slide-up { transform: translateY(70px); }
.slide-left { transform: translateX(76px); }
.slide-right { transform: translateX(-76px); }
.scale-soft { transform: scale(.9); }
.zoom { transform: scale(.82); }
.blur-in { filter: blur(16px); transform: translateY(24px); }
.card-in { transform: translateY(60px) rotate(3deg); }
.rotate-soft { transform: rotate(-2deg) translateY(46px); }
.rotate-soft-right { transform: rotate(2deg) translateY(46px); }
.flip-in { transform: perspective(900px) rotateX(18deg) translateY(46px); transform-origin: top; }
.price-in { transform: translateY(70px) scale(.94); }
.wipe { clip-path: inset(0 100% 0 0); opacity: 1; }
.visible {
  opacity: 1;
  transform: translate(0,0) scale(1) rotate(0) !important;
  filter: blur(0);
  clip-path: inset(0 0 0 0);
}
.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .22s; }
.delay-3 { transition-delay: .32s; }
.delay-4 { transition-delay: .42s; }

@media (max-width: 1000px) {
  .hero {
    padding-top: 7rem;
  }
  .hero-media {
    position: relative;
    inset: auto;
    width: var(--container);
    height: 420px;
    margin: 2rem auto 0;
    order: 2;
  }
  .hero-grid,
  .problem-grid,
  .process-grid,
  .pricing-grid,
  .trust-grid,
  .faq-grid,
  .contact-panel {
    grid-template-columns: 1fr;
  }
  .quote-card {
    margin-top: 0;
    justify-self: start;
  }
  .section-label {
    writing-mode: initial;
    transform: none;
  }
  .services-grid { grid-template-columns: 1fr; }
  .featured-service,
  .price-card.highlighted {
    transform: none;
  }
  .process-copy {
    position: static;
  }
  .step-card:nth-child(2),
  .step-card:nth-child(3) {
    margin-left: 0;
  }
}

@media (max-width: 740px) {
  .nav { min-height: 74px; }
  .menu-toggle {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    border: 1px solid var(--line);
    background: white;
  }
  .menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--ink);
    margin: -5px 0;
  }
  .nav-links {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 78px;
    display: grid;
    gap: .25rem;
    padding: .75rem;
    background: rgba(255,255,255,.94);
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: .24s ease;
  }
  .nav-links.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .nav-links a { padding: .9rem; }
  .hero h1 { font-size: clamp(3.25rem, 15vw, 5rem); }
  .hero-media { height: 300px; border-width: 6px; border-radius: 28px; }
  .hero-proof { grid-template-columns: 1fr; }
  .hero-proof div { border-right: 0; border-bottom: 1px solid var(--line); }
  .hero-proof div:last-child { border-bottom: 0; }
  .section { padding: 5.2rem 0; }
  .video-break { height: 58vh; }
  .logo-strip-inner {
    overflow: auto;
    justify-content: flex-start;
    white-space: nowrap;
  }
  .footer-inner {
    flex-direction: column;
    align-items: start;
  }
}


/* Full-background hero video update */
.hero .trust-pill {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.22);
  color: #d7ffc8;
  backdrop-filter: blur(14px);
  box-shadow: none;
}
.hero h1 {
  color: #ffffff;
  text-shadow: 0 18px 60px rgba(0,0,0,.32);
}
.hero .green {
  color: #baff9b;
}
.hero-sub {
  color: rgba(255,255,255,.82);
}
.hero-proof {
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.16);
  color: white;
  backdrop-filter: blur(16px);
}
.hero-proof div {
  border-color: rgba(255,255,255,.14);
}
.hero-proof span {
  color: rgba(255,255,255,.72);
}
.quote-card {
  background: rgba(255,255,255,.92);
}
.brand {
  gap: 0;
}
.brand span:last-child {
  display: grid;
}
.brand-mark {
  display: none;
}
.site-header:not(.scrolled) .brand strong,
.site-header:not(.scrolled) .nav-links a:not(.nav-button) {
  color: rgba(255,255,255,.90);
}
.site-header:not(.scrolled) .brand small {
  color: rgba(255,255,255,.66);
}
.site-header:not(.scrolled) .menu-toggle {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.20);
}
.site-header:not(.scrolled) .menu-toggle span {
  background: white;
}

@media (max-width: 1000px) {
  .hero-media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    order: initial;
    border-radius: 0;
    border: 0;
  }
  .quote-card {
    margin-top: 1.5rem;
  }
}

@media (max-width: 740px) {
  .hero-media {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
}


/* SEO/content update sections */
.results-showcase {
  background:
    radial-gradient(circle at 72% 30%, rgba(81,194,27,.18), transparent 28rem),
    linear-gradient(135deg, #101810 0%, #20301d 48%, #f7f8f3 48.2%, #f7f8f3 100%);
}
.results-visual {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.clean-bin-graphic {
  position: absolute;
  right: 10%;
  top: 18%;
  width: min(360px, 36vw);
  height: min(430px, 44vw);
  border-radius: 34px 34px 28px 28px;
  background:
    linear-gradient(90deg, rgba(255,255,255,.18), transparent 24%, rgba(0,0,0,.10) 84%),
    linear-gradient(160deg, #d9e4d4, #f7fbf3);
  border: 10px solid rgba(255,255,255,.75);
  box-shadow: 0 38px 90px rgba(17,24,17,.23);
  transform: rotate(4deg);
}
.clean-bin-graphic::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: -34px;
  height: 44px;
  border-radius: 16px;
  background: #ecf3e8;
  border: 8px solid rgba(255,255,255,.76);
}
.water-line {
  position: absolute;
  height: 2px;
  width: 44vw;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.85), rgba(81,194,27,.45), transparent);
  transform-origin: left;
  animation: waterSweep 3.4s ease-in-out infinite;
}
.line-one { top: 34%; left: 5%; transform: rotate(-10deg); }
.line-two { top: 47%; left: 10%; transform: rotate(-4deg); animation-delay: .45s; }
.line-three { top: 60%; left: 3%; transform: rotate(8deg); animation-delay: .9s; }
@keyframes waterSweep {
  0%, 100% { opacity: .25; translate: -30px 0; }
  50% { opacity: 1; translate: 35px 0; }
}
.story-section {
  padding-top: 2rem;
}
.story-panel {
  position: relative;
  overflow: hidden;
  border-radius: 38px;
  background:
    radial-gradient(circle at 0% 0%, rgba(81,194,27,.16), transparent 34%),
    linear-gradient(135deg, #ffffff, #f4f7ef);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: clamp(1.4rem, 4vw, 3rem);
}
.story-panel::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -160px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(81,194,27,.10);
}
.story-badge {
  display: inline-flex;
  padding: .55rem .8rem;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green-dark);
  font-weight: 950;
  margin-bottom: 1.4rem;
}
.story-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 2rem;
}
.story-copy p {
  color: var(--muted);
  line-height: 1.78;
  margin-top: 0;
}
.story-contact {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1.2rem;
}
.story-contact a {
  display: inline-flex;
  padding: .82rem .95rem;
  border-radius: 999px;
  background: white;
  border: 1px solid var(--line);
  color: var(--green-dark);
  font-weight: 950;
}
.contact-buttons {
  gap: .7rem;
}
.contact-buttons a {
  white-space: nowrap;
}
@media (max-width: 1000px) {
  .story-grid {
    grid-template-columns: 1fr;
  }
  .results-showcase {
    background: linear-gradient(180deg, #101810 0%, #20301d 100%);
  }
  .clean-bin-graphic {
    opacity: .28;
    right: -4%;
    width: 320px;
    height: 390px;
  }
}


/* Free functional contact form updates */
.quote-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: .95rem 1rem;
  color: var(--ink);
  background: #fbfcf8;
  resize: vertical;
  min-height: 115px;
}
.quote-form textarea:focus {
  outline: none;
  border-color: rgba(81,194,27,.55);
  box-shadow: 0 0 0 5px rgba(81,194,27,.13);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .9rem;
}

.success-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 2rem;
  background:
    radial-gradient(circle at 10% 0%, rgba(81,194,27,.14), transparent 28rem),
    var(--cream);
}
.success-card {
  width: min(760px, 100%);
  padding: clamp(1.5rem, 5vw, 3.25rem);
  border-radius: 36px;
  background: white;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-strong);
  text-align: center;
}
.success-card h1 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  line-height: .95;
  letter-spacing: -.075em;
}
.success-card p {
  color: var(--muted);
  line-height: 1.75;
}
.success-actions {
  display: flex;
  justify-content: center;
  gap: .75rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}
@media (max-width: 740px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}


/* No-prepayment messaging */
.no-pay-note,
.payment-policy-box {
  margin: 1rem 0;
  padding: .9rem 1rem;
  border-radius: 18px;
  background: var(--green-soft);
  border: 1px solid rgba(81,194,27,.25);
  color: var(--green-dark);
}
.no-pay-note strong,
.payment-policy-box strong {
  display: block;
  font-weight: 950;
  margin-bottom: .25rem;
}
.no-pay-note span,
.payment-policy-box span {
  display: block;
  color: #3d6332;
  line-height: 1.55;
  font-size: .92rem;
}


/* Fixed inline form success/error message */
.form-status {
  margin: .85rem 0 0;
  font-weight: 850;
  line-height: 1.55;
}
.form-status.success {
  color: var(--green-dark);
}
.form-status.error {
  color: #b42318;
}
.quote-form button:disabled {
  opacity: .72;
  cursor: not-allowed;
}

/* Extra mobile polish */
@media (max-width: 740px) {
  .hero {
    padding-top: 6.4rem;
    align-items: end;
  }
  .hero h1 {
    font-size: clamp(2.75rem, 13vw, 4.35rem);
    line-height: .94;
  }
  .hero-sub {
    font-size: 1rem;
    line-height: 1.62;
  }
  .hero-actions .btn {
    width: 100%;
  }
  .quote-card {
    display: none;
  }
  .section h2,
  .contact-card h2,
  .contact-copy h2 {
    font-size: clamp(2.15rem, 10vw, 3.25rem);
    line-height: .98;
  }
  .section {
    padding: 4.4rem 0;
  }
  .pricing-grid,
  .services-grid,
  .problem-cards,
  .reviews {
    gap: .85rem;
  }
}


/* Mobile horizontal white-space fix */
html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  position: relative;
}

main,
section,
.site-header,
.footer,
.hero,
.container {
  max-width: 100%;
}

.hero {
  width: 100%;
  max-width: 100vw;
}

.hero-media,
.hero-media video,
.hero-video-overlay {
  width: 100%;
  max-width: 100vw;
}

@media (max-width: 740px) {
  .container {
    width: calc(100% - 32px);
    max-width: calc(100% - 32px);
  }

  .hero-grid {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .hero-copy {
    max-width: 100%;
    min-width: 0;
  }

  .hero h1 {
    max-width: 100%;
    overflow-wrap: normal;
    word-break: normal;
  }

  .headline-line {
    max-width: 100%;
  }

  .headline-line span {
    max-width: 100%;
  }

  .trust-pill {
    max-width: 100%;
    white-space: normal;
    line-height: 1.25;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
    max-width: 100%;
  }

  .nav {
    width: calc(100% - 32px);
    max-width: calc(100% - 32px);
  }

  .nav-links {
    max-width: calc(100vw - 32px);
  }

  .section,
  .logo-strip,
  .video-break,
  .footer {
    overflow-x: hidden;
  }

  .clean-bin-graphic,
  .water-line {
    max-width: 100vw;
  }
}


/* Mobile video reliability and crop fixes */
.hero-media {
  background-image: url("assets/hero-poster.jpg");
  background-size: cover;
  background-position: center;
}

.hero-media video {
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center center;
  background: transparent;
}

@media (max-width: 740px) {
  .hero {
    min-height: 100svh;
    padding-top: 6.25rem;
    padding-bottom: 2.25rem;
  }

  .hero-media {
    position: absolute;
    inset: 0;
    height: 100%;
    min-height: 100svh;
    background-position: center center;
  }

  .hero-media video {
    position: absolute;
    inset: 0;
    height: 100%;
    min-height: 100svh;
    object-fit: cover;
    object-position: center center;
    transform: none !important;
  }

  .hero-video-overlay {
    background:
      linear-gradient(90deg, rgba(8, 13, 8, .86) 0%, rgba(8, 13, 8, .70) 52%, rgba(8, 13, 8, .52) 100%),
      linear-gradient(180deg, rgba(8, 13, 8, .26) 0%, rgba(8, 13, 8, .86) 100%);
  }
}
