/* ─────────────────────────────────────────────────────────────
   Eco Infra Waste Management — brand tokens & shared styles
   Brand palette per official Brand Guidelines:
     Navy #05264D · Green #45A63A · Gold #E5B24A · Charcoal #4A4A4A
   ───────────────────────────────────────────────────────────── */
:root {
  --navy: #05264D;
  --navy-deep: #041D3D;
  --navy-soft: #0E3160;
  --green: #3DBB63;
  --green-hover: #34A356;
  --green-soft: #E8F9EE;
  --lime: #B7F26B;
  --gold: #E5B24A;
  --gold-soft: #FAEFD3;
  --charcoal: #4A4A4A;
  --charcoal-soft: #6B6B6B;
  --bg-soft: #F7F7F5;
  --bg-cream: #FAFAF8;
  --white: #FFFFFF;
  --text: #1F2937;
  --muted: #6B7280;
  --border: rgba(5, 38, 77, .10);
  --shadow-sm: 0 2px 8px rgba(5, 38, 77, .06);
  --shadow-md: 0 10px 30px rgba(5, 38, 77, .10);
  --shadow-lg: 0 24px 60px rgba(5, 38, 77, .18);
  --radius: 20px;
  --radius-sm: 12px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6, .display {
  font-family: 'Montserrat', 'Poppins', sans-serif;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.12;
  margin: 0;
  color: var(--navy);
}

p { margin: 0; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 640px) {
  .container { padding: 0 20px; }
}

.eyebrow {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green);
  background: var(--green-soft);
  padding: 6px 14px;
  border-radius: 999px;
}

.section-title {
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.1;
  margin-top: 14px;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: -0.015em;
}
.section-title .accent { color: var(--green); }
.section-title .gold { color: var(--gold); }

.section-sub {
  font-size: 17px;
  color: var(--charcoal-soft);
  margin-top: 14px;
  max-width: 720px;
}

/* Utility helpers (replace inline styles) */
.icon-sprite { position: absolute; width: 0; height: 0; }
.icon-inline { width: 16px; height: 16px; fill: currentColor; }
.label-hint { text-transform: none; color: var(--muted); font-weight: 500; }
.form-error {
  background: #FEF2F2;
  color: #991B1B;
  border-left-color: #DC2626 !important;
}
.footer-tagline {
  margin-top: 14px;
  color: var(--gold);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;
}

/* Accessibility */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: absolute;
  top: -40px;
  left: 8px;
  background: var(--navy);
  color: var(--white);
  padding: 10px 16px;
  z-index: 1000;
  border-radius: 6px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
}
.skip-link:focus { top: 8px; }

