:root {
  --green-950: #031a11;
  --green-900: #06291a;
  --green-800: #004b23;
  --green-700: #006d34;
  --green-600: #008540;
  --green-500: #0ba94f;
  --gold-500: #b8e24d;
  --gold-100: #edf8d3;
  --ink: #101817;
  --muted: #5a6660;
  --paper: #f5f8f4;
  --mist: #e7f1e9;
  --line: #d6e2da;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(6, 41, 26, 0.16);
  --radius: 8px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--green-700); }
button, input, select, textarea { font: inherit; }

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 1000;
  padding: 10px 14px;
  color: var(--white);
  background: var(--green-900);
  border-radius: var(--radius);
}
.skip-link:focus { top: 12px; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.service-detail-page main .container {
  width: min(1000px, calc(100% - 160px));
}
.narrow { max-width: 790px; }

.topbar {
  display: none;
  color: rgba(255,255,255,.92);
  background: var(--green-950);
  font-size: 14px;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 42px;
}
.topbar-links { display: flex; align-items: center; gap: 18px; white-space: nowrap; }
.topbar a { color: rgba(255,255,255,.95); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(10,59,44,.08);
  background: rgba(255,255,255,.98);
  backdrop-filter: blur(18px);
}
.header-inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(18px, 2vw, 30px);
  min-height: 74px;
}
.logo, .footer-brand { display: inline-flex; align-items: center; gap: 12px; flex: 0 0 auto; color: var(--ink); }
.brand-logo {
  display: block;
  width: 176px;
  height: 56px;
  object-fit: contain;
}
.logo-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: var(--white);
  background: linear-gradient(135deg, var(--green-800), var(--green-500));
  border-radius: var(--radius);
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(15,111,70,.25);
}
.logo strong, .footer-brand strong { display: block; font-size: 18px; line-height: 1.1; }
.logo small, .footer-brand small { display: block; color: var(--muted); font-size: 12px; text-transform: uppercase; }
.primary-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(14px, 1.45vw, 24px);
  min-width: 0;
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
}
.primary-nav a { color: #26372f; }
.primary-nav > a,
.nav-item > a {
  display: inline-flex;
  align-items: center;
  min-height: 74px;
}
.nav-item {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.nav-item > a::after {
  content: "";
  width: 7px;
  height: 7px;
  margin-left: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}
.dropdown-menu {
  position: absolute;
  left: 50%;
  top: calc(100% - 6px);
  z-index: 20;
  display: grid;
  min-width: 310px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 45px rgba(11,42,30,.16);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 150ms ease, transform 150ms ease;
}
.nav-item:hover .dropdown-menu,
.nav-item:focus-within .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}
.dropdown-menu a {
  display: grid;
  gap: 3px;
  padding: 12px 13px;
  border-radius: var(--radius);
  color: var(--ink);
}
.dropdown-menu a:hover,
.dropdown-menu a:focus {
  color: var(--green-900);
  background: var(--mist);
}
.dropdown-menu span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
}
.header-actions { display: flex; align-items: center; justify-self: end; gap: 10px; flex: 0 0 auto; }
.header-inquiry-btn {
  white-space: nowrap;
}
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  cursor: pointer;
}
.nav-toggle span { display: block; width: 19px; height: 2px; margin: 5px auto; background: var(--green-900); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { color: var(--white); background: var(--green-700); box-shadow: 0 10px 22px rgba(15,111,70,.18); }
.btn-primary:hover { color: var(--white); background: var(--green-800); }
.btn-gold { color: var(--green-950); background: var(--gold-500); }
.btn-gold:hover { color: var(--green-950); background: #a8d438; }
.btn-outline { color: var(--white); border-color: rgba(255,255,255,.45); background: rgba(255,255,255,.08); }
.btn-outline:hover { color: var(--white); background: rgba(255,255,255,.18); }
.btn-outline.dark-outline { color: var(--green-950); border-color: var(--green-800); background: transparent; }
.btn-outline.dark-outline:hover { color: var(--white); background: var(--green-800); }
.btn-light { color: var(--green-950); background: var(--white); }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }

.hero {
  position: relative;
  min-height: clamp(620px, 54vw, 820px);
  color: var(--white);
  overflow: hidden;
  background: var(--green-950);
}
.hero-media, .hero-media img, .hero::after { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero::after {
  content: "";
  background: linear-gradient(0deg, rgba(3,26,17,.46) 0%, rgba(3,26,17,.08) 42%, rgba(3,26,17,0) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: clamp(620px, 54vw, 820px);
  max-width: 610px;
  flex-direction: column;
  justify-content: flex-start;
  padding: clamp(92px, 10vw, 132px) 0 70px;
}
.eyebrow { margin: 0 0 12px; color: var(--gold-500); font-size: 13px; font-weight: 900; text-transform: uppercase; }
h1, h2, h3, p { margin-top: 0; }
h1 { margin-bottom: 20px; font-size: 64px; line-height: 1.02; letter-spacing: 0; }
h2 { margin-bottom: 16px; font-size: 40px; line-height: 1.12; letter-spacing: 0; }
h3 { margin-bottom: 10px; font-size: 22px; line-height: 1.22; letter-spacing: 0; }
.hero p { max-width: 570px; color: rgba(255,255,255,.96); font-size: 18px; text-shadow: 0 2px 18px rgba(0,0,0,.56); }
.hero-meta { display: flex; flex-wrap: wrap; gap: 10px; margin: 18px 0 22px; padding: 0; list-style: none; }
.hero-meta li { padding: 8px 12px; color: rgba(255,255,255,.92); border: 1px solid rgba(255,255,255,.22); border-radius: var(--radius); background: rgba(255,255,255,.08); }
.hero-actions-only {
  max-width: none;
  align-items: center;
  justify-content: flex-end;
  padding: 92px 0 clamp(34px, 5vw, 64px);
}
.hero-action-panel {
  justify-content: center;
  padding: 14px;
  border: 1px solid rgba(255,255,255,.26);
  border-radius: var(--radius);
  background: rgba(3,26,17,.62);
  box-shadow: 0 18px 45px rgba(0,0,0,.28);
  backdrop-filter: blur(10px);
}
.hero-action-panel .btn {
  min-width: 190px;
}

.service-finder {
  position: relative;
  z-index: 2;
  padding: 0 0 34px;
  margin-top: -58px;
}
.finder-panel {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(420px, .9fr);
  gap: 28px;
  align-items: center;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 20px 48px rgba(11,42,30,.16);
}
.finder-copy h2 {
  margin-bottom: 10px;
}
.finder-copy p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}
.finder-thumb-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}
.finder-thumb-row img {
  width: 100%;
  height: 92px;
  object-fit: cover;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}
.finder-form {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  align-items: end;
}
.finder-form .btn {
  grid-column: 1 / -1;
  justify-self: start;
}
.finder-form .form-status {
  grid-column: 1 / -1;
}
.audience-section {
  padding-top: 66px;
}
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.audience-card {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  align-content: stretch;
  gap: 14px;
  min-height: 100%;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 30px rgba(11,42,30,.07);
}
.audience-card h3,
.audience-card p,
.audience-card .btn {
  margin-left: 24px;
  margin-right: 24px;
}
.audience-card .btn {
  margin-bottom: 24px;
}
.audience-card p {
  color: var(--muted);
  margin-bottom: 0;
}
.audience-card .btn {
  align-self: end;
  justify-self: start;
}
.audience-photo {
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.audience-photo img {
  width: 100%;
  height: 210px;
  object-fit: contain;
  padding: 14px;
  box-sizing: border-box;
}
.audience-icon {
  display: grid;
  place-items: center;
  width: 68px;
  height: 46px;
  color: var(--green-950);
  background: var(--gold-100);
  border-radius: var(--radius);
  font-weight: 900;
}
.availability-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 40px rgba(11,42,30,.11);
}
.availability-visual {
  margin: -10px -10px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}
.availability-visual img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  padding: 0;
  box-sizing: border-box;
}
.availability-card h2,
.availability-card h3 {
  margin-bottom: 8px;
}
.benefit-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 26px;
}
.benefit-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}
.benefit-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--green-800);
  font-size: 18px;
}
.step-list {
  counter-reset: service-step;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.step-card {
  position: relative;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}
.step-card::before {
  counter-increment: service-step;
  content: "STEP " counter(service-step);
  display: inline-block;
  margin-bottom: 16px;
  color: var(--green-700);
  font-size: 12px;
  font-weight: 900;
}
.container-showcase {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
}
.container-visual {
  min-height: 280px;
  padding: 30px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--green-900), var(--green-600));
  color: var(--white);
}
.container-visual strong {
  display: block;
  font-size: 54px;
  line-height: 1;
}
.container-specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.spec-card {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}
.service-shortcuts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.shortcut-card {
  min-height: 120px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
}
.shortcut-card strong {
  display: block;
  margin-bottom: 8px;
}
.newsletter-panel {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(420px, 1fr);
  gap: 28px;
  align-items: center;
  padding: 34px;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--green-950);
}
.newsletter-panel p {
  color: rgba(255,255,255,.82);
}
.newsletter-panel .form-grid {
  padding: 0;
}
.newsletter-panel label {
  color: var(--white);
}
.newsletter-panel .form-status {
  color: var(--green-950);
}
.guarantee-panel {
  padding: 28px;
  border-left: 5px solid var(--gold-500);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 30px rgba(11,42,30,.07);
}
.size-card-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}
.dumpster-size-card {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}
.dumpster-size-card img {
  width: 100%;
  height: 160px;
  margin-bottom: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  object-fit: contain;
}
.dumpster-size-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--green-800);
  font-size: 28px;
}
.measurement-section {
  background:
    linear-gradient(180deg, var(--white), var(--paper));
}
.measurement-tabs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}
.measurement-card {
  display: grid;
  gap: 16px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 30px rgba(6,41,26,.07);
}
.measurement-card.is-featured {
  border: 2px solid var(--green-700);
  box-shadow: 0 18px 42px rgba(0,109,52,.14);
}
.measurement-figure {
  position: relative;
  min-height: 170px;
  padding: 22px 14px 36px;
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, #f8fbf8, #eef5ef);
  overflow: hidden;
}
.dumpster-drawing {
  position: absolute;
  left: 50%;
  bottom: 42px;
  width: var(--dumpster-width, 78%);
  height: var(--dumpster-height, 74px);
  transform: translateX(-50%) skewX(-6deg);
  border: 4px solid var(--ink);
  border-top-width: 6px;
  border-radius: 5px 5px 3px 3px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.22), rgba(255,255,255,0) 38%),
    linear-gradient(180deg, var(--green-600), var(--green-800));
  box-shadow: inset 0 -12px 0 rgba(0,0,0,.12);
}
.dumpster-drawing::before,
.dumpster-drawing::after {
  content: "";
  position: absolute;
  top: 14px;
  bottom: 12px;
  width: 3px;
  background: rgba(255,255,255,.45);
}
.dumpster-drawing::before { left: 28%; }
.dumpster-drawing::after { right: 28%; }
.measure-line {
  position: absolute;
  color: var(--green-950);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.measure-line.width {
  left: 12%;
  right: 12%;
  bottom: 14px;
  padding-top: 8px;
  border-top: 2px solid var(--green-700);
  text-align: center;
}
.measure-line.height {
  right: 12px;
  top: 24px;
  bottom: 42px;
  display: grid;
  place-items: center;
  padding-left: 7px;
  border-left: 2px solid var(--green-700);
  writing-mode: vertical-rl;
}
.measurement-card h3 {
  margin-bottom: 0;
}
.measurement-card p {
  margin-bottom: 0;
  color: var(--muted);
}
.capacity-list {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 14px;
}
.capacity-list li {
  display: flex;
  gap: 8px;
}
.capacity-list li::before {
  content: "";
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--green-600);
}
.service-visual-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.service-visual-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 30px rgba(6,41,26,.07);
}
.visual-panel {
  min-height: 185px;
  padding: 22px;
  background:
    radial-gradient(circle at 22% 18%, rgba(184,226,77,.28), transparent 30%),
    linear-gradient(135deg, var(--green-950), var(--green-700));
  color: var(--white);
}
.visual-panel strong {
  display: block;
  margin-bottom: 48px;
  font-size: 13px;
  text-transform: uppercase;
}
.visual-truck,
.visual-bin,
.visual-rolloff {
  position: relative;
  height: 74px;
  border: 4px solid var(--white);
  background: var(--green-500);
  box-shadow: 0 10px 0 rgba(0,0,0,.22);
}
.visual-truck {
  width: 84%;
  border-radius: 8px 18px 8px 8px;
}
.visual-bin {
  width: 46%;
  margin: 0 auto;
  border-radius: 6px 6px 10px 10px;
}
.visual-rolloff {
  width: 82%;
  margin: 0 auto;
  transform: skewX(-8deg);
  border-radius: 4px;
}
.service-visual-card .card-body {
  padding: 22px;
}
.service-visual-card p {
  color: var(--muted);
}

