:root {
  --green-950: #062d24;
  --green-900: #0a3b2f;
  --green-800: #115443;
  --green-700: #176c50;
  --green-500: #4aaa43;
  --green-300: #9edc83;
  --orange: #f2672f;
  --orange-soft: #ffb28f;
  --cream: #f5f2e9;
  --ink: #17231f;
  --muted: #68756f;
  --white: #fff;
  --line: rgba(6, 45, 36, .11);
  --shadow: 0 28px 80px rgba(6, 45, 36, .14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-rendering: optimizeLegibility;
}

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

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

.container {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.header {
  position: fixed;
  z-index: 50;
  top: 16px;
  left: 50%;
  display: flex;
  width: min(1220px, calc(100% - 32px));
  min-height: 76px;
  align-items: center;
  gap: 28px;
  padding: 10px 12px 10px 18px;
  transform: translateX(-50%);
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 20px;
  background: rgba(255, 255, 255, .93);
  box-shadow: 0 16px 50px rgba(6, 45, 36, .12);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  min-width: max-content;
  align-items: center;
  gap: 11px;
}

.brand-mark {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  overflow: hidden;
  border-radius: 14px;
  background: #fff;
}

.brand-mark img {
  width: 43px;
  height: 34px;
  object-fit: cover;
  object-position: top;
}

.brand > span:last-child {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand strong {
  color: var(--green-950);
  font-size: .93rem;
  letter-spacing: -.02em;
}

.brand small {
  color: var(--green-700);
  font-size: .62rem;
  font-weight: 850;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  margin-left: auto;
  align-items: center;
  gap: 27px;
}

.desktop-nav a {
  position: relative;
  padding: 8px 0;
  color: #53625d;
  font-size: .84rem;
  font-weight: 750;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--orange);
  content: "";
  transition: transform .18s ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 24px;
  border: 1px solid var(--orange);
  border-radius: 999px;
  background: var(--orange);
  color: #fff;
  font-size: .88rem;
  font-weight: 820;
  box-shadow: 0 12px 30px rgba(242, 103, 47, .2);
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  background: #dd5520;
  box-shadow: 0 16px 34px rgba(242, 103, 47, .28);
}

.button-small {
  min-height: 50px;
  padding-inline: 21px;
}

.mobile-menu {
  display: none;
  margin-left: auto;
}

.mobile-menu summary {
  display: grid;
  width: 46px;
  height: 46px;
  place-content: center;
  gap: 5px;
  border-radius: 14px;
  background: var(--green-950);
  cursor: pointer;
  list-style: none;
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.mobile-menu summary i {
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: #fff;
}

.mobile-menu nav {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  left: 0;
  display: grid;
  gap: 4px;
  padding: 14px;
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow);
}

.mobile-menu nav a {
  padding: 13px 14px;
  border-radius: 12px;
  color: var(--green-950);
  font-size: .88rem;
  font-weight: 750;
}

.mobile-menu nav a:hover {
  background: var(--cream);
}

.hero {
  position: relative;
  min-height: 850px;
  overflow: hidden;
  padding: 180px 0 115px;
  background:
    radial-gradient(circle at 10% 20%, rgba(74, 170, 67, .14), transparent 28%),
    linear-gradient(135deg, var(--green-950), var(--green-900) 56%, #0e4938);
  color: #fff;
}

.hero::after {
  position: absolute;
  right: -160px;
  bottom: -240px;
  width: 600px;
  height: 600px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 50%;
  box-shadow: 0 0 0 60px rgba(255, 255, 255, .025), 0 0 0 120px rgba(255, 255, 255, .018);
  content: "";
}

.wave {
  position: absolute;
  pointer-events: none;
}

.hero-wave {
  right: -80px;
  bottom: -150px;
  width: 760px;
  opacity: .08;
  filter: invert(1);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1.05fr) minmax(430px, .95fr);
  gap: 54px;
}

.eyebrow {
  display: flex;
  margin-bottom: 24px;
  align-items: center;
  gap: 10px;
  color: var(--green-300);
  font-size: .74rem;
  font-weight: 850;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 26px;
  height: 2px;
  border-radius: 2px;
  background: var(--orange);
}

.eyebrow.dark {
  color: var(--green-700);
}

.hero h1 {
  max-width: 720px;
  margin-bottom: 28px;
  font-size: clamp(3.5rem, 6vw, 5.9rem);
  font-weight: 760;
  letter-spacing: -.065em;
  line-height: .98;
}

.hero h1 em {
  color: var(--orange-soft);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

.lead {
  max-width: 650px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, .72);
  font-size: 1.05rem;
  line-height: 1.78;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

.text-link {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .38);
  font-size: .88rem;
  font-weight: 750;
}

.trust-row {
  display: flex;
  margin-top: 48px;
  gap: 22px;
}

.trust-row span {
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, .65);
  font-size: .75rem;
  font-weight: 740;
}

.trust-row span::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green-300);
  box-shadow: 0 0 0 4px rgba(158, 220, 131, .12);
  content: "";
}

.hero-visual {
  position: relative;
  min-height: 500px;
}

.fleet-card {
  position: absolute;
  inset: 44px 0 44px 28px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 38px 18px 78px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 46px;
  background: linear-gradient(rgba(255, 255, 255, .12), rgba(255, 255, 255, .035));
  box-shadow: 0 40px 90px rgba(0, 0, 0, .2);
  backdrop-filter: blur(12px);
}

