:root {
  --green: #0a7d49;
  --green-bright: #25b66a;
  --green-deep: #063d28;
  --ink: #111814;
  --muted: #69736d;
  --line: #dfe5e1;
  --soft: #f1f5f2;
  --white: #fff;
  --radius: 26px;
  --shell: min(1240px, calc(100vw - 64px));
  --font-display: "Space Grotesk", sans-serif;
  --font-body: "Manrope", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--white);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input {
  font: inherit;
}

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

svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  transform: translateY(-150%);
  padding: 12px 18px;
  border-radius: 10px;
  color: var(--white);
  background: var(--green);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: 92px;
  display: grid;
  grid-template-columns: 150px 1fr auto;
  align-items: center;
  gap: 34px;
  padding: 0 4vw;
  border-bottom: 1px solid transparent;
  transition: height .3s ease, background .3s ease, box-shadow .3s ease;
}

.site-header.scrolled {
  height: 76px;
  border-bottom-color: var(--line);
  background: rgba(255, 255, 255, .88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 12px 30px rgba(17, 24, 20, .06);
}

.brand {
  width: 116px;
  height: 56px;
  display: grid;
  place-items: center;
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(18px, 2vw, 34px);
}

.main-nav a {
  position: relative;
  padding: 12px 0;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .02em;
}

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

.main-nav a:hover::after,
.main-nav a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.language-switch {
  display: flex;
  gap: 3px;
  padding: 4px;
  border: 1px solid rgba(17, 24, 20, .1);
  border-radius: 999px;
  background: rgba(255, 255, 255, .76);
}

.lang-button {
  width: 36px;
  height: 31px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  color: #5e6862;
  background: transparent;
  cursor: pointer;
  font-size: .68rem;
  font-weight: 800;
}

.lang-button.active {
  color: var(--white);
  background: var(--ink);
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 850px;
  height: 100vh;
  max-height: 980px;
  overflow: hidden;
  color: var(--ink);
  background: #e9eeeb;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 60%;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(244, 247, 245, .98) 0%, rgba(244, 247, 245, .92) 25%, rgba(244, 247, 245, .2) 55%, transparent 80%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(700px, 50vw);
  padding-top: clamp(180px, 25vh, 280px);
  margin-left: max(6vw, calc((100vw - 1240px) / 2));
}

.eyebrow,
.kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 26px;
  color: var(--green);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.eyebrow::before,
.kicker::before {
  content: "";
  width: 28px;
  height: 2px;
  background: currentColor;
}

.hero h1,
.section-intro h2,
.contact h2 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -.055em;
}

.hero h1 {
  max-width: 680px;
  margin-bottom: 28px;
  font-size: clamp(3rem, 6.5vw, 7rem);
  line-height: .9;
}

.hero-content>p:not(.eyebrow) {
  max-width: 620px;
  margin-bottom: 42px;
  color: #333839;
  font-size: clamp(1rem, 1.3vw, 1.25rem);
  line-height: 1.75;
  font-weight: 500;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  padding: 0 32px;
  border-radius: 999px;
  font-size: .84rem;
  font-weight: 800;
  letter-spacing: .03em;
}

.button-primary {
  color: var(--white);
  background: var(--green);
  box-shadow: 0 14px 32px rgba(10, 125, 73, .22);
  transition: transform .25s ease, background .25s ease;
}

.button-primary:hover {
  transform: translateY(-3px);
  background: var(--green-deep);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .82rem;
  font-weight: 800;
  color: var(--ink);
}

.text-link span:last-child {
  font-size: 1.4rem;
}

.hero-proof {
  position: absolute;
  z-index: 3;
  right: 4vw;
  bottom: 40px;
  display: flex;
  gap: 2px;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(17, 24, 20, .18);
}

.hero-proof span {
  min-width: 180px;
  padding: 22px 26px;
  background: rgba(255, 255, 255, .93);
  backdrop-filter: blur(18px);
}