.section { padding: 82px 0; scroll-margin-top: 112px; }
.section-muted { background: var(--paper); }
.section-dark { color: var(--white); background: var(--green-950); }
.section-dark p, .section-dark li { color: rgba(255,255,255,.82); }
.section-header { display: grid; grid-template-columns: minmax(0,.9fr) minmax(280px,.55fr); align-items: end; gap: 34px; margin-bottom: 34px; }
.section-header p { color: var(--muted); }
.section-dark .section-header p { color: rgba(255,255,255,.75); }
.page-hero {
  padding: 78px 0;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(6,41,31,.96), rgba(13,84,57,.9)),
    var(--green-900);
}
.service-bg-hero {
  position: relative;
  min-height: clamp(650px, 58vw, 860px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--green-950);
}
.service-bg-hero::before,
.service-bg-hero::after {
  content: "";
  position: absolute;
  inset: 0;
}
.service-bg-hero::before {
  background-image: var(--service-bg-image);
  background-position: center;
  background-size: cover;
  transform: scale(1.01);
}
.service-bg-hero::after {
  background:
    linear-gradient(90deg, rgba(3,26,17,.9) 0%, rgba(3,26,17,.68) 42%, rgba(3,26,17,.18) 100%),
    linear-gradient(0deg, rgba(3,26,17,.62) 0%, rgba(3,26,17,.05) 52%);
}
.residential-bg-hero {
  --service-bg-image: url("residential-page-bg.png");
}
.commercial-bg-hero {
  --service-bg-image: url("commercial-page-bg.png");
}
.service-bg-hero .page-hero-grid {
  position: relative;
  z-index: 1;
  width: 100%;
  grid-template-columns: minmax(0, 480px) minmax(340px, 440px);
  justify-content: center;
  gap: 48px;
  padding: 46px 0;
}
.service-bg-hero .page-hero-grid > div:first-child {
  max-width: 480px;
}
.service-bg-hero .availability-card {
  width: 100%;
  max-width: 440px;
  justify-self: stretch;
}
.service-bg-hero .availability-card {
  background: rgba(255,255,255,.96);
  box-shadow: 0 26px 70px rgba(0,0,0,.28);
  backdrop-filter: blur(10px);
  color: var(--ink);
}
.service-bg-hero .availability-card h2,
.service-bg-hero .availability-card h3,
.service-bg-hero .availability-card label {
  color: var(--green-950);
}
.service-bg-hero .availability-card p {
  color: var(--muted);
  text-shadow: none;
}
.service-bg-hero .availability-visual {
  display: none;
}
.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0,.95fr) minmax(320px,.65fr);
  gap: 44px;
  align-items: center;
}
.page-hero p {
  color: rgba(255,255,255,.86);
  font-size: 19px;
}
.page-hero-image {
  overflow: hidden;
  min-height: 300px;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}