.fleet-card::before {
  position: absolute;
  top: 66px;
  right: 44px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .06);
  content: "";
}

.fleet-card > small {
  position: absolute;
  top: 26px;
  left: 30px;
  color: rgba(255, 255, 255, .52);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.fleet-card img {
  position: relative;
  z-index: 2;
  width: 100%;
  filter: drop-shadow(0 28px 24px rgba(0, 0, 0, .34));
}

.fleet-card > i {
  position: absolute;
  right: -30px;
  bottom: 52px;
  left: -30px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .5), transparent);
}

.hours,
.system-card {
  position: absolute;
  z-index: 4;
  box-shadow: var(--shadow);
}

.hours {
  top: 8px;
  right: -20px;
  display: flex;
  width: 126px;
  height: 126px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: rotate(6deg);
  border-radius: 50%;
  background: var(--orange);
  text-align: center;
}

.hours strong {
  font-size: 1.45rem;
}

.hours small {
  width: 80px;
  margin-top: 2px;
  color: rgba(255, 255, 255, .8);
  font-size: .62rem;
}

.system-card {
  right: 18px;
  bottom: 10px;
  display: flex;
  min-width: 240px;
  align-items: center;
  gap: 13px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .96);
  color: var(--green-950);
}

.system-card > span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--green-500);
  box-shadow: 0 0 0 6px rgba(74, 170, 67, .15);
}

.system-card div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.system-card strong {
  font-size: .8rem;
}

.system-card small {
  color: var(--muted);
  font-size: .65rem;
}

.stats {
  position: relative;
  z-index: 4;
  margin-top: -58px;
}

.stats-grid {
  display: grid;
  overflow: hidden;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow);
}

.stats-grid div {
  display: flex;
  min-height: 132px;
  flex-direction: column;
  justify-content: center;
  padding: 24px 30px;
  border-right: 1px solid var(--line);
}

.stats-grid div:last-child {
  border-right: 0;
}

.stats-grid strong {
  margin-bottom: 7px;
  color: var(--green-950);
  font-size: 1.8rem;
  letter-spacing: -.04em;
}

.stats-grid span {
  color: var(--muted);
  font-size: .75rem;
}

.section {
  padding: 126px 0;
}

.heading {
  margin-bottom: 56px;
}

.heading h2,
.digital h2,
.legal h2,
.coverage h2,
.faq h2,
.contact h2 {
  margin-bottom: 0;
  color: var(--green-950);
  font-size: clamp(2.4rem, 4.4vw, 4.4rem);
  font-weight: 760;
  letter-spacing: -.055em;
  line-height: 1.06;
}

.split-heading {
  display: grid;
  align-items: end;
  grid-template-columns: 1.15fr .72fr;
  gap: 84px;
}

.split-heading > p,
.heading.centered > p,
.coverage-heading > p,
.faq-grid > div:first-child > p:last-child {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: .98rem;
  line-height: 1.75;
}

.about-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 24px;
}

.vision,
.mission {
  position: relative;
  min-height: 385px;
  overflow: hidden;
  padding: 44px;
  border-radius: 30px;
}

.vision {
  background: var(--orange);
  color: #fff;
}

.vision::after {
  position: absolute;
  right: -80px;
  bottom: -130px;
  width: 320px;
  height: 320px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 50%;
  box-shadow: 0 0 0 46px rgba(255, 255, 255, .06);
  content: "";
}

.mission {
  background: #fff;
  box-shadow: 0 20px 60px rgba(6, 45, 36, .08);
}

.vision > b,
.mission > b {
  display: block;
  margin-bottom: 70px;
  font-size: .7rem;
  letter-spacing: .18em;
}

.vision h3,
.mission h3 {
  position: relative;
  z-index: 2;
  max-width: 580px;
  margin-bottom: 20px;
  font-size: clamp(1.7rem, 2.7vw, 2.65rem);
  letter-spacing: -.045em;
  line-height: 1.12;
}

.vision p,
.mission p {
  position: relative;
  z-index: 2;
  max-width: 590px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, .78);
  font-size: .92rem;
  line-height: 1.7;
}

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

.check-row {
  display: flex;
  margin-top: 38px;
  flex-wrap: wrap;
  gap: 12px;
}

.check-row span {
  padding: 10px 13px;
  border-radius: 999px;
  background: #edf6e9;
  color: var(--green-800);
  font-size: .7rem;
  font-weight: 800;
}

.services,
.legal {
  background: #fff;
}

.heading.centered {
  max-width: 800px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.heading.centered .eyebrow {
  justify-content: center;
}

.heading.centered h2 {
  margin-bottom: 20px;
}

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

.service-grid article {
  position: relative;
  min-height: 315px;
  padding: 30px;
  border: 1px solid #e5e9e4;
  border-radius: 24px;
  background: #fff;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.service-grid article:hover {
  transform: translateY(-6px);
  border-color: rgba(74, 170, 67, .45);
  box-shadow: 0 24px 50px rgba(6, 45, 36, .1);
}

.service-grid article > b {
  color: var(--orange);
  font-size: .72rem;
  letter-spacing: .12em;
}

.service-grid article > i {
  position: absolute;
  top: 27px;
  right: 27px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: var(--cream);
  color: var(--green-900);
  font-style: normal;
}

.service-grid h3 {
  margin: 80px 0 15px;
  color: var(--green-950);
  font-size: 1.22rem;
}

.service-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: .84rem;
  line-height: 1.72;
}

