@font-face {
  font-family: "Manrope";
  src: url("../fonts/manrope-variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
}

:root {
  --navy: #091158;
  --navy-deep: #050a34;
  --navy-soft: #eef0f8;
  --yellow: #ffff00;
  --ink: #1d1c28;
  --muted: #696879;
  --line: #dedde7;
  --soft: #f6f6f2;
  --white: #ffffff;
  --success: #18794e;
  --danger: #b42318;
  --container: 1180px;
  --radius: 20px;
  --shadow: 0 24px 70px rgba(9, 17, 88, 0.12);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  max-width: 100%;
  overflow-x: clip;
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  max-width: 100%;
  overflow-x: clip;
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

.text-emphasis {
  color: inherit;
  font-weight: 650;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 4px;
}

.screen-reader-text,
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  z-index: 10000;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  padding: 10px 16px;
  margin: 0;
  clip: auto;
  color: var(--navy);
  background: var(--yellow);
  font-weight: 800;
  text-decoration: none;
}

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

.section {
  padding: clamp(78px, 8.5vw, 116px) 0;
}

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

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 20px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 2px;
  background: var(--yellow);
  content: "";
}

.eyebrow--light {
  color: var(--white);
}

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

h1,
h2,
h3 {
  color: var(--navy);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

h1 {
  font-size: clamp(40px, 4.6vw, 62px);
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(30px, 3.1vw, 44px);
}

h3 {
  font-size: 21px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border: 2px solid transparent;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--yellow {
  color: var(--navy);
  background: var(--yellow);
}

.button--yellow:hover {
  color: var(--white);
  background: transparent;
  border-color: var(--yellow);
}

.button--navy {
  color: var(--white);
  background: var(--navy);
}

.button--navy:hover {
  color: var(--navy);
  background: var(--yellow);
}

.button--full {
  width: 100%;
}

.button--compact {
  min-height: 46px;
  padding: 11px 18px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-weight: 800;
  text-decoration: none;
}

.text-link span {
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

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

/* Header */
.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  height: 84px;
  color: var(--white);
  background: var(--navy);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  transition: box-shadow 180ms ease, height 180ms ease;
}

.site-header.is-scrolled {
  height: 74px;
  box-shadow: 0 10px 30px rgba(5, 10, 52, 0.2);
}

.site-header__inner {
  display: flex;
  height: 100%;
  align-items: center;
  gap: 30px;
}

.brand {
  display: block;
  width: 188px;
  margin-right: auto;
}

.brand img,
.mobile-drawer__header img,
.footer-brand img {
  width: 100%;
  aspect-ratio: 604 / 187;
  object-fit: contain;
  object-position: left center;
}

.desktop-nav .menu,
.menu--fallback,
.footer-menu,
.footer-contact,
.footer-socials,
.mobile-menu {
  padding: 0;
  margin: 0;
  list-style: none;
}

.desktop-nav .menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

.desktop-nav a {
  position: relative;
  display: block;
  padding: 8px 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

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

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after,
.desktop-nav .current-menu-item > a::after,
.desktop-nav .current_page_item > a::after {
  transform: scaleX(1);
}

.desktop-nav .current-menu-item > a,
.desktop-nav .current_page_item > a {
  color: var(--white);
}

.header-cta {
  min-height: 44px;
  padding: 10px 18px;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 11px 8px;
  border: 0;
  color: var(--yellow);
  background: transparent;
  cursor: pointer;
}

.menu-toggle > span:not(.screen-reader-text) {
  display: block;
  width: 26px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.menu-overlay {
  position: fixed;
  z-index: 1100;
  inset: 0;
  background: rgba(5, 10, 52, 0.66);
  opacity: 0;
  transition: opacity 220ms ease;
}

.menu-overlay.is-visible {
  opacity: 1;
}

.mobile-drawer {
  position: fixed;
  z-index: 1200;
  top: 0;
  bottom: 0;
  left: 0;
  display: flex;
  width: min(88vw, 380px);
  flex-direction: column;
  padding: 24px;
  color: var(--navy);
  background: var(--white);
  box-shadow: 20px 0 60px rgba(5, 10, 52, 0.3);
  transform: translateX(-105%);
  transition: transform 240ms ease;
}

.mobile-drawer.is-open {
  transform: translateX(0);
}

.mobile-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.mobile-drawer__header img {
  width: 176px;
}

.menu-close {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: var(--navy);
  background: var(--soft);
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
}

.mobile-menu,
.mobile-drawer .menu--fallback {
  display: flex;
  flex-direction: column;
  padding: 26px 0;
}

.mobile-menu a,
.mobile-drawer .menu--fallback a {
  position: relative;
  display: block;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  color: var(--navy);
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
}

.mobile-menu .current-menu-item > a,
.mobile-menu .current_page_item > a,
.mobile-drawer .menu--fallback .current-menu-item > a {
  padding-right: 0;
  padding-left: 0;
  border-bottom-color: var(--line);
  border-radius: 0;
  color: var(--navy-deep);
  background: transparent;
  font-weight: 800;
}

.mobile-drawer .button {
  margin-top: auto;
}

/* Hero */
.hero {
  position: relative;
  min-height: 760px;
  padding: 176px 0 104px;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.hero::after {
  position: absolute;
  right: -18%;
  bottom: -52%;
  width: 760px;
  height: 760px;
  border: 1px solid rgba(255, 255, 0, 0.18);
  border-radius: 50%;
  content: "";
}

.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1.05fr) minmax(400px, 0.95fr);
  gap: clamp(54px, 8vw, 120px);
}

.hero h1 {
  max-width: 760px;
  margin-bottom: 26px;
  color: var(--white);
}

.hero__lead {
  max-width: 670px;
  margin-bottom: 38px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 26px;
}

.hero__visual {
  position: relative;
  min-height: 440px;
}

.hero__monogram {
  position: absolute;
  z-index: 0;
  right: -110px;
  bottom: -60px;
  width: 360px;
  opacity: 0.07;
}

.route-card {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
}

.route-card--main {
  top: 48px;
  right: 18px;
  width: min(100%, 390px);
  padding: 42px;
  color: var(--navy);
  background: var(--yellow);
  border-radius: 28px 6px 28px 28px;
  transform: rotate(-2deg);
}

.route-card__label {
  display: block;
  margin-bottom: 50px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.route-card--main strong {
  display: block;
  font-size: 46px;
  line-height: 1;
  letter-spacing: -0.05em;
}

.route-card--main small {
  display: block;
  margin-top: 20px;
  font-weight: 700;
}

.route-line {
  position: relative;
  height: 64px;
  margin-top: 32px;
}

.route-line::before {
  position: absolute;
  top: 30px;
  right: 0;
  left: 0;
  height: 2px;
  background: var(--navy);
  content: "";
}

.route-line i {
  position: absolute;
  top: 24px;
  width: 14px;
  height: 14px;
  border: 3px solid var(--yellow);
  border-radius: 50%;
  background: var(--navy);
}

.route-line i:nth-child(1) { left: 0; }
.route-line i:nth-child(2) { left: 50%; }
.route-line i:nth-child(3) { right: 0; }

.route-card--small {
  display: grid;
  min-width: 110px;
  min-height: 70px;
  place-items: center;
  padding: 18px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 14px;
  font-size: 13px;
  font-weight: 800;
}

.route-card--top {
  top: 0;
  left: 0;
}

.route-card--bottom {
  right: -26px;
  bottom: 22px;
  background: var(--navy-deep);
}

.hero__tracks {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 55px;
  left: 0;
  height: 120px;
  opacity: 0.12;
}

.hero__tracks span {
  position: absolute;
  right: -5%;
  left: -5%;
  height: 1px;
  background: var(--white);
  transform: rotate(-3deg);
}

.hero__tracks span:nth-child(1) { top: 10px; }
.hero__tracks span:nth-child(2) { top: 55px; }
.hero__tracks span:nth-child(3) { top: 100px; }

.intro-strip {
  color: var(--navy);
  background: var(--yellow);
}

.intro-strip__inner {
  display: flex;
  min-height: 110px;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.intro-strip p {
  max-width: none;
  flex: 0 0 auto;
  margin: 0;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.35;
  white-space: nowrap;
}

.intro-strip ul {
  display: flex;
  align-items: center;
  gap: 26px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.intro-strip li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
}

.intro-strip li + li::before {
  display: none;
}

.intro-strip .logistics-icon {
  width: 27px;
  height: 27px;
  flex-basis: 27px;
}

.intro-strip__pagination {
  display: none;
}

/* Sections */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: clamp(60px, 10vw, 150px);
}

.about__heading h2 {
  max-width: 650px;
}

.about__copy {
  padding-top: 42px;
  color: var(--muted);
  font-size: 18px;
}

.about__copy p {
  margin-bottom: 22px;
}

.about__copy .text-link {
  margin-top: 12px;
}

.section-heading--split {
  display: grid;
  align-items: end;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.55fr);
  gap: 60px;
  margin-bottom: 48px;
}

.section-heading--split h2 {
  max-width: 17ch;
  margin-bottom: 0;
}

.section-heading--split > p {
  margin-bottom: 4px;
  color: var(--muted);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-card {
  position: relative;
  display: flex;
  min-height: 260px;
  flex-direction: column;
  padding: 28px;
  overflow: hidden;
  background: var(--white);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: color 200ms ease, background-color 200ms ease, transform 200ms ease;
}

.service-card:hover {
  z-index: 2;
  color: var(--white);
  background: var(--navy);
  transform: translateY(-5px);
}

.service-card__number {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.service-card__icon {
  width: 56px;
  height: 56px;
  margin: auto 0 26px;
  color: var(--navy);
  transition: color 200ms ease, transform 200ms ease;
}

.service-card:hover .service-card__icon {
  color: var(--yellow);
  transform: translateY(-3px);
}

.logistics-icon {
  display: block;
  width: 100%;
  height: 100%;
  flex: 0 0 auto;
  background: currentColor;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}

.logistics-icon--package { -webkit-mask-image: url("../images/icons/package.svg"); mask-image: url("../images/icons/package.svg"); }
.logistics-icon--arrow-left-right { -webkit-mask-image: url("../images/icons/arrow-left-right.svg"); mask-image: url("../images/icons/arrow-left-right.svg"); }
.logistics-icon--route { -webkit-mask-image: url("../images/icons/route.svg"); mask-image: url("../images/icons/route.svg"); }
.logistics-icon--boxes { -webkit-mask-image: url("../images/icons/boxes.svg"); mask-image: url("../images/icons/boxes.svg"); }
.logistics-icon--map-pin-check { -webkit-mask-image: url("../images/icons/map-pin-check.svg"); mask-image: url("../images/icons/map-pin-check.svg"); }
.logistics-icon--warehouse { -webkit-mask-image: url("../images/icons/warehouse.svg"); mask-image: url("../images/icons/warehouse.svg"); }
.logistics-icon--calendar-clock { -webkit-mask-image: url("../images/icons/calendar-clock.svg"); mask-image: url("../images/icons/calendar-clock.svg"); }
.logistics-icon--calendar-check { -webkit-mask-image: url("../images/icons/calendar-check.svg"); mask-image: url("../images/icons/calendar-check.svg"); }
.logistics-icon--truck { -webkit-mask-image: url("../images/icons/truck.svg"); mask-image: url("../images/icons/truck.svg"); }
.logistics-icon--shopping-bag { -webkit-mask-image: url("../images/icons/shopping-bag.svg"); mask-image: url("../images/icons/shopping-bag.svg"); }
.logistics-icon--handshake { -webkit-mask-image: url("../images/icons/handshake.svg"); mask-image: url("../images/icons/handshake.svg"); }

.service-card h3 {
  max-width: 210px;
  min-height: 2.24em;
  margin: 0;
  transition: color 200ms ease;
}

.service-card h3 span {
  display: block;
}

.service-card:hover h3 {
  color: var(--white);
}

.coverage {
  overflow: hidden;
}

.coverage__grid {
  display: grid;
  align-items: center;
  grid-template-columns: 0.9fr 1fr;
  gap: clamp(70px, 10vw, 150px);
}

.coverage__visual {
  display: grid;
  min-height: 480px;
  place-items: center;
}

.coverage__orb {
  position: relative;
  display: grid;
  width: min(78vw, 430px);
  aspect-ratio: 1;
  place-items: center;
  border-radius: 50%;
  background: var(--yellow);
}

.coverage__orb::before,
.coverage__orb::after {
  position: absolute;
  border: 1px solid var(--line);
  border-radius: 50%;
  content: "";
}

.coverage__orb::before { inset: -38px; }
.coverage__orb::after { inset: -78px; opacity: 0.5; }

.coverage__orb img {
  position: relative;
  z-index: 2;
  width: 48%;
}

.coverage__pulse {
  position: absolute;
  z-index: 3;
  width: 20px;
  height: 20px;
  border: 5px solid var(--white);
  border-radius: 50%;
  background: var(--navy);
  box-shadow: 0 8px 20px rgba(9, 17, 88, 0.25);
}

.coverage__pulse--one { top: 18%; right: 4%; }
.coverage__pulse--two { bottom: 10%; left: 12%; }

.coverage__content > p:not(.eyebrow) {
  max-width: 580px;
  color: var(--muted);
  font-size: 18px;
}

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

.check-list li {
  position: relative;
  padding-left: 34px;
  color: var(--navy);
  font-weight: 700;
}

.check-list li::before {
  position: absolute;
  top: 5px;
  left: 0;
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 50%;
  color: var(--navy);
  background: var(--yellow);
  content: "✓";
  font-size: 11px;
  font-weight: 900;
}

.segments {
  color: var(--white);
  background: var(--navy);
}

.section-heading--center {
  max-width: 760px;
  margin: 0 auto 64px;
  text-align: center;
}

.section-heading--center .eyebrow {
  justify-content: center;
  color: var(--white);
}

.section-heading--center h2 {
  color: var(--white);
}

.section-heading--center > p:not(.eyebrow) {
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.7);
}

.segments-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.segments-grid article {
  position: relative;
  min-height: 310px;
  padding: 42px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
}

.segments-grid article::after {
  position: absolute;
  right: -60px;
  bottom: -80px;
  width: 220px;
  height: 220px;
  border: 38px solid rgba(255, 255, 0, 0.09);
  border-radius: 50% 4px 50% 50%;
  content: "";
}

.segments-grid span {
  display: block;
  margin-bottom: 76px;
  color: var(--yellow);
  font-size: 12px;
  font-weight: 800;
}

.segments-grid h3 {
  margin-bottom: 14px;
  color: var(--white);
  font-size: 30px;
}

.segments-grid p {
  position: relative;
  z-index: 2;
  max-width: 430px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
}

/* Forms */
.quote {
  color: var(--white);
  background: var(--navy-deep);
}

.quote__grid,
.contact__grid {
  display: grid;
  align-items: start;
  grid-template-columns: 0.72fr 1fr;
  gap: clamp(60px, 9vw, 130px);
}

.quote h2 {
  color: var(--white);
}

.quote__intro > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
}

.quote__steps {
  display: grid;
  gap: 18px;
  padding: 0;
  margin: 42px 0 0;
  list-style: none;
}

.quote__steps li {
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 600;
}

.quote__steps span {
  display: grid;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  color: var(--yellow);
  font-size: 12px;
  font-weight: 800;
}

.form-card {
  padding: clamp(28px, 4vw, 48px);
  color: var(--ink);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.form-card--bordered {
  border: 1px solid var(--line);
  box-shadow: none;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 17px 20px;
}

.form-field--full {
  grid-column: 1 / -1;
}

.form-field label,
.form-label {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid #c9c8d3;
  border-radius: 8px;
  color: var(--ink);
  background: var(--white);
  box-shadow: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.form-field textarea {
  height: 116px;
  min-height: 108px;
  resize: vertical;
}

.contact-page .form-field textarea,
.careers-page .form-field textarea {
  height: 96px;
  min-height: 96px;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--navy);
  outline: 0;
  box-shadow: 0 0 0 3px rgba(9, 17, 88, 0.12);
}

.form-consent {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 12px;
}

.form-consent .wpcf7-list-item {
  margin: 0;
}

.form-consent label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.form-consent input {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  margin-top: 2px;
  accent-color: var(--navy);
}

.form-submit {
  grid-column: 1 / -1;
  padding-top: 6px;
}

.form-submit .wpcf7-submit {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border: 2px solid var(--navy);
  border-radius: 8px;
  color: var(--white);
  background: var(--navy);
  font-weight: 800;
  cursor: pointer;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.form-submit .wpcf7-submit:hover {
  color: var(--navy);
  background: var(--yellow);
  border-color: var(--yellow);
}

.wpcf7-spinner {
  margin: 0 0 0 14px;
  background-color: var(--navy);
}

.wpcf7-not-valid-tip {
  margin-top: 6px;
  color: var(--danger);
  font-size: 12px;
  font-weight: 700;
}

.wpcf7 form .wpcf7-response-output {
  padding: 13px 15px;
  margin: 20px 0 0;
  border: 0;
  border-left: 4px solid var(--navy);
  border-radius: 6px;
  color: var(--navy);
  background: var(--navy-soft);
  font-size: 13px;
  font-weight: 700;
}

.wpcf7 form.sent .wpcf7-response-output {
  border-left-color: var(--success);
  color: var(--success);
  background: #eaf7f0;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.spam .wpcf7-response-output {
  border-left-color: var(--danger);
  color: var(--danger);
  background: #fff1f0;
}

.form-setup-note {
  padding: 16px;
  border-left: 4px solid var(--yellow);
  background: var(--soft);
  font-weight: 700;
}

.contact__content > p:not(.eyebrow) {
  max-width: 550px;
  color: var(--muted);
  font-size: 18px;
}

.contact-list {
  display: grid;
  gap: 18px;
  padding: 0;
  margin: 36px 0 0;
  list-style: none;
}

.contact-list li {
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.contact-list span {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-list a,
.contact-list p {
  margin: 0;
  color: var(--navy);
  font-weight: 700;
  text-decoration: none;
}

.contact-quote-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px;
  margin-top: 28px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
}

.contact-quote-cta p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.contact-quote-cta strong {
  display: block;
  margin-bottom: 2px;
  color: var(--navy);
  font-size: 16px;
  font-weight: 650;
}

.contact-quote-cta .button {
  min-height: 46px;
  flex: 0 0 auto;
  padding: 10px 16px;
  white-space: nowrap;
}

.whatsapp-fab {
  position: fixed;
  z-index: 900;
  right: 22px;
  bottom: 22px;
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: #1f9d55;
  box-shadow: 0 12px 30px rgba(18, 121, 71, 0.3);
  transition: transform 180ms ease;
}

.whatsapp-fab:hover {
  transform: translateY(-3px) scale(1.03);
}

/* Footer */
.site-footer {
  padding: 76px 0 26px;
  color: rgba(255, 255, 255, 0.74);
  background: #050a34;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.3fr 0.75fr 0.9fr 1fr;
  gap: clamp(34px, 4vw, 58px);
  padding-bottom: 56px;
}

.footer-brand img {
  width: 220px;
  margin-bottom: 24px;
}

.footer-brand p {
  max-width: 390px;
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
}

.footer-brand__cta {
  width: fit-content;
}

.footer-brand__cta:hover {
  color: var(--white);
}

.footer-column h2 {
  margin: 2px 0 22px;
  color: var(--white);
  font-size: 14px;
  letter-spacing: 0;
}

.footer-menu,
.footer-column .menu--fallback,
.footer-contact,
.footer-services,
.footer-socials {
  display: grid;
  gap: 11px;
}

.footer-menu a,
.footer-column .menu--fallback a,
.footer-contact a,
.footer-services a,
.footer-socials a {
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  text-decoration: none;
}

.footer-menu a:hover,
.footer-column .menu--fallback a:hover,
.footer-contact a:hover,
.footer-services a:hover,
.footer-socials a:hover {
  color: var(--yellow);
}

.footer-contact li {
  font-size: 14px;
}

.footer-contact strong {
  display: block;
  margin-bottom: 2px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-services {
  display: grid;
  gap: 11px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-socials__title {
  margin-top: 28px !important;
  margin-bottom: 13px !important;
}

.footer-socials {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
}

.footer-socials a,
.footer-socials > li > span {
  display: grid;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-items: center;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  color: var(--white);
  transition: color 180ms ease, border-color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.footer-socials > li > span {
  cursor: pointer;
}

.social-icon {
  display: block;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  color: var(--white);
  overflow: visible;
}

.footer-socials a:hover .social-icon,
.footer-socials > li > span:hover .social-icon {
  color: var(--yellow);
}

.footer-socials a:hover,
.footer-socials > li > span:hover {
  border-color: var(--yellow);
  background: rgba(255, 255, 0, 0.06);
  transform: translateY(-2px);
}

.site-footer__bottom {
  display: flex;
  align-items: center;
  gap: 30px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 12px;
}

.site-footer__bottom p {
  margin: 0 auto 0 0;
}

.site-footer__bottom a {
  color: rgba(255, 255, 255, 0.68);
  text-decoration: none;
}

.site-footer__bottom a:hover {
  color: var(--yellow);
}

/* Internal pages */
.page-main,
.not-found {
  min-height: 70vh;
  padding: 170px 0 100px;
}

.content-shell {
  max-width: 920px;
}

.entry__header {
  padding-bottom: 38px;
  margin-bottom: 48px;
  border-bottom: 1px solid var(--line);
}

.entry__header h1,
.not-found h1 {
  color: var(--navy);
}

.entry__content {
  color: var(--muted);
  font-size: 17px;
}

.entry__content h2,
.entry__content h3 {
  margin-top: 48px;
}

.entry__content a {
  color: var(--navy);
  font-weight: 700;
}

.posts-list {
  display: grid;
  gap: 24px;
}

.post-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.post-card h2 {
  font-size: 28px;
}

.post-card h2 a {
  text-decoration: none;
}

.not-found__inner {
  max-width: 760px;
  text-align: center;
}

.not-found__inner .eyebrow {
  justify-content: center;
}

.not-found__inner p:not(.eyebrow) {
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 18px;
}

/* Multipage institutional layout */
.button--ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.58);
  background: rgba(9, 17, 88, 0.18);
}

.button--ghost:hover {
  color: var(--navy);
  border-color: var(--white);
  background: var(--white);
}

.home-hero,
.internal-hero,
.image-feature {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-deep);
}

.home-hero {
  display: flex;
  min-height: 700px;
  align-items: center;
  padding: 142px 0 78px;
}

.home-hero__image,
.internal-hero__image,
.image-feature > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-hero__image {
  object-position: center center;
}

.home-hero__overlay,
.internal-hero__overlay,
.image-feature__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 10, 52, 0.97) 0%, rgba(9, 17, 88, 0.84) 42%, rgba(9, 17, 88, 0.2) 76%, rgba(9, 17, 88, 0.07) 100%);
}

.home-hero__content,
.internal-hero__content,
.image-feature__content {
  position: relative;
  z-index: 2;
}

.home-hero__content h1 {
  max-width: 720px;
  margin-bottom: 25px;
  color: var(--white);
  font-size: clamp(40px, 4.2vw, 56px);
}

.home-hero__content > p:not(.eyebrow) {
  max-width: 620px;
  margin-bottom: 36px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
}

.home-hero__actions {
  display: flex;
  gap: 14px;
}

.editorial-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(56px, 8vw, 110px);
}

.editorial-grid--reverse .editorial-image {
  order: 2;
}

.editorial-image {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: 4px 28px 4px 28px;
  background: var(--navy-soft);
}

.editorial-image::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 92px;
  height: 92px;
  border-top: 10px solid var(--yellow);
  border-left: 10px solid var(--yellow);
  content: "";
}

.editorial-image img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.editorial-image--portrait img {
  object-position: center;
}

.home-about .editorial-image {
  overflow: visible;
  background: transparent;
}

.home-about .editorial-image img {
  border-radius: 4px 28px 4px 28px;
}

.home-about .editorial-image::after {
  right: -18px;
  bottom: -18px;
}

.editorial-copy > p:not(.eyebrow),
.editorial-text p,
.coverage-summary p,
.coverage-detail p {
  color: var(--muted);
  font-size: 16px;
}

.editorial-copy h2,
.coverage-summary h2,
.coverage-detail h2,
.service-story-grid h2,
.segment-detail-grid h2,
.quote-page h2,
.contact-page h2,
.careers-page h2,
.image-feature h2,
.cta-band h2 {
  max-width: 17ch;
}

.editorial-copy .button,
.coverage-summary .button {
  margin-top: 12px;
}

.section-heading--split > div:last-child .button {
  margin-top: 14px;
}

.section-heading--split > div:last-child > p {
  color: var(--muted);
}

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

.service-card--link {
  color: inherit;
  text-decoration: none;
}

.image-feature {
  display: flex;
  min-height: 580px;
  align-items: center;
}

.image-feature > img {
  object-position: center;
}

.image-feature__overlay {
  background: linear-gradient(90deg, rgba(5, 10, 52, 0.96) 0%, rgba(9, 17, 88, 0.74) 52%, rgba(9, 17, 88, 0.1) 100%);
}

.image-feature__content {
  max-width: var(--container);
}

.image-feature__content h2 {
  max-width: 580px;
  color: var(--white);
}

.image-feature__content > p:not(.eyebrow) {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 17px;
}

.image-feature__content .text-link,
.image-feature__content .button {
  margin-top: 18px;
}

.image-feature--contained {
  min-height: 560px;
}

.coverage-summary,
.coverage-detail {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 0.95fr;
  gap: clamp(52px, 7vw, 96px);
}

.coverage-map {
  position: relative;
  width: min(100%, 570px);
  aspect-ratio: 3396 / 2078;
  justify-self: end;
  isolation: isolate;
}

.coverage-map::before {
  position: absolute;
  z-index: -1;
  inset: 12% 5% -8% 10%;
  border-radius: 50%;
  background: rgba(9, 17, 88, 0.09);
  filter: blur(28px);
  content: "";
}

.coverage-map__shape {
  position: absolute;
  inset: 0;
  background: var(--navy);
  -webkit-mask: url("../images/mapa-sao-paulo.svg") center / contain no-repeat;
  mask: url("../images/mapa-sao-paulo.svg") center / contain no-repeat;
}

.coverage-map__logo {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: 30%;
  height: auto;
  transform: translate(-50%, -50%);
}

.coverage-map__pin {
  position: absolute;
  z-index: 3;
  top: 55%;
  left: 65%;
  width: 13px;
  height: 13px;
  border: 3px solid var(--navy);
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 5px rgba(255, 255, 0, 0.25);
}

.photo-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.photo-card {
  position: relative;
  display: flex;
  min-height: 430px;
  align-items: flex-end;
  padding: 38px;
  overflow: hidden;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--navy);
  text-decoration: none;
}