/* ─────────────────────────────────────────────────────────────
   BUTTONS
   ───────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 14px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  border: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,.15); }
.btn:active { transform: translateY(-1px); }

.btn-primary {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 12px 32px rgba(69, 166, 58, .35);
}
.btn-primary:hover { background: var(--green-hover); box-shadow: 0 18px 42px rgba(69, 166, 58, .5); }

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover { background: var(--navy); color: var(--white); border-color: var(--navy); box-shadow: 0 8px 20px rgba(5, 38, 77, .25); }

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, .6);
}
.btn-outline-light:hover { background: var(--white); color: var(--navy); border-color: var(--white); box-shadow: 0 8px 20px rgba(0,0,0,.2); }

.btn-gold {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 10px 26px rgba(229, 178, 74, .3);
}
.btn-gold:hover { background: #d59a32; box-shadow: 0 14px 32px rgba(229, 178, 74, .45); }

.btn-sm { padding: 12px 20px; font-size: 13px; }
.btn-lg { padding: 18px 32px; font-size: 16px; }

/* ─────────────────────────────────────────────────────────────
   NAVIGATION
   ───────────────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 24px;
}
.nav-logo {
  flex: 0 1 auto;
  min-width: 0;
}
.nav-logo img {
  width: clamp(230px, 18vw, 310px);
  max-width: 56vw;
  height: auto;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-menu a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--navy);
  letter-spacing: 0.02em;
  position: relative;
  padding: 6px 0;
  transition: color .2s ease;
}
.nav-menu a:hover { color: var(--green); }
.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--green);
  transition: width .25s ease;
}
.nav-menu a:hover::after { width: 100%; }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--navy);
  font-size: 14px;
}
.nav-phone svg { width: 16px; height: 16px; fill: var(--green); }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  background: var(--green-soft);
  border-radius: 10px;
  align-items: center;
  justify-content: center;
}
.nav-toggle svg { width: 22px; height: 22px; fill: var(--navy); }

@media (max-width: 980px) {
  .nav-menu, .nav-cta .btn { display: none; }
  .nav-toggle { display: inline-flex; }
}
@media (max-width: 720px) {
  .nav {
    gap: 14px;
    padding: 10px 0;
  }
  .nav-phone { display: none; }
  .nav-logo img {
    width: min(240px, 62vw);
    max-width: 100%;
  }
}

.mobile-menu {
  display: none;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 16px 0 24px;
}
.mobile-menu.open { display: block; }
.mobile-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mobile-menu a {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  padding: 14px 0;
  color: var(--navy);
  border-bottom: 1px solid var(--border);
}
.mobile-menu .btn { width: 100%; justify-content: center; margin-top: 16px; }

/* ─────────────────────────────────────────────────────────────
   HERO — split layout: copy + form on left, truck + city on right
   ───────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  background: var(--navy);
  color: var(--white);
  overflow: hidden;
  padding: 0;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 30%, rgba(69, 166, 58, .18), transparent 55%),
    linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
  z-index: 0;
}
.hero-bg::after {
  /* City silhouette placeholder — will be replaced by /assets/hero-city-bg.webp */
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 220px;
  background:
    url('/assets/hero-city-bg.webp') center bottom / cover no-repeat,
    linear-gradient(180deg, transparent 0%, rgba(0,0,0,.25) 100%);
  opacity: .55;
}
.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
  padding-top: 88px;
  padding-bottom: 88px;
}
.hero h1 {
  font-size: 60px;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: 0;
}
.hero h1 .accent { color: var(--green); }
.hero h1 .gold { color: var(--gold); }
.hero-lead {
  font-size: 18px;
  color: rgba(255, 255, 255, .85);
  margin-top: 26px;
  max-width: 580px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.hero-trust .chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .14);
  color: var(--white);
  padding: 8px 14px;
  border-radius: 999px;
}
.hero-trust .chip svg { width: 14px; height: 14px; fill: var(--green); }

.hero-right {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.hero-truck-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero-truck-wrap img {
  width: 100%;
  max-width: 560px;
  height: auto;
  filter: drop-shadow(0 6px 16px rgba(0,0,0,.35));
}

/* Hero quote form card */
.hero-form {
  background: var(--white);
  color: var(--text);
  border-radius: var(--radius);
  padding: 28px 26px;
  box-shadow: var(--shadow-lg);
  border-top: 4px solid var(--green);
  width: 100%;
  max-width: 540px;
  margin: 0 auto;
}
.hero-form h2 {
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}
.hero-form .form-sub {
  font-size: 13px;
  color: var(--muted);
  margin-top: 6px;
  margin-bottom: 18px;
}

/* ─────────────────────────────────────────────────────────────
   FORM
   ───────────────────────────────────────────────────────────── */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.field,
.field input,
.field select,
.field textarea {
  min-width: 0;
}
.form-grid .full { grid-column: 1 / -1; }
.field {
  display: flex;
  flex-direction: column;
}
.field label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--navy);
  margin-bottom: 6px;
}
.field input,
.field select,
.field textarea {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  background: var(--white);
  color: var(--text);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(69, 166, 58, .15);
}
.field textarea { min-height: 88px; resize: vertical; }
.field.hp { position: absolute; left: -9999px; height: 0; overflow: hidden; }

.form-submit { margin-top: 14px; width: 100%; justify-content: center; }
.form-tiny {
  font-size: 12px;
  color: var(--muted);
  margin-top: 12px;
  text-align: center;
}
.form-success {
  display: none;
  background: var(--green-soft);
  color: var(--green-hover);
  padding: 14px 16px;
  border-radius: 12px;
  font-weight: 600;
  margin-bottom: 16px;
  border-left: 4px solid var(--green);
}
.form-success.show { display: block; }