.page-hero-image img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  padding: 0;
  box-sizing: border-box;
}
.page-hero.visual-hero {
  padding-bottom: 118px;
}
.image-page-hero {
  position: relative;
  min-height: 640px;
  padding: 0;
  overflow: hidden;
  background: var(--green-950);
}
.page-hero-bg,
.page-hero-bg img,
.image-page-hero::after {
  position: absolute;
  inset: 0;
}
.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.image-page-hero::after {
  content: "";
  background:
    linear-gradient(90deg, rgba(3,26,17,.94) 0%, rgba(3,26,17,.78) 46%, rgba(3,26,17,.16) 100%),
    linear-gradient(0deg, rgba(3,26,17,.84) 0%, rgba(3,26,17,.04) 48%);
}
.image-page-hero .page-hero-grid {
  position: relative;
  z-index: 1;
  min-height: 640px;
  grid-template-columns: minmax(0, 760px);
  align-items: center;
  padding-top: 96px;
  padding-bottom: 150px;
}
.hero-photo-card {
  overflow: hidden;
  min-height: 380px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.22);
  box-shadow: var(--shadow);
}
.hero-photo-card img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
}
.hero-service-finder {
  margin-top: -82px;
  position: relative;
  z-index: 3;
}
.dumpster-finder-hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 92px);
  padding: clamp(28px, 4vw, 54px) 0;
  color: var(--white);
  background: var(--green-950);
}
.dumpster-finder-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.dumpster-finder-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3,26,17,.9), rgba(3,26,17,.48) 52%, rgba(3,26,17,.24)),
    linear-gradient(0deg, rgba(3,26,17,.74), rgba(3,26,17,.05) 48%);
}
.dumpster-finder-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(340px, 680px) minmax(280px, 1fr);
  gap: clamp(22px, 4vw, 58px);
  align-items: center;
  min-height: calc(100vh - 172px);
}
.size-finder-card {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(255,255,255,.28);
  border-top: 6px solid var(--gold-500);
  border-radius: var(--radius);
  background: rgba(255,255,255,.97);
  box-shadow: 0 28px 80px rgba(0,0,0,.34);
  color: var(--ink);
}
.size-finder-header {
  display: grid;
  gap: 8px;
}
.size-finder-header h1 {
  color: var(--ink);
  font-size: clamp(30px, 3vw, 46px);
}
.size-finder-header p {
  margin-bottom: 0;
  color: var(--muted);
  font-weight: 700;
}
.size-finder-fields {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.size-finder-result {
  display: none;
  padding: 15px 16px;
  border: 1px solid rgba(20,111,70,.24);
  border-left: 5px solid var(--green-700);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  font-weight: 800;
}
.size-finder-result.is-visible {
  display: block;
}
.size-finder-result strong {
  color: var(--green-800);
}
.size-finder-result .btn {
  margin-top: 12px;
}
.dumpster-finder-copy {
  display: grid;
  gap: 18px;
  max-width: 560px;
  text-shadow: 0 12px 28px rgba(0,0,0,.34);
}
.dumpster-finder-copy h2 {
  color: var(--white);
  font-size: clamp(34px, 4vw, 62px);
}
.dumpster-finder-copy p {
  color: rgba(255,255,255,.9);
  font-size: 18px;
  font-weight: 700;
}
.finder-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.finder-chip-row span {
  padding: 9px 12px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
}

.visual-comparison {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 40px rgba(6,41,26,.11);
}
.visual-comparison img {
  width: 100%;
  height: auto;
}
.human-size-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}
.human-size-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 30px rgba(6,41,26,.07);
}
.human-size-card img {
  width: 100%;
  aspect-ratio: 14 / 9;
  object-fit: contain;
  background: #fff;
  padding: 10px;
}
.human-size-card div {
  padding: 18px;
}
.human-size-card p {
  color: var(--muted);
  margin-bottom: 0;
}
.residential-size-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: 24px;
}
.residential-size-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 28px rgba(11,42,30,.07);
}
.residential-size-card img {
  width: 100%;
  height: clamp(360px, 34vw, 470px);
  object-fit: contain;
  padding: 16px;
  box-sizing: border-box;
  background: var(--white);
}
.residential-size-card div {
  display: grid;
  align-content: start;
  min-height: 128px;
  padding: 18px;
  border-top: 1px solid var(--line);
}
.residential-size-card h3 {
  margin-bottom: 8px;
  color: var(--green-900);
}
.residential-size-card p {
  margin-bottom: 0;
  color: var(--muted);
}
.commercial-rolloff-section .section-header {
  align-items: end;
}
.rolloff-feature-panel {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(420px, 1fr);
  gap: 28px;
  align-items: center;
  margin-bottom: 28px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 28px rgba(11,42,30,.07);
}
.rolloff-feature-panel p {
  margin-bottom: 0;
  color: var(--muted);
}
.commercial-rolloff-grid {
  display: grid;
  gap: 24px;
}
.commercial-rolloff-card {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, .62fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 32px rgba(11,42,30,.08);
}
.commercial-rolloff-card img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: contain;
  padding: 18px;
  box-sizing: border-box;
  background: #fff;
}
.rolloff-card-body {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 26px;
  border-left: 1px solid var(--line);
}
.size-kicker {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--green-700);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}
.rolloff-card-body h3 {
  margin-bottom: 0;
}
.rolloff-card-body dl {
  display: grid;
  gap: 10px;
  margin: 0;
}
.rolloff-card-body dl div {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--green-50);
}
.rolloff-card-body dt {
  color: var(--green-900);
  font-weight: 900;
}
.rolloff-card-body dd {
  margin: 4px 0 0;
  color: var(--muted);
}
.rolloff-card-body .btn {
  justify-self: start;
}
.page-visual-band {
  background: var(--paper);
}
.page-visual-grid {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(380px, .65fr);
  gap: 34px;
  align-items: center;
}
.page-visual-copy p {
  color: var(--muted);
}
.page-visual-image {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 40px rgba(6,41,26,.11);
}
.page-visual-image img {
  width: 100%;
  min-height: 300px;
  height: 100%;
  display: block;
  object-fit: cover;
}
.visual-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}
.visual-mini-grid span {
  display: block;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--green-900);
  font-weight: 900;
}
.mini-cta {
  padding: 28px;
  color: var(--white);
  border-radius: var(--radius);
  background: var(--green-800);
}
.mini-cta p {
  color: rgba(255,255,255,.84);
}
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }

.service-card, .blog-card, .form-panel, .callout-panel, .stat-card, .faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}
.service-card, .blog-card, .stat-card { padding: 24px; min-height: 100%; }
.service-card h3 {
  padding-top: 2px;
}
.service-card p, .blog-card p, .stat-card p, .callout-panel p { color: var(--muted); }
.home-service-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
  padding-top: 88px;
}
.home-service-card {
  position: relative;
  min-height: 390px;
  padding: 150px 36px 38px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(6,41,26,.16);
}
.home-service-image {
  position: absolute;
  left: 50%;
  top: -86px;
  display: grid;
  place-items: center;
  width: 242px;
  height: 242px;
  padding: 18px;
  overflow: hidden;
  border-radius: 50%;
  background: #edf1e7;
  transform: translateX(-50%);
}
.home-service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.home-service-card h2 {
  margin-bottom: 24px;
  color: #555660;
  font-size: 30px;
}
.home-service-card p {
  max-width: 420px;
  margin-bottom: 34px;
  color: #5f636d;
  font-size: 18px;
}
.home-service-card a {
  color: var(--green-700);
  border-bottom: 1px solid currentColor;
  font-size: 17px;
  font-weight: 800;
}
.home-service-card a:hover {
  color: var(--green-900);
}
.icon-box {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  color: var(--green-950);
  background: var(--gold-100);
  border-radius: var(--radius);
  font-weight: 900;
}
.stat-band { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 1px; overflow: hidden; border: 1px solid rgba(255,255,255,.18); border-radius: var(--radius); background: rgba(255,255,255,.18); }
.stat-band div { padding: 22px; background: rgba(255,255,255,.08); }
.stat-band strong { display: block; margin-bottom: 6px; color: var(--gold-500); font-size: 28px; }

.feature-split { display: grid; grid-template-columns: minmax(0,.95fr) minmax(360px,.75fr); gap: 44px; align-items: center; }
.feature-image { overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow); }
.feature-image img { width: 100%; height: 440px; object-fit: cover; }
#commercial-waste-management .feature-image {
  background: var(--white);
}
#commercial-waste-management .feature-image img {
  height: auto;
  max-height: 440px;
  object-fit: contain;
}
.check-list, .plain-list { display: grid; gap: 10px; margin: 18px 0 0; padding: 0; list-style: none; }
.check-list li, .plain-list li { position: relative; padding-left: 26px; }
.check-list li::before { content: ""; position: absolute; left: 0; top: 9px; width: 12px; height: 12px; border-radius: 50%; background: var(--green-500); }
.plain-list li::before { content: ""; position: absolute; left: 0; top: 11px; width: 12px; height: 2px; background: var(--gold-500); }

.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
table { width: 100%; border-collapse: collapse; min-width: 520px; }
th, td { padding: 15px 16px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
th { color: var(--green-950); background: var(--mist); }
tr:last-child td { border-bottom: 0; }
.callout-panel, .form-panel { padding: 28px; box-shadow: 0 12px 32px rgba(11,42,30,.08); }
.visual-form-panel {
  overflow: hidden;
  padding: 0;
}
.visual-form-panel > h2,
.visual-form-panel > h3,
.visual-form-panel > p,
.visual-form-panel > form,
.visual-form-panel > .eyebrow {
  margin-left: 28px;
  margin-right: 28px;
}
.visual-form-panel > form {
  margin-bottom: 28px;
}
.form-visual {
  margin-bottom: 24px;
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.form-visual img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  padding: 0;
  box-sizing: border-box;
}
.visual-tip-panel {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 32px rgba(11,42,30,.08);
}
.visual-tip-panel > img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  margin-bottom: 22px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-sizing: border-box;
}

.inquiry-section {
  position: relative;
  overflow: hidden;
  padding: 76px 0 92px;
  background:
    linear-gradient(128deg, rgba(3,26,17,.98) 0%, rgba(5,42,25,.96) 48%, rgba(0,75,35,.92) 100%),
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,0)),
    var(--green-950);
}
.inquiry-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(255,255,255,.08) 0 1px, transparent 1px 74px),
    linear-gradient(0deg, rgba(255,255,255,.04), rgba(255,255,255,0) 42%);
  opacity: .85;
  pointer-events: none;
}
.inquiry-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(390px, .78fr);
  gap: 42px;
  align-items: center;
}
.inquiry-intro {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  color: var(--white);
}
.inquiry-intro .eyebrow {
  color: var(--gold-500);
}
.inquiry-intro h1 {
  max-width: 650px;
  margin-bottom: 18px;
  color: var(--white);
  font-size: 56px;
  line-height: 1;
}
.inquiry-intro > p {
  max-width: 600px;
  color: rgba(255,255,255,.86);
  font-size: 19px;
}
.inquiry-photo-card {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  margin-top: 30px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius);
  background: rgba(255,255,255,.08);
  box-shadow: 0 28px 70px rgba(0,0,0,.32);
}
.inquiry-photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(3,26,17,0) 42%, rgba(3,26,17,.72));
  pointer-events: none;
}
.inquiry-photo-card img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  object-position: center;
}
.inquiry-photo-caption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  color: var(--white);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius);
  background: rgba(3,26,17,.74);
  backdrop-filter: blur(12px);
}
.inquiry-photo-caption a {
  color: var(--gold-500);
  font-weight: 900;
}
.inquiry-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 16px;
}
.inquiry-proof-grid span {
  padding: 12px;
  text-align: center;
  color: rgba(255,255,255,.92);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius);
  background: rgba(255,255,255,.08);
  font-weight: 800;
  line-height: 1.25;
}
.inquiry-card {
  align-self: center;
  width: 100%;
  max-width: 590px;
  margin-left: auto;
  padding: 34px;
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 12px;
  background: rgba(255,255,255,.98);
  box-shadow: 0 30px 80px rgba(0,0,0,.28);
}
.inquiry-card-top {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}
.inquiry-card-top > span {
  width: fit-content;
  padding: 6px 10px;
  color: var(--green-950);
  border-radius: 999px;
  background: var(--gold-100);
  font-size: 13px;
  font-weight: 900;
}
.inquiry-card-top strong {
  color: var(--ink);
  font-size: 32px;
  line-height: 1.15;
}
.inquiry-card-top p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}
.inquiry-progress {
  overflow: hidden;
  height: 8px;
  margin-top: 10px;
  border-radius: 999px;
  background: var(--mist);
}
.inquiry-progress span {
  display: block;
  width: 50%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--green-700), var(--gold-500));
}
.inquiry-trust-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 20px;
}
.inquiry-trust-row span {
  padding: 10px 12px;
  color: var(--green-950);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  font-size: 14px;
  font-weight: 900;
  text-align: center;
}
.inquiry-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.inquiry-field label {
  display: block;
  margin-bottom: 7px;
  color: var(--green-900);
  font-size: 13px;
  font-weight: 900;
}
.inquiry-field input {
  width: 100%;
  min-height: 56px;
  padding: 13px 15px;
  color: var(--ink);
  font-size: 16px;
  border: 1px solid #cbdcd1;
  border-radius: var(--radius);
  background: #fff;
  outline: none;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.inquiry-field input:focus {
  border-color: var(--green-600);
  box-shadow: 0 0 0 4px rgba(11,169,79,.14);
}
.inquiry-field input::placeholder {
  color: #82918a;
  opacity: 1;
}
.inquiry-actions {
  display: flex;
  flex-wrap: wrap;
  grid-column: 1 / -1;
  gap: 12px;
  margin-top: 8px;
}
.inquiry-next,
.inquiry-clear {
  justify-self: start;
  min-height: 54px;
  padding: 0 24px;
  font-size: 16px;
  border-radius: var(--radius);
  font-weight: 900;
  cursor: pointer;
  transition: background .18s ease, color .18s ease, border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}
.inquiry-next {
  color: var(--white);
  border: 0;
  background: var(--green-700);
  box-shadow: 0 14px 28px rgba(0,109,52,.24);
}
.inquiry-next:hover {
  background: var(--green-800);
  transform: translateY(-1px);
}
.inquiry-clear {
  color: var(--green-950);
  border: 1px solid var(--line);
  background: #fff;
}
.inquiry-clear:hover {
  background: var(--mist);
}
.inquiry-card .form-status {
  grid-column: 1 / -1;
}
.inquiry-privacy-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 14px;
}
.inquiry-link-note {
  margin: -4px 0 20px;
  color: var(--muted);
}
.inquiry-link-note a {
  color: var(--green-800);
  font-weight: 900;
}
.thank-you-hero {
  position: relative;
  overflow: hidden;
  min-height: 680px;
  padding: clamp(54px, 7vw, 96px) 0;
  color: var(--white);
  background: var(--green-950);
}
.thank-you-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.thank-you-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3,26,17,.92), rgba(3,26,17,.62) 52%, rgba(3,26,17,.28)),
    linear-gradient(0deg, rgba(3,26,17,.76), rgba(3,26,17,.05) 48%);
}
.thank-you-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(320px, 620px) minmax(280px, 1fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
}
.thank-you-card {
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid rgba(255,255,255,.24);
  border-top: 6px solid var(--gold-500);
  border-radius: var(--radius);
  background: rgba(255,255,255,.96);
  box-shadow: 0 28px 80px rgba(0,0,0,.34);
  color: var(--ink);
}
.thank-you-card h1 {
  color: var(--ink);
  font-size: clamp(36px, 4vw, 60px);
}
.thank-you-card p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
  font-weight: 700;
}
.thank-you-check {
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 18px;
  color: var(--green-950);
  border-radius: 50%;
  background: var(--gold-500);
  box-shadow: 0 16px 28px rgba(0,0,0,.18);
  font-size: 34px;
  font-weight: 900;
}
.thank-you-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}
.thank-you-next {
  display: grid;
  gap: 14px;
  padding: 26px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: var(--radius);
  background: rgba(0,0,0,.32);
  backdrop-filter: blur(12px);
}
.thank-you-step {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: center;
  padding: 16px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius);
  background: rgba(255,255,255,.1);
}
.thank-you-step strong {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--green-950);
  border-radius: 50%;
  background: var(--gold-500);
  font-size: 20px;
}
.thank-you-step span {
  color: rgba(255,255,255,.92);
  font-weight: 800;
}
.thank-you-link-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.thank-you-link-grid a {
  min-height: 156px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 30px rgba(6,41,26,.07);
}
.thank-you-link-grid strong {
  display: block;
  margin-bottom: 10px;
  color: var(--green-900);
  font-size: 19px;
}
.thank-you-link-grid span {
  color: var(--muted);
  font-weight: 700;
}