.hero-proof strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 700;
}

.hero-proof small {
  color: var(--muted);
  font-size: .71rem;
  font-weight: 600;
  margin-top: 4px;
}

@media (min-width: 821px) {
  .hero {
    height: auto;
    min-height: 0;
    max-height: none;
    display: flex;
    flex-direction: column;
    background: var(--white);
  }

  .hero-image {
    position: relative;
    inset: auto;
    width: 100%;
    height: 70vh;
    min-height: 260px;
    max-height: 640px;
    object-position: 50% 60%;
  }

  .hero-shade {
    display: none;
  }

  .hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 44px;
    width: auto;
    padding: 34px max(6vw, calc((100vw - 1240px) / 2));
    margin-left: 0;
    background: var(--white);
  }

  .hero-content .eyebrow {
    flex-basis: 100%;
    margin-bottom: 0;
  }

  .hero h1 {
    flex: 0 1 auto;
    max-width: 480px;
    margin-bottom: 0;
    font-size: clamp(1.6rem, 2.5vw, 2.5rem);
    line-height: 1.08;
  }

  .hero-content>p:not(.eyebrow) {
    flex: 1 1 280px;
    max-width: 380px;
    margin-bottom: 0;
  }

  .hero-actions {
    flex: 0 0 auto;
  }
}

.section {
  padding: 150px 0;
  scroll-margin-top: 74px;
}

.section-shell {
  width: var(--shell);
  margin: 0 auto;
}

.section-intro {
  max-width: 850px;
  margin-bottom: 65px;
}

.section-intro h2,
.contact h2 {
  margin-bottom: 28px;
  font-size: clamp(2.8rem, 5.2vw, 5.5rem);
  line-height: .95;
}

.section-intro>p:last-child {
  max-width: 700px;
  color: var(--muted);
  line-height: 1.78;
  font-size: .96rem;
}

.split-heading {
  max-width: none;
  display: grid;
  grid-template-columns: 1fr 430px;
  align-items: end;
  gap: 70px;
}

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

.centered .kicker {
  justify-content: center;
}

.centered>p:last-child {
  margin-right: auto;
  margin-left: auto;
}

.lead {
  font-size: clamp(1.2rem, 1.8vw, 1.65rem);
  line-height: 1.6 !important;
  letter-spacing: -.02em;
}

.company {
  overflow: hidden;
}

.company-layout {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
}

.company-copy {
  max-width: 760px;
}

.photo-stack figure::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(145deg, rgba(5, 73, 43, .12), rgba(6, 22, 15, .06));
  mix-blend-mode: multiply;
}

.company-copy p {
  color: var(--muted);
  line-height: 1.8;
  font-size: .95rem;
}

.company-copy .lead {
  color: var(--ink);
}

.company-copy p+p {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

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

.stat-card {
  position: relative;
  isolation: isolate;
  min-height: 260px;
  padding: 32px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--white);
}

.stat-card::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: -32px;
  bottom: -50px;
  width: 130px;
  height: 130px;
  border: 24px solid rgba(17, 24, 20, .05);
  border-radius: 50%;
}

.stat-card strong {
  display: block;
  margin-bottom: 55px;
  color: var(--green);
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 4.3rem);
  letter-spacing: -.06em;
}

.stat-card h3 {
  margin-bottom: 8px;
  font-size: 1rem;
}

.stat-card p {
  max-width: 260px;
  margin: 0;
  color: var(--muted);
  font-size: .78rem;
  line-height: 1.6;
}

.stat-accent {
  color: var(--white);
  border-color: var(--green);
  background: var(--green);
}

.stat-accent strong {
  color: var(--white);
}

.stat-accent p {
  color: rgba(255, 255, 255, .72);
}

.stat-accent::after {
  border-color: rgba(255, 255, 255, .1);
}

.section-dark {
  color: var(--white);
  background: var(--ink);
}

