:root {
  --ink: #101412;
  --ink-soft: #414a45;
  --paper: #f6f3ea;
  --paper-strong: #ebe5d7;
  --line: #d8d0c1;
  --carbon: #0b0f0d;
  --steel: #141a17;
  --steel-soft: #202823;
  --safety: #ff6a00;
  --safety-dark: #c84f00;
  --eyebrow-light: #a84300;
  --green: #2d5f52;
  --brick: #a44732;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(11, 15, 13, 0.28);
  --shadow-soft: 0 14px 36px rgba(11, 15, 13, 0.12);
  --shadow-card: 0 22px 52px rgba(11, 15, 13, 0.16);
  --ring: 0 0 0 3px rgba(255, 106, 0, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(16, 20, 18, 0.035) 1px, transparent 1px) 0 0 / 72px 72px,
    linear-gradient(180deg, rgba(16, 20, 18, 0.025) 1px, transparent 1px) 0 0 / 72px 72px,
    var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

img {
  display: block;
  max-width: 100%;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button:focus-visible,
a:focus-visible,
summary:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(244, 178, 60, 0.55);
  outline-offset: 3px;
}

.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;
}

.cookie-banner {
  position: fixed;
  z-index: 80;
  right: clamp(14px, 3vw, 28px);
  bottom: clamp(14px, 3vw, 28px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  width: min(640px, calc(100% - 28px));
  padding: 16px;
  border: 1px solid rgba(255, 106, 0, 0.26);
  border-radius: 8px;
  color: var(--white);
  background: rgba(11, 15, 13, 0.96);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(16px);
}

.cookie-banner strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1rem;
}

.cookie-banner p {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.92rem;
}

.cookie-banner a {
  color: var(--safety);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-actions {
  display: flex;
  align-items: center;
  align-self: center;
  gap: 10px;
}

.cookie-actions .btn {
  min-height: 44px;
  padding: 0 16px;
  white-space: nowrap;
}

.cookie-actions .btn-dark {
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.footer-privacy-button {
  border: 0;
  padding: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
  font: inherit;
  text-align: left;
}

.footer-privacy-button:hover,
.footer-privacy-button:focus-visible {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 74px;
  padding: 14px clamp(18px, 4vw, 52px);
  color: var(--white);
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--white);
  background: rgba(11, 15, 13, 0.94);
  border-bottom: 1px solid rgba(255, 106, 0, 0.26);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}

.brand-mark {
  position: relative;
  isolation: isolate;
  display: grid;
  overflow: hidden;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 8px;
  color: var(--carbon);
  background: var(--safety);
  font-weight: 900;
  box-shadow: 0 0 0 1px rgba(255, 106, 0, 0.3), 0 14px 32px rgba(255, 106, 0, 0.2);
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  z-index: 0;
  pointer-events: none;
}

.brand-mark::before {
  inset: -18px 20px -18px auto;
  width: 18px;
  background: rgba(11, 15, 13, 0.94);
  transform: rotate(22deg);
}

.brand-mark::after {
  left: 8px;
  right: 8px;
  bottom: 7px;
  height: 2px;
  background: rgba(11, 15, 13, 0.72);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1rem;
}

.brand small {
  color: currentColor;
  font-size: 0.78rem;
  opacity: 0.78;
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 700;
  transition: background 160ms ease, color 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(244, 178, 60, 0.18);
}

.header-call,
.btn,
.quick-contact a,
.contact-cards a,
.mobile-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.header-call {
  min-height: 44px;
  padding: 0 16px;
  border-radius: 8px;
  color: var(--ink);
  background: var(--safety);
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.header-call:hover,
.header-call:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.2);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  color: inherit;
  background: rgba(255, 255, 255, 0.08);
}

.site-header.is-scrolled .nav-toggle,
.site-header.is-open .nav-toggle {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: min(860px, 94vh);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--carbon);
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg {
  background:
    linear-gradient(90deg, rgba(5, 7, 6, 0.98), rgba(11, 15, 13, 0.86) 42%, rgba(11, 15, 13, 0.2)),
    url("assets/hero-truck.webp") 68% center / cover;
  transform: scale(1.02);
  filter: saturate(0.82) contrast(1.12);
}

.hero-overlay {
  background:
    repeating-linear-gradient(115deg, rgba(255, 255, 255, 0.055) 0 1px, transparent 1px 92px),
    linear-gradient(0deg, rgba(11, 15, 13, 0.92), rgba(11, 15, 13, 0) 42%),
    radial-gradient(circle at 80% 22%, rgba(255, 106, 0, 0.22), rgba(255, 106, 0, 0) 32%),
    linear-gradient(135deg, rgba(255, 106, 0, 0.2), rgba(255, 106, 0, 0) 34%);
}

.hero::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: clamp(110px, 18vh, 180px);
  left: clamp(18px, 4vw, 52px);
  width: 3px;
  height: 128px;
  border-radius: 999px;
  background: linear-gradient(180deg, transparent, var(--safety), transparent);
  opacity: 0.92;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 10px;
  background: linear-gradient(90deg, transparent, var(--safety), transparent);
  opacity: 0.8;
}

.hero-inner {
  position: relative;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 150px 0 44px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--eyebrow-light);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow,
.contact-section .eyebrow,
.area-panel .eyebrow,
.site-footer .eyebrow {
  color: var(--safety);
}

.hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(3.5rem, 8.4vw, 7.4rem);
  line-height: 0.9;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 680px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.16rem, 2vw, 1.44rem);
  font-weight: 650;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-command {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  width: min(560px, 100%);
  margin-top: 18px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-left: 4px solid var(--safety);
  border-radius: 8px;
  background: rgba(11, 15, 13, 0.62);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(14px);
}

.hero-command i {
  width: 34px;
  height: 34px;
  color: var(--safety);
}

.hero-command strong,
.hero-command span {
  display: block;
}

.hero-command strong {
  line-height: 1.15;
}

.hero-command span {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.btn {
  position: relative;
  overflow: hidden;
  min-height: 56px;
  padding: 0 24px;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 900;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.btn i,
.section-link i,
.text-link i {
  transition: transform 160ms ease;
}

.btn:hover i,
.btn:focus-visible i,
.section-link:hover i,
.section-link:focus-visible i,
.text-link:hover i,
.text-link:focus-visible i {
  transform: translateX(2px);
}

.btn-primary {
  color: var(--carbon);
  background: var(--safety);
  box-shadow: 0 20px 42px rgba(255, 106, 0, 0.32);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: #ff7a1f;
}

.btn-secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.11);
  backdrop-filter: blur(12px);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.18);
}

.btn-copy {
  color: var(--ink);
  border: 1px solid var(--line);
  background: var(--paper-strong);
}

.btn-copy:hover,
.btn-copy:focus-visible {
  border-color: rgba(33, 100, 82, 0.26);
  background: #fff8e8;
}

.text-link,
.section-link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: 18px;
  color: var(--green);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color 160ms ease, text-decoration-color 160ms ease;
}

.text-link:hover,
.text-link:focus-visible,
.section-link:hover,
.section-link:focus-visible {
  color: var(--safety-dark);
  text-decoration-color: currentColor;
}

.text-link.light {
  color: var(--safety);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin: 52px 0 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.2);
  box-shadow: var(--shadow);
}

.hero-facts div {
  min-height: 118px;
  padding: 22px;
  background: rgba(11, 15, 13, 0.76);
  backdrop-filter: blur(14px);
  transition: background 180ms ease;
}

.hero-facts dt {
  margin-bottom: 8px;
  color: var(--safety);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-facts dd {
  margin: 0;
  font-size: 1rem;
  font-weight: 800;
}

.quick-contact {
  background: var(--carbon);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 106, 0, 0.32);
}

.quick-contact-inner {
  width: min(1180px, calc(100% - 36px));
  min-height: 68px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  justify-items: center;
  justify-content: center;
  gap: 10px 24px;
  text-align: center;
  font-weight: 850;
}

.quick-contact-inner > * {
  display: inline-flex;
  width: 100%;
  min-width: 0;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  line-height: 1.25;
}

.quick-contact-inner i {
  flex: 0 0 auto;
}

.quick-contact-inner span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.quick-contact a {
  transition: color 160ms ease, opacity 160ms ease;
}

.quick-contact a:hover,
.quick-contact a:focus-visible {
  color: var(--safety);
}

.section.proof-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 14px;
  padding-top: 34px;
  padding-bottom: 34px;
}

.proof-strip article {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 14px;
  row-gap: 2px;
  align-items: center;
  justify-items: start;
  min-height: 98px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 1px 0 rgba(24, 33, 29, 0.04);
}

.proof-strip article::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--safety), rgba(255, 106, 0, 0.08));
}

.proof-strip i {
  grid-row: span 2;
  width: 42px;
  height: 42px;
  padding: 9px;
  border-radius: 8px;
  background: rgba(255, 106, 0, 0.1);
  color: var(--safety);
}

.proof-strip strong {
  justify-self: start;
  text-align: left;
  line-height: 1.18;
}

.proof-strip span {
  grid-column: 2;
  text-align: left;
  color: var(--ink-soft);
  font-size: 0.93rem;
}

.visual-proof {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: 18px;
  align-items: stretch;
  padding-top: 0;
}

.visual-proof-copy,
.visual-proof-card,
.photo-brief-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
}

.visual-proof-copy {
  display: grid;
  align-content: center;
  padding: clamp(28px, 5vw, 46px);
  color: var(--white);
  background:
    radial-gradient(circle at 90% 10%, rgba(255, 106, 0, 0.18), transparent 34%),
    linear-gradient(135deg, var(--steel), var(--carbon));
  box-shadow: var(--shadow);
}

.visual-proof-copy h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.05;
}

.visual-proof-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.04rem;
}

.visual-proof-copy .section-link {
  color: var(--safety);
}

.visual-proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.visual-proof-card {
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 1px 0 rgba(24, 33, 29, 0.04);
}

.visual-proof-card.image-card {
  display: grid;
  grid-template-rows: minmax(210px, 1fr) auto;
}

.visual-proof-card picture,
.visual-proof-card img {
  width: 100%;
  height: 100%;
}

.visual-proof-card img {
  aspect-ratio: 1.32 / 1;
  object-fit: cover;
  filter: saturate(0.8) contrast(1.08);
}

.visual-proof-card div {
  padding: 18px;
}

.visual-proof-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--safety-dark);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.visual-proof-card strong {
  display: block;
  line-height: 1.2;
}

.proof-card-dark {
  grid-column: 1 / -1;
  display: grid;
  min-height: 190px;
  align-content: center;
  padding: 24px;
  color: var(--white);
  background:
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.055) 0 1px, transparent 1px 26px),
    linear-gradient(135deg, var(--carbon), var(--steel-soft));
  border-color: rgba(255, 106, 0, 0.28);
}