.photo-card > img,
.photo-card__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.photo-card > img {
  object-fit: cover;
  transition: transform 400ms ease;
}

.photo-card__shade {
  background: linear-gradient(0deg, rgba(5, 10, 52, 0.95) 0%, rgba(9, 17, 88, 0.26) 75%);
}

.photo-card > div {
  position: relative;
  z-index: 2;
}

.photo-card h3 {
  margin: 0 0 10px;
  color: var(--white);
  font-size: 29px;
}

.photo-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.photo-card:hover > img {
  transform: scale(1.035);
}

.cta-band {
  padding: 76px 0;
  color: var(--white);
  background: var(--navy);
}

.cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.cta-band h2 {
  margin-bottom: 14px;
  color: var(--white);
}

.cta-band__inner > div > p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
}

.cta-band .button {
  flex: 0 0 auto;
}

.internal-hero {
  display: flex;
  min-height: 470px;
  align-items: center;
  padding: 112px 0 44px;
}

.internal-hero__image {
  object-position: center;
}

.internal-hero__overlay {
  background: linear-gradient(90deg, rgba(5, 10, 52, 0.98) 0%, rgba(9, 17, 88, 0.78) 52%, rgba(9, 17, 88, 0.3) 100%);
}

.internal-hero__content {
  width: min(calc(100% - 48px), var(--container));
}

