/* ============================================================================
   Delviom — ALTERNATIVE DESIGN stylesheet (used by index1.html only)
   Independent copy of components.css. Write all "other design" changes HERE.
   Editing this file does NOT affect the live index.html.
   ============================================================================ */

/* Delviom — Reusable components: buttons, header/nav, footer, hero, cards, chips.
   Navy system, controlled accents, subtle cards, minimal shadows. */

/* ===================== Scroll-to-top ===================== */
.scroll-top {
   position: fixed;
   right: clamp(16px, 3vw, 34px);
   bottom: clamp(16px, 3vw, 34px);
   z-index: 900;
   width: 48px;
   height: 48px;
   border-radius: 50%;
   display: grid;
   place-items: center;
   background: var(--gold);
   color: var(--navy-deep);
   box-shadow: 0 10px 26px rgba(7, 21, 40, 0.28);
   opacity: 0;
   visibility: hidden;
   transform: translateY(16px);
   transition: opacity .3s ease, transform .3s ease, visibility .3s ease, background .2s ease, color .2s ease;
}

.scroll-top.show {
   opacity: 1;
   visibility: visible;
   transform: none;
}

.scroll-top:hover {
   background: var(--navy);
   color: #fff;
   transform: translateY(-3px);
}

.scroll-top svg {
   width: 20px;
   height: 20px;
}

/* ===================== Buttons ===================== */
.btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   gap: 10px;
   padding: 14px 26px;
   border-radius: 10px;
   font-weight: 700;
   font-size: 0.95rem;
   letter-spacing: 0.01em;
   border: 1.5px solid transparent;
   transition: transform .18s ease, background-color .18s ease, color .18s ease, border-color .18s ease, box-shadow .18s ease;
   white-space: nowrap;
}

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

.btn-sm {
   padding: 10px 18px;
   font-size: 0.88rem;
}

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

.btn-accent:hover {
   background: var(--gold-deep);
   box-shadow: 0 8px 22px rgba(247, 191, 90, 0.32);
}

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

.btn-primary:hover {
   background: var(--navy-soft);
   box-shadow: var(--shadow);
}

.btn-outline {
   background: transparent;
   color: var(--navy);
   border-color: var(--line);
}

.btn-outline:hover {
   border-color: var(--navy);
   background: var(--off-white);
}

/* On navy backgrounds */
.section--navy .btn-outline,
.hero .btn-outline {
   color: var(--white);
   border-color: rgba(255, 255, 255, 0.35);
}

.section--navy .btn-outline:hover,
.hero .btn-outline:hover {
   background: rgba(255, 255, 255, 0.08);
   border-color: rgba(255, 255, 255, 0.7);
}

.btn-row {
   display: flex;
   flex-wrap: wrap;
   gap: 14px;
}

/* Text link with arrow */
.link-more {
   display: inline-flex;
   align-items: center;
   gap: 6px;
   color: var(--steel);
   font-weight: 700;
   font-size: 0.9rem;
   transition: gap .18s ease, color .18s ease;
}

.link-more:hover {
   gap: 11px;
   color: var(--navy);
}

/* ===================== Header (floating glass bar) ===================== */
.site-header {
   position: fixed;
   top: 0;
   left: 0;
   right: 0;
   z-index: 1000;
   padding-top: clamp(10px, 1.4vw, 18px);
   padding-inline: 50px;
   background: transparent;
}

/* The inner row is the full-width floating rounded pill (50px side gutters) */
.header-inner {
   display: flex;
   align-items: center;
   gap: 8px;
   min-height: 64px;
   width: 100%;
   margin-inline: 0;
   padding: 8px 8px 8px clamp(16px, 2vw, 24px);
   border-radius: 16px;
   /* Light pill over the hero so the full-color logo + dark tabs stay readable */
   background: rgba(255, 255, 255, 0.96);
   border: 1px solid rgba(11, 31, 58, 0.08);
   box-shadow: 0 10px 30px rgba(7, 21, 40, 0.10);
   -webkit-backdrop-filter: blur(12px);
   backdrop-filter: blur(12px);
   transition: background-color .3s ease, border-color .3s ease, box-shadow .3s ease;
}

/* Scrolled → bar takes a light on-brand tint so the full-color logo stays
   visible WITHOUT a white chip; tabs go dark for contrast. */
.site-header.scrolled .header-inner {
   background: #e9eff7;
   border-color: rgba(11, 31, 58, 0.10);
   box-shadow: 0 10px 30px rgba(7, 21, 40, 0.14);
   -webkit-backdrop-filter: blur(14px);
   backdrop-filter: blur(14px);
}

/* No chip behind the logo — the tinted bar itself keeps it readable */
.site-header.scrolled .brand {
   background: transparent;
}

.site-header.scrolled .nav-link,
.site-header.scrolled .nav-link:hover {
   color: var(--navy-deep);
}

.site-header.scrolled .nav-link.active {
   color: var(--gold-deep);
}

.site-header.scrolled .header-divider {
   background: rgba(11, 31, 58, 0.16);
}

.site-header.scrolled .hamburger {
   border-color: rgba(11, 31, 58, 0.2);
}

.site-header.scrolled .hamburger span {
   background: var(--navy-deep);
}

/* Brand lockup — logo is ALWAYS the full-color mark (both bar states) */
.brand {
   display: inline-flex;
   align-items: center;
   transition: background-color .3s ease, padding .3s ease;
   padding: 5px 12px;
   border-radius: 10px;
}

.brand-logo {
   height: 42px;
   width: auto;
}

/* Vertical divider after the logo — dark on the light top bar */
.header-divider {
   flex: none;
   width: 1px;
   height: 30px;
   background: rgba(11, 31, 58, 0.16);
   margin-inline: clamp(14px, 1.8vw, 24px);
}

.primary-nav {
   margin-right: auto;
   display: flex;
}

.nav-list {
   display: flex;
   align-items: center;
   gap: clamp(2px, 0.6vw, 8px);
}

/* nowrap is structural, not cosmetic: the .roll hover swaps two absolutely
   stacked copies of the label, which only line up while each is a single line.
   "Contract Vehicles" wraps around 1024px without it. */
.nav-link {
   position: relative;
   padding: 9px 11px;
   font-size: 1rem;
   font-weight: 300;
   letter-spacing: 0.01em;
   white-space: nowrap;
   color: var(--navy-deep);
   transition: color .18s ease;
}

.nav-link:hover {
   color: var(--navy-deep);
}

/* Text roll on hover: current text rolls up/out, gold duplicate rolls in */
.nav-link .roll {
   position: relative;
   display: inline-block;
   overflow: hidden;
   vertical-align: middle;
}

.nav-link .roll span {
   display: block;
   transition: transform .35s cubic-bezier(.6, .2, .1, 1);
}

.nav-link .roll span:last-child {
   position: absolute;
   top: 0;
   left: 0;
   transform: translateY(105%);
   color: var(--gold);
}

.nav-link:hover .roll span:first-child {
   transform: translateY(-105%);
}

.nav-link:hover .roll span:last-child {
   transform: translateY(0);
}

.nav-link.active {
   color: var(--gold);
   /* font-weight: 600; */
}

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

/* Contact button — solid dark navy pill (reference style) */
.btn-contact {
   display: inline-flex;
   align-items: center;
   gap: 10px;
   padding: 13px 26px;
   border: 1px solid var(--teal);
   border-radius: 12px;
   background: var(--teal);
   color: #fff;
   font-weight: 300;
   font-size: 1rem;
   letter-spacing: 0.01em;
   transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, color .18s ease, border-color .18s ease;
}

.btn-contact:hover {
   background: var(--gold);
   border-color: var(--gold);
   color: var(--navy-deep);
}

/* On the scrolled (light) pill the dark button stays dark */
.site-header.scrolled .btn-contact {}

.site-header.scrolled .btn-contact:hover {
   background: var(--gold);
   color: var(--navy-deep);
   border-color: var(--gold);
}

/* Hamburger */
.hamburger {
   display: none;
   flex-direction: column;
   gap: 5px;
   padding: 9px;
   border-radius: 10px;
   border: 1px solid rgba(11, 31, 58, 0.2);
}

.hamburger span {
   width: 22px;
   height: 2px;
   background: var(--navy-deep);
   border-radius: 2px;
   transition: .2s ease;
}