.digital {
  position: relative;
  overflow: hidden;
  padding: 118px 0;
  background: var(--green-950);
  color: #fff;
}

.digital::before {
  position: absolute;
  top: -180px;
  left: 15%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(74, 170, 67, .08);
  content: "";
}

.digital-grid {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
  grid-template-columns: .95fr 1.05fr;
  gap: 80px;
}

.truck-stage {
  position: relative;
  display: grid;
  min-height: 500px;
  place-items: center;
}

.truck-stage::before {
  position: absolute;
  width: 390px;
  height: 390px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74, 170, 67, .2), rgba(74, 170, 67, .02) 65%, transparent 66%);
  content: "";
}

.truck-stage img {
  position: relative;
  z-index: 3;
  width: 86%;
  filter: drop-shadow(0 34px 34px rgba(0, 0, 0, .42));
}

.orbit {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 50%;
}

.orbit.one {
  width: 450px;
  height: 450px;
}

.orbit.two {
  width: 540px;
  height: 540px;
}

.digital h2 {
  margin-bottom: 26px;
  color: #fff;
}

.digital-grid > div:last-child > p:not(.eyebrow) {
  margin-bottom: 34px;
  color: rgba(255, 255, 255, .68);
  line-height: 1.75;
}

.digital ul {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
  list-style: none;
}

.digital li {
  display: flex;
  min-height: 66px;
  align-items: center;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 16px;
  background: rgba(255, 255, 255, .045);
  color: rgba(255, 255, 255, .83);
  font-size: .76rem;
  font-weight: 650;
}

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  border-radius: 28px;
  background: var(--line);
}

.workflow-grid article {
  min-height: 320px;
  padding: 34px 28px;
  background: var(--cream);
}

.workflow-grid article:first-child {
  border-radius: 28px 0 0 28px;
}

.workflow-grid article:last-child {
  border-radius: 0 28px 28px 0;
}

.workflow-grid article > b {
  display: grid;
  width: 46px;
  height: 46px;
  margin-bottom: 80px;
  place-items: center;
  border-radius: 50%;
  background: var(--green-950);
  color: #fff;
  font-size: .7rem;
}

.workflow-grid h3 {
  margin-bottom: 14px;
  color: var(--green-950);
  font-size: 1.15rem;
}

.workflow-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: .79rem;
  line-height: 1.65;
}

.advantages {
  padding-top: 10px;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 20px;
}

.feature-grid article {
  display: grid;
  overflow: hidden;
  min-height: 330px;
  grid-template-rows: 190px 1fr;
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(6, 45, 36, .07);
}

.feature-grid article > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-grid article > div {
  padding: 26px;
}

.feature-grid article > div > b {
  display: block;
  margin-bottom: 11px;
  color: var(--orange);
  font-size: .67rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.feature-grid h3 {
  margin-bottom: 11px;
  color: var(--green-950);
  font-size: 1.35rem;
}

.feature-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: .82rem;
  line-height: 1.65;
}

.feature-grid .feature-main {
  grid-row: span 2;
  grid-template-rows: 340px 1fr;
}

.feature-grid .feature-main > div {
  padding: 34px;
}

.feature-grid .feature-main h3 {
  font-size: 1.7rem;
}

.legal-grid {
  display: grid;
  align-items: center;
  grid-template-columns: .9fr 1.1fr;
  gap: 92px;
}

.document {
  text-align: center;
}

.document > img {
  width: 430px;
  height: 530px;
  margin-inline: auto;
  object-fit: cover;
  object-position: top;
  padding: 18px;
  transform: rotate(-2deg);
  border: 1px solid #e3e3de;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 36px 80px rgba(6, 45, 36, .15);
}

.document > small {
  display: block;
  margin-top: 28px;
  color: var(--muted);
}

.legal h2 {
  margin-bottom: 22px;
}

.legal-copy > p:not(.eyebrow) {
  margin-bottom: 35px;
  color: var(--muted);
  line-height: 1.75;
}

.legal-list > div {
  display: grid;
  padding: 20px 0;
  grid-template-columns: 44px 1fr;
  border-top: 1px solid var(--line);
}

.legal-list > div:last-child {
  border-bottom: 1px solid var(--line);
}

.legal-list b {
  color: var(--orange);
  font-size: .7rem;
}

.legal-list p {
  display: flex;
  margin-bottom: 0;
  flex-direction: column;
  gap: 5px;
  color: var(--muted);
  font-size: .8rem;
  line-height: 1.45;
}

.legal-list strong {
  color: var(--green-950);
  font-size: .92rem;
}

.coverage {
  position: relative;
  overflow: hidden;
  background: var(--green-900);
  color: #fff;
}

.coverage::after {
  position: absolute;
  right: -150px;
  bottom: -230px;
  width: 600px;
  height: 600px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 50%;
  box-shadow: 0 0 0 60px rgba(255, 255, 255, .02);
  content: "";
}

.coverage-heading {
  position: relative;
  z-index: 2;
  display: grid;
  margin-bottom: 56px;
  align-items: end;
  grid-template-columns: 1.1fr .7fr;
  gap: 90px;
}