.proof-card-dark .proof-number {
  width: fit-content;
  margin-bottom: 18px;
  padding: 5px 9px;
  border-radius: 8px;
  color: var(--carbon);
  background: var(--safety);
}

.proof-card-dark h3 {
  margin: 0 0 8px;
  font-size: 1.45rem;
  line-height: 1.12;
}

.proof-card-dark p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

.section,
.contact-section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.section {
  padding: clamp(64px, 9vw, 110px) 0;
}

.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-head.compact {
  max-width: 620px;
}

.section-head h2,
.split-content h2,
.contact-copy h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.section-head p:not(.eyebrow),
.split-content p,
.contact-copy p {
  color: var(--ink-soft);
  font-size: 1.04rem;
}

.operation-flow,
.container-visual {
  position: relative;
  padding: clamp(34px, 5vw, 58px);
  border: 1px solid rgba(255, 106, 0, 0.22);
  border-radius: 8px;
  color: var(--white);
  background:
    radial-gradient(circle at 92% 12%, rgba(255, 106, 0, 0.18), transparent 32%),
    linear-gradient(135deg, var(--steel), var(--carbon));
  box-shadow: var(--shadow);
}

.operation-flow .section-head h2,
.operation-flow .section-head p:not(.eyebrow),
.container-visual .section-head h2,
.container-visual .section-head p:not(.eyebrow) {
  color: var(--white);
}

.operation-flow .section-head p:not(.eyebrow),
.container-visual .section-head p:not(.eyebrow) {
  opacity: 0.78;
}

.steps-industrial article {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: none;
}

.steps-industrial h3,
.steps-industrial p {
  color: var(--white);
}

.steps-industrial p {
  opacity: 0.76;
}

.container-size-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.container-size-grid article {
  display: grid;
  gap: 12px;
  align-content: start;
  min-height: 360px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.container-size-grid article.featured {
  border-color: rgba(255, 106, 0, 0.5);
  background: rgba(255, 106, 0, 0.11);
}

.container-size-grid strong {
  color: var(--white);
  font-size: 1.2rem;
  line-height: 1.15;
}

.container-size-grid em {
  width: fit-content;
  padding: 5px 9px;
  border-radius: 8px;
  color: var(--carbon);
  background: var(--safety);
  font-style: normal;
  font-weight: 900;
}

.container-size-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

.container-illustration {
  display: flex;
  align-items: end;
  min-height: 130px;
  padding-top: 20px;
}

.container-illustration span {
  display: block;
  position: relative;
  height: 58px;
  border: 2px solid rgba(255, 255, 255, 0.52);
  border-top-width: 5px;
  border-radius: 6px 6px 10px 10px;
  background:
    linear-gradient(135deg, rgba(255, 106, 0, 0.38), rgba(255, 106, 0, 0.12)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.16) 0 1px, transparent 1px 22px);
  box-shadow: inset 0 -16px 0 rgba(0, 0, 0, 0.18), 0 16px 34px rgba(0, 0, 0, 0.24);
}

.container-illustration span::before,
.container-illustration span::after {
  content: "";
  position: absolute;
  bottom: -16px;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: #050706;
  border: 3px solid rgba(255, 255, 255, 0.28);
}

.container-illustration span::before {
  left: 14%;
}

.container-illustration span::after {
  right: 14%;
}

.container-illustration.small span {
  width: 58%;
}

.container-illustration.medium span {
  width: 78%;
  height: 70px;
}

.container-illustration.large span {
  width: 100%;
  height: 86px;
}

.size-help {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 18px;
  padding: 22px;
  border: 1px solid rgba(255, 106, 0, 0.34);
  border-radius: 8px;
  background: rgba(255, 106, 0, 0.1);
}

.size-help h3 {
  max-width: 720px;
  margin: 0;
  color: var(--white);
  font-size: clamp(1.25rem, 3vw, 2rem);
  line-height: 1.12;
}

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