/* Slide-in side panel */
.nav-scrim {
   position: fixed;
   inset: 0;
   z-index: 1100;
   background: rgba(7, 21, 40, 0.45);
   backdrop-filter: blur(2px);
}

.mobile-panel {
   position: fixed;
   top: 0;
   right: 0;
   z-index: 1200;
   width: min(340px, 86vw);
   height: 100dvh;
   background: var(--white);
   box-shadow: -20px 0 50px rgba(7, 21, 40, 0.18);
   transform: translateX(100%);
   transition: transform .28s ease;
   display: flex;
   flex-direction: column;
   padding: 20px;
}

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

.mobile-panel-head {
   display: flex;
   align-items: center;
   justify-content: flex-end;
   margin-bottom: 12px;
}

.mobile-panel-title {
   font-weight: 800;
   letter-spacing: .12em;
   text-transform: uppercase;
   font-size: .8rem;
   color: var(--muted);
}

.panel-close {
   font-size: 1.9rem;
   line-height: 1;
   color: var(--navy);
   padding: 0 6px;
}

.mobile-nav-list {
   display: grid;
   gap: 4px;
}

.mobile-nav-link {
   display: block;
   padding: 14px 12px;
   border-radius: 10px;
   font-weight: 600;
   color: var(--ink);
   border: 1px solid transparent;
}

.mobile-nav-link:hover {
   background: var(--off-white);
}

.mobile-nav-link.active {
   color: var(--navy);
   border-color: var(--line);
   background: var(--off-white);
}

.mobile-nav-link.cta {
   margin-top: 8px;
   background: var(--gold);
   color: var(--navy-deep);
   text-align: center;
   font-weight: 700;
}

body.nav-open {
   overflow: hidden;
}

/* Tighten the nav just above the hamburger breakpoint so six single-line
   labels plus the Contact button still fit on a tablet in landscape. */
@media (max-width: 1120px) {
   .nav-link {
      padding: 9px 7px;
      font-size: 0.94rem;
   }
}

@media (max-width: 980px) {
   .primary-nav {
      display: none;
   }

   .header-actions .btn-contact {
      display: none;
   }

   .header-divider {
      display: none;
   }

   .hamburger {
      display: flex;
   }

   /* Smaller side gutters on mobile (50px is too much on phones) */
   .site-header {
      padding-inline: clamp(14px, 4vw, 24px);
   }

   .header-inner {
      justify-content: space-between;
      padding-inline: clamp(16px, 4vw, 22px);
   }
}

