:root {
  --navy: #1f254f;
  --navy-deep: #151936;
  --gold: #c8a12d;
  --gold-dark: #9f7e1f;
  --ink: #202331;
  --muted: #616779;
  --line: #dfe2ea;
  --paper: #ffffff;
  --soft: #f4f5f8;
  --soft-gold: #f6f0df;
  --success: #177a4d;
  --radius: 18px;
  --shadow: 0 22px 60px rgba(17, 22, 52, 0.12);
  --shell: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

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

:focus-visible {
  outline: 3px solid rgba(200, 161, 45, 0.55);
  outline-offset: 4px;
}

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

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 9999;
  padding: 10px 14px;
  background: var(--paper);
  color: var(--navy);
  border-radius: 8px;
  transform: translateY(-160%);
}

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

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 1000;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.17);
}

.header-inner {
  min-height: 88px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 142px;
  height: auto;
}

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

.site-nav a {
  position: relative;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 750;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  white-space: nowrap;
}

.site-nav a:not(.nav-careers):not(.mobile-client-portal)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 2px;
  background: var(--gold);
  transition: right 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  right: 0;
}

.nav-careers {
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 999px;
}

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 14px;
}

.client-portal-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: var(--gold);
  color: var(--navy-deep);
  text-decoration: none;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.03em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(9, 13, 38, 0.2);
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.client-portal-link:hover,
.client-portal-link:focus-visible {
  background: #f2ce63;
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(9, 13, 38, 0.28);
}

.mobile-client-portal {
  display: none;
}

.language-switcher {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.78rem;
  font-weight: 800;
}

.language-switcher a {
  text-decoration: none;
  opacity: 0.65;
}

.language-switcher a[aria-current="page"] {
  opacity: 1;
  color: #f5cf5c;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 9px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-button span {
  display: block;
  height: 2px;
  margin: 6px 0;
  border-radius: 999px;
  background: #fff;
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
  min-height: 790px;
  height: 92vh;
  max-height: 980px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: var(--navy-deep);
}

.hero-video,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-video {
  object-fit: cover;
}

.hero-shade {
  background: rgba(12, 16, 43, 0.67);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 92px;
}

.eyebrow {
  margin: 0 0 13px;
  color: #f2ce63;
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

.hero h1 {
  max-width: 870px;
  margin: 0;
  font-size: clamp(2.65rem, 6vw, 5.55rem);
  line-height: 0.99;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.hero-lead {
  max-width: 690px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.03rem, 1.7vw, 1.25rem);
}

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

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 21px;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 820;
  cursor: pointer;
  transition: transform 170ms ease, background-color 170ms ease, border-color 170ms ease;
}

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

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

.button-gold:hover {
  background: #d5b03f;
}

.button-outline {
  border-color: rgba(255, 255, 255, 0.52);
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}

.button-outline:hover {
  background: rgba(255, 255, 255, 0.12);
}

.button-light {
  background: #fff;
  color: var(--navy);
}

