@font-face {
  font-family: "DM Sans";
  src: url("../assets/fonts/dm-sans-400.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "DM Sans";
  src: url("../assets/fonts/dm-sans-500.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "DM Sans";
  src: url("../assets/fonts/dm-sans-700.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: "Space Grotesk";
  src: url("../assets/fonts/space-grotesk-400.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Space Grotesk";
  src: url("../assets/fonts/space-grotesk-500.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "Space Grotesk";
  src: url("../assets/fonts/space-grotesk-600.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: "Space Grotesk";
  src: url("../assets/fonts/space-grotesk-700.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}
:root {
  color-scheme: only light;
  --navy: #14213d;
  --deep: #0e1830;
  --gold: #c7a426;
  --green: #2c724e;
  --mint: #8dc9a5;
  --blue: #3c6e7d;
  --beige: #efe7d8;
  --off: #f7f7f4;
  --teal: #3c6e7d;
  --text: #46536d;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  color-scheme: only light;
}
body {
  margin: 0;
  background: var(--off);
  color: var(--navy);
  font-family: "DM Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
}
.fade-up-section {
  opacity: 0;
  transform: translateY(44px);
  transition:
    opacity 0.85s ease,
    transform 0.85s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: opacity, transform;
}
.fade-up-section.is-visible {
  opacity: 1;
  transform: translateY(0);
}
a {
  color: inherit;
  text-decoration: none;
}
.wrap {
  width: min(1216px, calc(100% - 48px));
  margin: auto;
}
h1,
h2,
h3 {
  font-family: "Space Grotesk", sans-serif;
}
h2 {
  font-size: 36px;
  line-height: 1.25;
  letter-spacing: -0.72px;
  margin: 16px 0 0;
}
.eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin: 0;
}
.mint {
  color: var(--mint);
}
.gold {
  color: var(--gold);
}
.teal {
  color: var(--teal);
}
.site-header {
  height: 72px;
  background: var(--off);
  position: sticky;
  top: 0;
  z-index: 30;
}
.navbar {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: inline-flex;
  align-items: center;
}
.logo-img {
  display: block;
  width: auto;
  object-fit: contain;
}
.logo-header .logo-img {
  height: 46px;
  max-width: 185px;
}
.logo-footer .logo-img {
  height: 56px;
  max-width: 225px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 38px;
}
.nav-links > a,
.companies-menu > button {
  font: 400 14px/1 "DM Sans";
  letter-spacing: 2px;
  text-transform: uppercase;
  background: none;
  border: 0;
  padding: 26px 0 12px;
  cursor: pointer;
}
.nav-links > a.active {
  border-bottom: 2px solid var(--gold);
}
.nav-links .contact-nav {
  border: 1px solid var(--navy);
  padding: 11px 18px;
  margin-top: 13px;
}
.companies-menu {
  position: relative;
}
.company-dropdown {
  display: none;
  position: absolute;
  right: 0;
  top: 56px;
  background: var(--off);
  min-width: 210px;
  padding: 10px;
  border: 1px solid #d5d6d3;
  box-shadow: 0 10px 22px #07132922;
}
.company-dropdown a {
  display: block;
  padding: 10px 12px;
  font-size: 13px;
}
.companies-menu:hover .company-dropdown,
.companies-menu:focus-within .company-dropdown {
  display: block;
}
.menu-toggle {
  display: none;
  background: none;
  border: 0;
  width: 40px;
}
.menu-toggle i {
  display: block;
  height: 2px;
  background: var(--navy);
  margin: 6px;
}
.home-hero {
  min-height: 88vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}
.hero-slides,
.slide,
.hero-shade {
  position: absolute;
  inset: 0;
}
.slide {
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.035);
  transition:
    opacity 1s ease,
    transform 6.5s linear;
}
.slide.active {
  opacity: 1;
  transform: scale(1);
}
.hero-shade {
  background: linear-gradient(
    90deg,
    #091835ed 0%,
    #0d2a52c7 55%,
    #0e416f74 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  color: var(--off);
  padding: 90px 0 105px;
}
.home-hero h1 {
  font-size: 72px;
  line-height: 1.06;
  letter-spacing: -1.44px;
  margin: 20px 0 28px;
}
.hero-eyebrow2 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.home-hero h1 em {
  font-style: normal;
  color: var(--gold);
}
.hero-lead {
  font-size: 18px;
  line-height: 1.55;
  color: #edf0f3;
}
.hero-buttons {
  display: flex;
  gap: 14px;
  margin-top: 42px;
}
.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  border: 1px solid transparent;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  background: transparent;
  cursor: pointer;
}
.gold-button {
  background: var(--gold);
  color: var(--navy);
}
.ghost-button {
  border-color: #ffffff88;
  color: white;
}
.ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid #c7a4266b;
  right: -55px;
  top: 27%;
  width: 360px;
  height: 360px;
}
.ring-b {
  right: 3px;
  top: 35%;
  width: 245px;
  height: 245px;
}
.brand-story {
  background: var(--beige);
  padding: 96px 0;
}
.story-layout {
  display: grid;
  grid-template-columns: 1fr 1.23fr;
  gap: 96px;
}
.color-lines {
  display: flex;
  gap: 6px;
  margin-top: 28px;
}
.color-lines i {
  width: 56px;
  height: 4px;
  background: #c7a426;
}
.color-lines i:nth-child(2) {
  background: #2c724e;
}
.color-lines i:nth-child(3) {
  background: #3c6e7d;
}
.color-lines i:nth-child(4) {
  background: #8dc9a5;
}
.story-text {
  color: var(--text);
}
.story-text > p {
  margin: 0 0 22px;
  line-height: 1.65;
}
.credibility {
  border-left: 2px solid var(--mint);
  padding-left: 20px;
}
.credibility b {
  display: block;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 11px;
  color: #7d8490;
  margin-bottom: 14px;
}
.credibility span {
  display: inline-block;
  padding: 7px 13px;
  border: 1px solid var(--gold);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 11px;
  margin: 0 6px 5px 0;
}
.credibility span:nth-of-type(2),
.credibility span:nth-of-type(4) {
  border-color: var(--green);
}
.credibility span:nth-of-type(3) {
  border-color: var(--blue);
}
.credibility span:nth-of-type(5) {
  border-color: var(--mint);
}
.companies {
  position: relative;
  background: var(--navy) url("../assets/companies-bg.jpg") center/cover fixed;
  background-blend-mode: soft-light;
  color: var(--off);
  padding: 96px 0;
}
.companies:before {
  content: "";
  position: absolute;
  inset: 0;
  background: #14213df2;
}
.companies .wrap {
  position: relative;
}
.companies h2 {
  margin-bottom: 52px;
}
.company-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.company-card {
  border: 1px solid #f7f7f4c2;
  background: #2a3b5978;
  min-height: 360px;
  padding: 34px 36px;
  display: flex;
  flex-direction: column;
}
.company-card h3 {
  font-size: 36px;
  line-height: 1.1;
  margin: 0 0 12px;
}
.company-card > b {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #aeb6c5;
}
.company-card hr {
  width: 100%;
  border: 0;
  border-top: 1px solid #c7a42647;
  margin: 22px 0;
}
.company-card p {
  font-size: 14px;
  line-height: 1.65;
  color: #ccd3df;
  margin: 0 0 24px;
}
.company-card > a {
  align-self: flex-start;
  margin-top: auto;
  padding: 10px 20px;
  border: 1px solid currentColor;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 11px;
}
.gold-card h3,
.gold-card > a {
  color: #efc43d;
}
.mint-card h3,
.mint-card > a {
  color: var(--mint);
}
.blue-card h3,
.blue-card > a {
  color: var(--blue);
}
.company-card small {
  border: 1px solid #677287;
  padding: 5px 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin: -33px 0 0 155px;
  width: max-content;
}
.mission-link {
  display: block;
  background: var(--gold);
  text-align: center;
  padding: 21px;
  margin-top: 38px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
}
.social-proof {
  background: #182642;
  color: var(--off);
  padding: 78px 0;
}
.social-proof h2 {
  margin-bottom: 38px;
}
.agency-track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  overflow: hidden;
}
.agency-box {
  height: 86px;
  border: 1px solid var(--gold);
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 16px;
  font-size: 13px;
  line-height: 1.35;
}
.agency-box:nth-child(even) {
  border-color: var(--green);
}
.agency-icon {
  font-size: 25px;
}
.arrows {
  text-align: center;
  margin-top: 20px;
}
.arrows button {
  width: 37px;
  height: 37px;
  border: 1px solid #617087;
  background: transparent;
  color: white;
  font-size: 24px;
  margin: 0 3px;
}
.cta {
  background: var(--deep);
  color: var(--off);
  padding: 82px 0;
}
.cta .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cta h2 {
  margin: 0;
  font-size: 36px;
  line-height: 1.2;
}
.cta h2 em {
  font-style: normal;
  color: var(--mint);
}
.footer-main {
  background: #182642;
  color: #d9dee7;
  padding: 56px 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.footer-brand .logo {
  margin-bottom: 24px;
}
.footer-brand p {
  font-size: 14px;
  line-height: 1.45;
  margin: 0;
  max-width: 380px;
}
.footer-lines i {
  width: 40px;
  height: 3px;
}
.footer-lines {
  gap: 6px;
  margin-top: 24px;
}
.footer-col b {
  display: block;
  color: var(--mint);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-col a {
  display: block;
  font-size: 14px;
  line-height: 1.45;
  margin-bottom: 12px;
}
.copyright {
  border-top: 1px solid #33415e;
  background: #182642;
  color: #9ca8ba;
  font-size: 12px;
  padding: 18px 0;
}
.inner-title,
.contact-title {
  height: 386px;
  background: var(--navy);
  color: var(--off);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.inner-title h1 {
  font-size: 72px;
  line-height: 1;
  margin: 18px 0 14px;
}
.inner-title .wrap > p:last-child {
  font-size: 20px;
  color: #f7f7f4cc;
}
.inner-title .wrap:after {
  content: "";
  display: block;
  width: 130px;
  height: 3px;
  margin-top: 27px;
  background: linear-gradient(
    90deg,
    #c7a426 0 24%,
    transparent 24% 27%,
    #2c724e 27% 49%,
    transparent 49% 52%,
    #3c6e7d 52% 74%,
    transparent 74% 77%,
    #8dc9a5 77% 100%
  );
}
.inner-decor {
  position: absolute;
  border: 1px solid #8dc9a54d;
  transform: rotate(45deg);
}
.decor-one {
  width: 260px;
  height: 260px;
  right: 8%;
  top: -100px;
}
.decor-two {
  width: 180px;
  height: 180px;
  right: 20%;
  bottom: -115px;
  border-color: #c7a4264d;
}
.intro-section {
  height: 394px;
  background: var(--beige);
  display: flex;
  align-items: center;
}
.intro-grid {
  display: grid;
  grid-template-columns: 467px 1fr;
  gap: 149px;
}
.intro-section h2 {
  margin-top: 16px;
}
.intro-grid > div:last-child {
  font-size: 16px;
  color: var(--text);
}
.intro-grid > div:last-child p {
  margin: 0 0 15px;
  line-height: 1.62;
}
.who {
  display: block;
  color: var(--teal);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 18px 0 5px;
}
.assurance {
  height: 904px;
  background: var(--beige);
  padding: 78px 0;
}
.assurance-heading {
  display: grid;
  grid-template-columns: 467px 1fr;
  gap: 149px;
  margin-bottom: 43px;
}
.assurance-heading h2 {
  margin: 0;
}
.assurance-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 82px;
}
.assurance-grid article {
  min-height: 280px;
  background: var(--off);
  border-left: 3px solid var(--gold);
  padding: 28px;
}
.assurance-grid article:nth-child(2),
.assurance-grid article:nth-child(4) {
  border-color: var(--mint);
}
.assurance-grid article > b {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--teal);
}
.assurance-grid h3 {
  font-size: 20px;
  line-height: 28px;
  margin: 13px 0;
}
.assurance-grid p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text);
  margin: 0;
}
.cert-bar {
  height: 150px;
  background: var(--off);
  border-top: 1px solid #8dc9a54d;
  border-bottom: 1px solid #8dc9a54d;
}
.cert-bar .wrap {
  height: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
}
.cert-bar span {
  text-align: center;
  border-right: 1px solid #d7ddd7;
  font: 600 15px "Space Grotesk";
}
.cert-bar span:last-child {
  border: 0;
}
.cert-bar small {
  display: block;
  font: 400 11px "DM Sans";
  color: #717b8c;
}
.procurement {
  height: 446px;
  background: var(--navy);
  color: var(--off);
  display: flex;
  align-items: center;
}
.procurement-grid {
  display: grid;
  grid-template-columns: 467px 1fr;
  gap: 149px;
}
.procurement-grid h2 {
  line-height: 40px;
}
.vehicle-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.vehicle-grid span {
  height: 70px;
  border: 1px solid #8dc9a57a;
  background: linear-gradient(135deg, #f7f7f417 0%, #f7f7f407 100%);
  display: flex;
  align-items: center;
  padding: 18px;
  font-size: 14px;
}
.ecosystem {
  height: 436px;
  background: var(--beige);
  padding: 72px 0;
}
.ecosystem h2 {
  line-height: 40px;
}
.tech-track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-top: 42px;
  overflow: hidden;
}
.tech-box {
  height: 78px;
  background: var(--off);
  border: 1px solid var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}
.arrows.dark button {
  color: var(--navy);
  border-color: #87909b;
}
.contact-title {
  height: 374px;
}
.contact-title h1 {
  font-size: 60px;
  line-height: 1;
  margin: 20px 0 15px;
}
.contact-title .wrap > p:last-child {
  font-size: 18px;
  color: #f7f7f4cc;
}
.contact-form-section {
  height: 813px;
  background: var(--beige);
  padding-top: 211px;
}
.form-wrap {
  width: 526px;
  margin: auto;
}
.form-wrap h2 {
  font-size: 24px;
  line-height: 1.3;
  margin: 12px 0 30px;
}
.form-wrap form {
  display: grid;
}
.form-wrap label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.form-wrap input,
.form-wrap textarea {
  width: 100%;
  background: transparent;
  border: 1px solid #89909a;
  padding: 13px;
  margin-bottom: 22px;
  outline: none;
}
.form-wrap .button {
  justify-self: start;
}
.form-wrap .form-trap {
  display: none;
}
.form-status {
  color: #28725f;
  font-weight: 700;
}
@media (max-width: 900px) {
  .wrap {
    width: min(760px, calc(100% - 34px));
  }
  .menu-toggle {
    display: block;
  }
  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--off);
    padding: 15px 25px 25px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .nav-links.open {
    display: flex;
  }
  .nav-links > a,
  .companies-menu > button {
    width: 100%;
    text-align: left;
    padding: 14px 0;
  }
  .company-dropdown {
    position: static;
    box-shadow: none;
    border: 0;
    background: #ecece8;
  }
  .home-hero h1 {
    font-size: 52px;
  }
  .story-layout,
  .intro-grid,
  .assurance-heading,
  .procurement-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }
  .intro-section,
  .assurance,
  .procurement,
  .ecosystem,
  .contact-form-section {
    height: auto;
    padding: 75px 0;
  }
  .company-grid,
  .assurance-grid {
    grid-template-columns: 1fr;
  }
  .agency-track,
  .tech-track {
    grid-template-columns: repeat(3, 1fr);
  }
  .agency-box:nth-child(n + 4),
  .tech-box:nth-child(n + 4) {
    display: none;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: 1/-1;
  }
  .cert-bar {
    height: auto;
    padding: 35px 0;
  }
  .cert-bar .wrap {
    grid-template-columns: 1fr 1fr;
    gap: 25px;
  }
  .contact-form-section {
    padding: 100px 0;
  }
  .form-wrap {
    width: min(526px, calc(100% - 34px));
  }
}
@media (max-width: 600px) {
  .wrap {
    width: calc(100% - 30px);
  }
  .home-hero {
    min-height: 680px;
  }
  .home-hero h1,
  .inner-title h1 {
    font-size: 41px;
  }
  .hero-lead {
    font-size: 16px;
  }
  .hero-lead br {
    display: none;
  }
  .hero-buttons {
    flex-direction: column;
  }
  .brand-story,
  .companies {
    padding: 68px 0;
  }
  h2 {
    font-size: 30px;
  }
  .company-grid {
    grid-template-columns: 1fr;
  }
  .company-card {
    padding: 27px 24px;
    min-height: auto;
  }
  .agency-track,
  .tech-track {
    grid-template-columns: 1fr;
  }
  .agency-box:nth-child(n + 2),
  .tech-box:nth-child(n + 2) {
    display: none;
  }
  .cta .wrap {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-brand {
    grid-column: auto;
  }
  .cert-bar .wrap {
    grid-template-columns: 1fr;
  }
  .cert-bar span {
    border: 0;
  }
  .contact-title h1 {
    font-size: 42px;
  }
  .ring {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .fade-up-section {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* PDF-accurate inner pages */
.nav-links > a.active:not(.contact-nav) {
  border-bottom: 2px solid var(--gold);
}
.nav-links .contact-nav.active {
  background: var(--navy);
  color: white;
  border-bottom: 1px solid var(--navy);
}
.inner-decor {
  transform: none;
  border-radius: 50%;
}
.decor-one {
  width: 190px;
  height: 190px;
  right: auto;
  left: -80px;
  top: -45px;
}
.decor-two {
  width: 130px;
  height: 130px;
  right: 3%;
  top: 65px;
  bottom: auto;
}
.intro-grid > div:last-child p {
  margin: 0 0 22px;
  line-height: 1.68;
}
.who-section {
  height: 300px;
  background: var(--off);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.who-content .eyebrow {
  margin-bottom: 18px;
}
.who-content > p:last-child {
  font-size: 20px;
  line-height: 1.68;
  margin: 0;
  color: var(--navy);
}
.text-underline {
  text-decoration: underline;
  text-decoration-color: var(--mint);
  text-decoration-thickness: 1px;
  text-underline-offset: 6px;
}
.assurance {
  height: 570px;
  padding: 64px 0;
}
.assurance-heading {
  display: block;
  margin-bottom: 34px;
}
.assurance-heading h2 {
  margin: 10px 0 0;
}
.assurance-grid {
  gap: 16px;
}
.assurance-grid article {
  height: 195px;
  min-height: 0;
  background: var(--off);
  border: 0;
  padding: 70px 20px 18px;
  position: relative;
  overflow: hidden;
}
.assurance-grid article > b {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 54px;
  display: flex;
  align-items: center;
  padding: 0 20px;
  color: white;
  background: #c7a426;
  font-size: 10px;
  letter-spacing: 1.4px;
}
.assurance-grid article:nth-child(2) > b {
  background: #2c724e;
}
.assurance-grid article:nth-child(3) > b {
  background: #3c6e7d;
}
.assurance-grid article:nth-child(4) > b {
  background: #8dc9a5;
}
.assurance-grid article > b:before {
  content: "◇";
  font-size: 18px;
  margin-right: 12px;
}
.assurance-grid h3 {
  font-size: 16px;
  line-height: 22px;
  margin: 0 0 9px;
}
.assurance-grid p {
  font-size: 11px;
  line-height: 1.5;
}
.cert-bar {
  height: 104px;
}
.cert-bar span {
  font-size: 13px;
}
.cert-bar small {
  font-size: 10px;
}
.procurement {
  height: 360px;
  display: block;
  padding: 60px 0;
}
.procurement-grid {
  display: block;
}
.procurement-grid h2 {
  margin-bottom: 34px;
}
.vehicle-grid {
  grid-template-columns: repeat(3, 1fr);
}
.vehicle-grid span {
  height: 58px;
  font-size: 12px;
}
.ecosystem {
  height: 325px;
  padding: 58px 0;
}
.tech-track {
  grid-template-columns: repeat(6, 1fr);
  margin-top: 34px;
}
.tech-box {
  height: 55px;
  border: 0;
  font-size: 12px;
}
.arrows.dark {
  margin-top: 14px;
}
.contact-title .wrap:after {
  content: "";
  display: block;
  width: 130px;
  height: 3px;
  margin-top: 27px;
  background: linear-gradient(
    90deg,
    #c7a426 0 24%,
    transparent 24% 27%,
    #2c724e 27% 49%,
    transparent 49% 52%,
    #3c6e7d 52% 74%,
    transparent 74% 77%,
    #8dc9a5 77% 100%
  );
}
.contact-form-section {
  height: auto;
  padding: 70px 0;
}
.form-wrap {
  background: var(--off);
  padding: 34px;
  box-shadow: 0 12px 24px #0713291f;
}
.form-wrap input,
.form-wrap textarea {
  background: white;
}
.form-wrap textarea {
  height: 105px;
}
.form-wrap .button {
  width: 100%;
  justify-self: stretch;
  min-height: 44px;
}
@media (max-width: 900px) {
  .who-section {
    height: auto;
    padding: 70px 20px;
  }
  .who-content > p:last-child {
    font-size: 18px;
  }
  .who-content br {
    display: none;
  }
  .assurance {
    height: auto;
  }
  .assurance-grid article {
    height: auto;
    min-height: 205px;
  }
  .procurement,
  .ecosystem {
    height: auto;
  }
  .vehicle-grid {
    grid-template-columns: 1fr 1fr;
  }
  .contact-form-section {
    height: auto;
    padding: 80px 0;
  }
}

/* Exact desktop dimensions from the reference page */
@media (min-width: 901px) {
  .assurance {
    height: 904px;
    padding: 96px 0;
    background: #efe7d8;
  }
  .assurance-heading {
    display: block;
    margin: 0;
  }
  .assurance-heading h2 {
    font-size: 36px;
    line-height: 45px;
    letter-spacing: -0.72px;
    margin: 16px 0 0;
  }
  .assurance-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    margin-top: 48px;
  }
  .assurance-grid article {
    height: auto;
    min-height: 0;
    background: #fff;
    border: 1px solid #dcd7c9;
    padding: 0;
    display: grid;
    grid-template-rows: 76px auto auto;
    align-content: start;
    overflow: hidden;
  }
  .assurance-grid article > b {
    position: static;
    height: 76px;
    padding: 24px 28px;
    display: flex;
    align-items: center;
    gap: 16px;
    background: #c7a426;
    color: #fff;
    font-size: 12px;
    line-height: 18px;
    letter-spacing: 1.5px;
    font-weight: 700;
  }
  .assurance-grid article:nth-child(2) > b {
    background: #2c724e;
  }
  .assurance-grid article:nth-child(3) > b {
    background: #3c6e7d;
  }
  .assurance-grid article:nth-child(4) > b {
    background: #8dc9a5;
  }
  .assurance-grid article > b:before {
    content: "◇";
    font-size: 23px;
    line-height: 1;
    margin: 0;
  }
  .assurance-grid article h3 {
    font-size: 20px;
    line-height: 28px;
    margin: 0;
    padding: 24px 28px 0;
    color: #14213d;
  }
  .assurance-grid article p {
    font-size: 14px;
    line-height: 23px;
    margin: 0;
    padding: 14px 28px 32px;
    color: #53617a;
  }
  .cert-bar {
    height: 150px;
    background: #f7f7f4;
  }
  .cert-bar .wrap {
    height: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
  }
  .cert-bar span {
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    border-right: 0;
    border-left: 2px solid #c7a426;
    font: 600 14px/20px "Space Grotesk";
    letter-spacing: -0.28px;
  }
  .cert-bar span:nth-child(2) {
    border-left-color: #2c724e;
  }
  .cert-bar span:nth-child(3) {
    border-left-color: #3c6e7d;
  }
  .cert-bar span:nth-child(4) {
    border-left-color: #8dc9a5;
  }
  .cert-bar span:before {
    content: "◇";
    width: 24px;
    height: 24px;
    border: 2px solid currentColor;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font: 700 12px/1 "DM Sans";
    color: #c7a426;
  }
  .cert-bar span:nth-child(2):before {
    color: #2c724e;
  }
  .cert-bar span:nth-child(3):before {
    color: #3c6e7d;
  }
  .cert-bar span:nth-child(4):before {
    color: #8dc9a5;
  }
  .cert-bar small {
    font-size: 12px;
    line-height: 16px;
    margin-left: -6px;
    color: #8a93a4;
  }
  .procurement {
    height: 446px;
    padding: 96px 0;
    background: #14213d;
  }
  .procurement-grid {
    display: block;
  }
  .procurement-grid h2 {
    font-size: 36px;
    line-height: 40px;
    margin: 16px 0 0;
    color: #f7f7f4;
  }
  .vehicle-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 40px;
  }
  .vehicle-grid span {
    height: 62px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid #f7f7f426;
    background: linear-gradient(135deg, #f7f7f418 0%, #f7f7f406 100%);
    color: #dce2eb;
    font-size: 14px;
    line-height: 20px;
  }
  .vehicle-grid span:before {
    content: "▧";
    font-size: 20px;
    color: #c7a426;
  }
  .vehicle-grid span:nth-child(2):before,
  .vehicle-grid span:nth-child(4):before,
  .vehicle-grid span:nth-child(6):before {
    color: #2c724e;
  }
  .vehicle-grid span:nth-child(3):before {
    color: #3c6e7d;
  }
  .ecosystem {
    height: 436px;
    padding: 96px 0;
    background: #efe7d8;
  }
  .ecosystem h2 {
    font-size: 36px;
    line-height: 40px;
    margin: 16px 0 0;
  }
  .tech-track {
    display: flex;
    gap: 12px;
    margin-top: 40px;
    overflow: hidden;
  }
  .tech-box {
    height: 74px;
    background: #fff;
    border: 1px solid #dcd7c9;
    border-top: 2px solid #c7a426;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #44516a;
    font-size: 14px;
    font-weight: 500;
  }
  .tech-box:nth-child(2),
  .tech-box:nth-child(6) {
    border-top-color: #2c724e;
  }
  .tech-box:nth-child(3) {
    border-top-color: #3c6e7d;
  }
  .tech-box:nth-child(4) {
    border-top-color: #8dc9a5;
  }
  .arrows.dark {
    margin-top: 20px;
  }
}

@media (min-width: 901px) {
  .who-section {
    height: 422px;
  }
  .tech-box {
    flex: 0 0 190px;
  }
}

/* Exact Zyiom section details */
.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}
.assurance-grid article > b svg {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.assurance-grid article > b:before {
  display: none;
}
.cert-bar span svg {
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  padding: 2px;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  color: #c7a426;
}
.cert-bar span:nth-child(2) svg {
  color: #2c724e;
}
.cert-bar span:nth-child(3) svg {
  color: #3c6e7d;
}
.cert-bar span:nth-child(4) svg {
  color: #8dc9a5;
}
.cert-bar span:before {
  display: none;
}
.cert-bar span {
  position: relative;
  border: 0;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  column-gap: 10px;
  justify-content: start;
  align-items: center;
  padding-left: 12px;
  text-align: left;
}
.cert-bar span:after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 2px;
  height: 38px;
  background: #c7a426;
  transform: translateY(-50%);
}
.cert-bar span:nth-child(2):after {
  background: #2c724e;
}
.cert-bar span:nth-child(3):after {
  background: #3c6e7d;
}
.cert-bar span:nth-child(4):after {
  background: #8dc9a5;
}
.cert-bar span > b {
  font: 600 14px/20px "Space Grotesk";
  letter-spacing: -0.28px;
  text-align: left;
}
.cert-bar small {
  margin: 0;
  display: block;
}
.vehicle-grid span svg {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  fill: none;
  stroke: #c7a426;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.vehicle-grid span:before {
  display: none;
}
.vehicle-grid span:nth-child(2) svg,
.vehicle-grid span:nth-child(4) svg,
.vehicle-grid span:nth-child(6) svg {
  stroke: #2c724e;
}
.vehicle-grid span:nth-child(3) svg {
  stroke: #3c6e7d;
}
.tech-viewport {
  width: 100%;
  overflow: hidden;
  margin-top: 40px;
}
.tech-track {
  display: flex;
  width: max-content;
  gap: 12px;
  margin: 0;
  overflow: visible;
  transform: translate3d(calc(var(--tech-index, 0) * -202px), 0, 0);
  transition: transform 0.48s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: transform;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
}
.tech-track.is-dragging {
  cursor: grabbing;
}
.tech-box {
  flex: 0 0 190px;
  height: 74px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfaf6 55%, #f2ede2 100%);
  border: 1px solid #dcd7c9;
  border-top: 2px solid #c7a426;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #44516a;
  font: 500 14px/20px "DM Sans";
  transition: box-shadow 0.25s;
}
.tech-box:nth-child(4n + 2) {
  border-top-color: #2c724e;
}
.tech-box:nth-child(4n + 3) {
  border-top-color: #3c6e7d;
}
.tech-box:nth-child(4n + 4) {
  border-top-color: #8dc9a5;
}
.arrows.dark button {
  display: inline-grid;
  place-items: center;
  padding: 0;
  cursor: pointer;
}
.arrows.dark button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.arrows.dark button:disabled {
  opacity: 0.38;
  cursor: default;
}
@media (max-width: 900px) {
  .tech-viewport {
    margin-top: 34px;
  }
  .tech-track {
    transform: translate3d(calc(var(--tech-index, 0) * -202px), 0, 0);
  }
  .tech-box {
    display: flex !important;
    flex: 0 0 190px;
  }
}

/* File-safe, physically moving homepage carousel */
.agency-viewport {
  width: 100%;
  overflow: hidden;
}
.agency-track {
  display: flex;
  width: 100%;
  gap: 12px;
  overflow: visible;
  transform: translate3d(0, 0, 0);
  transition: transform 0.48s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: transform;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
}
.agency-track.is-dragging {
  cursor: grabbing;
}
.agency-box {
  flex: 0 0 calc((100% - 48px) / 5);
  min-width: 0;
}
.agency-box.agency-gold {
  border-color: #c7a426;
}
.agency-box.agency-mint {
  border-color: #2c724e;
}
.agency-svg {
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.arrows button {
  cursor: pointer;
}
.arrows button:disabled {
  opacity: 0.38;
  cursor: default;
}
@media (max-width: 900px) {
  .agency-track {
    display: flex;
  }
  .agency-box {
    display: flex !important;
    flex-basis: calc((100% - 24px) / 3);
  }
}
@media (max-width: 600px) {
  .agency-box {
    display: flex !important;
    flex-basis: calc((100% - 12px) / 2);
  }
}

.company-card,
.assurance-grid article,
.agency-box,
.tech-box,
.vehicle-grid span {
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}

@media (hover: hover) {
  .company-card:hover,
  .assurance-grid article:hover,
  .agency-box:hover,
  .tech-box:hover,
  .vehicle-grid span:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 36px #07132924;
  }
}

@media (prefers-reduced-motion: reduce) {
  .company-card,
  .assurance-grid article,
  .agency-box,
  .tech-box,
  .vehicle-grid span {
    transition: none;
  }

  .company-card:hover,
  .assurance-grid article:hover,
  .agency-box:hover,
  .tech-box:hover,
  .vehicle-grid span:hover {
    transform: none;
  }
}

@media (max-width: 900px) {
  .cert-bar {
    height: auto;
    min-height: 0;
    padding: 34px 0;
    overflow: visible;
  }

  .cert-bar .wrap {
    height: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 22px;
    align-items: stretch;
  }

  .cert-bar span {
    min-height: 52px;
    align-items: center;
    overflow: visible;
    grid-template-columns: 34px minmax(0, 1fr);
    column-gap: 10px;
    padding-left: 12px;
  }

  .cert-bar span:after {
    height: 42px;
  }

  .cert-bar span svg {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
    padding: 3px;
  }

  .cert-bar span > b {
    font: 600 13px/18px "Space Grotesk";
    letter-spacing: 0;
  }

  .cert-bar small {
    font-size: 11px;
    line-height: 15px;
  }

  .assurance-grid article,
  .company-card,
  .vehicle-grid span {
    overflow: visible;
  }
}

@media (max-width: 600px) {
  .cert-bar {
    padding: 32px 0;
  }

  .cert-bar .wrap {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .cert-bar span {
    min-height: 50px;
    grid-template-columns: 34px minmax(0, 1fr);
    column-gap: 10px;
    padding-left: 12px;
  }

  .vehicle-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .vehicle-grid span {
    height: auto;
    min-height: 58px;
    padding: 18px 20px;
    align-items: center;
  }

  .tech-box {
    flex-basis: 100%;
  }
}

.cta .wrap,
.footer-main .wrap,
.copyright .wrap {
  width: min(1216px, calc(100% - 48px));
}

@media (max-width: 900px) {
  .cta {
    padding: 72px 0;
  }

  .footer-main {
    padding: 56px 0;
  }

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

@media (max-width: 600px) {
  .cta .wrap,
  .footer-main .wrap,
  .copyright .wrap {
    width: calc(100% - 40px);
  }

  .cta {
    padding: 44px 0;
  }

  .cta .wrap {
    gap: 22px;
  }

  .cta h2 {
    font-size: 32px;
    line-height: 1.2;
  }

  .footer-main {
    padding: 34px 0;
  }

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

  .footer-brand .logo {
    margin-bottom: 14px;
  }

  .footer-lines {
    margin-top: 16px;
  }

  .footer-col b {
    margin-bottom: 12px;
  }

  .footer-col a {
    margin-bottom: 8px;
  }

  .copyright {
    padding: 14px 0;
  }
}

@media (max-width: 767px) {
  .vehicle-grid {
    grid-template-columns: 1fr !important;
    gap: 14px;
  }

  .vehicle-grid span {
    width: 100%;
    min-height: 58px;
    background:
      linear-gradient(135deg, #f7f7f426 0%, #f7f7f40a 62%, #8dc9a512 100%),
      #1f2d47;
  }

  .tech-viewport {
    overflow: hidden;
  }

  .tech-track {
    width: 100%;
  }

  .tech-box {
    flex: 0 0 calc((100% - 12px) / 2) !important;
    max-width: 100%;
    background: linear-gradient(180deg, #ffffff 0%, #fbfaf6 55%, #f2ede2 100%);
    text-align: center;
  }
}

.assurance-grid article > b {
  gap: 14px;
}

.assurance-grid article > b svg {
  margin-right: 2px;
}

@media (max-width: 767px) {
  .assurance-grid article > b {
    gap: 16px;
    padding-left: 20px;
    padding-right: 18px;
  }

  .assurance-grid article > b svg {
    margin-right: 3px;
  }
}

.cert-bar span {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  column-gap: 10px;
  align-items: center;
  justify-content: start;
  padding-left: 12px;
}

.cert-bar span svg,
.cert-bar span > b {
  align-self: center;
}

.cert-bar span svg {
  justify-self: start;
}