/* Wrapper: hero + overview share one dark background and the bg.avif glow */
.hero-wrap {
   position: relative;
   overflow: hidden;
   background: linear-gradient(180deg, #050d1a, var(--navy-deep));
   border-bottom-left-radius: 40px;
   border-bottom-right-radius: 40px;
}

/* Overview now lives below Solutions — give it its own dark backdrop */
.overview-wrap {
   position: relative;
   background: rgb(233, 252, 255);
}

/* ===================== Hero (Arounda-style layout, navy palette) ===================== */
.hero {
   position: relative;
   z-index: 3;
   background: transparent;
   color: var(--white);
   min-height: 100vh;
   display: flex;
   align-items: center;
   padding-top: calc(var(--header-height) + clamp(36px, 6vw, 80px));
   padding-bottom: clamp(40px, 6vw, 70px);

}

/* Capitol image kept, with a left-weighted blue wash so the copy sits on
   solid blue (like the reference) while the building reads on the right. */
.hero-bg {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100vh;
   background-color: var(--navy-deep);
   background-image:
      linear-gradient(100deg, rgba(8, 28, 54, 0.95) 0%, rgba(8, 28, 54, 0.82) 34%, rgba(8, 28, 54, 0.35) 62%, rgba(8, 28, 54, 0.05) 100%),
      url(../images/bannerimg.webp);
   background-position: center, center right;
   background-size: cover, cover;
   background-repeat: no-repeat, no-repeat;
   z-index: 0;
   pointer-events: none;
}

.hero::before {}

.hero-inner {
   position: relative;
   z-index: 2;
   width: min(var(--container), calc(100% - 40px));
   margin-inline: auto;
   text-align: left;
}

@media (min-width: 768px) {
   .hero-inner {
      width: min(var(--container), calc(100% - 80px));
   }
}

/* Scroll-down indicator — classic mouse icon */
.hero-scroll {
   position: absolute;
   left: 50%;
   bottom: 75px;
   transform: translateX(-50%);
   z-index: 3;
}

@media (max-width: 620px) {
   .hero-scroll {
      left: auto;
      right: 20px;
      bottom: 24px;
      transform: none;
   }
}

.hero-mouse {
   display: block;
   width: 26px;
   height: 42px;
   border: 2px solid rgba(255, 255, 255, 0.45);
   border-radius: 14px;
   position: relative;
   transition: border-color .2s ease;
}

.hero-scroll:hover .hero-mouse {
   border-color: rgba(255, 255, 255, 0.85);
}

.hero-wheel {
   position: absolute;
   left: 50%;
   top: 8px;
   width: 4px;
   height: 8px;
   margin-left: -2px;
   border-radius: 2px;
   background: rgba(255, 255, 255, 0.8);
   animation: heroWheel 1.7s ease-in-out infinite;
}

@keyframes heroWheel {
   0% {
      opacity: 0;
      transform: translateY(0);
   }

   30% {
      opacity: 1;
   }

   100% {
      opacity: 0;
      transform: translateY(12px);
   }
}

@media (prefers-reduced-motion: reduce) {
   .hero-wheel {
      animation: none;
   }
}

/* ===================== Overview (centered intro + dark stats band) ===================== */
.overview-results {
   position: relative;
   z-index: 3;
   background: transparent;
   color: var(--ink);
   display: block;
   padding: 50px 0;
}

/* Split card: navy text panel on the left, image on the right */
.overview-grid {
   position: relative;
   z-index: 1;
   max-width: var(--container);
   /* margin: clamp(48px, 7vw, 80px) auto clamp(40px, 5vw, 56px); */
   margin: auto;
   display: grid;
   grid-template-columns: 1fr 1fr;
   align-items: stretch;
   border-radius: clamp(20px, 2.4vw, 32px);
   overflow: hidden;
   box-shadow: 0 24px 60px rgba(7, 21, 40, 0.14);
   text-align: left;
}

.ov-panel {
   display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: center;
   text-align: center;
   padding: clamp(30px, 4vw, 60px);
   background:
      linear-gradient(155deg, rgba(7, 21, 40, 0.25) 0%, rgba(7, 21, 40, 0.55) 100%),
      url("../images/search-cta-bg.png") center / cover no-repeat,
      var(--navy-deep);
   color: #fff;
}

.ov-panel .eyebrow {
   color: var(--teal);
   margin-bottom: 14px;
}

.overview-heading .word {
   display: inline-block;
   will-change: opacity, transform;
}

.overview-title {
   font-size: clamp(1.5rem, 2.6vw, 2.05rem);
   line-height: 1.18;
   font-weight: 700;
   letter-spacing: -0.01em;
   color: #fff;
   margin: 0 0 18px;
}

.overview-heading {
   font-size: clamp(0.98rem, 1.2vw, 1.08rem);
   line-height: 1.7;
   font-weight: 400;
   color: rgba(255, 255, 255, 0.82);
   margin: 0;
}

.overview-heading em {
   font-weight: 500;
   color: var(--teal);
   font-style: normal;
}

/* Right side image fills the card height */
.ov-media {
   position: relative;
   min-height: 100%;
}

.ov-media img {
   position: absolute;
   inset: 0;
   width: 100%;
   height: 100%;
   object-fit: cover;
   display: block;
}

@media (max-width: 860px) {
   .overview-grid {
      grid-template-columns: 1fr;
   }

   .ov-media {
      min-height: 240px;
      order: -1;
   }

   .ov-media img {
      position: static;
      height: 240px;
   }
}

/* Feature row — showcases what sets Delviom apart */
.overview-features {
   position: relative;
   z-index: 1;
   max-width: var(--container);
   margin: 0 auto;
   padding: 0 0 56px;
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: clamp(20px, 3vw, 40px);
}

.ov-feature {
   display: flex;
   align-items: flex-start;
   gap: 16px;
   text-align: left;
}

.ov-feature-icon {
   flex: none;
   width: 48px;
   height: 48px;
   border-radius: 14px;
   display: grid;
   place-items: center;
   background: linear-gradient(135deg, rgba(92, 183, 170, 0.16), rgba(62, 110, 156, 0.12));
   color: var(--teal-deep);
   transition: transform .3s ease;
}

.ov-feature:hover .ov-feature-icon {
   transform: translateY(-3px);
}

.ov-feature-icon svg {
   width: 24px;
   height: 24px;
}

.ov-feature-text h3 {
   font-size: 1.05rem;
   font-weight: 700;
   color: var(--ink);
   margin-bottom: 6px;
}

.ov-feature-text p {
   font-size: 0.92rem;
   line-height: 1.55;
   color: var(--text);
}

@media (max-width: 820px) {
   .overview-features {
      grid-template-columns: 1fr;
      gap: 22px;
      max-width: 560px;
      padding-bottom: 44px;
   }
}

@media (max-width: 620px) {
   .overview-heading {
      font-size: 1rem;
      line-height: 1.6;
   }
}

/* Stats row inside the navy panel */
.overview-stats {
   margin-top: clamp(26px, 3.4vw, 38px);
   padding-top: clamp(22px, 3vw, 30px);
   border-top: 1px solid rgba(255, 255, 255, 0.14);
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: clamp(14px, 2vw, 26px);
}

.stat {
   display: flex;
   flex-direction: column;
   align-items: center;
   text-align: center;
   gap: 4px;
}

.stat-num {
   font-size: clamp(1.9rem, 3.2vw, 2.6rem);
   font-weight: 600;
   line-height: 1;
   letter-spacing: 0;
   color: #fff;
   margin-bottom: 2px;
}

.stat-label {
   font-size: 0.82rem;
   line-height: 1.35;
   color: rgba(255, 255, 255, 0.7);
   font-family: var(--font-sans);
}

@media (max-width: 480px) {
   .overview-stats {
      gap: 18px 12px;
   }

   .stat-label {
      font-size: 0.76rem;
   }
}

.hero-eyebrow {
   font-size: 1rem;
   font-weight: 500;
   letter-spacing: 0.02em;
   color: #fff;
   margin-bottom: 22px;
   opacity: 0.75;
}

.hero-title {
   font-size: clamp(2rem, 4.8vw, 3.6rem);
   line-height: 1.14;
   font-weight: 500;
   letter-spacing: -0.02em;
   color: #fff;
   max-width: 640px;
   margin-inline: 0;
}

.hero-title .serif {
   font-weight: 500;
   letter-spacing: 0;
}

/* Words wrapped by hero.js for the intro reveal */
.hero-title .word {
   display: inline-block;
   will-change: transform, opacity;
}

/* Highlighted words render as plain white text (no box/pill) */
.hero-title .hl {
   color: inherit;
   white-space: nowrap;
}

.hero-sub {
   color: var(--on-navy-muted);
   font-size: clamp(1.02rem, 1.5vw, 1.2rem);
   max-width: 640px;
   margin: 26px auto 0;
}

/* Bottom row: stat text left, buttons right (Arounda-style) */
.hero-bottom {
   display: flex;
   flex-direction: column;
   align-items: flex-start;
   gap: clamp(14px, 1.8vw, 20px);
   margin-top: clamp(14px, 2vw, 22px);
   padding-inline: 0;
   text-align: left;
}

.hero-stats {
   display: flex;
   gap: 40px;
   flex-wrap: wrap;
}

.hero-stat {
   max-width: 540px;
}

.hero-stat .code {
   display: block;
   color: var(--cyan);
   font-weight: 700;
   margin-bottom: 10px;
   font-family: ui-monospace, Menlo, Consolas, monospace;
}

.hero-stat p {
   color: rgba(255, 255, 255, 0.82);
   font-size: 0.98rem;
}

.hero-cta {
   display: flex;
   align-items: center;
   gap: 16px;
   flex-wrap: wrap;
}

@media (max-width: 760px) {
   .hero-bottom {
      flex-direction: column;
      align-items: flex-start;
   }

   .hero-title {
      line-height: 1.3;
   }
}

@media (max-width: 520px) {
   .hero-title {
      font-size: clamp(1.85rem, 8.5vw, 2.3rem);
   }

   .hero-title .hero-media {
      height: 40px;
   }
}

/* Split button: circular arrow + pill (Arounda-style, theme colors) */
.btn-split {
   display: inline-flex;
   align-items: center;
   gap: 0;
   transition: transform .18s ease;
}

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

.btn-circle {
   width: 56px;
   height: 56px;
   /* Blob: three rounded corners + one sharp (bottom-right) point */
   border-radius: 50% 50% 0 50%;
   flex: none;
   display: grid;
   place-items: center;
   transition: background-color .18s ease, border-color .18s ease, transform .2s ease;
}

.btn-circle svg {
   width: 20px;
   height: 20px;
   transition: transform .2s ease;
}

.btn-pill {
   display: inline-flex;
   align-items: center;
   height: 54px;
   padding: 0 30px;
   border-radius: 999px;
   font-weight: 500;
   font-size: 0.9rem;
   white-space: nowrap;
   text-transform: uppercase;
   transition: background-color .18s ease, border-color .18s ease, color .18s ease;
}

/* Hero buttons — rounded pills: primary gold, secondary outline */
.hero .btn-pill {
   border-radius: 999px;
   height: 56px;
   padding: 0 30px;
   font-weight: 600;
   text-transform: none;
   letter-spacing: 0.01em;
}

/* Primary — solid gold */
.hero .btn-split--solid .btn-pill {
   background: var(--gold);
   border: 1px solid var(--gold);
   color: var(--navy-deep);
}

/* Secondary — outline */
.hero .btn-split--outline .btn-pill {
   background: transparent;
   border: 1px solid rgba(255, 255, 255, 0.40);
   color: #fff;
}

/* Hover */
.hero .btn-split--solid:hover .btn-pill {
   background: var(--gold-deep);
   border-color: var(--gold-deep);
   color: var(--navy-deep);
}

.hero .btn-split--outline:hover .btn-pill {
   background: rgba(255, 255, 255, 0.10);
   border-color: rgba(255, 255, 255, 0.70);
   color: #fff;
}

/* Primary — gold */
.btn-split--solid .btn-circle,
.btn-split--solid .btn-pill {
   background: var(--gold);
   color: var(--navy-deep);
}

/* Primary → white background, black text on hover */
.btn-split--solid:hover .btn-circle,
.btn-split--solid:hover .btn-pill {
   background: #fff;
   color: var(--ink);
}

/* Secondary — outline on the hero; fills white on hover */
.btn-split--outline .btn-circle,
.btn-split--outline .btn-pill {
   background: transparent;
   border: 1.5px solid rgba(255, 255, 255, 0.45);
   color: #fff;
}

.btn-split--outline:hover .btn-circle,
.btn-split--outline:hover .btn-pill {
   background: #fff;
   border-color: #fff;
   color: var(--ink);
}

/* Circle blob rotates on hover — pointed corner spins, arrow turns up */
.btn-split:hover .btn-circle {
   transform: rotate(-90deg);
}

/* White variant */
.btn-split--white .btn-circle,
.btn-split--white .btn-pill {
   background: #fff;
   color: var(--navy-deep);
}

.btn-split--white:hover .btn-circle,
.btn-split--white:hover .btn-pill {
   background: var(--off-white);
   color: var(--navy-deep);
}

/* Dark (navy) variant — flips to gold on hover */
.btn-split--dark .btn-circle,
.btn-split--dark .btn-pill {
   background: var(--navy);
   color: #fff;
}

.btn-split--dark:hover .btn-circle,
.btn-split--dark:hover .btn-pill {
   background: var(--gold);
   color: var(--navy-deep);
}

/* Gold variant — flips to navy (primary) on hover */
.btn-split--gold .btn-circle,
.btn-split--gold .btn-pill {
   background: var(--gold);
   color: var(--navy-deep);
}

/* Match the hero button shape (small radius instead of full pill) */
.btn-split--gold .btn-pill {
   border-radius: 6px;
}

.btn-split--gold:hover .btn-circle,
.btn-split--gold:hover .btn-pill {
   background: var(--navy);
   color: #fff;
}

/* Small size */
.btn-split--sm .btn-circle {
   width: 38px;
   height: 38px;
}

.btn-split--sm .btn-circle svg {
   width: 15px;
   height: 15px;
}

.btn-split--sm .btn-pill {
   height: 38px;
   padding: 0 20px;
   font-size: 0.86rem;
}

/* ===================== Inner-page banner ===================== */
.page-hero {
   position: relative;
   overflow: hidden;
   background:
      radial-gradient(900px 400px at 85% -20%, rgba(41, 182, 216, 0.10), transparent 60%),
      linear-gradient(180deg, var(--navy-deep), var(--navy));
   color: var(--white);
   padding-top: calc(var(--header-height) + clamp(40px, 5vw, 64px));
   padding-bottom: clamp(56px, 8vw, 96px);
}

.page-hero::before {
   content: "";
   position: absolute;
   inset: 0;
   opacity: .5;
   background-image:
      linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
   background-size: 46px 46px;
   mask-image: linear-gradient(180deg, #000, transparent 90%);
}

.page-hero-inner {
   position: relative;
   max-width: 780px;
}

.page-hero h1 {
   color: var(--white);
}

.page-hero .lead {
   color: var(--on-navy-muted);
   margin-top: 14px;
}

.breadcrumb {
   font-size: .82rem;
   color: var(--on-navy-muted);
   margin-bottom: 16px;
   letter-spacing: .04em;
}

.breadcrumb a:hover {
   color: var(--cyan);
}

/* Prose (readable text blocks) */
.prose p {
   margin-bottom: 18px;
   max-width: 68ch;
}

.prose p:last-child {
   margin-bottom: 0;
}

/* Value / mission-vision cards */
.mv-card {
   border-left: 3px solid var(--gold);
   padding: 6px 0 6px 22px;
}

.mv-card h3 {
   margin-bottom: 8px;
}

/* ===================== Solutions (centered head + icon cards) ===================== */
.solutions.section--soft {
   background: #fff;
}

.solutions-grid {
   display: block;
}

/* Split heading: big title on the left, supporting paragraph on the right */
.solutions-head {
   max-width: var(--container);
   margin: 0 auto clamp(38px, 5vw, 58px);
   display: grid;
   grid-template-columns: 1.05fr 0.95fr;
   gap: clamp(24px, 5vw, 72px);
   align-items: start;
   text-align: left;
}

.solutions-head .eyebrow {
   color: var(--teal);
}

/* Drop the right blurb down so its first line meets the h2 title line
   (offset past the eyebrow block above the heading) */
.solutions-head-right {
   padding-top: 34px;
}

.solutions-head h2 {
   font-size: clamp(1.5rem, 2.6vw, 2.05rem);
   line-height: 1.12;
   letter-spacing: -0.01em;
   color: var(--ink);
   margin: 0;
}

.solutions-head h2 .serif {
   font-weight: 500;
   letter-spacing: 0;
}

.solutions-head-right p {
   font-size: clamp(1.02rem, 1.4vw, 1.2rem);
   line-height: 1.6;
   color: var(--text);
   max-width: 48ch;
   margin: 0;
}

.solutions-head-right strong {
   color: var(--ink);
   font-weight: 700;
}

@media (max-width: 860px) {
   .solutions-head {
      grid-template-columns: 1fr;
      gap: 16px;
      align-items: start;
   }

   .solutions-head-right {
      padding-top: 0;
   }
}

/* 5-up row of image tiles — hovering expands the description in place
   (no flip): the copy's height animates open and the card grows upward.
   The row track is a fixed 220px and cards are bottom-aligned inside it, so a
   growing card overflows past the top of its cell instead of pushing the page
   down — its bottom edge and every sibling stay exactly where they were. */
.solutions-cards {
   display: grid;
   grid-template-columns: repeat(5, 1fr);
   grid-auto-rows: 220px;
   gap: clamp(16px, 1.8vw, 24px);
   align-items: end;
   width: 100%;
   max-width: var(--container);
   margin-inline: auto;
}

.sol-card {
   position: relative;
   display: flex;
   flex-direction: column;
   /* height stays auto: the reveal animates its own height, so the card
      grows along with it frame by frame — no fixed end height to guess.
      min-height matches the row track so collapsed cards fill their cell. */
   min-height: 220px;
   padding: clamp(18px, 1.6vw, 24px);
   border-radius: 20px;
   overflow: hidden;
   isolation: isolate;
   color: #fff;
   background-color: var(--navy-deep);
   background-size: cover;
   background-position: center;
   background-repeat: no-repeat;
   box-shadow: 0 10px 26px rgba(7, 21, 40, 0.14);
   /* opacity/transform are carried over from .reveal — keep them here so the
      scroll-in animation still runs once this rule overrides .reveal's transition */
   transition: box-shadow .45s ease, opacity .6s ease, transform .6s ease;
}

/* Lift above the heading block it now grows over, and above the row of cards
   above it at the 2-up breakpoint. */
.sol-card:hover,
.sol-card:focus-within,
.sol-card.is-open {
   z-index: 3;
   box-shadow: 0 18px 38px rgba(7, 21, 40, 0.22);
}

/* Scrim sits behind the content and deepens while the copy is open so the
   extra text stays legible over the photo. */
.sol-card::after {
   content: "";
   position: absolute;
   inset: 0;
   z-index: -1;
   background: linear-gradient(180deg, rgba(6, 16, 32, 0) 30%, rgba(6, 16, 32, 0.5) 100%);
   transition: background .45s ease;
}

.sol-card:hover::after,
.sol-card:focus-within::after,
.sol-card.is-open::after {
   background: linear-gradient(180deg, rgba(6, 16, 32, 0.35) 0%, rgba(6, 16, 32, 0.82) 100%);
}

.sol-icon {
   display: inline-grid;
   place-items: center;
   width: 46px;
   height: 46px;
   color: #fff;
   transition: opacity .3s ease, transform .4s cubic-bezier(.22, 1, .36, 1);
}

/* Fades out as the copy opens. It keeps its 46px of space, so the card still
   gains the full height of the revealed text. */
.sol-card:hover .sol-icon,
.sol-card:focus-within .sol-icon,
.sol-card.is-open .sol-icon {
   opacity: 0;
   transform: translateY(-10px);
}

.sol-icon svg {
   width: 38px;
   height: 38px;
}

/* Title block sits at the bottom of the collapsed card; once the copy opens
   past the 220px floor the auto margin is spent and the card grows instead. */
.sol-body {
   margin-top: auto;
}

/* Fluid so the longest title ("Business Intelligence") still reads cleanly in
   the narrower 5-up tile without shrinking on large screens. */
.sol-card h3 {
   margin: 0;
   color: #fff;
   font-size: clamp(1.12rem, 0.9vw + 0.42rem, 1.4rem);
   line-height: 1.18;
   padding-right: 44px;
}

/* Tagline under the title on the front — wraps to at most two lines so a
   longer line ("Security built in, not bolted on") is never cut mid-word. */
.sol-sub {
   margin-top: 6px;
   padding-right: 44px;
   color: rgba(255, 255, 255, 0.85);
   font-size: 0.82rem;
   line-height: 1.3;
   display: -webkit-box;
   -webkit-box-orient: vertical;
   -webkit-line-clamp: 2;
   line-clamp: 2;
   overflow: hidden;
}

/* Collapsed description + Learn more. The 0fr→1fr grid row animates to the
   content's real height, so the copy never gets clipped or over-shot. */
.sol-reveal {
   display: grid;
   grid-template-rows: 0fr;
   opacity: 0;
   transition: grid-template-rows .55s cubic-bezier(.22, 1, .36, 1), opacity .35s ease;
}

.sol-reveal-in {
   min-height: 0;
   overflow: hidden;
}

.sol-card:hover .sol-reveal,
.sol-card:focus-within .sol-reveal,
.sol-card.is-open .sol-reveal {
   grid-template-rows: 1fr;
   opacity: 1;
}

.sol-reveal p {
   margin: 10px 0 0;
   color: rgba(255, 255, 255, 0.92);
   font-size: clamp(0.86rem, 0.95vw, 0.95rem);
   line-height: 1.45;
}

/* Browsers without animatable grid-template-rows: fall back to max-height. */
@supports not (grid-template-rows: 0fr) {
   .sol-reveal {
      display: block;
      max-height: 0;
      overflow: hidden;
      transition: max-height .55s cubic-bezier(.22, 1, .36, 1), opacity .35s ease;
   }

   .sol-card:hover .sol-reveal,
   .sol-card:focus-within .sol-reveal,
   .sol-card.is-open .sol-reveal {
      max-height: 240px;
   }
}

/* Circular arrow in the bottom-right corner — steps aside for the Learn
   more button once the copy is open. */
.sol-arrow {
   position: absolute;
   right: clamp(16px, 1.8vw, 22px);
   bottom: clamp(16px, 1.8vw, 22px);
   width: 32px;
   height: 32px;
   border-radius: 50%;
   display: grid;
   place-items: center;
   background: #fff;
   color: var(--navy-deep);
   box-shadow: 0 6px 16px rgba(7, 21, 40, 0.22);
   transition: opacity .3s ease, transform .3s ease;
}

.sol-card:hover .sol-arrow,
.sol-card:focus-within .sol-arrow,
.sol-card.is-open .sol-arrow {
   opacity: 0;
   transform: scale(.85);
}

.sol-arrow svg {
   width: 14px;
   height: 14px;
}

.sol-learn {
   display: inline-flex;
   align-items: center;
   gap: 8px;
   margin-top: 12px;
   padding: 9px 16px;
   border-radius: 8px;
   background: var(--gold);
   color: var(--navy-deep);
   font-weight: 600;
   font-size: 0.86rem;
   transition: background .2s ease, color .2s ease, transform .2s ease;
}

.sol-learn svg {
   width: 15px;
   height: 15px;
   transition: transform .2s ease;
}

.sol-learn:hover {
   background: #fff;
   transform: translateY(-2px);
}

.sol-learn:hover svg {
   transform: translateX(3px);
}

/* Five tiles get too narrow below the full container width — step down to a
   3-up (3 + 2) then a 2-up before the single-column accordion takes over. */
@media (max-width: 1180px) {
   .solutions-cards {
      grid-template-columns: repeat(3, 1fr);
   }
}

@media (max-width: 1000px) {
   .solutions-cards {
      grid-template-columns: repeat(2, 1fr);
   }
}

/* Single column is tap-to-open, so let it behave like an accordion and grow
   downward — expanding upward would slide the card over the one above it. */
@media (max-width: 560px) {
   .solutions-cards {
      grid-template-columns: 1fr;
      grid-auto-rows: auto;
      align-items: stretch;
   }

   .sol-card {
      min-height: 200px;
   }
}

/* Reveal instantly rather than animating height when motion is unwelcome */
@media (prefers-reduced-motion: reduce) {

   .sol-card,
   .sol-card::after,
   .sol-reveal,
   .sol-arrow,
   .sol-icon {
      transition: none;
   }
}

/* ===================== Cards ===================== */
.card {
   background: var(--white);
   border: 1px solid var(--line);
   border-radius: 16px;
   padding: 30px;
   box-shadow: var(--shadow-card);
   transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.card:hover {
   transform: translateY(-4px);
   box-shadow: var(--shadow);
   border-color: rgba(62, 110, 156, 0.35);
}

.card h3 {
   margin-bottom: 10px;
}

.card p {
   font-size: 0.98rem;
}

.card .link-more {
   margin-top: 16px;
}

.card-icon {
   width: 52px;
   height: 52px;
   border-radius: 12px;
   display: grid;
   place-items: center;
   margin-bottom: 18px;
   background: var(--teal-soft, #E7F7F7);
   background: linear-gradient(135deg, rgba(41, 182, 216, 0.14), rgba(62, 110, 156, 0.14));
   color: var(--steel);
}

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

/* On soft section, cards read cleaner with plain white */
.section--soft .card {
   background: var(--white);
}

/* ===================== Feature list (checkmarks) ===================== */
/* ===================== Why-choose section look & feel ===================== */
.why-choose h2 .serif {
   font-weight: 500;
   letter-spacing: 0;
}

.why-choose {
   position: relative;
   overflow: hidden;
   background: #fff;
}

/* ALT DESIGN — centered heading, then a grid of icon boxes */
.why-choose-inner {
   position: relative;
   z-index: 1;
}

/* Centered header block */
.why-intro--center {
   /* max-width: 760px; */
   margin: 0 auto;
   text-align: center;
}

.why-intro h2 {
   font-size: clamp(1.5rem, 2.6vw, 2.05rem);
   line-height: 1.12;
   color: var(--ink);
}

.why-intro .lead {
   margin-top: 18px;
   color: var(--text);
}

.why-intro--center .btn-row {
   display: flex;
   justify-content: center;
}

/* Feature boxes — centered icon + heading + text, 3-up grid */
.why-features {
   --why-gap: clamp(20px, 2.4vw, 30px);
   display: flex;
   flex-wrap: wrap;
   justify-content: center;
   gap: var(--why-gap);
   margin-top: 30px;
}

.why-feature {
   flex: 0 0 calc((100% - 2 * var(--why-gap)) / 3);
   display: flex;
   flex-direction: column;
   align-items: center;
   text-align: center;
   gap: 16px;
   padding: clamp(12px, 1.6vw, 22px);
}

.why-feature:hover .why-feature-icon {
   transform: translateY(-3px);
}

/* Icon — shown, centered and larger (like the reference), no box */
.why-feature-icon {
   display: grid;
   place-items: center;
   width: 64px;
   height: 64px;
   color: var(--teal-deep);
   transition: transform .2s ease;
}

.why-feature-icon svg {
   width: 44px;
   height: 44px;
}

.why-feature-text h3 {
   font-size: clamp(1.15rem, 1.5vw, 1.35rem);
   font-weight: 700;
   color: var(--ink);
   margin-bottom: 10px;
}

.why-feature-text p {
   font-size: 0.95rem;
   line-height: 1.55;
   color: var(--text);
   margin: 0;
}

@media (max-width: 900px) {
   .why-feature {
      flex-basis: calc((100% - var(--why-gap)) / 2);
   }
}

@media (max-width: 560px) {
   .why-feature {
      flex-basis: 100%;
   }
}

/* Floating blurred gradient orbs */
/* .why-orb {
   position: absolute;
   border-radius: 50%;
   filter: blur(60px);
   opacity: 0.5;
   pointer-events: none;
   z-index: 0;
}

.why-orb-1 {
   width: 340px;
   height: 340px;
   top: -80px;
   right: -60px;
   background: radial-gradient(closest-side, rgba(41, 182, 216, 0.5), transparent);
}

.why-orb-2 {
   width: 300px;
   height: 300px;
   bottom: -90px;
   left: -70px;
   background: radial-gradient(closest-side, rgba(62, 110, 156, 0.45), transparent);
} */

/* Accented eyebrow with a gradient dash */
.eyebrow--accent {
   display: inline-flex;
   align-items: center;
   gap: 10px;
}

/* .eyebrow--accent::before {
   content: "";
   width: 24px;
   height: 2px;
   border-radius: 2px;
   background: linear-gradient(90deg, var(--cyan), var(--steel));
} */

.checklist {
   display: grid;
   gap: 14px;
   counter-reset: why;
}

.checklist li {
   display: flex;
   gap: 14px;
   align-items: center;
   font-weight: 600;
   color: var(--ink);
}

.checklist .tick {
   flex: none;
   width: 36px;
   height: 36px;
   border-radius: 50%;
   display: grid;
   place-items: center;
   background: linear-gradient(135deg, rgba(92, 183, 170, 0.18), rgba(62, 110, 156, 0.16));
   color: var(--teal-deep);
   transition: transform .4s ease, background .3s ease, color .3s ease;
}

.checklist li:hover .tick {
   background: linear-gradient(135deg, var(--teal), var(--steel));
   color: #fff;
   transform: rotate(360deg);
}

.checklist .tick svg {
   width: 16px;
   height: 16px;
}

/* ===================== Capability category ===================== */
.cat-head {
   display: flex;
   align-items: baseline;
   gap: 14px;
   flex-wrap: wrap;
   margin-bottom: 6px;
}

.cat-tagline {
   color: var(--steel);
   font-weight: 600;
}

.mini-list {
   display: grid;
   gap: 9px;
   margin-top: 14px;
}

.mini-list li {
   position: relative;
   padding-left: 20px;
   font-size: 0.95rem;
   color: var(--text);
}

.mini-list li::before {
   content: "";
   position: absolute;
   left: 0;
   top: 9px;
   width: 7px;
   height: 7px;
   border-radius: 50%;
   background: var(--gold);
}

.card--list h3 {
   margin-bottom: 4px;
}

/* ===================== Job cards ===================== */
.job-card {
   display: flex;
   flex-direction: column;
}

.job-meta {
   display: flex;
   flex-wrap: wrap;
   gap: 10px;
   margin: 8px 0 14px;
}

.job-meta span {
   display: inline-flex;
   align-items: center;
   gap: 6px;
   font-size: 0.8rem;
   font-weight: 600;
   color: var(--muted);
   background: var(--off-white);
   border: 1px solid var(--line);
   border-radius: 999px;
   padding: 5px 12px;
}

.job-card p {
   flex: 1;
}

.tag-list {
   display: flex;
   flex-wrap: wrap;
   gap: 8px;
   margin: 16px 0;
}

.tag {
   font-size: 0.78rem;
   font-weight: 600;
   color: var(--steel);
   background: rgba(62, 110, 156, 0.10);
   border-radius: 6px;
   padding: 4px 10px;
}

.clearance {
   color: var(--gold-dark, #9C7618) !important;
   background: rgba(196, 162, 83, 0.14) !important;
   border-color: rgba(196, 162, 83, 0.3) !important;
}

/* Metric row */
.metric-row {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 20px;
}

@media (max-width: 620px) {
   .metric-row {
      grid-template-columns: 1fr;
   }
}

.metric {
   text-align: center;
   padding: 24px;
   border: 1px solid var(--line);
   border-radius: 14px;
   background: var(--white);
}

.metric .metric-value {
   font-size: 1.8rem;
   font-weight: 800;
   color: var(--navy);
}

.metric .metric-label {
   color: var(--muted);
   font-size: 0.9rem;
   margin-top: 4px;
}

/* ===================== NAICS — Federal Contracting Classifications ===================== */
.naics-section {
   position: relative;
   overflow: hidden;
   background:
      radial-gradient(720px 420px at 86% -12%, rgba(41, 182, 216, 0.22), transparent 60%),
      radial-gradient(620px 460px at -6% 112%, rgba(196, 162, 83, 0.14), transparent 60%),
      linear-gradient(155deg, #0c2136 0%, #0a1a2c 55%, #071320 100%);
   color: #fff;
}

/* Faint tech-grid overlay, faded out toward the edges */
.naics-section::before {
   content: "";
   position: absolute;
   inset: 0;
   background-image:
      linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
   background-size: 46px 46px;
   -webkit-mask-image: radial-gradient(circle at 50% 38%, #000 28%, transparent 80%);
   mask-image: radial-gradient(circle at 50% 38%, #000 28%, transparent 80%);
   pointer-events: none;
}

.naics-section>.container {
   position: relative;
   z-index: 1;
}

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

.naics-section h2 {
   color: #fff;
}

.naics-section h2 .serif {
   font-weight: 500;
   letter-spacing: 0;
}

.naics-section .lead {
   color: rgba(255, 255, 255, 0.78);
}

/* Clean, box-free list of NAICS codes */
.naics-board {
   background: transparent;
   border: none;
   border-radius: 0;
   padding: 0;
}

.naics-board-grid {
   display: grid;
   grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
   column-gap: clamp(32px, 5vw, 72px);
}

.naics-tile {
   position: relative;
   display: flex;
   align-items: baseline;
   gap: 16px;
   padding: 16px 4px;
   border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.naics-tile .num {
   flex: none;
   min-width: 66px;
   font-weight: 800;
   font-size: 1.05rem;
   letter-spacing: 0.02em;
   color: var(--cyan);
   font-family: ui-monospace, Menlo, Consolas, monospace;
}

.naics-tile .label {
   font-weight: 500;
   font-size: 0.95rem;
   line-height: 1.4;
   color: rgba(255, 255, 255, 0.78);
}

/* Primary code — gold accent, no box */
.naics-tile.primary .num {
   color: var(--gold);
}

.naics-tile.primary .label {
   color: #fff;
   font-weight: 600;
}

.naics-tile .primary-tag {
   margin-left: auto;
   align-self: center;
   flex: none;
   font-size: 0.6rem;
   font-weight: 800;
   letter-spacing: 0.14em;
   text-transform: uppercase;
   color: var(--gold);
}

@media (max-width: 640px) {
   .naics-board-grid {
      grid-template-columns: 1fr;
   }
}

/* ===================== Technology Partners ===================== */
/* Full-width light band: centered heading, then a static logo grid */
.partners-block {
   margin-top: clamp(48px, 6vw, 84px);
   width: 100vw;
   margin-left: calc(50% - 50vw);
   margin-right: calc(50% - 50vw);
   background: #fff;
   padding: clamp(44px, 6vw, 72px) clamp(20px, 5vw, 50px);
}

.partners-head {
   text-align: center;
   max-width: 720px;
   margin: 0 auto clamp(34px, 5vw, 54px);
}

.vehicles-awards .partners-block h2 {
   color: var(--ink);
   font-size: clamp(1.5rem, 2.6vw, 2.05rem);
   line-height: 1.2;
   letter-spacing: -0.01em;
   margin: 0;
}

.vehicles-awards .partners-block h2 .serif {
   font-weight: 500;
   letter-spacing: 0;
}

/* Continuous logo marquee (same motion as the vehicles logos) */
.partners-marquee {
   position: relative;
   overflow: hidden;
   -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
   mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

/* Top-aligned, not centred: a caption that wraps to two lines would otherwise
   push its logo out of line with the rest of the strip. */
.partners-track {
   display: flex;
   align-items: flex-start;
   width: max-content;
   animation: va-marquee 40s linear infinite;
}

.partners-marquee:hover .partners-track {
   animation-play-state: paused;
}

/* Logo over company name, mirroring the .va-card stack in Federal Customers:
   same column layout, same 12px gap, same centred caption treatment. */
.partner-card {
   flex: 0 0 auto;
   width: clamp(130px, 12vw, 160px);
   margin-right: clamp(34px, 5vw, 68px);
   display: flex;
   flex-direction: column;
   align-items: center;
   justify-content: flex-start;
   gap: 12px;
   text-align: center;
   padding: 8px 0;
   background: transparent;
   border: none;
}

/* Fixed-height logo box keeps every caption on the same baseline no matter
   how tall or wide the individual logo artwork is. */
.partner-logo-wrap {
   display: flex;
   align-items: center;
   justify-content: center;
   width: 100%;
   height: 70px;
}

.partner-logo {
   max-width: 100%;
   max-height: 70px;
   width: auto;
   /* height: auto; */
   object-fit: contain;
   opacity: 0.85;
   transition: opacity .2s ease, transform .2s ease;
}

.partner-card:hover .partner-logo {
   opacity: 1;
   transform: translateY(-2px);
}

/* Matches .va-desc so partner and agency captions read identically */
.partner-name {
   font-size: 0.82rem;
   line-height: 1.4;
   color: var(--text);
}

@media (prefers-reduced-motion: reduce) {
   .partners-track {
      animation: none;
      flex-wrap: wrap;
      justify-content: center;
      width: auto;
      gap: 28px 44px;
   }

   .partner-card {
      margin-right: 0;
   }
}

/* ===================== Federal Contract Vehicles (dark award grid) ===================== */
.vehicles-awards {
   position: relative;
   overflow: hidden;
   background: rgb(233, 252, 255);
   color: var(--ink);
   padding-bottom: 0;
   border-top-left-radius: 40px;
   border-top-right-radius: 40px;

}

.vehicles-awards>.container {
   position: relative;
   z-index: 1;
}

.va-eyebrow {
   display: inline-block;
   color: var(--teal);
   margin-bottom: 14px;
   text-align: left;
}

/* Split head: title left, paragraph right (matches Solutions head) */
.va-head {
   max-width: var(--container);
   margin: 0 auto clamp(36px, 5vw, 60px);
   display: grid;
   grid-template-columns: 1.05fr 0.95fr;
   gap: clamp(24px, 5vw, 72px);
   align-items: center;
   text-align: left;
}

.va-title {
   color: var(--ink);
   font-size: clamp(1.5rem, 2.6vw, 2.05rem);
   line-height: 1.12;
   letter-spacing: -0.01em;
   margin: 0;
}

.va-title .serif {
   font-weight: 500;
}

.va-head-right {
   display: flex;
   align-items: center;
}

.va-head .lead {
   color: var(--text);
   margin: 0;
   max-width: 48ch;
}

.va-head-right strong {
   color: var(--ink);
   font-weight: 700;
}

@media (max-width: 860px) {
   .va-head {
      grid-template-columns: 1fr;
      gap: 14px;
      align-items: start;
   }
}

.va-grid {
   display: flex;
   flex-wrap: wrap;
   justify-content: center;
   gap: 10px;
}

.va-card {
   flex: 0 0 calc((100% - 30px) / 4);
   display: flex;
   flex-direction: column;
   align-items: center;
   gap: 12px;
   text-align: center;
   padding: 18px 14px;
   background: transparent;
   border: none;
   border-radius: 0;
}

/* Continuous marquee (replaces the Swiper carousel) */
.va-marquee {
   position: relative;
   overflow: hidden;
   -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
   mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.va-track {
   display: flex;
   width: max-content;
   animation: va-marquee 45s linear infinite;
}

.va-marquee:hover .va-track {
   animation-play-state: paused;
}

.va-marquee .va-card {
   flex: 0 0 auto;
   width: 168px;
   margin-right: clamp(24px, 4vw, 52px);
   padding: 8px 0;
}

/* Shift by exactly one set (the track holds two identical sets) */
@keyframes va-marquee {
   from {
      transform: translateX(0);
   }

   to {
      transform: translateX(-50%);
   }
}

@media (prefers-reduced-motion: reduce) {
   .va-track {
      animation: none;
   }
}

.va-logo {
   margin: auto 0;
   max-width: 74px;
   max-height: 74px;
   width: auto;
   height: auto;
   object-fit: contain;
   opacity: 0.92;
   transition: opacity .2s ease;
}

.va-card:hover .va-logo {
   opacity: 1;
}

.va-desc {
   font-size: 0.82rem;
   line-height: 1.4;
   color: var(--text);
   /* display: none; */
}

.va-badge {
   width: 64px;
   height: 64px;
   border-radius: 50%;
   display: grid;
   place-items: center;
   background: linear-gradient(135deg, rgba(41, 182, 216, 0.18), rgba(62, 110, 156, 0.18));
   color: var(--cyan);
   transition: transform .3s ease;
}

.va-card:hover .va-badge {
   transform: scale(1.06);
}

.va-badge svg {
   width: 32px;
   height: 32px;
}

.va-name {
   font-size: 0.82rem;
   font-weight: 800;
   letter-spacing: 0.08em;
   text-transform: uppercase;
   color: var(--navy);
}

.vehicles-awards .btn-outline {
   color: #fff;
   border-color: rgba(255, 255, 255, 0.35);
}

.vehicles-awards .btn-outline:hover {
   background: rgba(255, 255, 255, 0.08);
   border-color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 900px) {
   .va-card {
      flex-basis: calc((100% - 10px) / 2);
   }
}

@media (max-width: 520px) {
   .va-card {
      flex-basis: 100%;
   }
}

/* Trusted-by white card inside the dark vehicles section */
.fed-trust {
   position: relative;
   overflow: hidden;
   margin-top: clamp(48px, 6vw, 84px);
   background: #fff;
   border-radius: clamp(24px, 3vw, 40px);
   padding: clamp(44px, 6vw, 80px) clamp(24px, 4vw, 60px);
   text-align: center;
   box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
}

.fed-trust::before {
   content: "";
   position: absolute;
   right: -8%;
   top: 10%;
   width: 46%;
   height: 130%;
   background: radial-gradient(closest-side, rgba(41, 182, 216, 0.16), rgba(62, 110, 156, 0.10) 45%, transparent 72%);
   pointer-events: none;
}

.fed-trust .eyebrow {
   position: relative;
   display: block;
   margin-bottom: clamp(24px, 3vw, 40px);
}

.fed-trust .trust-strip {
   position: relative;
}

/* ===================== Chips (contract vehicles) ===================== */
.chip-grid {
   display: flex;
   flex-wrap: wrap;
   gap: 12px;
}

.chip {
   padding: 12px 18px;
   border-radius: 999px;
   border: 1px solid var(--line);
   background: var(--white);
   font-weight: 600;
   font-size: 0.92rem;
   color: var(--navy);
   transition: border-color .18s ease, transform .18s ease;
}

.chip:hover {
   border-color: var(--steel);
   transform: translateY(-2px);
}

/* ===================== Badges / contract cards ===================== */
.badge {
   display: inline-block;
   padding: 5px 11px;
   border-radius: 999px;
   font-size: 0.72rem;
   font-weight: 700;
   letter-spacing: 0.06em;
   text-transform: uppercase;
   background: rgba(62, 110, 156, 0.12);
   color: var(--steel);
   margin-bottom: 14px;
}

.badge--sub {
   background: rgba(196, 162, 83, 0.16);
   color: var(--gold-dark, #9C7618);
}

.contract-no {
   margin-top: 14px;
   padding-top: 14px;
   border-top: 1px solid var(--line);
   font-size: 0.82rem;
   color: var(--muted);
   font-family: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
   word-break: break-word;
}

.card--vehicle {
   display: flex;
   flex-direction: column;
}

.card--vehicle p {
   flex: 1;
}

/* ===================== Partner / trust strip ===================== */
.trust-strip {
   display: flex;
   flex-wrap: wrap;
   align-items: center;
   justify-content: center;
   gap: clamp(18px, 4vw, 54px);
}

.trust-badge {
   font-weight: 800;
   letter-spacing: .04em;
   color: var(--muted);
   font-size: 1.05rem;
   opacity: .85;
}

/* ===================== Certification cards ===================== */
.cert-card {
   text-align: center;
   display: flex;
   flex-direction: column;
   align-items: center;
}

.cert-badge {
   width: 60px;
   height: 60px;
   border-radius: 14px;
   display: grid;
   place-items: center;
   margin-bottom: 16px;
   background: linear-gradient(135deg, rgba(41, 182, 216, 0.14), rgba(62, 110, 156, 0.14));
   color: var(--steel);
}

.cert-badge svg {
   width: 30px;
   height: 30px;
}

.cert-card h3 {
   font-size: 1.05rem;
   margin-bottom: 6px;
}

.cert-card p {
   font-size: 0.9rem;
}

/* Facts strip (CAGE / UEI / DUNS) */
.facts-strip {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 18px;
}

@media (max-width: 620px) {
   .facts-strip {
      grid-template-columns: 1fr;
   }
}

.fact {
   padding: 22px;
   border: 1px solid var(--line);
   border-radius: 14px;
   background: var(--white);
   text-align: center;
}

.fact .fact-label {
   font-size: 0.75rem;
   letter-spacing: 0.1em;
   text-transform: uppercase;
   color: var(--muted);
   font-weight: 700;
}

.fact .fact-value {
   font-size: 1.15rem;
   font-weight: 800;
   color: var(--navy);
   margin-top: 6px;
   font-family: ui-monospace, Menlo, Consolas, monospace;
}

/* NAICS compact grid */
.naics-grid {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 14px;
}

@media (max-width: 900px) {
   .naics-grid {
      grid-template-columns: repeat(2, 1fr);
   }
}

@media (max-width: 560px) {
   .naics-grid {
      grid-template-columns: 1fr;
   }
}

.naics-item {
   display: flex;
   gap: 14px;
   align-items: baseline;
   padding: 16px 18px;
   border: 1px solid var(--line);
   border-radius: 12px;
   background: var(--white);
   transition: border-color .18s ease, transform .18s ease;
}

.naics-item:hover {
   border-color: var(--steel);
   transform: translateY(-2px);
}

.naics-code {
   font-weight: 800;
   color: var(--navy);
   font-family: ui-monospace, Menlo, Consolas, monospace;
   flex: none;
}

.naics-desc {
   font-size: 0.92rem;
   color: var(--text);
}

.naics-item.primary {
   border-color: var(--gold);
   background: #FFFBF1;
}

/* ===================== CTA band ===================== */
.cta-band {
   text-align: center;
}

.cta-band .lead {
   color: var(--on-navy-muted);
   max-width: 620px;
   margin: 14px auto 30px;
}

/* ===================== Split (text + panel) ===================== */
.split {
   display: grid;
   grid-template-columns: 1.05fr 0.95fr;
   gap: clamp(28px, 5vw, 72px);
   align-items: center;
}

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

.panel {
   border-radius: 18px;
   padding: clamp(24px, 3vw, 38px);
   background: var(--off-white);
   border: 1px solid var(--line);
}

/* ===================== Contact form ===================== */
.contact-grid {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: clamp(28px, 5vw, 56px);
   align-items: start;
}

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

.form-field {
   margin-bottom: 18px;
}

.form-field label {
   display: block;
   font-weight: 600;
   font-size: 0.9rem;
   margin-bottom: 8px;
   color: var(--ink);
}

.form-field .req {
   color: var(--gold-dark, #9C7618);
}

.form-control {
   width: 100%;
   padding: 13px 15px;
   border-radius: 10px;
   border: 1.5px solid var(--line);
   background: var(--white);
   color: var(--ink);
   transition: border-color .18s ease, box-shadow .18s ease;
}

.form-control:focus {
   outline: none;
   border-color: var(--steel);
   box-shadow: 0 0 0 3px rgba(62, 110, 156, 0.15);
}

textarea.form-control {
   min-height: 140px;
   resize: vertical;
}

.form-row {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 18px;
}

@media (max-width: 560px) {
   .form-row {
      grid-template-columns: 1fr;
   }
}

.form-note {
   font-size: 0.85rem;
   color: var(--muted);
   margin-top: 6px;
}

.form-status {
   margin-top: 14px;
   font-weight: 600;
   display: none;
}

.form-status.ok {
   display: block;
   color: var(--teal, #00878A);
}

.form-status.err {
   display: block;
   color: #b4453b;
}

.g-recaptcha {
   margin: 4px 0 8px;
}

/* Contact info cards */
.info-list {
   display: grid;
   gap: 16px;
}

.info-item {
   display: flex;
   gap: 14px;
   align-items: flex-start;
}

.info-item .info-icon {
   flex: none;
   width: 42px;
   height: 42px;
   border-radius: 10px;
   display: grid;
   place-items: center;
   background: linear-gradient(135deg, rgba(41, 182, 216, 0.14), rgba(62, 110, 156, 0.14));
   color: var(--steel);
}

.info-item .info-icon svg {
   width: 20px;
   height: 20px;
}

.info-item h4 {
   margin-bottom: 3px;
}

.info-item a,
.info-item span {
   color: var(--text);
   font-size: 0.96rem;
}

.info-item a:hover {
   color: var(--navy);
}

.contact-map {
   margin-top: 24px;
   border-radius: 14px;
   overflow: hidden;
   border: 1px solid var(--line);
}

.contact-map iframe {
   display: block;
   width: 100%;
   height: 280px;
   border: 0;
}

/* ===================== Footer (light, column layout) ===================== */
.site-footer {
   position: relative;
   overflow: hidden;
   background-color: rgb(233, 252, 255);
   color: var(--ink);
   border-top-left-radius: 40px;
   border-top-right-radius: 40px;
}

/* Big-CTA band at the top of the footer (kept hidden) */
.footer-cta {
   display: none;
}

.footer-main {
   position: relative;
   display: grid;
   grid-template-columns: 1.1fr 2fr;
   gap: clamp(36px, 6vw, 80px);
   padding-block: clamp(48px, 5vw, 45px);
}

/* Left: logo + contact + address + socials */
.footer-brand {
   display: flex;
   flex-direction: column;
   align-items: flex-start;
}

.footer-logo {
   height: 46px;
   filter: none;
   margin-bottom: 26px;
}

.footer-contacts {
   display: flex;
   flex-direction: column;
   gap: 12px;
}

.footer-contact {
   display: inline-flex;
   align-items: center;
   gap: 12px;
   color: var(--ink);
   font-size: 1.02rem;
   font-weight: 600;
   transition: color .18s ease;
}

.footer-contact-icon {
   display: grid;
   place-items: center;
   width: 34px;
   height: 34px;
   border-radius: 50%;
   background: rgba(92, 183, 170, 0.16);
   color: var(--teal-deep);
   flex: none;
}

.footer-contact-icon svg {
   width: 17px;
   height: 17px;
}

.footer-contact:hover {
   color: var(--teal-deep);
}

.footer-address {
   display: block;
   margin-top: 20px;
   font-style: normal;
   color: var(--muted);
   font-size: 0.95rem;
   line-height: 1.6;
   max-width: 260px;
}

.footer-socials {
   display: flex;
   align-items: center;
   gap: 16px;
   margin-top: 26px;
}

.footer-socials a {
   display: grid;
   place-items: center;
   width: 38px;
   height: 38px;
   border-radius: 50%;
   background: rgba(11, 31, 58, 0.06);
   color: var(--steel);
   transition: color .18s ease, background .18s ease;
}

.footer-socials a:hover {
   color: #fff;
   background: var(--teal-deep);
}

/* Right: three link columns */
.footer-cols {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: clamp(24px, 4vw, 48px);
}

.footer-col {
   display: flex;
   flex-direction: column;
   align-items: flex-start;
}

.footer-col h4 {
   color: var(--teal);
   font-family: var(--font-heading);
   font-size: 1.1rem;
   font-weight: 600;
   letter-spacing: 0;
   text-transform: none;
   margin-bottom: 18px;
}

.footer-col a {
   color: var(--ink);
   font-size: 0.96rem;
   padding-block: 6px;
   transition: color .18s ease;
}

.footer-col a:hover {
   color: var(--teal-deep);
}

/* Bottom: legal left, policy links right, divided by a hairline */
.footer-bottom {
   display: flex;
   flex-wrap: wrap;
   gap: 14px 28px;
   justify-content: space-between;
   align-items: center;
   padding-block: 26px;
   border-top: 1px solid rgba(11, 31, 58, 0.12);
   font-size: 0.9rem;
   color: var(--muted);
}

.footer-legal {
   display: flex;
   flex-wrap: wrap;
   align-items: center;
   gap: 6px 12px;
}

.footer-legal a {
   color: var(--ink);
   transition: color .18s ease;
}

.footer-legal a:hover {
   color: var(--teal-deep);
}

.footer-dot {
   color: rgba(11, 31, 58, 0.35);
}

.footer-policies {
   display: flex;
   flex-wrap: wrap;
   align-items: center;
   gap: 10px 20px;
}

.footer-policies a {
   position: relative;
   color: var(--ink);
   transition: color .18s ease;
}

.footer-policies a:hover {
   color: var(--teal-deep);
}

.footer-policies a:not(:last-child)::after {
   content: "";
   position: absolute;
   right: -10px;
   top: 50%;
   transform: translateY(-50%);
   width: 1px;
   height: 14px;
   background: rgba(11, 31, 58, 0.22);
}

@media (max-width: 820px) {
   .footer-main {
      grid-template-columns: 1fr;
      gap: 40px;
   }
}

@media (max-width: 560px) {
   .footer-cols {
      grid-template-columns: 1fr 1fr;
      gap: 28px 20px;
   }

   .footer-bottom {
      justify-content: flex-start;
   }
}

/* ===================== Consistent typography — no italic/cursive accents =====================
   The former italic "serif" emphasis words now inherit the site's Gordita sans and
   the exact weight/spacing of the heading around them, so nothing reads as a second font. */
.serif {
   font-weight: inherit !important;
   letter-spacing: inherit !important;
}

/* ===================== Partners carousel (Swiper) ===================== */
.partners-swiper {
   padding-bottom: 46px;
   width: 100%;
   min-width: 0;
}

/* Let slides stretch to equal height instead of the tallest logo's box */
.partners-swiper .swiper-slide {
   height: auto;
}

.partners-swiper .swiper-pagination {
   bottom: 6px;
}

.partners-swiper .swiper-pagination-bullet {
   width: 22px;
   height: 3px;
   border-radius: 2px;
   background: var(--navy);
   opacity: 0.25;
   transition: opacity .2s ease, background .2s ease, width .2s ease;
}

.partners-swiper .swiper-pagination-bullet-active {
   background: var(--gold);
   opacity: 1;
   width: 34px;
}

/* ===================== Vehicles (agency) carousel (Swiper) ===================== */
.vehicles-swiper {
   padding-bottom: 46px;
}

/* Slides size from Swiper, not the old flex-grid basis; stretch to equal height */
.vehicles-swiper .va-card {
   flex: none;
   height: auto;
}

.vehicles-swiper .swiper-pagination {
   bottom: 6px;
}

/* Dark dots on the light vehicles section */
.vehicles-swiper .swiper-pagination-bullet {
   width: 9px;
   height: 9px;
   background: var(--navy);
   opacity: 0.25;
   transition: opacity .2s ease, background .2s ease, transform .2s ease;
}

.vehicles-swiper .swiper-pagination-bullet-active {
   background: var(--gold);
   opacity: 1;
   transform: scale(1.15);
}