@media (max-width: 980px) {
  .hero .container { grid-template-columns: 1fr; gap: 36px; padding-top: 48px; padding-bottom: 48px; }
  .hero-copy {
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
  }
  .hero h1 {
    font-size: 46px;
  }
  .hero-lead {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-actions,
  .hero-trust {
    justify-content: center;
  }
  .hero-right {
    align-items: center;
  }
  .hero-truck-wrap,
  .hero-truck-wrap img {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-truck-wrap img {
    max-width: 520px;
  }
}

@media (max-width: 640px) {
  .btn {
    max-width: 100%;
    white-space: normal;
    text-align: center;
  }
  .btn-lg {
    padding: 15px 20px;
    font-size: 14px;
  }
  .hero .container {
    gap: 28px;
    padding-top: 34px;
    padding-bottom: 42px;
  }
  .hero h1 {
    font-size: 32px;
    line-height: 1.12;
    max-width: 350px;
    margin-left: auto;
    margin-right: auto;
  }
  .hero h1 .accent {
    display: block;
  }
  .hero-lead {
    font-size: 15.5px;
    line-height: 1.65;
    margin-top: 18px;
  }
  .hero-actions {
    width: 100%;
    margin-top: 22px;
  }
  .hero-actions .btn {
    width: min(100%, 330px);
  }
  .hero-trust {
    margin-top: 22px;
  }
  .hero-trust .chip {
    justify-content: center;
  }
  .hero-truck-wrap img {
    max-width: min(100%, 390px);
  }
  .hero-form {
    padding: 22px 18px;
    border-radius: 16px;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .form-submit {
    width: 100%;
  }
}

/* ─────────────────────────────────────────────────────────────
   SECTION SPACING
   ───────────────────────────────────────────────────────────── */
.section {
  padding: 100px 0;
  position: relative;
}
.section-light { background: var(--bg-soft); }
.section-cream { background: var(--bg-cream); }
.section-dark { background: var(--navy); color: var(--white); }
.section-dark .section-title { color: var(--white); }
.section-dark .section-sub { color: rgba(255,255,255,.75); }
.section-dark .eyebrow { background: rgba(255,255,255,.08); color: var(--gold); }

.section-head {
  position: relative;
  text-align: center;
  margin-bottom: 56px;
}
.section-head::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -24px;
  width: 130px;
  height: 5px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: radial-gradient(circle, rgba(69,166,58,.92) 0%, rgba(69,166,58,0) 65%);
  opacity: .55;
}
.section-head .section-sub { margin: 14px auto 0; }

@media (max-width: 640px) {
  .section { padding: 56px 0; }
  .section-head { margin-bottom: 36px; }
  .section-title {
    font-size: 28px;
    line-height: 1.15;
    overflow-wrap: break-word;
  }
  .section-sub {
    max-width: 100%;
    font-size: 15.5px;
  }
}

/* Patterned section divider — more interesting than a plain wave */
.divider-wave {
  position: relative;
  display: block;
  width: 100%;
  height: 100px;
  margin: -1px 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 45%, rgba(69, 166, 58, .12) 0%, transparent 20%),
    radial-gradient(circle at 78% 40%, rgba(69, 166, 58, .12) 0%, transparent 22%),
    linear-gradient(180deg, #FFFFFF 0%, #F7F7F5 20%, #F7F7F5 60%, #FFFFFF 100%),
    repeating-linear-gradient(135deg, transparent 0px, transparent 12px, rgba(69, 166, 58, .04) 12px, rgba(69, 166, 58, .04) 24px);
  clip-path:
    polygon(
      0 24%, 8% 20%, 14% 24%, 22% 18%, 30% 24%, 38% 20%, 46% 24%, 54% 18%, 62% 24%, 70% 20%, 78% 24%, 86% 18%, 94% 24%, 100% 22%,
      100% 100%, 0 100%
    );
}

/* ─────────────────────────────────────────────────────────────
   SERVICES GRID (8 cards, 4-col desktop / 2-col tablet / 1-col mobile)
   ───────────────────────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
@media (max-width: 1100px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .services-grid { grid-template-columns: 1fr; } }

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform .3s cubic-bezier(.16,.1,.3,1), box-shadow .3s ease, border-color .25s ease;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.service-card::before {
  content: '';
  position: absolute;
  top: -18px;
  left: -20px;
  width: 160px;
  height: 160px;
  background: url('/assets/favicon.png') center center / 140px auto no-repeat;
  opacity: .08;
  pointer-events: none;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(5, 38, 77, .15);
  border-color: var(--green);
}
.service-card.is-active {
  border-color: var(--green);
  box-shadow: 0 18px 38px rgba(69, 166, 58, .18);
}
.service-card.has-photo {
  padding: 0;
}
.service-card .photo {
  display: block;
  aspect-ratio: 4 / 3;
  width: 100%;
  object-fit: cover;
  background: var(--bg-soft);
  position: relative;
  overflow: hidden;
}
.service-card.has-photo .photo::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, rgba(255,255,255,.95) 0%, rgba(255,255,255,0) 100%);
  pointer-events: none;
}
.service-card.has-photo .body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
  position: relative;
  overflow: hidden;
}
.service-card.has-photo .body::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('/assets/eco-infra-logo.png') center center / 150px auto no-repeat;
  opacity: .06;
  pointer-events: none;
}
.service-card.has-photo .body::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, rgba(255,255,255,.95) 0%, rgba(255,255,255,0) 100%);
  pointer-events: none;
}

/* Branded gradient "photo" panel — used on service cards without a real photo
 * so all 8 cards share the same image-on-top layout. The art varies per card
 * via the data-art attribute (palette + diagonal pattern shift). */
.service-card .photo-art {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4 / 3;
  width: 100%;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,.12) 0%, transparent 55%),
    radial-gradient(circle at 80% 85%, rgba(229,178,74,.18) 0%, transparent 60%),
    linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 60%, #1a4a85 110%);
}
.service-card .photo-art::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(0deg, rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.service-card .photo-art::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(5,38,77,.55) 100%);
  pointer-events: none;
}
.service-card .photo-art svg {
  width: 96px;
  height: 96px;
  stroke: var(--white);
  fill: none;
  stroke-width: 1.4;
  position: relative;
  z-index: 1;
  opacity: .92;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,.25));
}
.service-card .photo-art[data-art="green"] {
  background:
    radial-gradient(circle at 25% 25%, rgba(255,255,255,.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 75%, rgba(229,178,74,.2) 0%, transparent 55%),
    linear-gradient(135deg, #2c7a26 0%, var(--green) 60%, #6dc35e 110%);
}
.service-card .photo-art[data-art="navy-green"] {
  background:
    radial-gradient(circle at 80% 25%, rgba(229,178,74,.18) 0%, transparent 55%),
    linear-gradient(135deg, var(--navy) 0%, #1d5a4a 60%, var(--green) 130%);
}
.service-card .photo-art[data-art="gold"] {
  background:
    radial-gradient(circle at 20% 25%, rgba(255,255,255,.18) 0%, transparent 55%),
    linear-gradient(135deg, var(--navy-deep) 0%, #4a3a1a 50%, var(--gold) 130%);
}
.service-card .photo-art[data-art="green-soft"] {
  background:
    radial-gradient(circle at 25% 25%, rgba(255,255,255,.2) 0%, transparent 55%),
    radial-gradient(circle at 80% 80%, rgba(69,166,58,.4) 0%, transparent 60%),
    linear-gradient(135deg, #3a8e31 0%, #6dc35e 70%, #a3e09a 130%);
}
.service-card .photo-art[data-art="navy-deep"] {
  background:
    radial-gradient(circle at 30% 30%, rgba(229,178,74,.22) 0%, transparent 55%),
    linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 60%, var(--navy-soft) 130%);
}
.service-card .body { display: flex; flex-direction: column; flex: 1; }

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--green-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.service-icon svg { width: 30px; height: 30px; stroke: var(--green); fill: none; stroke-width: 1.8; }

.service-card h3 {
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.005em;
}
.service-card p {
  margin-top: 10px;
  font-size: 14.5px;
  color: var(--charcoal-soft);
  line-height: 1.6;
  flex: 1;
}
.service-card .read-more {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--green);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.service-card .read-more svg { width: 14px; height: 14px; transition: transform .2s ease; }
.service-card:hover .read-more svg { transform: translateX(4px); }

/* Service detail expand panel */
.service-detail {
  margin-top: 32px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height .45s ease, opacity .35s ease;
}
.service-detail.open {
  max-height: 2000px;
  opacity: 1;
}
.service-detail-inner {
  padding: 36px 36px 40px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 36px;
}
@media (max-width: 820px) {
  .service-detail-inner { grid-template-columns: 1fr; padding: 28px 22px; gap: 22px; }
}
.service-detail h3 {
  font-size: clamp(22px, 2.6vw, 30px);
  text-transform: uppercase;
}
.service-detail .tag {
  display: inline-block;
  background: var(--gold-soft);
  color: var(--navy);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.service-detail .lead {
  color: var(--charcoal-soft);
  font-size: 15px;
  margin-top: 14px;
  line-height: 1.7;
}
.service-detail ul {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 22px;
}
@media (max-width: 540px) { .service-detail ul { grid-template-columns: 1fr; } }
.service-detail ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text);
}
.service-detail ul li::before {
  content: '';
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  border-radius: 50%;
  background: var(--green) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white'%3E%3Cpath d='M6.5 11.5L3 8l1-1 2.5 2.5L12 4l1 1z'/%3E%3C/svg%3E") center/12px no-repeat;
}
.service-detail .aside {
  background: var(--bg-soft);
  border-radius: var(--radius-sm);
  padding: 22px;
}
.service-detail .aside h4 {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 14px;
}
.service-detail .meta {
  list-style: none;
  padding: 0;
  margin: 0;
}
.service-detail .meta li {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13.5px;
}
.service-detail .meta li:last-child { border-bottom: none; }
.service-detail .meta .label { color: var(--muted); font-weight: 500; }
.service-detail .meta .value { color: var(--navy); font-weight: 700; }
.service-detail .actions {
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.service-detail .actions .btn { width: 100%; justify-content: center; }
.service-detail .close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.service-detail .close-btn svg { width: 16px; height: 16px; stroke: var(--navy); stroke-width: 2.5; fill: none; }

/* ─────────────────────────────────────────────────────────────
   INDUSTRIES GRID (8 cards, 4-col)
   ───────────────────────────────────────────────────────────── */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 1100px) { .industries-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .industries-grid { grid-template-columns: 1fr; } }

.industry-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 26px 22px;
  border: 1px solid var(--border);
  text-align: left;
  transition: transform .3s cubic-bezier(.16,.1,.3,1), box-shadow .3s ease, border-color .25s ease;
}
.industry-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(5, 38, 77, .12);
  border-color: var(--green);
}
.industry-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--bg-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.industry-icon svg { width: 32px; height: 32px; stroke: var(--green); fill: none; stroke-width: 1.6; }
.industry-card h3 {
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.005em;
}
.industry-card p {
  margin-top: 8px;
  font-size: 14px;
  color: var(--charcoal-soft);
  line-height: 1.55;
}

/* ─────────────────────────────────────────────────────────────
   WHY US (6 features, 3-col)
   ───────────────────────────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 980px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .why-grid { grid-template-columns: 1fr; } }

.why-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 26px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: transform .3s cubic-bezier(.16,.1,.3,1), box-shadow .3s ease;
}
.why-card:hover { transform: translateY(-6px); box-shadow: 0 16px 36px rgba(5, 38, 77, .12); }
.why-num {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 38px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 12px;
}
.why-card h3 {
  font-size: 17px;
  text-transform: uppercase;
  letter-spacing: 0.005em;
}
.why-card > p {
  margin-top: 10px;
  font-size: 14.5px;
  color: var(--charcoal-soft);
}
.why-ticks {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
}
.why-ticks li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  padding: 5px 0;
  color: var(--text);
}
.why-ticks li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
}

/* ─────────────────────────────────────────────────────────────
   WASTE TYPES GRID (8 cards, 4-col)
   ───────────────────────────────────────────────────────────── */
.waste-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 1100px) { .waste-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .waste-grid { grid-template-columns: 1fr; } }