.section-dark .section-intro>p:last-child {
  color: #9aa49e;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .1);
}

.service-card {
  position: relative;
  min-height: 470px;
  padding: 42px;
  background: #151d18;
  transition: background .3s ease;
}

.service-card:hover {
  background: #1b2720;
}

.service-number {
  position: absolute;
  top: 26px;
  right: 30px;
  color: #5c6861;
  font-family: var(--font-display);
  font-size: .78rem;
}

.service-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  margin-bottom: 50px;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 50%;
  color: var(--green-bright);
}

.service-icon svg {
  width: 26px;
  height: 26px;
}

.service-card h3 {
  max-width: 390px;
  margin-bottom: 18px;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.2vw, 2.25rem);
  line-height: 1.08;
  letter-spacing: -.035em;
}

.service-card>p {
  max-width: 490px;
  color: #9ea7a1;
  font-size: .93rem;
  line-height: 1.78;
}

.service-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.service-card li {
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 999px;
  color: #c1c8c3;
  font-size: .67rem;
}

.service-featured {
  background: var(--green-deep);
}

.sectors {
  position: relative;
  color: var(--white);
  background: var(--green-deep);
  overflow: hidden;
}

.sectors::before {
  content: "";
  position: absolute;
  top: -320px;
  left: 50%;
  width: 900px;
  height: 900px;
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 0 100px rgba(255, 255, 255, .025), 0 0 0 220px rgba(255, 255, 255, .018);
}

.sectors .section-shell {
  position: relative;
}

.sectors .kicker {
  color: #63df9a;
}

.sectors .section-intro>p:last-child {
  color: rgba(255, 255, 255, .6);
}

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

.sector-card {
  position: relative;
  min-height: 270px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 20px;
  background: rgba(255, 255, 255, .055);
  backdrop-filter: blur(10px);
  transition: transform .3s ease, background .3s ease;
}

.sector-card:hover {
  transform: translateY(-7px);
  background: rgba(255, 255, 255, .1);
}

.sector-card svg {
  width: 45px;
  height: 45px;
  display: block;
  margin: 55px 0 26px;
  color: #57dc94;
}

.sector-card h3 {
  max-width: 230px;
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: -.03em;
}

.section-soft {
  background: var(--soft);
}

.client-groups {
  display: grid;
  gap: 18px;
}

.client-group {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.group-heading {
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.group-heading p {
  margin: 0 0 7px;
  color: var(--green);
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.group-heading h3 {
  max-width: 650px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.3vw, 2.15rem);
  font-weight: 500;
  letter-spacing: -.04em;
}

.logo-grid {
  display: grid;
  align-items: center;
  gap: 2px;
  margin-top: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--line);
}

.logo-grid-five {
  grid-template-columns: repeat(5, 1fr);
}

.logo-grid-six {
  grid-template-columns: repeat(6, 1fr);
}

.logo-grid-two {
  grid-template-columns: repeat(2, minmax(170px, 240px));
  margin: 0;
  border-color: rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .14);
}

.logo-grid img {
  width: 100%;
  height: 130px;
  padding: 30px 22px;
  object-fit: contain;
  background: var(--white);
  filter: grayscale(1);
  opacity: .7;
  transition: filter .25s ease, opacity .25s ease, transform .25s ease;
}

.logo-grid img:hover {
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1.035);
}

.logo-grid img[alt="iMile"] {
  padding: 0;
  background: none;
  object-fit: cover;
}

.last-mile-group {
  padding: 0;
  overflow: hidden;
  color: var(--white);
  border-color: var(--green);
  background: var(--green);
}

.last-mile-group .group-heading {
  padding: 34px;
  border-color: rgba(255, 255, 255, .17);
}

.last-mile-group .group-heading p {
  color: #b9f3d3;
}

.last-mile-visual {
  margin: 0;
  overflow: hidden;
}

.last-mile-visual img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  filter: saturate(.9) contrast(1.03);
}