.internal-hero h1 {
  max-width: 22ch;
  margin-bottom: 18px;
  color: var(--white);
  font-size: clamp(36px, 3.4vw, 46px);
}

.internal-hero h1 span {
  display: block;
}

.internal-hero__content > p:not(.eyebrow) {
  max-width: 860px;
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 17px;
  white-space: nowrap;
}

.multipage-main {
  overflow: hidden;
}

.editorial-text {
  display: grid;
  grid-template-columns: 0.95fr 1fr;
  gap: clamp(60px, 10vw, 150px);
}

.editorial-text p {
  font-size: 16px;
}

.service-story-grid {
  display: grid;
  gap: 72px;
}

.service-story-grid article {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 0.85fr;
  gap: clamp(48px, 8vw, 110px);
}

.service-story-grid article:nth-child(even) img {
  order: 2;
}

.service-story-grid img {
  width: 100%;
  min-height: 400px;
  object-fit: cover;
  border-radius: 4px 24px 4px 24px;
}

.service-story-grid p:not(.eyebrow) {
  color: var(--muted);
  font-size: 17px;
}

.segment-detail-grid {
  display: grid;
  gap: 80px;
}

.segment-detail-grid article {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 0.9fr;
  gap: clamp(50px, 8vw, 110px);
}

.segment-detail-grid article:nth-child(even) .segment-detail-grid__image {
  order: 2;
}