.waste-card {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 22px;
  border: 1px solid var(--border);
  text-align: left;
  transition: transform .3s cubic-bezier(.16,.1,.3,1), border-color .2s ease, box-shadow .3s ease;
}
.waste-card:hover { transform: translateY(-4px); border-color: var(--green); box-shadow: 0 10px 24px rgba(5, 38, 77, .08); }
.waste-card .waste-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--green-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.waste-card .waste-icon svg { width: 24px; height: 24px; stroke: var(--green); fill: none; stroke-width: 1.6; }
.waste-card h3 { font-size: 15px; text-transform: uppercase; }
.waste-card p { margin-top: 8px; font-size: 13.5px; color: var(--charcoal-soft); line-height: 1.55; }

/* ─────────────────────────────────────────────────────────────
   PROCESS (4 steps)
   ───────────────────────────────────────────────────────────── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
@media (max-width: 980px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .process-grid { grid-template-columns: 1fr; } }

.process-step {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 26px;
  text-align: left;
  border: 1px solid var(--border);
  position: relative;
  transition: transform .3s cubic-bezier(.16,.1,.3,1), box-shadow .3s ease;
}
.process-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(5, 38, 77, .1);
}
.process-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 18px;
  margin-bottom: 18px;
  box-shadow: 0 6px 14px rgba(5, 38, 77, .25);
}
.process-step h3 {
  font-size: 16px;
  text-transform: uppercase;
}
.process-step p {
  margin-top: 10px;
  font-size: 14px;
  color: var(--charcoal-soft);
}

/* ─────────────────────────────────────────────────────────────
   LOCAL SEO BLOCK
   ───────────────────────────────────────────────────────────── */