.rental-page-hero {
  position: relative;
  min-height: clamp(640px, 72vw, 880px);
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--green-950);
}
.rental-page-hero-with-form {
  align-items: flex-start;
}
.rental-page-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.rental-page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3,26,17,.82), rgba(3,26,17,.42) 48%, rgba(3,26,17,.18)),
    linear-gradient(0deg, rgba(3,26,17,.54), rgba(3,26,17,0) 36%);
}
.rental-hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(18px, 3vw, 36px);
  align-items: center;
  justify-items: center;
  width: 100%;
  padding: clamp(22px, 3vw, 42px) 0 clamp(34px, 4vw, 58px);
}
.rental-hero-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  max-width: 760px;
  align-content: center;
  justify-items: center;
  padding: 0;
  text-align: center;
  text-shadow: 0 12px 28px rgba(0,0,0,.34);
}
.rental-hero-copy h1 {
  color: var(--white);
  font-size: clamp(30px, 3.6vw, 50px);
}
.rental-hero-phone {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  color: var(--green-950);
  border-radius: 999px;
  background: var(--gold-500);
  box-shadow: 0 16px 30px rgba(0,0,0,.25);
  font-weight: 900;
}
.rental-mini-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 0;
}
.rental-mini-points span {
  padding: 9px 12px;
  border: 1px solid rgba(255,255,255,.26);
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(10px);
  font-size: 13px;
  font-weight: 900;
}
.rental-proof-strip {
  display: grid;
  gap: 4px;
  max-width: 620px;
  margin-top: 0;
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,.22);
  border-left: 5px solid var(--gold-500);
  border-radius: var(--radius);
  background: rgba(0,0,0,.28);
  backdrop-filter: blur(12px);
}
.rental-proof-strip strong {
  color: var(--gold-500);
  font-size: 26px;
  line-height: 1;
}
.rental-proof-strip span {
  color: rgba(255,255,255,.88);
  font-weight: 800;
}
.rental-wizard-section {
  background: linear-gradient(180deg, var(--paper), var(--white));
}
.rental-wizard {
  max-width: 1180px;
  margin: 0 auto;
}
.rental-wizard-front {
  order: -1;
  width: min(100%, 1020px);
  max-width: 1020px;
  margin: 0;
}
.wizard-progress {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 14px;
}
.wizard-progress span {
  padding: 11px 8px;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  font-size: 13px;
  font-weight: 900;
  text-align: center;
}
.wizard-progress span.is-active {
  color: var(--green-950);
  border-color: var(--green-600);
  background: var(--gold-100);
}
.wizard-step {
  display: none;
}
.wizard-step.is-active {
  display: block;
}
.wizard-card {
  position: relative;
  overflow: hidden;
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}
.rental-wizard-front .wizard-card {
  background: rgba(255,255,255,.97);
  box-shadow: 0 26px 70px rgba(0,0,0,.32);
}
.wizard-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 6px;
  background: linear-gradient(90deg, var(--green-700), var(--gold-500));
}
.wizard-card h2 {
  font-size: clamp(27px, 3vw, 38px);
}
.wizard-main-question {
  color: var(--ink);
}
.field-note {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}
.wizard-topline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}
.wizard-topline h2,
.wizard-topline .eyebrow {
  margin-bottom: 0;
}
.wizard-mini-badge {
  flex: 0 0 auto;
  padding: 8px 12px;
  color: var(--green-950);
  border: 1px solid var(--gold-500);
  border-radius: 999px;
  background: var(--gold-100);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.hauling-animation {
  position: relative;
  flex: 0 0 auto;
  width: 118px;
  height: 76px;
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(248,201,95,.24), rgba(248,201,95,0)),
    rgba(4,96,54,.08);
  overflow: hidden;
}
.hauling-animation::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 14px;
  height: 3px;
  background: rgba(4,96,54,.24);
}
.mini-truck {
  position: absolute;
  left: 18px;
  top: 22px;
  width: 54px;
  height: 23px;
  border-radius: 5px 9px 4px 4px;
  background: var(--green-800);
  animation: truck-tip 3.2s ease-in-out infinite;
  transform-origin: 80% 80%;
}
.mini-truck::before,
.mini-truck::after {
  content: "";
  position: absolute;
  bottom: -7px;
  width: 12px;
  height: 12px;
  border: 3px solid var(--ink);
  border-radius: 50%;
  background: var(--white);
}
.mini-truck::before { left: 7px; }
.mini-truck::after { right: 6px; }
.mini-truck i {
  position: absolute;
  right: 5px;
  top: -9px;
  width: 18px;
  height: 13px;
  border-radius: 4px 6px 1px 1px;
  background: var(--green-600);
}
.mini-bin {
  position: absolute;
  right: 19px;
  bottom: 18px;
  width: 30px;
  height: 20px;
  border-radius: 2px 2px 5px 5px;
  background: var(--green-900);
  transform: skewX(-8deg);
}
.debris {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-500);
  opacity: 0;
  animation: debris-drop 3.2s ease-in-out infinite;
}
.debris-one { left: 62px; top: 18px; animation-delay: .35s; }
.debris-two { left: 73px; top: 16px; animation-delay: .52s; }
.debris-three { left: 82px; top: 22px; animation-delay: .68s; }
@keyframes truck-tip {
  0%, 28%, 100% { transform: rotate(0deg); }
  42%, 62% { transform: rotate(-9deg); }
}
@keyframes debris-drop {
  0%, 24% { opacity: 0; transform: translate(0, 0) scale(.8); }
  40% { opacity: 1; }
  68%, 100% { opacity: 0; transform: translate(20px, 30px) scale(1); }
}
.wizard-card > .btn {
  margin-top: 22px;
}
.wizard-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 22px;
}
.wizard-actions .btn {
  margin-top: 0;
}
.wizard-helper {
  margin: -4px 0 0;
  color: var(--muted);
  font-weight: 700;
}
.rental-wizard-front [data-step="dumpster"] .wizard-card {
  max-height: none;
  overflow-y: visible;
}
.dumpster-choice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 24px 0;
}
.rental-wizard-front .dumpster-choice-grid {
  grid-template-columns: 1fr;
  gap: 16px;
}
.dumpster-choice-card {
  position: relative;
  display: grid;
  gap: 12px;
  min-height: 100%;
  padding: 16px;
  border: 2px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  cursor: pointer;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}