.segment-detail-grid__image {
  min-height: 450px;
  overflow: hidden;
  border-radius: var(--radius);
}

.segment-detail-grid__image img {
  width: 100%;
  min-height: 450px;
  object-fit: cover;
}

.segment-detail-grid p:not(.eyebrow) {
  color: var(--muted);
  font-size: 17px;
}

.quote-page,
.contact-page,
.careers-page {
  background: var(--soft);
}

.home-quote {
  border-top: 1px solid var(--line);
  background: var(--white);
}

.home-quote .form-card {
  padding: clamp(28px, 3vw, 38px);
}

.home-quote .form-grid {
  gap: 13px 16px;
}

.home-quote .form-field label,
.home-quote .form-label {
  margin-bottom: 6px;
}

.home-quote .form-field input,
.home-quote .form-field select {
  min-height: 44px;
  padding: 9px 12px;
}

.home-quote .form-field textarea {
  height: 88px;
  min-height: 84px;
  padding: 9px 12px;
}

.home-quote .form-consent {
  line-height: 1.45;
}

@media (min-width: 901px) {
  .home-quote .quote-page__intro {
    position: sticky;
    top: 112px;
    align-self: start;
  }
}

.quote-page .quote__grid {
  grid-template-columns: 0.65fr 1fr;
}