.local-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
#local {
  position: relative;
  overflow: hidden;
}
@media (max-width: 980px) { .local-grid { grid-template-columns: 1fr; gap: 32px; } }
.local-suburbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.section-map {
  position: relative;
  overflow: hidden;
  background: var(--bg-soft);
}
.section-map::before {
  content: none;
}
.section-map .container {
  position: relative;
  z-index: 1;
}

.local-suburbs .pill {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 13px;
  background: var(--green-soft);
  color: var(--green-hover);
  padding: 8px 14px;
  border-radius: 999px;
}
.local-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 28px;
}
@media (max-width: 640px) {
  .local-suburbs {
    justify-content: center;
  }
  .local-stats {
    grid-template-columns: 1fr;
  }
}
.local-stat {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 22px 20px;
  text-align: center;
}
.local-stat strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
}
.local-stat span {
  display: block;
  margin-top: 6px;
  font-size: 12.5px;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.local-stat-detail strong {
  font-size: 17px;
  line-height: 1.3;
  letter-spacing: -0.01em;
}
.local-stat-detail p {
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--charcoal-soft);
  font-weight: 400;
  text-transform: none;
  letter-spacing: normal;
}

.coverage-cards-wrap {
  margin-top: 48px;
}
.coverage-stats {
  margin-top: 0;
}
.coverage-regions {
  margin-top: 20px;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 980px) {
  .coverage-regions { grid-template-columns: 1fr; }
}
@media (min-width: 641px) and (max-width: 980px) {
  .coverage-stats { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 981px) {
  .coverage-stats { grid-template-columns: repeat(4, 1fr); }
}

/* ─────────────────────────────────────────────────────────────
   SERVICE AREA MAP
   ───────────────────────────────────────────────────────────── */
.section-map {
  background: var(--white);
}
.map-container {
  margin: 0 -32px;
  padding: 0;
  overflow: hidden;
}
.map-iframe {
  width: 100%;
  height: 560px;
  border: none;
  display: block;
  border-radius: 24px;
  overflow: hidden;
}
@media (max-width: 980px) {
  .map-iframe { height: 460px; }
}
@media (max-width: 640px) {
  .map-iframe { height: 360px; }
  .map-container { margin: 0; }
}

.map-info {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 980px) { .map-info { grid-template-columns: 1fr; gap: 24px; } }

.map-info-col h3 {
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.005em;
  margin-bottom: 12px;
}
.map-info-col p {
  font-size: 14.5px;
  color: var(--charcoal-soft);
  line-height: 1.65;
}

/* ─────────────────────────────────────────────────────────────
   FAQ ACCORDION
   ───────────────────────────────────────────────────────────── */
.faq-list {
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: border-color .2s ease, box-shadow .3s ease;
}
.faq-item.open { border-color: var(--green); box-shadow: 0 8px 20px rgba(5, 38, 77, .1); }
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 24px;
  text-align: left;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 15.5px;
  color: var(--navy);
  background: transparent;
  cursor: pointer;
  list-style: none;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q .plus {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green);
  font-size: 18px;
  font-weight: 800;
  transition: transform .25s ease, background .2s ease;
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-item.open .plus { transform: rotate(45deg); background: var(--green); color: var(--white); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.faq-item.open .faq-a { max-height: 400px; }
.faq-a-inner {
  padding: 0 24px 22px;
  font-size: 14.5px;
  color: var(--charcoal-soft);
  line-height: 1.65;
}

@media (max-width: 640px) {
  .service-card .body,
  .industry-card,
  .why-card,
  .waste-card,
  .process-step,
  .faq-item,
  .faq-q,
  .faq-a-inner {
    text-align: center;
  }

  .service-detail,
  .service-detail .aside,
  .service-detail .aside h4,
  .service-detail .aside .meta,
  .service-detail .aside .actions,
  .service-detail .lead,
  .service-detail ul,
  .service-detail ul li {
    text-align: left;
  }

  .service-card .body {
    align-items: center;
  }

  .service-card .read-more,
  .service-detail .actions .btn {
    justify-content: center;
  }

  .industry-icon,
  .waste-card .waste-icon,
  .process-num {
    margin-left: auto;
    margin-right: auto;
  }

  .why-ticks {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    margin-left: auto;
    margin-right: auto;
  }

  .service-detail .tag {
    margin-left: auto;
    margin-right: auto;
  }

  .service-detail ul li {
    justify-content: center;
    text-align: left;
  }

  .service-detail .meta li {
    text-align: left;
  }

  .faq-q {
    justify-content: center;
    gap: 12px;
    padding: 18px 18px;
  }

  .faq-q .plus {
    margin-left: 0;
  }

  .faq-a-inner {
    padding: 0 20px 22px;
  }
}

/* ─────────────────────────────────────────────────────────────
   FINAL CTA BAND
   ───────────────────────────────────────────────────────────── */
.cta-band {
  background:
    radial-gradient(circle at 90% 50%, rgba(69, 166, 58, .25), transparent 50%),
    linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--white);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band h2 {
  color: var(--white);
  font-size: clamp(28px, 3.6vw, 44px);
  text-transform: uppercase;
}
.cta-band h2 .accent { color: var(--green); }
.cta-band p {
  font-size: 17px;
  color: rgba(255, 255, 255, .82);
  margin: 18px auto 0;
  max-width: 640px;
}
.cta-band .actions {
  margin-top: 32px;
  display: inline-flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

/* ─────────────────────────────────────────────────────────────
   FLOATING QUOTE CTA (mobile)
   ───────────────────────────────────────────────────────────── */
.quote-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 90;
  width: 64px;
  height: 64px;
  padding: 0;
  border-radius: 50%;
  background: var(--green);
  border: 2px solid var(--white);
  box-shadow: 0 10px 28px rgba(69, 166, 58, .22);
  display: none;
  align-items: center;
  justify-content: center;
  text-transform: none;
  transition: transform .2s ease, box-shadow .2s ease;
}
.quote-float.is-visible { display: inline-flex; }
.quote-float:hover { transform: translateY(-3px) scale(1.04); box-shadow: 0 14px 34px rgba(69, 166, 58, .32); }
.quote-float svg { width: 26px; height: 26px; fill: var(--white); stroke: none; }
.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;
}

/* ─────────────────────────────────────────────────────────────
   FOOTER
   ───────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, .8);
  padding: 64px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}
@media (max-width: 980px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.footer-brand img {
  width: 180px;
  max-width: 100%;
  margin: 0 auto 18px;
  display: block;
  filter: brightness(0) invert(1);
}
.footer-brand p { font-size: 14px; line-height: 1.65; color: rgba(255, 255, 255, .65); }

.footer-col h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { padding: 5px 0; }
.footer-col a {
  font-size: 14px;
  color: rgba(255, 255, 255, .72);
  transition: color .2s ease;
}
.footer-col a:hover { color: var(--green); }

.footer-legal {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 42px;
}
.footer-legal-card {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color .2s ease, background .2s ease;
}
.footer-legal-card[open] {
  background: rgba(255, 255, 255, .09);
  border-color: rgba(69, 166, 58, .45);
}
.footer-legal-card summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  cursor: pointer;
  list-style: none;
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.footer-legal-card summary::-webkit-details-marker { display: none; }
.footer-legal-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(69, 166, 58, .18);
  color: var(--green);
  font-size: 18px;
  line-height: 1;
  transition: transform .2s ease, background .2s ease, color .2s ease;
  flex-shrink: 0;
}
.footer-legal-card[open] .footer-legal-icon {
  transform: rotate(45deg);
  background: var(--green);
  color: var(--white);
}
.footer-legal-body {
  padding: 0 18px 18px;
  color: rgba(255, 255, 255, .66);
  font-size: 13px;
  line-height: 1.65;
}
.footer-legal-body p + p { margin-top: 10px; }
.footer-legal-body strong { color: rgba(255, 255, 255, .88); }
.footer-legal-body a {
  color: var(--gold);
  font-weight: 600;
}
.footer-legal-body a:hover { color: var(--white); }

@media (min-width: 721px) {
  .footer-legal-card[open] {
    align-self: start;
  }
  .footer-legal:has(.footer-legal-card[open]) {
    align-items: stretch;
  }
  .footer-legal:has(.footer-legal-card[open]) .footer-legal-card {
    display: flex;
    flex-direction: column;
  }
  .footer-legal:has(.footer-legal-card[open]) .footer-legal-body {
    flex: 1;
  }
}

@media (max-width: 720px) {
  .footer-legal {
    grid-template-columns: 1fr;
    margin-top: 32px;
  }
  .footer-legal-card summary {
    text-align: left;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
}

.footer-bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 13px;
  color: rgba(255, 255, 255, .55);
}

.siq-credit {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  width: fit-content;
  background: linear-gradient(135deg, rgba(108, 99, 255, .13) 0%, rgba(62, 207, 207, .07) 100%);
  border: 1px solid rgba(108, 99, 255, .2);
  border-radius: 100px;
  padding: 5px 12px 5px 7px;
  text-decoration: none;
  font-size: 11px;
  color: rgba(255, 255, 255, .55);
  white-space: nowrap;
  transition: background .2s, border-color .2s, color .2s, transform .2s;
}
.siq-credit:hover {
  background: linear-gradient(135deg, rgba(108, 99, 255, .22) 0%, rgba(62, 207, 207, .15) 100%);
  border-color: rgba(108, 99, 255, .4);
  color: rgba(255, 255, 255, .8);
  transform: translateY(-1px);
}
.siq-credit-icon {
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, #6C63FF 0%, #3ECFCF 100%);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.siq-credit strong { color: #a89fff; font-weight: 700; }

/* ─────────────────────────────────────────────────────────────
   REVEAL ANIMATION — elements visible by default, animate on scroll
   ───────────────────────────────────────────────────────────── */
.reveal {
  opacity: 1;
  transform: translateY(0);
}
html.js-ready .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s cubic-bezier(.16,.1,.3,1), transform .8s cubic-bezier(.16,.1,.3,1);
}
html.js-ready .reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }
.reveal[data-delay="5"] { transition-delay: .40s; }
.reveal[data-delay="6"] { transition-delay: .48s; }
.reveal[data-delay="7"] { transition-delay: .56s; }
.reveal[data-delay="8"] { transition-delay: .64s; }
@media (prefers-reduced-motion: reduce) {
  body.js-ready .reveal { opacity: 1; transform: none; transition: none; }
  .hero-truck-wrap img { opacity: 1; transform: none; transition: none; }
}