.rental-wizard-front .dumpster-choice-card {
  grid-template-columns: 156px 86px minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding: 18px;
}
.dumpster-choice-card:hover,
.dumpster-choice-card.is-selected,
.dumpster-choice-card:has(input:checked) {
  border-color: var(--green-600);
  box-shadow: 0 18px 36px rgba(6,41,26,.16);
  transform: translateY(-2px);
}
.dumpster-choice-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.dumpster-choice-card img {
  width: 100%;
  height: 210px;
  object-fit: contain;
  background: #fff;
}
.rental-wizard-front .dumpster-choice-card img {
  height: 118px;
  border-radius: var(--radius);
  object-fit: contain;
}
.dumpster-size-label {
  color: var(--green-950);
  font-size: 24px;
  font-weight: 900;
  text-align: center;
}
.rental-wizard-front .dumpster-size-label {
  font-size: 28px;
  text-align: left;
}
.details-toggle {
  justify-self: center;
  padding: 6px 10px;
  color: var(--green-800);
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  font-size: 12px;
  font-weight: 900;
}
.dumpster-choice-card.is-selected .details-toggle,
.dumpster-choice-card:has(input:checked) .details-toggle {
  color: var(--white);
  border-color: var(--green-800);
  background: var(--green-800);
}
.dumpster-measurements {
  display: grid;
  gap: 6px;
  max-height: 0;
  overflow: hidden;
  color: var(--ink);
  border-top: 1px solid transparent;
  font-size: 13px;
  line-height: 1.35;
  opacity: 0;
  transition: max-height .24s ease, opacity .2s ease, padding-top .2s ease, border-color .2s ease;
}
.rental-wizard-front .dumpster-measurements {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-height: none;
  padding-top: 0;
  overflow: visible;
  border-top: 0;
  opacity: 1;
}
.rental-wizard-front .dumpster-measurements span {
  min-height: 36px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
}
.rental-wizard-front .dumpster-measurements span:last-child {
  grid-column: 1 / -1;
}
.dumpster-measurements strong {
  color: var(--green-900);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.dumpster-choice-card.is-selected .dumpster-measurements,
.dumpster-choice-card:has(input:checked) .dumpster-measurements {
  max-height: 260px;
  padding-top: 10px;
  border-color: var(--line);
  opacity: 1;
}
.dumpster-choice-card.is-popular {
  border-color: var(--gold-500);
}
.popular-ring {
  position: absolute;
  right: 12px;
  top: 12px;
  z-index: 1;
  padding: 7px 10px;
  color: var(--green-950);
  border: 2px solid var(--gold-500);
  border-radius: 999px;
  background: var(--gold-100);
  font-size: 12px;
  font-weight: 900;
}
.dumpster-category-heading,
.dumpster-category-separator {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 4px;
  color: var(--green-950);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.dumpster-category-heading::after,
.dumpster-category-separator::after {
  content: "";
  height: 1px;
  flex: 1 1 auto;
  background: var(--line);
}
.dumpster-category-separator {
  margin-top: 14px;
}
.dumpster-select-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 14px;
  color: var(--white);
  border-radius: 999px;
  background: var(--green-700);
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
  box-shadow: 0 10px 22px rgba(15,111,70,.18);
}
.dumpster-choice-card.is-selected .dumpster-select-btn,
.dumpster-choice-card:has(input:checked) .dumpster-select-btn {
  color: var(--green-950);
  background: var(--gold-500);
}
.rental-confidence-section {
  background: var(--paper);
}
.rental-confidence-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}
.confidence-card {
  display: grid;
  gap: 12px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 28px rgba(6,41,26,.08);
}
.confidence-card strong {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--white);
  border-radius: 999px;
  background: var(--green-800);
}
.confidence-card span {
  color: var(--ink);
  font-weight: 800;
}
.capacity-note {
  max-width: 860px;
  margin: 24px auto 0;
  color: var(--muted);
  text-align: center;
  font-size: 14px;
  font-weight: 700;
}
.rental-service-info {
  background: linear-gradient(180deg, var(--white), var(--paper));
}
.landing-service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.landing-service-card,
.load-guide-card,
.flow-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 28px rgba(6,41,26,.08);
}
.landing-service-card {
  display: grid;
  gap: 14px;
  padding: 24px;
}
.landing-service-card span {
  color: var(--green-700);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
}
.landing-service-card p,
.load-guide-card p,
.flow-card span {
  color: var(--muted);
}
.rental-load-guide {
  background: var(--green-950);
  color: var(--white);
}
.rental-load-guide h2,
.rental-load-guide h3 {
  color: var(--white);
}
.rental-load-guide p {
  color: rgba(255,255,255,.78);
}
.load-guide-grid {
  display: grid;
  grid-template-columns: 1.25fr repeat(2, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}
.load-guide-card {
  padding: 24px;
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.16);
  box-shadow: none;
}
.commercial-flow-section {
  background: linear-gradient(180deg, var(--white), var(--paper));
}
.flow-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.flow-card {
  display: grid;
  gap: 9px;
  padding: 22px;
  color: var(--ink);
}
.flow-card strong {
  color: var(--green-950);
  font-size: 18px;
}

.area-cloud { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.area-cloud span,
.area-cloud a { padding: 8px 12px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); font-weight: 700; }
.area-cloud a { color: var(--green-800); text-decoration: underline; text-underline-offset: 3px; }
.blog-meta { color: var(--green-700); font-size: 13px; font-weight: 900; text-transform: uppercase; }