.hero-proof {
  max-width: 820px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 58px 0 0;
  padding: 0;
  list-style: none;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-proof li {
  min-height: 104px;
  padding: 20px;
  background: rgba(17, 22, 57, 0.69);
}

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

.hero-proof strong {
  color: #f3d06c;
  font-size: 1.12rem;
}

.hero-proof span {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.82rem;
}

.group-strip {
  position: relative;
  z-index: 3;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.group-strip-inner {
  min-height: 126px;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 34px;
  align-items: center;
}

.group-strip p {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
}

.group-logos {
  display: grid;
  grid-template-columns: repeat(6, minmax(70px, 1fr));
  gap: 24px;
  align-items: center;
}

.group-logos a {
  display: flex;
  align-items: center;
  justify-content: center;
}

.group-logos img {
  width: auto;
  height: 54px;
  object-fit: contain;
  filter: saturate(0.8);
  transition: filter 160ms ease, transform 160ms ease;
}

.group-logos a:hover img {
  filter: none;
  transform: translateY(-2px);
}

.section {
  padding: 108px 0;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
  gap: 84px;
  align-items: center;
}

.section-copy h2,
.section-heading h2,
.contact-copy h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2.05rem, 4.2vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.section-copy > p:not(.eyebrow) {
  max-width: 680px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.credential-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 34px;
}

.credential-grid article {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
}

.credential-grid span {
  display: block;
  color: var(--gold-dark);
  font-size: 1.35rem;
  font-weight: 900;
}

.credential-grid h3 {
  margin: 8px 0 0;
  color: var(--navy);
  font-size: 0.95rem;
}

.credential-grid p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.history-visual {
  min-height: 570px;
  position: relative;
}

.history-photo {
  position: absolute;
  margin: 0;
  overflow: hidden;
  background: var(--soft);
  box-shadow: var(--shadow);
}

.history-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.history-photo figcaption {
  position: absolute;
  inset: auto 0 0;
  padding: 14px 16px;
  color: #fff;
  background: rgba(20, 24, 52, 0.85);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.history-photo-old {
  width: 72%;
  height: 360px;
  top: 0;
  left: 0;
  border-radius: 22px 22px 5px 22px;
}

.history-photo-now {
  width: 72%;
  height: 370px;
  right: 0;
  bottom: 0;
  border: 10px solid #fff;
  border-radius: 5px 22px 22px 22px;
}


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

.video-story-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(500px, 1.22fr);
  gap: 72px;
  align-items: center;
}

.video-story-copy h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2.05rem, 4.2vw, 3.8rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.video-story-copy > p:not(.eyebrow) {
  margin: 20px 0 0;
  color: var(--muted);
}

.video-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 30px 0 24px;
  padding: 0;
  list-style: none;
}

.video-facts li {
  min-height: 92px;
  padding: 15px;
  border: 1px solid rgba(31, 37, 79, 0.13);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.54);
}

.video-facts strong,
.video-facts span {
  display: block;
}

.video-facts strong {
  color: var(--navy);
  font-size: 1.12rem;
  font-weight: 900;
}

.video-facts span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.35;
}

.text-link {
  color: var(--gold-dark);
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 850;
}

.text-link span {
  display: inline-block;
  margin-left: 4px;
  transition: transform 160ms ease;
}

.text-link:hover span {
  transform: translate(2px, -2px);
}

.video-lite {
  aspect-ratio: 16 / 9;
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  background: var(--navy-deep);
  box-shadow: var(--shadow);
  isolation: isolate;
}

.video-lite > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-lite-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(12, 16, 43, 0.08), rgba(12, 16, 43, 0.64));
}

.video-play {
  position: absolute;
  left: 50%;
  bottom: 32px;
  z-index: 2;
  display: grid;
  grid-template-columns: auto auto auto;
  gap: 12px;
  align-items: center;
  min-width: 245px;
  padding: 11px 16px 11px 11px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 999px;
  background: rgba(18, 23, 54, 0.9);
  color: #fff;
  transform: translateX(-50%);
  cursor: pointer;
  box-shadow: 0 14px 34px rgba(10, 14, 38, 0.34);
  transition: transform 180ms ease, background-color 180ms ease;
}

.video-play:hover,
.video-play:focus-visible {
  background: rgba(31, 37, 79, 0.98);
  transform: translateX(-50%) translateY(-2px);
}

.video-play-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy-deep);
}

.video-play-icon svg {
  width: 23px;
  height: 23px;
  fill: currentColor;
}

.video-play > span:not(.video-play-icon) {
  font-size: 0.85rem;
  font-weight: 850;
  white-space: nowrap;
}

.video-play small {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.7rem;
}

.video-lite.is-playing iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  border: 0;
}

.video-privacy {
  margin: 11px 4px 0;
  color: var(--muted);
  font-size: 0.74rem;
}

.services-section,
.clients-section,
.insights-section {
  background: var(--soft);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(250px, 0.55fr);
  gap: 46px;
  align-items: end;
  margin-bottom: 45px;
}

.section-heading > p {
  margin: 0;
  color: var(--muted);
}

.section-heading.light h2,
.section-heading.light > p {
  color: #fff;
}

.section-heading.light > p {
  color: rgba(255, 255, 255, 0.72);
}

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

.service-card {
  grid-column: span 2;
  min-height: 440px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 35px rgba(17, 22, 52, 0.06);
}

.service-card:nth-child(4),
.service-card:nth-child(5) {
  grid-column: span 3;
}