.quote-page__intro > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 17px;
}

.quote-page .quote__steps li {
  color: var(--navy);
}

.quote-page .quote__steps span {
  border-color: var(--line);
  color: var(--navy);
  background: var(--yellow);
}

.contact-page .contact__grid,
.careers-page .contact__grid {
  grid-template-columns: 0.72fr 1fr;
}

.home-faq {
  background: var(--soft);
}

.faq-layout {
  display: grid;
  align-items: start;
  grid-template-columns: 0.7fr 1fr;
  gap: clamp(56px, 9vw, 130px);
}

.faq-intro {
  position: sticky;
  top: 112px;
}

.faq-intro h2 {
  max-width: 15ch;
}

.faq-intro > p:not(.eyebrow) {
  max-width: 450px;
  margin: 0;
  color: var(--muted);
}

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

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

.faq-item summary {
  position: relative;
  padding: 24px 56px 24px 0;
  color: var(--navy);
  cursor: pointer;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.4;
  list-style: none;
}

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

.faq-item summary::after {
  position: absolute;
  top: 22px;
  right: 4px;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--navy);
  content: "+";
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.faq-item summary:hover::after {
  border-color: var(--navy);
  color: var(--yellow);
  background: var(--navy);
}

.faq-item[open] summary::after {
  color: var(--navy);
  background: var(--yellow);
  border-color: var(--yellow);
  transform: rotate(45deg);
}