.last-mile-content {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 55px;
  align-items: center;
  padding: 34px;
}

.last-mile-content>p {
  max-width: 490px;
  margin: 0;
  color: rgba(255, 255, 255, .75);
  line-height: 1.7;
}

.contact {
  color: var(--white);
  background: var(--ink);
}

.contact-card {
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  gap: 80px;
  padding: 68px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 32px;
  background: radial-gradient(circle at 100% 0%, rgba(37, 182, 106, .2), transparent 38%), #151d18;
}

.contact .kicker {
  color: #5cdd96;
}

.contact h2 {
  max-width: 760px;
}

.contact-main>p:not(.kicker) {
  max-width: 620px;
  color: #a4aea8;
  line-height: 1.75;
}

.email-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  margin-top: 45px;
  padding: 24px 26px;
  border-radius: 18px;
  color: var(--ink);
  background: var(--white);
  transition: transform .25s ease, background .25s ease;
}

.email-box:hover {
  transform: translateY(-4px);
  background: #e8f8ef;
}

.email-box span {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.3vw, 1.75rem);
  font-weight: 600;
  letter-spacing: -.035em;
}

.email-box small {
  display: block;
  margin-bottom: 7px;
  color: var(--green);
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.email-box b {
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--green);
  font-size: 1.3rem;
}

.email-box b svg {
  width: 20px;
  height: 20px;
  stroke-width: 2;
}

.contact-details {
  border-top: 1px solid rgba(255, 255, 255, .13);
}

.contact-details>div {
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .13);
}

.contact-details small {
  display: block;
  margin-bottom: 8px;
  color: #6f7b74;
  font-size: .61rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.contact-details a,
.contact-details p,
.contact-details address {
  margin: 0;
  color: #c3cbc6;
  font-size: .79rem;
  font-style: normal;
  line-height: 1.65;
}

.contact-details .vat {
  opacity: .7;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 45px;
  align-items: end;
  padding: 70px max(4vw, calc((100vw - 1240px) / 2));
  background: var(--white);
}

.footer-brand img {
  width: 125px;
  height: 72px;
  object-fit: contain;
  margin-bottom: 10px;
}

.footer-brand p,
.site-footer>p {
  margin: 0;
  color: var(--muted);
  font-size: .67rem;
}

.site-footer nav {
  display: flex;
  gap: 25px;
  font-size: .72rem;
  font-weight: 700;
}

.site-footer>p {
  grid-column: 1 / -1;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.2, .75, .25, 1);
}

.js .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1100px) {
  :root {
    --shell: min(100% - 48px, 960px);
  }

  .site-header {
    grid-template-columns: 125px 1fr auto;
    gap: 18px;
    padding: 0 24px;
  }

  .main-nav {
    gap: 17px;
  }

  .main-nav a {
    font-size: .72rem;
  }

  .hero-content {
    width: 52vw;
    margin-left: 5vw;
  }

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

  .contact-card {
    grid-template-columns: 1fr 280px;
    gap: 45px;
    padding: 48px;
  }
}