.waste-grid article {
  display: grid;
  gap: 10px;
  min-height: 210px;
  padding: 24px;
  border: 1px solid var(--line);
  border-top: 4px solid var(--safety);
  border-radius: 8px;
  background: var(--white);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.waste-grid i {
  width: 34px;
  height: 34px;
  color: var(--safety);
}

.waste-grid strong,
.waste-grid span {
  display: block;
}

.waste-grid strong {
  font-size: 1.16rem;
  line-height: 1.18;
}

.waste-grid span {
  color: var(--ink-soft);
}

.price-calculator-section {
  scroll-margin-top: 92px;
}

.price-calculator {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(330px, 0.8fr);
  gap: 18px;
  align-items: start;
}

.calculator-panel,
.calculator-result,
.calculator-noscript {
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.calculator-panel {
  display: grid;
  gap: 16px;
  padding: clamp(18px, 3vw, 28px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(255, 106, 0, 0.12), rgba(255, 106, 0, 0) 42%),
    var(--ink);
}

.calculator-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.calculator-header span {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  color: var(--carbon);
  background: var(--safety);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.calculator-header strong {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
}

.calculator-step {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.calculator-step legend {
  margin-bottom: 10px;
  color: var(--safety);
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.calculator-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.calculator-options.compact {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.calculator-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.calculator-options.stack {
  grid-template-columns: 1fr;
}

.calculator-options label {
  position: relative;
  display: block;
  color: inherit;
  font-size: 0.88rem;
  font-weight: 900;
}

.calculator-options input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.calculator-options span {
  display: grid;
  min-height: 46px;
  place-items: center;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.08);
  text-align: center;
  line-height: 1.18;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.calculator-options input:hover + span,
.calculator-options input:focus-visible + span {
  border-color: rgba(244, 178, 60, 0.75);
  background: rgba(255, 255, 255, 0.13);
  box-shadow: 0 0 0 3px rgba(244, 178, 60, 0.16);
}

.calculator-options input:checked + span {
  transform: translateY(-1px);
  border-color: var(--safety);
  color: var(--carbon);
  background: var(--safety);
  box-shadow: 0 12px 26px rgba(255, 106, 0, 0.24);
}

.calculator-result {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 14px;
  padding: clamp(18px, 3vw, 28px);
  color: var(--white);
  background:
    linear-gradient(160deg, rgba(40, 106, 80, 0.28), rgba(40, 106, 80, 0) 48%),
    #111713;
}

.calculator-result .eyebrow {
  color: var(--safety);
}

.calculator-result h3 {
  margin: 0;
  color: var(--white);
  font-size: clamp(1.55rem, 3vw, 2.2rem);
  line-height: 1.05;
}

.calculator-result p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.calculator-factors {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.calculator-factors li {
  position: relative;
  padding-left: 20px;
  color: rgba(255, 255, 255, 0.82);
}

.calculator-factors li::before {
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--safety);
  content: "";
}

.calculator-summary {
  padding: 14px;
  border: 1px solid rgba(244, 178, 60, 0.32);
  border-radius: 8px;
  color: #fff7e3;
  background: rgba(244, 178, 60, 0.08);
  font-size: 0.94rem;
  line-height: 1.45;
}

.calculator-actions {
  display: grid;
  gap: 10px;
}

.calculator-actions .btn {
  width: 100%;
  min-height: 50px;
}

.calculator-help-link {
  color: var(--safety);
  font-weight: 900;
  text-align: center;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.calculator-noscript {
  margin-top: 18px;
  padding: 18px;
  border: 1px solid rgba(244, 178, 60, 0.38);
  color: var(--ink);
  background: #fff8e8;
  font-weight: 800;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.service-card,
.audience-grid article,
.steps article,
.area-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.service-card,
.audience-grid article,
.steps article,
.info-grid article,
.local-grid article,
.trust-grid article,
.why-grid article,
.guide-grid a,
.rules-grid article,
.size-table article,
.detail-grid article,
.price-grid article,
.material-table > div,
.article-list article,
.scenario-list article,
.content-blocks article,
.container-size-grid article,
.waste-grid article,
.service-note,
.seo-panel,
.mobile-action-box,
.proof-strip article,
.visual-proof-card,
.photo-brief-grid article,
.prep-list li,
.location-sections article,
.link-cloud a {
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.service-card {
  min-height: 280px;
  padding: 24px;
}

.icon-box {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 8px;
  color: var(--white);
  background: var(--green);
  transition: transform 180ms ease;
}

.service-card:nth-child(2) .icon-box {
  background: var(--brick);
}

.service-card:nth-child(3) .icon-box {
  background: #5a7a2d;
}

.service-card:nth-child(4) .icon-box {
  background: var(--safety-dark);
}

.service-card h3,
.audience-grid h3,
.steps h3,
.area-panel h3 {
  margin: 0 0 10px;
  font-size: 1.18rem;
  line-height: 1.2;
}

.service-card p,
.audience-grid p,
.steps p,
.area-panel p,
.info-grid p,
.local-grid p,
.trust-grid p,
.guide-grid p,
.faq-list p {
  margin: 0;
  color: var(--ink-soft);
}

.info-grid,
.rules-grid,
.local-grid,
.trust-grid,
.guide-grid,
.size-table,
.why-grid {
  display: grid;
  gap: 16px;
}

.info-grid,
.trust-grid,
.guide-grid,
.size-table {
  grid-template-columns: repeat(3, 1fr);
}

.info-grid article,
.local-grid article,
.trust-grid article,
.why-grid article,
.guide-grid a,
.rules-grid article,
.size-table article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 24px;
}

.info-grid i,
.trust-grid i,
.why-grid i {
  width: 34px;
  height: 34px;
  margin-bottom: 24px;
  color: var(--green);
}

.info-grid h3,
.local-grid h3,
.trust-grid h3,
.why-grid h3,
.guide-grid h3,
.rules-grid h3,
.size-table strong {
  margin: 0 0 10px;
  font-size: 1.16rem;
  line-height: 1.2;
}

.pricing-preview,
.container-sizes,
.price-examples,
.rules,
.local-proof,
.trust,
.guide-preview {
  padding-top: 0;
}

.why-grid {
  grid-template-columns: repeat(4, 1fr);
}

.why-grid article {
  min-height: 250px;
}

.why-grid p {
  margin: 0;
  color: var(--ink-soft);
}

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

.photo-brief-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.photo-brief-grid article {
  display: grid;
  align-content: start;
  min-height: 230px;
  padding: 22px;
  background: var(--white);
}

.photo-brief-grid span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 32px;
  border-radius: 8px;
  color: var(--carbon);
  background: var(--safety);
  font-weight: 900;
}

.photo-brief-grid h3 {
  margin: 0 0 10px;
  font-size: 1.18rem;
  line-height: 1.2;
}

.photo-brief-grid p {
  margin: 0;
  color: var(--ink-soft);
}

.rule-ok {
  border-color: rgba(33, 100, 82, 0.28);
}

.rule-warn {
  border-color: rgba(164, 71, 50, 0.28);
}

.warn-list i {
  color: var(--brick);
}

.local-grid {
  grid-template-columns: repeat(4, 1fr);
}

.guide-grid a:hover,
.guide-grid a:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(24, 33, 29, 0.12);
}

.size-table strong,
.size-table span {
  display: block;
}

.size-table span {
  color: var(--ink-soft);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 5vw, 62px);
  align-items: center;
}

.split-image {
  display: block;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.split-image img,
.contact-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-image img {
  aspect-ratio: 4 / 5;
}

.lists {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 30px;
}

.lists h3 {
  margin: 0 0 14px;
}

.check-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: var(--ink-soft);
}

.check-list i {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 3px;
  color: var(--green);
}

.areas {
  width: 100%;
  max-width: none;
  padding-left: max(18px, calc((100% - 1180px) / 2));
  padding-right: max(18px, calc((100% - 1180px) / 2));
  background: var(--paper-strong);
}

.area-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 18px;
  align-items: stretch;
}

.area-panel {
  padding: 28px;
  color: var(--white);
  background: var(--ink);
}

.area-panel i {
  width: 38px;
  height: 38px;
  margin-bottom: 32px;
  color: var(--safety);
}

.area-panel p {
  color: rgba(255, 255, 255, 0.78);
}

.area-tags {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.area-tags li {
  display: grid;
  min-height: 72px;
  place-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font-weight: 850;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.area-tags a {
  display: grid;
  width: 100%;
  min-height: 44px;
  place-items: center;
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 4px;
}

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

.steps article {
  position: relative;
  min-height: 235px;
  padding: 28px;
}

.steps span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 46px;
  border-radius: 8px;
  color: var(--ink);
  background: var(--safety);
  font-weight: 900;
}

.steps-industrial article {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: none;
}

.steps-industrial h3,
.steps-industrial p {
  color: var(--white);
}

.steps-industrial p {
  opacity: 0.76;
}

.audience {
  padding-top: 0;
}

.prep {
  padding-top: 0;
}

.prep-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
  counter-reset: prep;
}

.prep-list li {
  position: relative;
  display: grid;
  align-content: start;
  min-height: 188px;
  padding: 56px 20px 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.prep-list li::before {
  counter-increment: prep;
  content: counter(prep);
  position: absolute;
  top: 18px;
  left: 20px;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 8px;
  color: var(--ink);
  background: var(--safety);
  font-weight: 900;
}

.prep-list strong {
  margin-bottom: 8px;
  line-height: 1.18;
}

.prep-list span {
  color: var(--ink-soft);
  font-size: 0.93rem;
}

.owner-preview {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  gap: 20px;
  align-items: stretch;
  padding-top: 0;
}

.owner-preview h2 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.05;
}

.owner-preview p:not(.eyebrow) {
  max-width: 760px;
  color: var(--ink-soft);
  font-size: 1.04rem;
}

.owner-card {
  display: grid;
  align-content: center;
  gap: 9px;
  padding: 26px;
  border-radius: 8px;
  color: var(--white);
  background: var(--ink);
}

.owner-card strong {
  color: var(--safety);
  font-size: 1.3rem;
}

.owner-card span {
  color: rgba(255, 255, 255, 0.82);
}

.owner-card a {
  width: max-content;
  color: var(--safety);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.proof-strip a {
  color: inherit;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

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

.audience-grid article {
  min-height: 220px;
  padding: 26px;
}

.audience-grid i {
  width: 34px;
  height: 34px;
  margin-bottom: 28px;
  color: var(--green);
}

.contact-section {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 0;
  overflow: hidden;
  margin-bottom: clamp(64px, 9vw, 110px);
  border-radius: 8px;
  background: var(--ink);
  box-shadow: var(--shadow);
}

.contact-media {
  display: block;
  min-height: 650px;
}

.contact-content {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 30px;
  align-items: center;
  padding: clamp(28px, 5vw, 54px);
  color: var(--white);
}

.contact-copy h2,
.contact-copy p:not(.eyebrow) {
  color: var(--white);
}

.contact-copy p:not(.eyebrow) {
  opacity: 0.82;
}

.contact-cards {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.contact-cards a {
  justify-content: flex-start;
  min-height: 74px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.contact-cards a:hover,
.contact-cards a:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(244, 178, 60, 0.34);
  background: rgba(255, 255, 255, 0.13);
}

.contact-cards strong {
  display: block;
  color: var(--safety);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.inquiry-form {
  display: grid;
  gap: 14px;
  padding: 22px;
  border: 1px solid rgba(222, 216, 202, 0.9);
  border-top: 4px solid var(--safety);
  border-radius: 8px;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.16);
}

.form-intro {
  display: grid;
  gap: 4px;
  padding: 14px;
  border: 1px solid rgba(244, 178, 60, 0.34);
  border-radius: 8px;
  background: #fff8e8;
}

.form-intro strong {
  line-height: 1.25;
}

.form-intro span {
  color: var(--ink-soft);
  font-size: 0.9rem;
}

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

.form-progress {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.form-progress span {
  display: grid;
  min-height: 38px;
  place-items: center;
  padding: 7px 9px;
  border: 1px solid #ded6c6;
  border-radius: 8px;
  color: var(--ink-soft);
  background: #f5efe2;
  font-size: 0.78rem;
  font-weight: 900;
  text-align: center;
}

.form-progress span.is-active {
  border-color: rgba(255, 106, 0, 0.58);
  color: var(--carbon);
  background: rgba(255, 106, 0, 0.16);
}

.form-step {
  display: grid;
  gap: 14px;
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.form-step[hidden] {
  display: none;
}

.form-step legend {
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 950;
}

.field-note,
.legend-note {
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 700;
}

.form-example {
  margin: 0;
  padding: 11px 12px;
  border-left: 4px solid var(--safety);
  border-radius: 8px;
  color: var(--ink-soft);
  background: #fff8e8;
  font-size: 0.86rem;
}

label {
  display: grid;
  gap: 7px;
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 850;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #d3cbbd;
  border-radius: 8px;
  background: #fffefa;
  color: var(--ink);
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

input,
select {
  height: 46px;
  padding: 0 12px;
}

textarea {
  min-height: 118px;
  resize: vertical;
  padding: 12px;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--safety-dark);
  background: var(--white);
  box-shadow: var(--ring);
}

input.is-invalid,
select.is-invalid,
textarea.is-invalid {
  border-color: #b42318;
  background: #fff5f5;
  box-shadow: 0 0 0 3px rgba(180, 35, 24, 0.16);
}

.file-input input {
  padding-top: 10px;
}

.file-input span {
  display: block;
  min-height: 44px;
  padding: 12px;
  border: 1px dashed #c9bfae;
  border-radius: 8px;
  color: var(--ink-soft);
  background: #fff8e8;
  font-weight: 800;
}

.consent {
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 10px;
  color: var(--ink-soft);
  font-size: 0.82rem;
}

.consent input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
}

.consent a {
  color: var(--safety-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.form-actions .btn,
.inquiry-form .btn {
  width: 100%;
}

.inquiry-form .btn-secondary {
  color: var(--ink);
  border: 1px solid #d3cbbd;
  background: var(--paper-strong);
  backdrop-filter: none;
}

.inquiry-form .btn-secondary:hover,
.inquiry-form .btn-secondary:focus-visible {
  border-color: rgba(255, 106, 0, 0.42);
  background: #fff8e8;
}

.form-button {
  width: 100%;
}

.form-note {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.86rem;
}

.form-privacy {
  margin: -4px 0 0;
  color: var(--ink-soft);
  font-size: 0.8rem;
  line-height: 1.45;
}

.form-privacy a {
  color: var(--green);
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.faq {
  padding-top: 0;
}

.faq-list {
  display: grid;
  gap: 10px;
  max-width: 860px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.faq-list details[open] {
  border-color: rgba(33, 100, 82, 0.28);
  box-shadow: var(--shadow-soft);
}

.faq-list summary {
  cursor: pointer;
  padding: 20px;
  font-weight: 900;
  transition: background 160ms ease, color 160ms ease;
}

.faq-list summary:hover,
.faq-list summary:focus-visible {
  color: var(--green);
  background: rgba(33, 100, 82, 0.06);
}

.faq-list summary::marker {
  color: var(--green);
}

.faq-list p {
  padding: 0 20px 20px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 28px;
  align-items: start;
  padding: 34px clamp(18px, 4vw, 52px);
  color: rgba(255, 255, 255, 0.78);
  background: #111713;
}

.site-footer strong,
.site-footer a {
  color: var(--white);
}

.site-footer p {
  margin: 4px 0;
}

.site-footer div:last-child {
  display: grid;
  gap: 8px;
  justify-items: end;
  font-weight: 850;
}

.mobile-cta {
  display: none;
}

.page-main {
  padding-top: 74px;
  min-height: 70vh;
  background: var(--paper);
}

.subpage-hero {
  position: relative;
  isolation: isolate;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(58px, 8vw, 110px) 0 clamp(38px, 6vw, 70px);
  color: var(--white);
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 0%, rgba(255, 106, 0, 0.19), transparent 28rem),
    linear-gradient(135deg, var(--carbon) 0%, var(--steel) 62%, #1f160e 100%);
  box-shadow: 0 0 0 100vmax var(--carbon);
  clip-path: inset(0 -100vmax);
}

.subpage-hero > * {
  position: relative;
  z-index: 2;
}

.subpage-hero::before {
  content: "";
  position: relative;
  z-index: 2;
  display: block;
  width: 86px;
  height: 6px;
  margin-bottom: 28px;
  border-radius: 999px;
  background: var(--safety);
  box-shadow: 0 0 28px rgba(255, 106, 0, 0.38);
}

.subpage-hero::after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  right: min(-18px, -1.6vw);
  bottom: 0;
  width: min(58vw, 690px);
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(13, 18, 15, 0.98) 0%, rgba(13, 18, 15, 0.34) 42%, rgba(13, 18, 15, 0.08) 100%),
    linear-gradient(0deg, rgba(13, 18, 15, 0.9), rgba(13, 18, 15, 0.18) 48%, rgba(13, 18, 15, 0.76)),
    url("assets/hero-truck.webp") center 64% / cover no-repeat;
  opacity: 0.58;
  mix-blend-mode: screen;
  transform: skewX(-7deg) translateX(8%);
  transform-origin: right center;
  filter: saturate(0.95) contrast(1.08);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 22%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 22%, #000 100%);
}

.subpage-hero h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(2.5rem, 6vw, 5.2rem);
  line-height: 0.98;
  letter-spacing: 0;
  color: var(--white);
}

.subpage-hero p:not(.eyebrow) {
  max-width: 760px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.04rem, 2vw, 1.28rem);
}

.btn-dark {
  color: var(--white);
  background: var(--green);
}

.subpage-hero .btn-dark,
.hero .btn-dark {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.detail-grid,
.price-grid {
  display: grid;
  gap: 16px;
}

.detail-grid {
  grid-template-columns: repeat(3, 1fr);
}

.detail-grid article,
.price-grid article,
.material-table > div,
.article-list article,
.price-note {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 24px;
}

.detail-grid h2,
.detail-grid h3,
.price-grid h2,
.material-table strong,
.article-list h2,
.price-note h2 {
  margin: 0 0 10px;
  line-height: 1.18;
}

.detail-grid p,
.price-grid p,
.material-table span,
.article-list p {
  margin: 0;
  color: var(--ink-soft);
}

.material-table {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.material-table > div {
  min-height: 132px;
}

.material-table strong,
.material-table span {
  display: block;
}

.price-grid {
  grid-template-columns: repeat(4, 1fr);
}

.price-grid span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 32px;
  border-radius: 8px;
  background: var(--safety);
  font-weight: 900;
}

.price-note {
  max-width: 820px;
}

.location-sections,
.article-list,
.scenario-list,
.content-blocks {
  display: grid;
  gap: 14px;
}

.location-sections article {
  padding: 28px;
  border-left: 5px solid var(--green);
  border-radius: 8px;
  background: var(--white);
}

.location-sections h2 {
  margin: 0 0 10px;
}

.location-sections p {
  margin: 0;
  color: var(--ink-soft);
}

.article-list {
  max-width: 900px;
}

.scenario-list,
.content-blocks {
  grid-template-columns: repeat(2, 1fr);
}

.scenario-list article,
.content-blocks article,
.service-note,
.seo-panel,
.mobile-action-box {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 24px;
}

.scenario-list h2,
.content-blocks h2,
.content-blocks h3,
.service-note h2,
.seo-panel h2,
.mobile-action-box h2 {
  margin: 0 0 10px;
  line-height: 1.18;
}

.scenario-list p,
.content-blocks p,
.service-note p,
.seo-panel p,
.mobile-action-box p {
  margin: 0;
  color: var(--ink-soft);
}

.service-note {
  max-width: 860px;
}

.trust-checklist {
  margin-top: 18px;
}

.seo-panel {
  display: grid;
  gap: 18px;
}

.seo-panel ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.seo-panel li {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  color: var(--ink-soft);
}

.seo-panel li::before {
  content: "";
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  margin-top: 8px;
  border-radius: 999px;
  background: var(--safety);
}

.link-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.link-cloud a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--green);
  font-weight: 850;
}

.link-cloud li::before {
  content: none;
}

@media (hover: hover) {
  .hero-facts div:hover {
    background: rgba(24, 33, 29, 0.82);
  }

  .service-card:hover,
  .audience-grid article:hover,
  .steps article:hover,
  .info-grid article:hover,
  .local-grid article:hover,
  .trust-grid article:hover,
  .why-grid article:hover,
  .rules-grid article:hover,
  .size-table article:hover,
  .detail-grid article:hover,
  .price-grid article:hover,
  .material-table > div:hover,
  .article-list article:hover,
  .scenario-list article:hover,
  .content-blocks article:hover,
  .container-size-grid article:hover,
  .waste-grid article:hover,
  .service-note:hover,
  .seo-panel:hover,
  .mobile-action-box:hover,
  .proof-strip article:hover,
  .visual-proof-card:hover,
  .photo-brief-grid article:hover,
  .prep-list li:hover,
  .location-sections article:hover,
  .link-cloud a:hover,
  .link-cloud a:focus-visible {
    transform: translateY(-3px);
    border-color: rgba(255, 106, 0, 0.28);
    box-shadow: var(--shadow-card);
  }

  .service-card:hover .icon-box,
  .service-card:focus-within .icon-box {
    transform: scale(1.05);
  }

  .area-tags li:hover {
    transform: translateY(-2px);
    border-color: rgba(33, 100, 82, 0.24);
    box-shadow: var(--shadow-soft);
  }
}

@media (prefers-reduced-motion: no-preference) {
  [data-reveal] {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 520ms cubic-bezier(0.2, 0.7, 0.2, 1), transform 520ms cubic-bezier(0.2, 0.7, 0.2, 1);
  }

  [data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

.mobile-action-box {
  display: grid;
  gap: 16px;
  align-items: center;
  margin-top: 18px;
  border-color: rgba(244, 178, 60, 0.42);
  background: #fff8e8;
}

.mobile-action-box .hero-actions {
  margin-top: 0;
}

.cta-band {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto clamp(64px, 9vw, 110px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: clamp(26px, 5vw, 44px);
  border-radius: 8px;
  color: var(--white);
  background: var(--ink);
}

.cta-band h2 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(1.7rem, 4vw, 3rem);
  line-height: 1.05;
}

svg {
  width: 20px;
  height: 20px;
  stroke-width: 2.2;
}

@media (max-width: 1180px) {
  .site-header {
    gap: 12px;
    padding-left: 18px;
    padding-right: 18px;
  }

  .site-nav {
    gap: 2px;
  }

  .site-nav a {
    padding-left: 8px;
    padding-right: 8px;
    font-size: 0.9rem;
  }
}

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

  .site-nav {
    justify-self: end;
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-section,
  .contact-content,
  .split,
  .detail-grid,
  .price-grid,
  .material-table,
  .section.proof-strip,
  .visual-proof,
  .visual-proof-grid,
  .photo-brief-grid,
  .container-size-grid,
  .price-calculator,
  .why-grid,
  .prep-list,
  .owner-preview,
  .scenario-list,
  .content-blocks,
  .seo-panel ul,
  .area-layout {
    grid-template-columns: 1fr;
  }

  .contact-media {
    min-height: 320px;
  }

  .contact-content {
    padding: 32px;
  }

  .calculator-result {
    position: static;
  }
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 66px;
    padding: 10px 18px;
  }

  .brand {
    min-width: 0;
  }

  .nav-toggle {
    display: grid;
    place-items: center;
  }

  .site-nav {
    position: absolute;
    top: 66px;
    left: 12px;
    right: 12px;
    display: none;
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    color: var(--white);
    background: rgba(11, 15, 13, 0.98);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    min-height: 44px;
  }

  .header-call {
    display: none;
  }
}

@media (max-width: 780px) {
  body {
    padding-bottom: 68px;
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: 720px;
  }

  .hero-bg {
    background:
      linear-gradient(0deg, rgba(24, 33, 29, 0.94), rgba(24, 33, 29, 0.58) 58%, rgba(24, 33, 29, 0.34)),
      url("assets/hero-truck.webp") center / cover;
  }

  .hero-inner {
    width: min(100% - 32px, 620px);
    padding-top: 92px;
  }

  .hero h1 {
    font-size: clamp(2.45rem, 10.2vw, 3.05rem);
    overflow-wrap: break-word;
    white-space: normal;
  }

  .hero-actions {
    display: grid;
    margin-top: 28px;
  }

  .hero-command {
    grid-template-columns: auto minmax(0, 1fr);
    padding: 12px;
  }

  .hero-command i {
    width: 28px;
    height: 28px;
  }

  .hero-command strong {
    font-size: 0.94rem;
  }

  .hero-command span {
    font-size: 0.82rem;
  }

  .hero-facts,
  .service-grid,
  .info-grid,
  .calculator-options,
  .calculator-options.compact,
  .calculator-row,
  .rules-grid,
  .local-grid,
  .trust-grid,
  .why-grid,
  .guide-grid,
  .size-table,
  .waste-grid,
  .steps,
  .audience-grid,
  .lists,
  .form-row,
  .area-tags,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .hero-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 28px;
  }

  .hero-facts div {
    min-height: 106px;
    padding: 14px 10px;
  }

  .hero-facts dt {
    font-size: 0.68rem;
  }

  .hero-facts dd {
    font-size: 0.82rem;
    line-height: 1.28;
  }

  .service-card,
  .steps article,
  .audience-grid article {
    min-height: auto;
  }

  .quick-contact-inner {
    grid-template-columns: 1fr;
    justify-items: stretch;
    justify-content: flex-start;
    padding: 12px 0;
    text-align: left;
  }

  .quick-contact-inner > * {
    justify-content: flex-start;
  }

  .section {
    padding: 58px 0;
  }

  .operation-flow,
  .container-visual,
  .visual-proof-copy,
  .calculator-panel,
  .calculator-result {
    padding: 28px 18px;
  }

  .visual-proof-card.image-card {
    grid-template-rows: auto auto;
  }

  .visual-proof-card img {
    aspect-ratio: 1.2 / 1;
  }

  .container-size-grid article {
    min-height: auto;
  }

  .size-help {
    display: grid;
  }

  .section-head h2,
  .split-content h2,
  .contact-copy h2,
  .subpage-hero h1 {
    font-size: clamp(1.8rem, 8vw, 2.55rem);
  }

  .subpage-hero {
    padding-top: 42px;
  }

  .subpage-hero::after {
    right: -120px;
    width: min(96vw, 520px);
    opacity: 0.26;
    transform: skewX(-5deg) translateX(18%);
    background-position: 58% 64%;
  }

  .split-image img {
    aspect-ratio: 1.12 / 1;
  }

  .contact-section {
    width: 100%;
    margin-bottom: 58px;
    border-radius: 0;
  }

  .contact-content {
    padding: 26px 18px;
  }

  .inquiry-form {
    padding: 18px;
  }

  .site-footer div:last-child {
    justify-items: start;
  }

  .cta-band {
    display: grid;
    margin-bottom: 58px;
  }

  .mobile-cta {
    position: fixed;
    z-index: 30;
    left: 0;
    right: 0;
    bottom: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 8px;
    gap: 8px;
    background: rgba(11, 15, 13, 0.96);
    border-top: 1px solid rgba(255, 106, 0, 0.26);
    box-shadow: 0 -14px 34px rgba(0, 0, 0, 0.26);
    backdrop-filter: blur(12px);
  }

  .mobile-cta a {
    min-height: 50px;
    border-radius: 8px;
    color: var(--ink);
    background: var(--safety);
    font-weight: 900;
  }

  .mobile-cta a:last-child {
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.1);
  }

  .mobile-cta a:active {
    transform: translateY(1px);
  }

  .cookie-banner {
    left: 10px;
    right: 10px;
    bottom: 84px;
    grid-template-columns: 1fr;
    width: auto;
    gap: 8px;
    max-height: calc(100dvh - 118px);
    overflow: auto;
    padding: 11px;
  }

  .cookie-banner strong {
    font-size: 0.95rem;
  }

  .cookie-banner p {
    margin-bottom: 6px;
    font-size: 0.86rem;
  }

  .cookie-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .cookie-actions .btn {
    min-height: 44px;
    padding: 0 10px;
    font-size: 0.86rem;
  }
}

@media (max-width: 390px) {
  .brand strong {
    font-size: 0.92rem;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .hero {
    min-height: 720px;
  }
}