.faq-list { display: grid; gap: 12px; }
.faq-item { overflow: hidden; }
.faq-question { display: flex; align-items: center; justify-content: space-between; gap: 18px; width: 100%; padding: 18px 20px; color: var(--ink); border: 0; background: var(--white); cursor: pointer; font-weight: 900; text-align: left; }
.faq-question::after { content: "+"; color: var(--green-700); font-size: 24px; line-height: 1; }
.faq-item.is-open .faq-question::after { content: "-"; }
.faq-answer { display: none; padding: 0 20px 18px; color: var(--muted); }
.faq-item.is-open .faq-answer { display: block; }

.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 18px; }
.form-field { display: grid; gap: 7px; }
.form-field.full { grid-column: 1 / -1; }
label { color: var(--green-950); font-size: 14px; font-weight: 800; }
input, select, textarea { width: 100%; min-height: 46px; padding: 11px 12px; color: var(--ink); border: 1px solid #c9d8cf; border-radius: var(--radius); background: var(--white); }
textarea { min-height: 124px; resize: vertical; }
input:focus, select:focus, textarea:focus, button:focus, a:focus { outline: 3px solid rgba(244,182,61,.65); outline-offset: 2px; }
.form-status { display: none; margin-top: 16px; padding: 12px 14px; color: var(--green-950); border: 1px solid rgba(37,166,95,.35); border-radius: var(--radius); background: #edf8f0; }
.form-status.is-visible { display: block; }

.eb-chatbot {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 250;
  font-family: Arial, Helvetica, sans-serif;
}
.eb-chat-launcher {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 10px 16px 10px 12px;
  color: var(--green-950);
  border: 1px solid rgba(255,255,255,.4);
  border-radius: 999px;
  background: var(--gold-500);
  box-shadow: 0 18px 40px rgba(3,26,17,.24);
  cursor: pointer;
  font-weight: 900;
}
.eb-chat-launcher:hover {
  transform: translateY(-2px);
}
.eb-chat-truck {
  position: relative;
  display: inline-block;
  width: 42px;
  height: 24px;
  border-radius: 5px 9px 4px 4px;
  background: var(--green-800);
  animation: chat-truck-roll 2.8s ease-in-out infinite;
}
.eb-chat-truck::before,
.eb-chat-truck::after {
  content: "";
  position: absolute;
  bottom: -6px;
  width: 10px;
  height: 10px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--white);
}
.eb-chat-truck::before { left: 6px; }
.eb-chat-truck::after { right: 5px; }
.eb-chat-truck i {
  position: absolute;
  right: 4px;
  top: -7px;
  width: 15px;
  height: 11px;
  border-radius: 4px 6px 1px 1px;
  background: var(--green-600);
}
@keyframes chat-truck-roll {
  0%, 100% { transform: translateX(0); }
  45% { transform: translateX(3px); }
}
.eb-chat-window {
  position: absolute;
  right: 0;
  bottom: 72px;
  display: none;
  width: min(380px, calc(100vw - 28px));
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 26px 70px rgba(3,26,17,.3);
}
.eb-chatbot.is-open .eb-chat-window {
  display: block;
}
.eb-chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(184,226,77,.18), rgba(184,226,77,0)),
    var(--green-950);
}
.eb-chat-header span {
  display: block;
  color: var(--gold-500);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.eb-chat-header strong {
  display: block;
  color: var(--white);
  font-size: 18px;
}
.eb-chat-close {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--white);
  border: 1px solid rgba(255,255,255,.26);
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  cursor: pointer;
  font-weight: 900;
}
.eb-chat-route {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
  padding: 10px 18px 0;
  background: var(--paper);
}
.eb-chat-route span {
  height: 6px;
  border-radius: 999px;
  background: var(--green-700);
}
.eb-chat-route span:nth-child(2) { background: var(--gold-500); }
.eb-chat-route span:nth-child(3) { background: var(--green-500); }
.eb-chat-messages {
  display: grid;
  gap: 12px;
  max-height: 330px;
  padding: 18px;
  overflow-y: auto;
  background:
    radial-gradient(circle at top right, rgba(184,226,77,.18), transparent 28%),
    var(--paper);
}
.eb-chat-message {
  max-width: 88%;
  padding: 12px 13px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 10px 22px rgba(6,41,26,.07);
}
.eb-chat-message p {
  margin: 0;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.45;
}
.eb-chat-message.is-user {
  justify-self: end;
  color: var(--white);
  border-color: var(--green-800);
  background: var(--green-800);
}
.eb-chat-message.is-user p {
  color: var(--white);
}
.eb-chat-links {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 10px;
}
.eb-chat-links a {
  padding: 6px 9px;
  color: var(--green-950);
  border-radius: 999px;
  background: var(--gold-100);
  font-size: 12px;
  font-weight: 900;
}
.eb-chat-suggestions {
  display: flex;
  gap: 8px;
  padding: 12px 14px;
  overflow-x: auto;
  border-top: 1px solid var(--line);
  background: var(--white);
}
.eb-chat-suggestions button {
  flex: 0 0 auto;
  padding: 7px 10px;
  color: var(--green-800);
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
}
.eb-chat-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  padding: 14px;
  border-top: 1px solid var(--line);
  background: var(--white);
}
.eb-chat-form input {
  min-height: 42px;
  border-radius: 999px;
}
.eb-chat-form button {
  min-height: 42px;
  padding: 0 14px;
  color: var(--white);
  border: 0;
  border-radius: 999px;
  background: var(--green-700);
  cursor: pointer;
  font-weight: 900;
}