.faq-answer {
  max-width: 680px;
  padding: 0 56px 24px 0;
  color: var(--muted);
}

.faq-answer p {
  margin: 0;
}

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

  .menu-toggle {
    display: block;
  }

  .hero__grid {
    grid-template-columns: minmax(0, 1fr) 390px;
    gap: 50px;
  }

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

  .site-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 46px;
  }
}

@media (max-width: 900px) {

  .internal-hero__content > p:not(.eyebrow) {
    white-space: normal;
  }

  .hero {
    min-height: auto;
    padding-top: 154px;
  }

  .hero__grid,
  .about__grid,
  .coverage__grid,
  .quote__grid,
  .contact__grid {
    grid-template-columns: 1fr;
  }

  .hero__visual {
    width: min(100%, 510px);
    min-height: 420px;
    margin: 0 auto;
  }

  .about__grid,
  .coverage__grid,
  .quote__grid,
  .contact__grid {
    gap: 54px;
  }

  .about__copy {
    padding-top: 0;
  }

  .section-heading--split {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .coverage__visual {
    order: 2;
    min-height: 430px;
  }

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

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

  .editorial-grid,
  .editorial-text,
  .coverage-summary,
  .coverage-detail,
  .service-story-grid article,
  .segment-detail-grid article,
  .quote-page .quote__grid,
  .contact-page .contact__grid,
  .careers-page .contact__grid {
    grid-template-columns: 1fr;
  }

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

  .faq-intro {
    position: static;
  }

  .contact-quote-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .contact-quote-cta .button {
    width: 100%;
  }

  .editorial-grid--reverse .editorial-image,
  .service-story-grid article:nth-child(even) img,
  .segment-detail-grid article:nth-child(even) .segment-detail-grid__image {
    order: initial;
  }

  .coverage-map {
    justify-self: center;
  }

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

  .cta-band__inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .section {
    padding: 68px 0;
  }

  h1 {
    font-size: clamp(35px, 10vw, 44px);
  }

  h2 {
    font-size: clamp(29px, 8vw, 37px);
  }

  .site-header,
  .site-header.is-scrolled {
    height: 72px;
  }

  .brand {
    width: 166px;
  }

  .hero {
    padding: 128px 0 74px;
  }

  .hero__grid {
    gap: 52px;
  }

  .hero__lead {
    font-size: 16px;
  }

  .hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__actions .text-link {
    justify-content: center;
  }

  .hero__visual {
    min-height: 340px;
  }

  .route-card--main {
    top: 42px;
    right: 10px;
    left: 10px;
    width: auto;
    padding: 28px;
  }

  .route-card__label {
    margin-bottom: 34px;
  }

  .route-card--main strong {
    font-size: 38px;
  }

  .route-card--top {
    top: 0;
    left: 0;
  }

  .route-card--bottom {
    right: 0;
    bottom: -2px;
  }

  .route-card--small {
    min-width: 90px;
    min-height: 58px;
    padding: 12px;
  }

  .intro-strip__inner {
    min-height: 0;
    align-items: center;
    flex-direction: column;
    padding-top: 28px;
    padding-bottom: 28px;
    gap: 14px;
    text-align: center;
  }

  .intro-strip ul {
    width: 100%;
    max-width: 100%;
    flex-wrap: nowrap;
    gap: 0;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .intro-strip ul::-webkit-scrollbar {
    display: none;
  }

  .intro-strip li {
    min-width: 0;
    flex: 0 0 100%;
    justify-content: center;
    scroll-snap-align: center;
  }

  .intro-strip__pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
  }

  .intro-strip__pagination button {
    position: relative;
    display: grid;
    width: 24px;
    height: 24px;
    place-items: center;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
  }

  .intro-strip__pagination button::after {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: rgba(9, 17, 88, 0.3);
    content: "";
    transition: width 180ms ease, background-color 180ms ease;
  }

  .intro-strip__pagination button.is-active::after {
    width: 22px;
    background: var(--navy);
  }

  .intro-strip p {
    font-size: 15px;
  }

  .intro-strip li + li::before {
    left: -13px;
  }

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

  .service-card {
    min-height: 190px;
    padding: 18px 14px;
  }

  .service-card__icon {
    width: 42px;
    height: 42px;
    margin-bottom: 18px;
  }

  .service-card h3 {
    min-height: 2.5em;
    font-size: 15px;
    line-height: 1.25;
  }

  .coverage__visual {
    min-height: 350px;
  }

  .coverage__orb::before { inset: -22px; }
  .coverage__orb::after { inset: -44px; }

  .segments-grid article {
    min-height: 280px;
    padding: 30px;
  }

  .segments-grid span {
    margin-bottom: 58px;
  }

  .form-card {
    padding: 24px 18px;
  }

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

  .form-field--full,
  .form-consent,
  .form-submit {
    grid-column: auto;
  }

  .form-submit .wpcf7-submit {
    width: 100%;
  }

  .site-footer {
    padding-top: 58px;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-bottom: 48px;
    text-align: center;
  }

  .footer-column,
  .footer-brand {
    display: flex;
    align-items: center;
    flex-direction: column;
  }

  .footer-brand img {
    margin-right: auto;
    margin-left: auto;
  }

  .footer-brand p {
    margin-right: auto;
    margin-left: auto;
  }

  .footer-brand__cta {
    justify-content: center;
    margin-right: auto;
    margin-left: auto;
  }

  .footer-socials {
    justify-content: center;
  }

  .footer-menu,
  .footer-services,
  .footer-contact {
    width: 100%;
    max-width: 440px;
    grid-template-columns: 1fr;
    justify-items: center;
    padding: 0;
    margin-right: auto;
    margin-left: auto;
    gap: 10px;
  }

  .site-footer__bottom {
    align-items: center;
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .site-footer__bottom p {
    margin: 0;
  }

  .whatsapp-fab {
    right: 16px;
    bottom: 16px;
  }

  .page-main,
  .not-found {
    padding: 128px 0 76px;
  }

  .home-hero {
    min-height: 640px;
    align-items: flex-end;
    padding: 112px 0 58px;
  }

  .home-hero__image {
    object-position: 72% center;
  }

  .home-hero__overlay {
    background: linear-gradient(0deg, rgba(5, 10, 52, 0.98) 0%, rgba(9, 17, 88, 0.78) 62%, rgba(9, 17, 88, 0.3) 100%);
  }

  .home-hero__content h1,
  .internal-hero h1 {
    font-size: 35px;
  }

  .home-hero__content > p:not(.eyebrow),
  .internal-hero__content > p:not(.eyebrow) {
    font-size: 16px;
  }

  .home-hero__actions {
    flex-direction: column;
  }

  .home-hero__actions .button {
    width: 100%;
  }

  .editorial-image,
  .editorial-image img,
  .service-story-grid img,
  .segment-detail-grid__image,
  .segment-detail-grid__image img {
    min-height: 360px;
  }

  .services-grid--preview,
  .photo-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .photo-cards {
    grid-template-columns: 1fr;
  }

  .photo-card {
    min-height: 360px;
    padding: 28px;
  }

  .image-feature {
    min-height: 540px;
    align-items: center;
    padding: 72px 0;
  }

  .image-feature > img {
    object-position: 64% center;
  }

  .image-feature__overlay {
    background: linear-gradient(0deg, rgba(5, 10, 52, 0.97) 0%, rgba(9, 17, 88, 0.74) 68%, rgba(9, 17, 88, 0.2) 100%);
  }

  .cta-band {
    padding: 64px 0;
  }

  .cta-band__inner {
    gap: 28px;
  }

  .cta-band .button {
    width: 100%;
  }

  .internal-hero {
    min-height: 430px;
    padding: 96px 0 40px;
  }

  .internal-hero__image {
    object-position: 62% center;
  }

  .internal-hero__overlay {
    background: linear-gradient(0deg, rgba(5, 10, 52, 0.98) 0%, rgba(9, 17, 88, 0.77) 70%, rgba(9, 17, 88, 0.28) 100%);
  }

  .internal-hero__content {
    width: min(calc(100% - 32px), var(--container));
  }

  .service-story-grid,
  .segment-detail-grid {
    gap: 56px;
  }
}

@media (max-width: 360px) {
  .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .brand {
    width: 150px;
  }

  .mobile-drawer {
    padding: 20px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .route-card--main strong {
    font-size: 34px;
  }
}

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

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