.service-image {
  height: 190px;
  overflow: hidden;
  background: #d9dce5;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 280ms ease;
}

.service-card:hover .service-image img {
  transform: scale(1.035);
}

.service-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 25px;
}

.service-body h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1.22rem;
  line-height: 1.2;
}

.service-body p {
  margin: 12px 0 24px;
  color: var(--muted);
  font-size: 0.91rem;
}

.service-body a {
  margin-top: auto;
  color: var(--gold-dark);
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 850;
}

.service-body a span {
  display: inline-block;
  margin-left: 6px;
  transition: transform 160ms ease;
}

.service-body a:hover span {
  transform: translateX(4px);
}


.traffic-section {
  background: #fff;
}

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

.traffic-card {
  min-height: 340px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #fff 0%, #f7f8fb 100%);
  box-shadow: 0 12px 34px rgba(17, 22, 52, 0.06);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.traffic-card:hover {
  transform: translateY(-4px);
  border-color: rgba(200, 161, 45, 0.55);
  box-shadow: 0 18px 42px rgba(17, 22, 52, 0.1);
}

.traffic-icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: var(--navy);
  color: #f2ce63;
}

.traffic-icon svg {
  width: 40px;
  height: 40px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.traffic-vehicle {
  display: inline-block;
  margin-top: 28px;
  color: var(--gold-dark);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.traffic-card h3 {
  margin: 7px 0 0;
  color: var(--navy);
  font-size: 1.4rem;
  line-height: 1.15;
}

.traffic-card p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.traffic-callout {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  margin-top: 22px;
  padding: 22px 26px;
  border-radius: 14px;
  background: var(--soft-gold);
  color: var(--navy);
}

.traffic-callout a {
  color: var(--gold-dark);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 850;
  white-space: nowrap;
}

.traffic-callout a span {
  display: inline-block;
  margin-left: 5px;
  transition: transform 160ms ease;
}

.traffic-callout a:hover span {
  transform: translateX(4px);
}

.operating-section {
  background: var(--navy-deep);
  color: #fff;
}

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

.process-grid article {
  min-height: 235px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
}

.process-grid span {
  color: #f2ce63;
  font-weight: 900;
}

.process-grid h3 {
  margin: 34px 0 0;
  font-size: 1.1rem;
}

.process-grid p {
  margin: 9px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.87rem;
}

.company-quote {
  max-width: 850px;
  margin: 70px 0 0 auto;
  padding: 0 0 0 32px;
  border-left: 3px solid var(--gold);
}

.company-quote p {
  margin: 0;
  font-size: clamp(1.45rem, 3vw, 2.65rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.company-quote cite {
  display: block;
  margin-top: 15px;
  color: #f2ce63;
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.client-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.client-logo {
  min-height: 116px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
}

.client-logo img {
  width: 100%;
  max-height: 58px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.74;
  transition: filter 160ms ease, opacity 160ms ease, transform 160ms ease;
}

.client-logo:hover img {
  filter: none;
  opacity: 1;
  transform: scale(1.03);
}

.coverage-section {
  background: #fff;
}

.coverage-split {
  align-items: stretch;
}

.coverage-note {
  padding-left: 16px;
  border-left: 3px solid var(--gold);
  font-size: 0.9rem !important;
}

.direct-contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 30px;
}

.direct-contact a {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  text-decoration: none;
}

.direct-contact strong,
.direct-contact span {
  display: block;
}

.direct-contact strong {
  color: var(--navy);
  font-size: 1.02rem;
}

.direct-contact span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.75rem;
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.location-card {
  min-height: 164px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 23px;
  border-radius: 16px;
  background: var(--navy);
  color: #fff;
  text-decoration: none;
  transition: transform 180ms ease, background-color 180ms ease;
}

.location-card:hover {
  transform: translateY(-3px);
  background: #282f65;
}

.location-pin {
  width: 16px;
  height: 16px;
  position: relative;
  border: 3px solid #f1cb61;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.location-pin::after {
  content: "";
  width: 4px;
  height: 4px;
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: #f1cb61;
}

.location-card strong {
  margin-top: 16px;
  font-size: 1.15rem;
}

.location-type {
  margin-top: 4px;
  color: #f2ce63;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.location-card small {
  color: rgba(255, 255, 255, 0.7);
}

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

.insight-card {
  min-height: 280px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  overflow: hidden;
}

.insight-card summary {
  position: relative;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  cursor: pointer;
  list-style: none;
}

.insight-card summary::-webkit-details-marker {
  display: none;
}

.insight-card summary::after {
  content: "+";
  position: absolute;
  top: 24px;
  right: 26px;
  color: var(--gold-dark);
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1;
}

.insight-card[open] summary::after {
  content: "−";
}

.insight-card summary span {
  color: var(--gold-dark);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.insight-card h3 {
  margin: 12px 0 0;
  color: var(--navy);
  font-size: 1.45rem;
  line-height: 1.18;
  letter-spacing: -0.025em;
}

.insight-card > div {
  padding: 0 28px 28px;
}

.insight-card > div p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.insight-card[open] summary {
  min-height: auto;
  padding-bottom: 18px;
}

.contact-section {
  background: var(--navy);
  color: #fff;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(430px, 1.15fr);
  gap: 82px;
  align-items: start;
}

.contact-copy h2 {
  color: #fff;
}

.contact-copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
}

.contact-links {
  display: grid;
  gap: 10px;
  margin-top: 34px;
}

.contact-links a {
  display: grid;
  grid-template-columns: 115px 1fr;
  gap: 16px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  text-decoration: none;
}

.contact-links span {
  color: #f2ce63;
  font-size: 0.75rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-links strong {
  overflow-wrap: anywhere;
}

.contact-links a.contact-client-portal {
  margin-top: 8px;
  padding: 16px;
  border: 1px solid rgba(242, 206, 99, 0.46);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.contact-links a.contact-client-portal:hover,
.contact-links a.contact-client-portal:focus-visible {
  border-color: #f2ce63;
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
}

.contact-links .contact-client-portal strong .portal-arrow {
  display: inline;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: normal;
  text-transform: none;
}

.quote-builder {
  padding: 32px;
  border-radius: 20px;
  background: #fff;
  color: var(--ink);
  box-shadow: var(--shadow);
}

.field + .field {
  margin-top: 18px;
}

.field label {
  display: block;
  margin-bottom: 7px;
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 820;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid #cfd3df;
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  padding: 12px 13px;
}

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

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--gold);
  outline: 3px solid rgba(200, 161, 45, 0.18);
}

.quote-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.quote-actions .button-light {
  border-color: var(--line);
  background: var(--soft);
}

.form-status {
  min-height: 1.4em;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.8rem;
}

.site-footer {
  padding: 72px 0 24px;
  background: var(--navy-deep);
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 48px;
}

.footer-logo {
  width: 150px;
  height: auto;
}

.footer-grid p {
  max-width: 340px;
  color: rgba(255, 255, 255, 0.62);
}

.footer-grid h2 {
  margin: 0 0 18px;
  color: #f2ce63;
  font-size: 0.78rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.footer-grid a {
  display: block;
  margin: 9px 0;
  color: rgba(255, 255, 255, 0.76);
  text-decoration: none;
  font-size: 0.88rem;
}

.footer-grid a:hover {
  color: #fff;
}

.footer-grid a.footer-client-portal {
  margin-top: 17px;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: #f2ce63;
  font-weight: 800;
}

.footer-client-portal small {
  display: block;
  margin-top: 1px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 55px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
}

.footer-bottom p {
  margin: 0;
}

.floating-whatsapp {
  width: 58px;
  height: 58px;
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 900;
  display: grid;
  place-items: center;
  border: 4px solid #fff;
  border-radius: 50%;
  background: var(--success);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(23, 122, 77, 0.34);
  font-size: 0.72rem;
  font-weight: 900;
}

@media (max-width: 1080px) {
  .header-inner {
    gap: 16px;
  }

  .site-nav {
    gap: 12px;
  }

  .site-nav a {
    font-size: 0.69rem;
  }

  .header-actions {
    gap: 9px;
  }

  .client-portal-link {
    padding: 8px 10px;
    font-size: 0.66rem;
  }

  .split,
  .contact-layout {
    gap: 48px;
  }

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

@media (max-width: 960px) {
  .site-header {
    position: absolute;
  }

  .header-inner {
    grid-template-columns: auto 1fr auto;
  }

  .menu-button {
    display: block;
    justify-self: end;
    order: 2;
  }

  .header-actions {
    order: 3;
  }

  .client-portal-desktop {
    display: none;
  }

  .language-switcher {
    order: 3;
  }

  .site-nav {
    position: fixed;
    inset: 0;
    width: 100%;
    max-width: none;
    justify-self: stretch;
    z-index: -1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 22px;
    padding: 100px 24px 40px;
    background: rgba(15, 19, 45, 0.98);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease;
  }

  .site-nav.is-open {
    z-index: 900;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .site-nav a {
    font-size: 1.02rem;
  }

  .site-nav .mobile-client-portal {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 4px;
    padding: 12px 18px;
    border-radius: 999px;
    background: var(--gold);
    color: var(--navy-deep);
    font-weight: 850;
  }

  .site-nav .mobile-client-portal:hover,
  .site-nav .mobile-client-portal:focus-visible {
    background: #f2ce63;
  }

  .menu-button.is-open {
    position: relative;
    z-index: 1000;
  }

  .menu-button.is-open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .menu-button.is-open span:nth-child(2) {
    opacity: 0;
  }

  .menu-button.is-open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .hero {
    min-height: 760px;
    height: auto;
    padding: 145px 0 70px;
  }

  .hero-content {
    padding-top: 0;
  }

  .group-strip-inner,
  .split,
  .contact-layout,
  .section-heading,
  .video-story-layout {
    grid-template-columns: 1fr;
  }

  .group-strip-inner {
    padding: 28px 0;
  }

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

  .history-visual {
    min-height: 530px;
  }

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

  .service-card,
  .service-card:nth-child(4),
  .service-card:nth-child(5) {
    grid-column: auto;
  }

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

  .video-story-layout {
    gap: 42px;
  }

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

  .insight-card,
  .insight-card summary {
    min-height: auto;
  }

  .insight-card summary {
    padding-top: 34px;
  }

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

@media (max-width: 640px) {
  .shell {
    width: min(calc(100% - 28px), var(--shell));
  }

  .header-inner {
    min-height: 76px;
    gap: 10px;
  }

  .brand img {
    width: 124px;
  }

  .language-switcher {
    font-size: 0.72rem;
  }

  .hero {
    min-height: 760px;
    padding-top: 128px;
  }

  .hero h1 {
    font-size: clamp(2.45rem, 13vw, 4.2rem);
  }

  .hero-proof {
    grid-template-columns: 1fr;
  }

  .hero-proof li {
    min-height: auto;
  }

  .group-logos {
    gap: 12px;
  }

  .group-logos img {
    height: 42px;
  }

  .section {
    padding: 78px 0;
  }

  .section-copy h2,
  .section-heading h2,
  .contact-copy h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .credential-grid,
  .service-grid,
  .process-grid,
  .traffic-grid,
  .client-grid,
  .location-grid,
  .direct-contact {
    grid-template-columns: 1fr;
  }

  .history-visual {
    min-height: 430px;
  }

  .history-photo-old {
    width: 82%;
    height: 285px;
  }

  .history-photo-now {
    width: 82%;
    height: 280px;
  }

  .service-card {
    min-height: 0;
  }

  .video-facts {
    grid-template-columns: 1fr;
  }

  .video-facts li {
    min-height: 0;
  }

  .video-play {
    bottom: 18px;
    min-width: 0;
    grid-template-columns: auto auto;
  }

  .video-play small {
    display: none;
  }

  .traffic-card {
    min-height: 0;
  }

  .traffic-callout {
    align-items: flex-start;
    flex-direction: column;
  }

  .quote-builder {
    padding: 22px;
  }

  .quote-actions {
    display: grid;
  }

  .quote-actions .button {
    width: 100%;
  }

  .contact-links a {
    grid-template-columns: 1fr;
    gap: 3px;
  }

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

  .footer-bottom {
    flex-direction: column;
  }

  .floating-whatsapp {
    width: 54px;
    height: 54px;
    right: 14px;
    bottom: 14px;
  }
}

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

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

  .hero-video {
    display: none;
  }
}