.contact-strip { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px; }
.contact-strip a, .contact-strip div { padding: 22px; color: var(--ink); border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.site-footer { color: rgba(255,255,255,.84); background: var(--green-950); }
.footer-grid { display: grid; grid-template-columns: 1.15fr repeat(3, minmax(0,.7fr)); gap: 34px; padding: 56px 0 36px; }
.footer-brand { color: var(--white); margin-bottom: 16px; }
.footer-brand small { color: rgba(255,255,255,.72); }
.footer-grid h3 { color: var(--white); font-size: 17px; }
.footer-grid ul { display: grid; gap: 9px; margin: 0; padding: 0; list-style: none; }
.footer-grid a { color: rgba(255,255,255,.84); }
.footer-grid a:hover { color: var(--gold-500); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 20px 0; border-top: 1px solid rgba(255,255,255,.14); font-size: 14px; }
.footer-bottom p { margin: 0; }

@media (max-width: 1060px) {
  .service-detail-page main .container {
    width: min(100% - 72px, 1000px);
  }
  .header-inner { display: flex; flex-wrap: wrap; gap: 14px; padding: 12px 0; }
  .logo { order: 1; }
  .header-actions { display: flex; order: 2; margin-left: auto; }
  .header-actions .btn-primary { display: none; }
  .header-inquiry-btn { padding: 10px 13px; }
  .nav-toggle { display: block; order: 3; margin-left: 0; }
  .primary-nav { display: none; flex-basis: 100%; order: 4; align-items: stretch; flex-direction: column; gap: 0; border-top: 1px solid var(--line); white-space: normal; }
  .primary-nav.is-open { display: flex; }
  .primary-nav > a,
  .nav-item > a {
    min-height: auto;
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
  }
  .nav-item {
    display: block;
  }
  .nav-item > a::after {
    display: none;
  }
  .dropdown-menu {
    position: static;
    min-width: 0;
    padding: 0 0 10px 14px;
    border: 0;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }
  .dropdown-menu a {
    padding: 9px 10px;
  }
  .section-header, .feature-split, .page-hero-grid, .finder-panel, .rental-hero-layout, .rental-confidence-grid, .load-guide-grid, .dumpster-finder-layout, .thank-you-shell { grid-template-columns: 1fr; }
  .service-bg-hero .page-hero-grid {
    justify-content: center;
    gap: 28px;
  }
  .service-bg-hero .page-hero-grid > div:first-child,
  .service-bg-hero .availability-card {
    max-width: 680px;
    justify-self: center;
  }
  .dumpster-finder-layout { min-height: auto; }
  .dumpster-finder-copy { max-width: 760px; }
  .inquiry-shell { grid-template-columns: 1fr; }
  .inquiry-card { max-width: none; margin-left: 0; }
  .home-service-cards { grid-template-columns: 1fr; gap: 96px; }
  .dumpster-choice-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .rental-wizard-front .dumpster-choice-card {
    grid-template-columns: 132px 76px minmax(0, 1fr);
  }
  .rental-wizard-front .dumpster-choice-card .dumpster-select-btn {
    grid-column: 2 / -1;
    justify-self: start;
  }
  .landing-service-grid,
  .flow-card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .finder-form { grid-template-columns: 1fr; }
  .audience-grid { grid-template-columns: 1fr; }
  .benefit-row,
  .step-list,
  .container-showcase,
  .newsletter-panel,
  .rolloff-feature-panel,
  .commercial-rolloff-card,
  .page-visual-grid {
    grid-template-columns: 1fr;
  }
  .rolloff-card-body {
    border-left: 0;
    border-top: 1px solid var(--line);
  }
  .service-shortcuts,
  .thank-you-link-grid,
  .size-card-grid,
  .measurement-tabs,
  .service-visual-grid,
  .residential-size-grid,
  .human-size-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .stat-band { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .footer-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}

@media (max-width: 760px) {
  .container { width: min(100% - 28px, 1180px); }
  .service-detail-page main .container { width: min(100% - 28px, 1180px); }
  .topbar { display: none; }
  .footer-bottom { display: flex; align-items: flex-start; flex-direction: column; }
  .brand-logo { width: 158px; height: 54px; }
  .header-actions .btn { width: auto; }
  .service-bg-hero { min-height: auto; padding: 54px 0; }
  .service-bg-hero .page-hero-grid { padding: 20px 0; }
  .service-finder { margin-top: -32px; }
  .finder-panel { padding: 22px; }
  .hero { min-height: 640px; }
  .hero-content { min-height: 640px; padding: 68px 0 44px; }
  .hero-actions-only { justify-content: flex-end; padding-bottom: 30px; }
  .hero-action-panel { width: 100%; }
  .home-service-cards { padding-top: 76px; }
  .home-service-card { min-height: auto; padding: 142px 26px 30px; }
  .home-service-image { top: -84px; width: 210px; height: 210px; }
  .home-service-card h2 { font-size: 28px; }
  h1 { font-size: 42px; }
  h2 { font-size: 31px; }
  .hero p { font-size: 17px; }
  .section { padding: 58px 0; }
  .grid-2, .grid-3, .form-grid, .contact-strip, .footer-grid, .stat-band { grid-template-columns: 1fr; }
  .inquiry-section { padding: 50px 0 64px; }
  .thank-you-hero { min-height: auto; padding: 44px 0 58px; }
  .thank-you-next { padding: 20px; }
  .thank-you-actions { flex-direction: column; }
  .thank-you-actions .btn { width: 100%; }
  .inquiry-shell { gap: 26px; }
  .inquiry-intro h1 { font-size: 40px; }
  .inquiry-intro > p { font-size: 17px; }
  .inquiry-photo-card,
  .inquiry-photo-card img { min-height: 230px; }
  .inquiry-proof-grid,
  .inquiry-form,
  .inquiry-trust-row {
    grid-template-columns: 1fr;
  }
  .inquiry-card { padding: 24px; }
  .inquiry-card-top strong { font-size: 27px; }
  .inquiry-photo-caption {
    align-items: flex-start;
    flex-direction: column;
  }
  .inquiry-actions { display: grid; grid-template-columns: 1fr; }
  .inquiry-next,
  .inquiry-clear { width: 100%; }
  .rental-page-hero { min-height: auto; }
  .dumpster-finder-hero { min-height: auto; padding: 24px 0 36px; }
  .size-finder-fields { grid-template-columns: 1fr; }
  .dumpster-finder-copy { gap: 12px; }
  .dumpster-finder-copy h2 { font-size: 34px; }
  .rental-hero-layout { gap: 22px; padding: 28px 0 42px; }
  .rental-wizard-front { order: -1; }
  .rental-hero-copy { min-height: auto; gap: 14px; }
  .rental-hero-copy h1 { font-size: 38px; }
  .rental-proof-strip { max-width: none; }
  .rental-mini-points { gap: 8px; }
  .rental-mini-points span { font-size: 12px; }
  .wizard-topline { align-items: stretch; flex-direction: column; gap: 12px; }
  .wizard-mini-badge { width: fit-content; }
  .hauling-animation { width: 100%; }
  .rental-wizard-front [data-step="dumpster"] .wizard-card { max-height: none; }
  .wizard-progress,
  .dumpster-choice-grid {
    grid-template-columns: 1fr;
  }
  .rental-wizard-front .dumpster-choice-card {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .rental-wizard-front .dumpster-choice-card img {
    width: 100%;
    height: 190px;
  }
  .rental-wizard-front .dumpster-size-label {
    text-align: center;
  }
  .rental-wizard-front .dumpster-measurements {
    grid-template-columns: 1fr;
  }
  .rental-wizard-front .dumpster-choice-card .dumpster-select-btn {
    grid-column: auto;
    width: 100%;
  }
  .landing-service-grid,
  .flow-card-grid {
    grid-template-columns: 1fr;
  }
  .eb-chatbot {
    right: 14px;
    bottom: 14px;
  }
  .eb-chat-window {
    bottom: 66px;
    width: calc(100vw - 28px);
  }
  .eb-chat-messages {
    max-height: 300px;
  }
  .dumpster-choice-card img {
    height: 190px;
  }
  .commercial-rolloff-card img {
    min-height: 260px;
  }
  .container-specs,
  .service-shortcuts,
  .thank-you-link-grid,
  .size-card-grid,
  .measurement-tabs,
  .service-visual-grid,
  .residential-size-grid,
  .visual-mini-grid,
  .human-size-grid {
    grid-template-columns: 1fr;
  }
  .page-hero.visual-hero {
    padding-bottom: 78px;
  }
  .image-page-hero,
  .image-page-hero .page-hero-grid {
    min-height: 560px;
  }
  .image-page-hero .page-hero-grid {
    padding-top: 74px;
    padding-bottom: 112px;
  }
  .hero-service-finder {
    margin-top: -52px;
  }
  .feature-image img { height: 320px; }
  #commercial-waste-management .feature-image img {
    height: auto;
    max-height: none;
  }
}

@media (max-width: 460px) {
  h1 { font-size: 34px; }
  h2 { font-size: 27px; }
  .header-inner { gap: 10px; }
  .header-inquiry-btn { padding: 9px 10px; font-size: 13px; }
  .inquiry-intro h1 { font-size: 34px; }
  .inquiry-card { padding: 20px; }
  .btn-row, .hero-meta, .wizard-actions { flex-direction: column; }
  .wizard-actions .btn { width: 100%; }
  .hero-action-panel .btn { min-width: 0; }
  .btn { width: 100%; }
}