@media (max-width: 820px) {
  :root {
    --shell: calc(100vw - 36px);
  }

  .site-header {
    height: 72px;
    grid-template-columns: 112px 1fr auto;
    padding: 0 18px;
  }

  .site-header.scrolled {
    height: 68px;
  }

  .brand {
    width: 96px;
    height: 50px;
  }

  .site-header>.brand {
    grid-column: 1;
    grid-row: 1;
  }

  .menu-toggle {
    position: relative;
    z-index: 3;
    width: 42px;
    height: 42px;
    display: block;
    justify-self: end;
    order: 2;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: var(--white);
    cursor: pointer;
  }

  .site-header>.menu-toggle {
    grid-column: 2;
    grid-row: 1;
  }

  .menu-toggle span {
    position: absolute;
    left: 12px;
    width: 17px;
    height: 1.5px;
    background: var(--ink);
    transition: transform .25s ease, top .25s ease;
  }

  .menu-toggle span:first-child {
    top: 16px;
  }

  .menu-toggle span:last-child {
    top: 23px;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    top: 20px;
    transform: rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    top: 20px;
    transform: rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 7px;
    padding: 90px 10vw;
    background: var(--white);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: .25s ease;
  }

  .main-nav.open {
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .main-nav a {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 8vw, 3.2rem);
    font-weight: 600;
    letter-spacing: -.04em;
  }

  .language-switch {
    position: relative;
    z-index: 4;
    order: 3;
  }

  .site-header>.language-switch {
    grid-column: 3;
    grid-row: 1;
  }

  .hero {
    height: auto;
    min-height: 0;
    max-height: none;
    display: flex;
    flex-direction: column;
    background: var(--white);
  }

  .hero-image {
    position: relative;
    inset: auto;
    width: 100%;
    height: 46vh;
    min-height: 240px;
    max-height: 480px;
    object-position: 50% 65%;
  }

  .hero-shade {
    display: none;
  }

  .hero-content {
    width: auto;
    padding: 32px 22px 40px;
    margin: 0;
  }

  .hero h1 {
    max-width: 650px;
    font-size: clamp(1.8rem, 7vw, 2.8rem);
    line-height: 1.1;
  }

  .hero-content>p:not(.eyebrow) {
    max-width: 550px;
    font-size: clamp(0.95rem, 3.2vw, 1.2rem);
  }

  .hero-proof {
    right: 18px;
    bottom: 18px;
    left: 18px;
  }

  .hero-proof span {
    width: 50%;
    min-width: 0;
  }

  .section {
    padding: 110px 0;
  }

  .split-heading,
  .company-layout,
  .service-grid,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .split-heading {
    gap: 12px;
  }

  .company-copy {
    order: 1;
  }

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

  .stat-card {
    min-height: 220px;
  }

  .stat-card strong {
    margin-bottom: 35px;
  }

  .service-card {
    min-height: 500px;
    padding: 34px;
  }

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

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

  .last-mile-content {
    grid-template-columns: 1fr;
  }

  .contact-card {
    gap: 60px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    align-items: start;
    padding-right: 24px;
    padding-left: 24px;
  }

  .site-footer nav {
    flex-wrap: wrap;
  }
}