.coverage h2 {
  color: #fff;
}

.coverage-heading > p {
  color: rgba(255, 255, 255, .62);
}

.region-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.region-grid span {
  display: flex;
  min-height: 56px;
  align-items: center;
  gap: 12px;
  padding: 12px 15px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 13px;
  background: rgba(255, 255, 255, .045);
  color: rgba(255, 255, 255, .85);
  font-size: .76rem;
  font-weight: 650;
}

.region-grid b {
  color: var(--green-300);
  font-size: .62rem;
}

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

.team-grid article {
  padding: 12px 12px 24px;
  border-radius: 24px;
  background: #fff;
  text-align: center;
}

.team-grid img {
  width: 100%;
  height: 270px;
  margin-bottom: 22px;
  object-fit: cover;
  object-position: top;
  border-radius: 18px;
  background: #e6ebe6;
  filter: saturate(.88);
  transition: transform .25s ease, filter .25s ease;
}

.team-grid article:hover img {
  transform: scale(1.02);
  filter: saturate(1);
}

.team-grid h3 {
  margin-bottom: 6px;
  color: var(--green-950);
  font-size: .95rem;
}

.team-grid p {
  margin-bottom: 0;
  color: var(--orange);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.faq {
  padding-top: 40px;
}

.faq-grid {
  display: grid;
  align-items: start;
  grid-template-columns: .78fr 1.22fr;
  gap: 90px;
}

.faq-grid > div:first-child {
  position: sticky;
  top: 130px;
}

.faq h2 {
  margin-bottom: 22px;
}

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

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

.faq-list summary {
  display: grid;
  min-height: 92px;
  align-items: center;
  grid-template-columns: 44px 1fr 30px;
  color: var(--green-950);
  cursor: pointer;
  font-size: 1rem;
  font-weight: 750;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary b {
  color: var(--orange);
  font-size: .68rem;
}

.faq-list summary i {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  font-style: normal;
  transition: transform .18s ease;
}

.faq-list details[open] summary i {
  transform: rotate(45deg);
}

.faq-list details > p {
  max-width: 650px;
  margin: -4px 36px 28px 44px;
  color: var(--muted);
  font-size: .86rem;
  line-height: 1.72;
}

.contact {
  position: relative;
  overflow: hidden;
  padding: 118px 0;
  background: var(--orange);
  color: #fff;
}

.contact-wave {
  right: -120px;
  bottom: -250px;
  width: 820px;
  opacity: .12;
  filter: invert(1);
}

.contact-grid {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: start;
  grid-template-columns: 1.12fr .88fr;
  gap: 90px;
}

.contact h2 {
  max-width: 720px;
  margin-bottom: 24px;
  color: #fff;
}

.contact-grid > div > p:not(.eyebrow) {
  margin-bottom: 32px;
  color: rgba(255, 255, 255, .8);
  line-height: 1.75;
}

.contact .eyebrow {
  color: rgba(255, 255, 255, .76);
}

.contact .eyebrow span {
  background: var(--green-950);
}

.button-light {
  border-color: #fff;
  background: #fff;
  color: var(--green-950);
}

.button-light:hover {
  background: var(--green-950);
}

.contact address {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border-radius: 24px;
  background: rgba(255, 255, 255, .22);
  font-style: normal;
}

.contact address div {
  padding: 24px;
  background: rgba(136, 43, 7, .16);
}

.contact address b {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, .66);
  font-size: .65rem;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.contact address p,
.contact address a {
  margin-bottom: 0;
  color: #fff;
  font-size: .86rem;
  font-weight: 650;
  line-height: 1.65;
  overflow-wrap: anywhere;
}

footer {
  padding: 78px 0 32px;
  background: #031e18;
  color: #fff;
}

.footer-grid {
  display: grid;
  padding-bottom: 58px;
  grid-template-columns: 1fr 1fr .72fr;
  gap: 70px;
}

.footer-brand strong {
  color: #fff;
}

.footer-brand small {
  color: var(--green-300);
}

.footer-grid > p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, .58);
  font-size: .84rem;
  line-height: 1.75;
}

.footer-grid nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.footer-grid nav a {
  color: rgba(255, 255, 255, .72);
  font-size: .78rem;
  font-weight: 700;
}

.copyright {
  display: flex;
  padding-top: 24px;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, .1);
  color: rgba(255, 255, 255, .38);
  font-size: .68rem;
}

@media (max-width: 1040px) {
  .desktop-nav {
    gap: 18px;
  }

  .hero-grid {
    grid-template-columns: 1fr .88fr;
    gap: 24px;
  }

  .legal-grid {
    gap: 58px;
  }
}