@media (max-width: 560px) {
  :root {
    --shell: calc(100vw - 28px);
    --radius: 20px;
  }

  .site-header {
    grid-template-columns: 94px 1fr auto;
    padding: 0 12px;
  }

  .brand {
    width: 80px;
  }

  .language-switch {
    gap: 0;
    padding: 3px;
  }

  .lang-button {
    width: 29px;
    height: 28px;
    font-size: .61rem;
  }

  .menu-toggle {
    width: 38px;
    height: 38px;
  }

  .menu-toggle span {
    left: 10px;
  }

  .hero-content {
    padding-right: 16px;
    padding-left: 16px;
  }

  .hero h1 {
    font-size: clamp(1.7rem, 8vw, 2.4rem);
  }

  .hero-content>p:not(.eyebrow) {
    font-size: clamp(1.02rem, 4.2vw, 1.22rem);
  }

  .hero-shade {
    background: linear-gradient(180deg, rgba(244, 247, 245, .88) 0%, rgba(244, 247, 245, .76) 45%, rgba(244, 247, 245, .58) 68%, rgba(244, 247, 245, .22) 82%, rgba(244, 247, 245, .06) 95%);
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .button {
    min-height: 56px;
    padding: 0 28px;
    font-size: .81rem;
  }

  .button {
    min-height: 52px;
    padding: 0 22px;
  }

  .hero-proof span {
    width: 55%;
    min-width: 0;
    padding: 18px 20px;
  }

  .hero-proof strong {
    font-size: 1.35rem;
  }

  .hero-proof small {
    font-size: .62rem;
  }

  .section {
    padding: 90px 0;
  }

  .section-intro {
    margin-bottom: 45px;
  }

  .section-intro h2,
  .contact h2 {
    font-size: clamp(2.55rem, 12vw, 3.8rem);
  }

  .stats-grid {
    margin-top: 45px;
  }

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

  .service-card {
    min-height: auto;
    padding: 30px 24px 34px;
  }

  .service-icon {
    margin-bottom: 38px;
  }

  .sector-orbit {
    grid-template-columns: 1fr;
  }

  .sector-card {
    min-height: 230px;
  }

  .sector-card svg {
    margin-top: 35px;
  }

  .client-group {
    padding: 20px;
  }

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

  .logo-grid img {
    height: 110px;
    padding: 25px 16px;
  }

  .last-mile-group {
    padding: 0;
  }

  .last-mile-group .group-heading,
  .last-mile-content {
    padding: 24px;
  }

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

  .contact-card {
    padding: 28px 20px;
    border-radius: 22px;
  }

  .email-box {
    padding: 19px 17px;
  }

  .email-box span {
    overflow-wrap: anywhere;
  }
}

@media (max-width: 380px) {
  .hero-shade {
    background: linear-gradient(180deg, rgba(244, 247, 245, .8) 0%, rgba(244, 247, 245, .64) 45%, rgba(244, 247, 245, .46) 68%, rgba(244, 247, 245, .16) 82%, rgba(244, 247, 245, .04) 95%);
  }
}

/* Presence section (map + provinces served) */
.presence {
  background: var(--soft);
}

.presence-layout {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
  align-items: start;
  margin-top: 50px;
}

.map-container {
  position: relative;
  width: 100%;
  height: 550px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.leaflet-container {
  background: var(--white);
  border-radius: var(--radius);
  font-family: var(--font-body);
}

.leaflet-popup-content {
  margin: 10px;
  font-size: .9rem;
  line-height: 1.5;
}

.leaflet-popup-content h4 {
  margin: 0 0 5px;
  color: var(--green);
  font-weight: 700;
}

.provinces-list {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.provinces-list h3 {
  margin: 0 0 20px;
  font-size: 1.1rem;
}

.provinces-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  max-height: 460px;
  padding-right: 8px;
  overflow-y: auto;
}

.provinces-grid::-webkit-scrollbar {
  width: 6px;
}

.provinces-grid::-webkit-scrollbar-track {
  background: transparent;
}

.provinces-grid::-webkit-scrollbar-thumb {
  border-radius: 3px;
  background: var(--line);
}

.provinces-grid::-webkit-scrollbar-thumb:hover {
  background: var(--green);
}

.province-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  cursor: pointer;
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
}

.province-item:hover,
.province-item.active {
  border-color: var(--green);
  background: #e8f8ef;
  transform: translateX(4px);
}

.province-item.active {
  color: var(--white);
  background: var(--green);
}

.province-dot {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--green);
  transition: transform .25s ease, background .25s ease;
}

.province-item.active .province-dot {
  background: var(--white);
  transform: scale(1.2);
}

.province-item p {
  margin: 0;
  line-height: 1.4;
  font-size: .75rem;
  color: inherit;
}

.province-item strong {
  display: block;
  font-size: .8rem;
}

.province-item small {
  color: var(--muted);
  font-size: .7rem;
}

.province-item.active small {
  color: rgba(255, 255, 255, .8);
}

@media (max-width: 900px) {
  .presence-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .map-container {
    height: 380px;
  }

  .provinces-grid {
    grid-template-columns: repeat(3, 1fr);
    max-height: none;
    overflow-y: visible;
    padding-right: 0;
  }
}

@media (max-width: 560px) {
  .map-container {
    height: 320px;
  }

  .provinces-list {
    padding: 20px;
  }

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

@media (max-width: 380px) {
  .map-container {
    height: 280px;
  }

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