@media (max-width: 930px) {
  .desktop-nav,
  .desktop-cta {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .hero {
    padding-top: 160px;
  }

  .hero-grid,
  .digital-grid,
  .legal-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

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

  .stats-grid div:nth-child(2) {
    border-right: 0;
  }

  .stats-grid div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .split-heading,
  .coverage-heading {
    grid-template-columns: 1fr;
    gap: 26px;
  }

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

  .truck-stage {
    order: 2;
  }

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

  .region-grid,
  .team-grid {
    grid-template-columns: 1fr 1fr;
  }

  .team-grid img {
    height: 360px;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .faq-grid > div:first-child {
    position: static;
  }

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

  .footer-grid nav {
    grid-column: 1 / -1;
  }
}

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

  .header {
    top: 10px;
    width: calc(100% - 20px);
    min-height: 68px;
    padding: 8px 9px 8px 12px;
    border-radius: 17px;
  }

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

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

  .brand small {
    font-size: .52rem;
  }

  .hero {
    min-height: auto;
    padding: 130px 0 100px;
  }

  .hero h1 {
    font-size: clamp(3rem, 14vw, 4rem);
  }

  .lead {
    font-size: .96rem;
  }

  .hero-actions,
  .trust-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 15px;
  }

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

  .fleet-card {
    inset: 56px 0 30px;
    padding: 44px 6px 70px;
    border-radius: 28px;
  }

  .hours {
    top: 10px;
    right: -3px;
    width: 96px;
    height: 96px;
  }

  .hours strong {
    font-size: 1.1rem;
  }

  .system-card {
    right: 0;
    bottom: 0;
    min-width: 210px;
  }

  .stats {
    margin-top: -42px;
  }

  .stats-grid div {
    min-height: 112px;
    padding: 18px;
  }

  .stats-grid strong {
    font-size: 1.35rem;
  }

  .section {
    padding: 88px 0;
  }

  .heading {
    margin-bottom: 38px;
  }

  .heading h2,
  .digital h2,
  .legal h2,
  .coverage h2,
  .faq h2,
  .contact h2 {
    font-size: clamp(2.25rem, 10vw, 3.1rem);
  }

  .about-grid,
  .service-grid,
  .feature-grid,
  .workflow-grid,
  .region-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .vision,
  .mission {
    min-height: 350px;
    padding: 31px;
  }

  .vision > b,
  .mission > b {
    margin-bottom: 50px;
  }

  .service-grid article {
    min-height: 280px;
  }

  .digital {
    padding: 88px 0 70px;
  }

  .digital ul {
    grid-template-columns: 1fr;
  }

  .truck-stage {
    min-height: 350px;
  }

  .orbit.one {
    width: 310px;
    height: 310px;
  }

  .orbit.two {
    width: 360px;
    height: 360px;
  }

  .workflow-grid {
    gap: 10px;
    background: transparent;
  }

  .workflow-grid article,
  .workflow-grid article:first-child,
  .workflow-grid article:last-child {
    min-height: 270px;
    border-radius: 22px;
    background: #eeeadf;
  }

  .workflow-grid article > b {
    margin-bottom: 54px;
  }

  .advantages {
    padding-top: 0;
  }

  .feature-grid .feature-main {
    grid-row: auto;
    grid-template-rows: 240px 1fr;
  }

  .feature-grid article {
    grid-template-rows: 220px 1fr;
  }

  .document > img {
    width: 100%;
    height: 430px;
  }

  .team-grid img {
    height: min(100vw, 420px);
  }

  .faq {
    padding-top: 10px;
  }

  .faq-list summary {
    min-height: 84px;
    grid-template-columns: 38px 1fr 28px;
    font-size: .9rem;
  }

  .faq-list details > p {
    margin-right: 18px;
    margin-left: 38px;
  }

  .contact {
    padding: 88px 0;
  }

  .contact-grid {
    gap: 48px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-grid nav {
    grid-column: auto;
  }

  .copyright {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
}

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

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

/* Presentation additions */
.hero-slider { position: relative; min-height: 780px; overflow: hidden; }
.slides { position: relative; min-height: 780px; }
.hero-slide { position: absolute; inset: 0; display: grid; align-items: center; padding-top: 10px; opacity: 0; transform: translateX(3%); visibility: hidden; transition: opacity .7s ease, transform .7s ease, visibility .7s; }
.hero-slide.is-active { position: relative; opacity: 1; transform: translateX(0); visibility: visible; }
.hero-slide .hero-grid { min-height: 650px; }
.visual-dark .fleet-card { background: linear-gradient(145deg, rgba(10, 59, 47, .98), rgba(17, 84, 67, .92)); }
.visual-dark .fleet-card small { color: rgba(255, 255, 255, .72); }
.journey-visual { position: relative; overflow: hidden; min-height: 510px; border: 9px solid rgba(255, 255, 255, .14); border-radius: 42px 42px 140px 42px; box-shadow: 0 35px 80px rgba(0, 0, 0, .25); }
.journey-visual > img { width: 100%; height: 510px; object-fit: cover; }
.journey-visual::after { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(6, 45, 36, .9)); content: ""; }
.journey-card { position: absolute; z-index: 2; right: 26px; bottom: 25px; left: 26px; display: flex; align-items: center; justify-content: space-between; gap: 16px; color: #fff; }
.journey-card small { color: var(--orange-soft); font-weight: 850; letter-spacing: .12em; }
.journey-card strong { font-size: 1.05rem; }
.slider-controls { position: absolute; z-index: 6; right: 0; bottom: 28px; left: 0; display: flex; align-items: center; justify-content: center; gap: 14px; }
.slider-arrow, .slider-dots button { border: 1px solid rgba(255, 255, 255, .3); background: rgba(255, 255, 255, .1); color: #fff; cursor: pointer; backdrop-filter: blur(8px); }
.slider-arrow { display: grid; width: 40px; height: 40px; place-items: center; border-radius: 50%; font-size: 1rem; }
.slider-dots { display: flex; gap: 8px; }
.slider-dots button { width: 9px; height: 9px; padding: 0; border-radius: 99px; transition: width .25s ease, background .25s ease; }
.slider-dots button.is-active { width: 34px; background: var(--orange); }

.history { background: #fff; }
.timeline { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 58px; }
.timeline::before { position: absolute; top: 53px; right: 10%; left: 10%; height: 1px; background: rgba(6, 45, 36, .2); content: ""; }
.timeline article { position: relative; padding: 0 10px; }
.timeline time { display: block; min-height: 40px; color: var(--green-700); font-size: .78rem; font-weight: 850; letter-spacing: .05em; text-transform: uppercase; }
.timeline article > span { position: relative; z-index: 2; display: block; width: 28px; height: 28px; margin: 0 0 26px; border: 8px solid #fff; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 1px rgba(6, 45, 36, .16); }
.timeline h3 { font-size: 1.08rem; }
.timeline p { color: var(--muted); font-size: .9rem; line-height: 1.75; }
.workflow-grid { grid-template-columns: repeat(5, 1fr); }
.workflow-grid article { min-height: 350px; padding-inline: 22px; }

.waste-types { background: #fff; }
.waste-heading { display: grid; grid-template-columns: 1.15fr .85fr; align-items: end; gap: 70px; margin-bottom: 44px; }
.waste-heading h2 { max-width: 720px; margin-bottom: 0; font-size: clamp(2.3rem, 5vw, 4rem); line-height: 1.04; }
.waste-heading > p { margin-bottom: 0; color: var(--muted); line-height: 1.75; }
.download-panel { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 22px; margin-bottom: 30px; padding: 24px 26px; border: 2px solid var(--orange); border-radius: 24px; background: #fff8f3; box-shadow: 0 18px 46px rgba(242, 103, 47, .13); }
.download-icon { display: grid; width: 64px; height: 64px; place-items: center; border-radius: 18px; background: var(--orange); color: #fff; font-size: .78rem; font-weight: 950; letter-spacing: .08em; }
.download-panel span { color: var(--orange); font-size: .62rem; font-weight: 900; letter-spacing: .13em; }
.download-panel h3 { margin: 5px 0 5px; color: var(--green-950); font-size: 1.22rem; }
.download-panel p { margin: 0; color: var(--muted); font-size: .78rem; }
.download-panel > a { display: inline-flex; min-height: 50px; align-items: center; gap: 14px; padding: 0 21px; border-radius: 999px; background: var(--orange); color: #fff; font-size: .76rem; font-weight: 950; box-shadow: 0 12px 28px rgba(242, 103, 47, .24); }
.download-panel > a b { font-size: 1.15rem; }
.official-waste-banner { display: grid; grid-template-columns: .8fr 1.2fr; align-items: center; gap: 30px; margin-bottom: 34px; padding: 32px; border-radius: 28px; background: linear-gradient(135deg, var(--green-950), var(--green-800)); box-shadow: var(--shadow); }
.official-waste-copy h3 { margin: 10px 0 12px; color: #fff; font-size: clamp(1.5rem, 3vw, 2.35rem); }
.official-waste-copy p { color: rgba(255, 255, 255, .68); font-size: .86rem; line-height: 1.75; }
.waste-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.document-download { display: inline-flex; min-height: 46px; align-items: center; gap: 10px; padding: 0 18px; border-radius: 999px; background: #fff; color: var(--green-950); font-size: .78rem; font-weight: 900; }
.official-document { position: relative; overflow: hidden; padding: 12px; border: 1px solid rgba(255, 255, 255, .2); border-radius: 20px; background: rgba(255, 255, 255, .1); cursor: zoom-in; }
.official-document img { width: 100%; min-height: 300px; border-radius: 12px; object-fit: cover; object-position: top; }
.official-document span { position: absolute; right: 24px; bottom: 24px; padding: 9px 12px; border-radius: 9px; background: rgba(6, 45, 36, .9); color: #fff; font-size: .6rem; font-weight: 900; letter-spacing: .1em; }
.waste-pages-heading { display: flex; align-items: end; justify-content: space-between; gap: 28px; margin: 52px 0 22px; }
.waste-pages-heading span { color: var(--orange); font-size: .65rem; font-weight: 900; letter-spacing: .13em; }
.waste-pages-heading h3 { margin: 8px 0 0; color: var(--green-950); font-size: clamp(1.7rem, 3vw, 2.5rem); }
.waste-pages-heading a { flex: none; padding: 13px 18px; border-radius: 999px; background: var(--green-950); color: #fff; font-size: .76rem; font-weight: 850; }
.waste-pages { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-bottom: 52px; }
.waste-page { position: relative; overflow: hidden; padding: 10px 10px 52px; border: 1px solid var(--line); border-radius: 20px; background: #fff; cursor: zoom-in; box-shadow: 0 18px 48px rgba(6, 45, 36, .08); text-align: left; }
.waste-page img { width: 100%; aspect-ratio: 1.5 / 1; border-radius: 12px; object-fit: contain; object-position: top; background: #edf0ee; transition: transform .25s ease; }
.waste-page:hover img { transform: scale(1.012); }
.waste-page b, .waste-page > span { position: absolute; bottom: 18px; font-size: .74rem; }
.waste-page b { left: 18px; color: var(--green-950); }
.waste-page > span { right: 18px; color: var(--orange); font-weight: 850; }
.download-after-gallery { display: flex; align-items: center; justify-content: space-between; gap: 22px; margin: -26px 0 45px; padding: 20px 24px; border-radius: 18px; background: #e8ede9; }
.download-after-gallery p { margin: 0; color: var(--green-950); font-size: .82rem; font-weight: 750; }
.download-after-gallery a { flex: none; padding: 13px 18px; border-radius: 999px; background: var(--orange); color: #fff; font-size: .74rem; font-weight: 900; }
.waste-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.waste-grid article { position: relative; min-height: 280px; padding: 26px; overflow: hidden; border: 1px solid var(--line); border-radius: 22px; background: var(--cream); transition: transform .25s ease, box-shadow .25s ease; }
.waste-grid article:hover { transform: translateY(-5px); box-shadow: 0 22px 55px rgba(6, 45, 36, .1); }
.waste-grid article > b { display: grid; width: 42px; height: 42px; margin-bottom: 46px; place-items: center; border-radius: 50%; background: var(--green-950); color: #fff; font-size: .68rem; }
.waste-grid article > span { display: block; margin-bottom: 9px; color: var(--orange); font-size: .66rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.waste-grid h3 { margin-bottom: 12px; color: var(--green-950); font-size: 1.14rem; }
.waste-grid p { margin-bottom: 0; color: var(--muted); font-size: .78rem; line-height: 1.65; }
.waste-grid .waste-wide { grid-column: span 4; min-height: 190px; padding-left: 100px; background: linear-gradient(135deg, var(--green-950), var(--green-800)); }
.waste-grid .waste-wide > b { position: absolute; top: 28px; left: 28px; background: var(--orange); }
.waste-grid .waste-wide h3 { color: #fff; }
.waste-grid .waste-wide p { max-width: 850px; color: rgba(255, 255, 255, .68); }
.waste-document { display: grid; grid-template-columns: .72fr 1.28fr; align-items: center; gap: 34px; margin-top: 34px; padding: 30px; border: 1px solid var(--line); border-radius: 26px; background: #f3eee4; }
.waste-document h3 { margin: 10px 0; color: var(--green-950); font-size: 1.3rem; }
.waste-document p { margin: 0; color: var(--muted); font-size: .82rem; line-height: 1.7; }
.document-label { color: var(--orange); font-size: .65rem; font-weight: 900; letter-spacing: .13em; }
.waste-proof { min-height: 225px; background: #f4c8dc; }
.waste-proof img { height: 225px; object-fit: cover; object-position: center; }
.waste-proof > span { top: 38%; }
.waste-disclaimer { margin: 22px 0 0; padding: 18px 22px; border-left: 4px solid var(--orange); border-radius: 0 14px 14px 0; background: #f4eee4; color: var(--muted); font-size: .8rem; line-height: 1.65; }

.performance { overflow: hidden; background: linear-gradient(135deg, var(--green-950), #0e5945); color: #fff; }
.performance-grid { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 76px; }
.performance h2 { max-width: 540px; font-size: clamp(2.3rem, 5vw, 4.3rem); line-height: 1.02; }
.performance p { max-width: 570px; color: rgba(255, 255, 255, .68); line-height: 1.8; }
.metric-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 40px; }
.metric-row article { padding: 20px 16px; border: 1px solid rgba(255, 255, 255, .12); border-radius: 18px; background: rgba(255, 255, 255, .06); }
.metric-row strong { display: block; color: var(--orange-soft); font-size: 2.1rem; }
.metric-row span { color: rgba(255, 255, 255, .66); font-size: .74rem; }
.live-chart { padding: 30px; border: 1px solid rgba(255, 255, 255, .16); border-radius: 28px; background: rgba(255, 255, 255, .08); box-shadow: 0 38px 100px rgba(0, 0, 0, .2); backdrop-filter: blur(15px); }
.chart-heading { display: flex; align-items: center; justify-content: space-between; margin-bottom: 32px; font-weight: 800; }
.chart-heading small, .chart-note { color: rgba(255, 255, 255, .5); font-size: .67rem; }
.live-dot { display: inline-block; width: 9px; height: 9px; margin-right: 8px; border-radius: 50%; background: #66df91; box-shadow: 0 0 0 7px rgba(102, 223, 145, .12); animation: livePulse 1.8s infinite; }
.bar-chart { display: grid; gap: 24px; }
.bar-chart > div { display: grid; grid-template-columns: 1fr auto; gap: 8px 14px; }
.bar-chart span, .bar-chart b { font-size: .77rem; }
.bar-chart b { color: var(--orange-soft); }
.bar-chart i { grid-column: 1 / -1; width: 0; height: 9px; overflow: hidden; border-radius: 99px; background: linear-gradient(90deg, var(--orange), #ffd09b); box-shadow: 0 0 24px rgba(242, 103, 47, .3); transition: width 1.2s cubic-bezier(.2, .8, .2, 1); }
.performance.is-visible .bar-chart i { width: var(--value); }
.chart-note { margin-top: 26px; }
@keyframes livePulse { 50% { opacity: .45; transform: scale(.8); } }

.legal-gallery { margin-top: 84px; }
.legal-gallery-heading { display: grid; grid-template-columns: 1.15fr .85fr; align-items: end; gap: 70px; margin-bottom: 34px; }
.legal-gallery-heading h2 { margin-bottom: 0; font-size: clamp(2rem, 4vw, 3.35rem); }
.legal-gallery-heading > p { margin-bottom: 0; color: var(--muted); line-height: 1.75; }
.legal-preview-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.legal-preview { position: relative; overflow: hidden; padding: 0; border: 0; border-radius: 22px; background: var(--green-950); cursor: zoom-in; box-shadow: var(--shadow); }
.legal-preview img { width: 100%; height: 410px; object-fit: cover; object-position: top; opacity: .86; transition: transform .4s ease, opacity .4s ease; }
.legal-preview:hover img, .legal-preview:focus-visible img { transform: scale(1.025); opacity: .65; }
.legal-preview span { position: absolute; z-index: 2; top: 45%; left: 50%; width: max-content; transform: translate(-50%, -50%) rotate(-18deg); color: rgba(255, 255, 255, .7); font-size: .78rem; font-weight: 900; letter-spacing: .16em; text-shadow: 0 1px 4px rgba(0, 0, 0, .35); }
.legal-preview b { position: absolute; z-index: 3; right: 18px; bottom: 18px; left: 18px; padding: 14px 16px; border-radius: 14px; background: rgba(6, 45, 36, .91); color: #fff; font-size: .8rem; text-align: left; }
.legal-dialog { width: min(900px, calc(100% - 28px)); padding: 16px; border: 0; border-radius: 22px; background: #fff; box-shadow: 0 35px 110px rgba(0, 0, 0, .45); }
.legal-dialog::backdrop { background: rgba(2, 20, 15, .84); backdrop-filter: blur(8px); }
.legal-dialog img { width: 100%; max-height: 78vh; object-fit: contain; user-select: none; }
.legal-dialog p { margin: 12px 50px 3px 4px; color: var(--muted); font-size: .78rem; }
.dialog-close { position: absolute; z-index: 2; top: 25px; right: 25px; display: grid; width: 42px; height: 42px; place-items: center; border: 0; border-radius: 50%; background: var(--orange); color: #fff; cursor: pointer; font-size: 1.5rem; }
.whatsapp-float { position: fixed; z-index: 45; right: 22px; bottom: 22px; display: flex; min-height: 54px; align-items: center; gap: 10px; padding: 7px 17px 7px 8px; border: 1px solid rgba(255, 255, 255, .55); border-radius: 999px; background: #20a45a; color: #fff; box-shadow: 0 16px 40px rgba(0, 0, 0, .24); transition: transform .2s ease; }
.whatsapp-float:hover { transform: translateY(-3px); }
.whatsapp-float span { display: grid; width: 39px; height: 39px; place-items: center; border-radius: 50%; background: #fff; color: #16864a; font-size: .72rem; font-weight: 950; }
.whatsapp-float b { font-size: .78rem; }

@media (max-width: 980px) {
  .hero-slider, .slides { min-height: 930px; }
  .hero-slide { padding-top: 110px; }
  .hero-slide .hero-grid { min-height: 780px; }
  .timeline { grid-template-columns: repeat(2, 1fr); }
  .workflow-grid { grid-template-columns: repeat(2, 1fr); }
  .timeline::before { display: none; }
  .performance-grid, .legal-gallery-heading { grid-template-columns: 1fr; gap: 40px; }
  .waste-heading { grid-template-columns: 1fr; gap: 28px; }
  .official-waste-banner { grid-template-columns: 1fr; }
  .download-panel { grid-template-columns: auto 1fr; }
  .download-panel > a { grid-column: 1 / -1; justify-self: start; }
  .waste-pages { grid-template-columns: 1fr; }
  .waste-grid { grid-template-columns: repeat(2, 1fr); }
  .waste-grid .waste-wide { grid-column: span 2; }
  .waste-document { grid-template-columns: 1fr; }
  .legal-preview img { height: 340px; }
}

@media (max-width: 680px) {
  .hero-slider, .slides { min-height: 980px; }
  .hero-slide .hero-grid { min-height: 840px; }
  .slider-controls { bottom: 18px; }
  .journey-visual, .journey-visual > img { min-height: 380px; height: 380px; }
  .timeline, .workflow-grid, .legal-preview-grid { grid-template-columns: 1fr; }
  .waste-grid { grid-template-columns: 1fr; }
  .waste-grid .waste-wide { grid-column: auto; padding: 88px 26px 26px; }
  .waste-document { padding: 20px; }
  .official-waste-banner { padding: 22px; }
  .waste-pages-heading { align-items: flex-start; flex-direction: column; }
  .download-panel { grid-template-columns: 1fr; }
  .download-icon { width: 54px; height: 54px; }
  .download-after-gallery { align-items: flex-start; flex-direction: column; }
  .whatsapp-float b { display: none; }
  .whatsapp-float { padding-right: 8px; }
  .timeline article { padding-left: 38px; }
  .timeline article > span { position: absolute; top: 2px; left: 0; }
  .metric-row { grid-template-columns: 1fr; }
  .live-chart { padding: 22px; }
  .legal-preview img { height: 430px; }
}

@media (prefers-reduced-motion: reduce) {
  .live-dot { animation: none; }
  .hero-slide { transition: none; }
}
