
:root {
  --navy-950: #03101e;
  --navy-900: #07182b;
  --navy-800: #0b223b;
  --navy-700: #123453;
  --blue: #1667a8;
  --blue-soft: #e8f1f8;
  --red: #e32432;
  --red-dark: #ba1522;
  --cream: #f3f0e9;
  --paper: #fbfaf7;
  --white: #ffffff;
  --ink: #102033;
  --muted: #647183;
  --line: rgba(9, 31, 53, 0.12);
  --shadow-sm: 0 12px 32px rgba(7, 24, 43, 0.08);
  --shadow-lg: 0 30px 80px rgba(3, 16, 30, 0.18);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --container: 1200px;
  --transition: 240ms cubic-bezier(.22, .61, .36, 1);
}

/* Landing page refinement — Fastlane corporate identity */
.brand {
  width: 150px;
  height: 50px;
}

.brand img {
  top: -24px;
  left: -6px;
  width: 166px;
}

.footer-brand img {
  width: 150px;
}

.hero {
  min-height: 820px;
}

.hero-bg::before {
  background:
    linear-gradient(90deg, rgba(3, 16, 30, .48) 0%, rgba(3, 16, 30, .22) 48%, rgba(3, 16, 30, .02) 82%),
    linear-gradient(0deg, rgba(3, 16, 30, .30) 0%, transparent 50%);
}

.hero-bg::after {
  opacity: .24;
}

.hero-bg img {
  filter: brightness(1.16) saturate(1.08) contrast(1.02);
}

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

.display-title {
  max-width: 760px;
  font-size: clamp(3.2rem, 5.8vw, 5.55rem);
  text-shadow: 0 5px 32px rgba(0, 0, 0, .22);
}

.hero-lead {
  max-width: 610px;
}

.about-section {
  overflow: hidden;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: 76px;
  align-items: center;
}

.about-copy .section-title {
  max-width: 590px;
  font-size: clamp(2.2rem, 3.6vw, 3.55rem);
}

.about-copy p {
  color: var(--muted);
}

.about-copy .lead-copy {
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 500;
}

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

.about-gallery {
  display: grid;
  min-height: 610px;
  grid-template-columns: 1.14fr .86fr;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
}

.about-photo {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
  background: var(--navy-900);
  box-shadow: var(--shadow-sm);
}

.about-photo::after {
  position: absolute;
  inset: 0;
  content: '';
  background: linear-gradient(0deg, rgba(3, 16, 30, .8), transparent 55%);
  pointer-events: none;
}

.about-photo-main {
  grid-row: 1 / 3;
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(.22, .61, .36, 1);
}

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

.about-photo figcaption {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 17px;
  left: 18px;
  color: var(--white);
  font-family: 'Manrope', sans-serif;
  font-size: .75rem;
  font-weight: 700;
  line-height: 1.4;
}

.about-highlights {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 56px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.about-highlight {
  position: relative;
  min-height: 158px;
  padding: 28px;
}

.about-highlight + .about-highlight {
  border-left: 1px solid var(--line);
}

.about-highlight span,
.about-highlight strong,
.about-highlight small {
  display: block;
}

.about-highlight span {
  margin-bottom: 24px;
  color: var(--red);
  font-family: 'Manrope', sans-serif;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .12em;
}

.about-highlight strong {
  margin-bottom: 3px;
  color: var(--navy-900);
  font-family: 'Manrope', sans-serif;
  font-size: .94rem;
}

.about-highlight small {
  color: var(--muted);
  font-size: .76rem;
}

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

.pillar-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 12px 34px rgba(7, 24, 43, .06);
  transition: transform var(--transition), box-shadow var(--transition);
}

.pillar-card:hover {
  box-shadow: 0 22px 50px rgba(7, 24, 43, .12);
  transform: translateY(-7px);
}

.pillar-image {
  position: relative;
  height: 245px;
  overflow: hidden;
  background: var(--navy-900);
}

.pillar-image::after {
  position: absolute;
  inset: 0;
  content: '';
  background: linear-gradient(0deg, rgba(3, 16, 30, .54), transparent 55%);
}

.pillar-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(.22, .61, .36, 1);
}

.pillar-card:hover .pillar-image img {
  transform: scale(1.05);
}

.pillar-image span {
  position: absolute;
  z-index: 2;
  bottom: 18px;
  left: 20px;
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 999px;
  color: var(--white);
  background: rgba(3, 16, 30, .44);
  font-family: 'Manrope', sans-serif;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.pillar-content {
  position: relative;
  padding: 30px 28px 34px;
}

.pillar-index {
  display: block;
  margin-bottom: 20px;
  color: var(--red);
  font-family: 'Manrope', sans-serif;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .12em;
}

.pillar-content h3 {
  margin-bottom: 13px;
  color: var(--navy-900);
  font-size: 1.3rem;
  line-height: 1.25;
}

.pillar-content p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: .87rem;
  line-height: 1.65;
}

.pillar-content p strong {
  color: var(--ink);
}

.section-dark.platform-wrap::before {
  border-color: rgba(227, 36, 50, .08);
}

.app-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 68px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, .12);
}

.app-feature {
  min-height: 215px;
  padding: 30px;
  background: rgba(7, 24, 43, .96);
}

.app-feature span {
  display: block;
  margin-bottom: 36px;
  color: #ff5360;
  font-family: 'Manrope', sans-serif;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .12em;
}

.app-feature h3 {
  margin-bottom: 9px;
  color: var(--white);
  font-size: 1.08rem;
}

.app-feature p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, .6);
  font-size: .84rem;
  line-height: 1.6;
}

.cta-box {
  grid-template-columns: minmax(0, 1fr) auto;
}

.contact-quick {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: 1fr 1.1fr 1.2fr;
  gap: 22px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, .14);
}

.contact-quick > * {
  color: rgba(255, 255, 255, .88);
  font-family: 'Manrope', sans-serif;
  font-size: .8rem;
  font-weight: 700;
  line-height: 1.45;
}

.contact-quick small {
  display: block;
  margin-bottom: 6px;
  color: #ff6873;
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}

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

  .about-gallery {
    min-height: 540px;
  }

  .about-highlights {
    grid-template-columns: 1fr 1fr;
  }

  .about-highlight:nth-child(3) {
    border-left: 0;
  }

  .about-highlight:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

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

  .pillar-card {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
  }

  .pillar-image {
    height: 100%;
    min-height: 350px;
  }

  .app-features-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .brand {
    width: 128px;
    height: 44px;
  }

  .brand img {
    top: -21px;
    left: -6px;
    width: 145px;
  }

  .hero {
    min-height: 820px;
  }

  .hero-bg::before {
    background:
      linear-gradient(90deg, rgba(3, 16, 30, .48), rgba(3, 16, 30, .12)),
      linear-gradient(0deg, rgba(3, 16, 30, .50), transparent 62%);
  }

  .hero-bg img {
    object-position: 57% center;
    filter: brightness(1.12) saturate(1.06);
  }

  .display-title {
    font-size: clamp(3rem, 14vw, 4.2rem);
  }

  .about-layout {
    gap: 46px;
  }

  .about-gallery {
    min-height: 590px;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 320px 250px;
  }

  .about-photo-main {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .about-highlights,
  .app-features-grid {
    grid-template-columns: 1fr;
  }

  .about-highlight + .about-highlight {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .pillar-card {
    display: block;
  }

  .pillar-image {
    height: 235px;
    min-height: 0;
  }

  .app-feature {
    min-height: 190px;
  }

  .contact-quick {
    grid-template-columns: 1fr;
  }

  .contact-quick > * {
    overflow-wrap: anywhere;
  }
}

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

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: 'DM Sans', 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

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

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

h1,
h2,
h3,
h4,
.eyebrow,
.nav-link,
.btn {
  font-family: 'Manrope', 'Segoe UI', sans-serif;
}

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

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

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

.section {
  position: relative;
  padding: 112px 0;
}

.section-sm {
  padding: 72px 0;
}

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

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

.section-header {
  max-width: 720px;
  margin-bottom: 52px;
}

.section-header.center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--red);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 2px;
  content: '';
  background: currentColor;
}

.section-dark .eyebrow,
.hero .eyebrow,
.page-hero .eyebrow {
  color: #ff5360;
}

.display-title,
.section-title {
  color: inherit;
  font-weight: 800;
  letter-spacing: -.045em;
  line-height: 1.06;
}

.display-title {
  max-width: 850px;
  margin-bottom: 26px;
  font-size: clamp(3.1rem, 6.4vw, 6.2rem);
}

.section-title {
  margin-bottom: 20px;
  font-size: clamp(2.15rem, 4.2vw, 4rem);
}

.section-copy {
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.3vw, 1.16rem);
}

.section-dark .section-copy {
  color: rgba(255, 255, 255, .68);
}

.accent {
  color: var(--red);
}

.btn {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 0 25px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: .88rem;
  font-weight: 800;
  letter-spacing: .02em;
  line-height: 1;
  transition: transform var(--transition), background var(--transition), border-color var(--transition), color var(--transition), box-shadow var(--transition);
}

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

.btn-primary {
  color: var(--white);
  background: var(--red);
  box-shadow: 0 12px 28px rgba(227, 36, 50, .25);
}

.btn-primary:hover {
  background: var(--red-dark);
  box-shadow: 0 16px 34px rgba(227, 36, 50, .32);
}

.btn-outline-light {
  color: var(--white);
  border-color: rgba(255, 255, 255, .38);
  background: rgba(255, 255, 255, .06);
  backdrop-filter: blur(10px);
}

.btn-outline-light:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, .12);
}

.btn-outline-dark {
  color: var(--navy-900);
  border-color: rgba(7, 24, 43, .22);
  background: transparent;
}

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

.arrow {
  font-size: 1.15em;
  transition: transform var(--transition);
}

.btn:hover .arrow,
.text-link:hover .arrow {
  transform: translateX(4px);
}

.topbar {
  height: 38px;
  color: var(--white);
  background: #061d38;
  font-size: .76rem;
  font-weight: 700;
}

.topbar a,
.topbar span {
  color: inherit;
}

.topbar-inner {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
}

.topbar-group {
  display: flex;
  align-items: center;
  gap: 24px;
}

.topbar a:hover {
  color: var(--white);
}

.status-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 8px;
  border-radius: 50%;
  background: #45d483;
  box-shadow: 0 0 0 4px rgba(69, 212, 131, .12);
}

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
}

.site-header.is-scrolled {
  background: rgba(3, 16, 30, .95);
  box-shadow: 0 14px 40px rgba(0, 0, 0, .17);
  backdrop-filter: blur(16px);
}

.navbar {
  height: 84px;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  background: linear-gradient(135deg, #061d38 0%, #0a315c 56%, #0d568d 100%);
  box-shadow: 0 8px 20px rgba(3, 16, 30, .14);
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  transition: background var(--transition), box-shadow var(--transition), backdrop-filter var(--transition);
}

.site-header.is-scrolled .navbar {
  background: linear-gradient(135deg, #061d38 0%, #0a315c 56%, #0d568d 100%);
  box-shadow: 0 10px 28px rgba(3, 16, 30, .22);
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

.nav-inner {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
}

.brand {
  position: relative;
  display: inline-flex;
  width: 190px;
  height: 62px;
  align-items: center;
  flex-shrink: 0;
  overflow: hidden;
}

.brand img {
  position: absolute;
  top: -30px;
  left: -8px;
  width: 210px;
  max-width: none;
  height: auto;
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-link {
  position: relative;
  padding: 12px 0;
  color: var(--white);
  font-size: .83rem;
  font-weight: 800;
  text-shadow: 0 2px 9px rgba(0, 0, 0, .72);
}

.nav-link::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 2px;
  content: '';
  background: var(--red);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--white);
}

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

.nav-cta {
  min-height: 46px;
  padding: 0 19px;
  font-size: .8rem;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 50%;
  color: var(--white);
  background: transparent;
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  display: block;
  width: 19px;
  height: 2px;
  content: '';
  background: currentColor;
  transition: transform var(--transition), opacity var(--transition);
}

.menu-toggle span {
  margin: 4px 0;
}

.menu-toggle.active span {
  opacity: 0;
}

.menu-toggle.active::before {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle.active::after {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  display: flex;
  min-height: 860px;
  align-items: flex-end;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-950);
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg::before,
.hero-bg::after {
  position: absolute;
  inset: 0;
  content: '';
}

.hero-bg::before {
  z-index: 1;
  background: linear-gradient(90deg, rgba(3, 16, 30, .95) 0%, rgba(3, 16, 30, .78) 48%, rgba(3, 16, 30, .22) 79%), linear-gradient(0deg, rgba(3, 16, 30, .78) 0%, transparent 42%);
}

.hero-bg::after {
  z-index: 2;
  background: linear-gradient(120deg, transparent 64%, rgba(227, 36, 50, .28) 64.1%, transparent 65%);
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
}

.hero-grid {
  position: relative;
  z-index: 3;
  display: grid;
  width: 100%;
  grid-template-columns: minmax(0, 1fr) 290px;
  gap: 64px;
  align-items: end;
  padding-top: 190px;
  padding-bottom: 76px;
}

.hero-copy {
  max-width: 850px;
}

.hero-lead {
  max-width: 660px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, .78);
  font-size: clamp(1.08rem, 1.7vw, 1.3rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-proof {
  padding: 26px 26px 22px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--radius-md);
  background: rgba(6, 24, 43, .62);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(18px);
}

.hero-proof-label {
  margin-bottom: 17px;
  color: rgba(255, 255, 255, .5);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.proof-item {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 13px;
  align-items: center;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.proof-item:first-of-type {
  border-top: 0;
}

.proof-number {
  color: var(--white);
  font-family: 'Manrope', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -.04em;
}

.proof-copy {
  color: rgba(255, 255, 255, .7);
  font-size: .83rem;
  line-height: 1.4;
}

.hero-scroll {
  position: absolute;
  z-index: 4;
  right: 28px;
  bottom: 82px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, .52);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.hero-scroll::after {
  width: 1px;
  height: 54px;
  content: '';
  background: rgba(255, 255, 255, .38);
}

.expertise-strip {
  color: var(--white);
  background: var(--red);
}

.expertise-grid {
  display: grid;
  min-height: 88px;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
}

.expertise-item {
  position: relative;
  padding: 0 24px;
  font-family: 'Manrope', sans-serif;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-align: center;
  text-transform: uppercase;
}

.expertise-item + .expertise-item::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 1px;
  height: 28px;
  content: '';
  background: rgba(255, 255, 255, .34);
  transform: translateY(-50%);
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: 90px;
  align-items: center;
}

.image-stack {
  position: relative;
  min-height: 620px;
}

.image-card {
  position: absolute;
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-card.primary {
  top: 0;
  right: 0;
  width: 78%;
  height: 470px;
}

.image-card.secondary {
  bottom: 0;
  left: 0;
  width: 58%;
  height: 270px;
  border: 10px solid var(--paper);
}

.image-label {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  padding: 15px 17px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 12px;
  color: var(--white);
  background: rgba(3, 16, 30, .78);
  font-size: .78rem;
  font-weight: 700;
  backdrop-filter: blur(12px);
}

.story-badge {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 14%;
  display: grid;
  width: 138px;
  height: 138px;
  place-items: center;
  padding: 18px;
  border: 8px solid var(--paper);
  border-radius: 50%;
  color: var(--white);
  background: var(--red);
  font-family: 'Manrope', sans-serif;
  font-size: .78rem;
  font-weight: 800;
  line-height: 1.35;
  text-align: center;
  text-transform: uppercase;
  transform: translateY(-50%);
}

.story-copy p {
  color: var(--muted);
}

.story-copy .lead-copy {
  color: var(--ink);
  font-size: 1.18rem;
  font-weight: 500;
}

.check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 24px;
  margin: 32px 0 38px;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 27px;
  font-size: .92rem;
  font-weight: 700;
}

.check-list li::before {
  position: absolute;
  top: 8px;
  left: 0;
  display: grid;
  width: 17px;
  height: 17px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--red);
  content: '✓';
  font-size: .66rem;
}

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

.service-card {
  position: relative;
  display: flex;
  min-height: 410px;
  flex-direction: column;
  overflow: hidden;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  color: var(--white);
  background: var(--navy-900);
  box-shadow: var(--shadow-sm);
  isolation: isolate;
}

.service-card::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: '';
  background: linear-gradient(180deg, rgba(3, 16, 30, .2), rgba(3, 16, 30, .96) 76%);
}

.service-card::after {
  position: absolute;
  z-index: -2;
  inset: 0;
  content: '';
  background: var(--service-image) center/cover no-repeat;
  transition: transform 700ms cubic-bezier(.22, .61, .36, 1);
}

.service-card:hover::after {
  transform: scale(1.06);
}

.service-index {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin-bottom: auto;
  border: 1px solid rgba(255, 255, 255, .26);
  border-radius: 50%;
  background: rgba(3, 16, 30, .38);
  font-family: 'Manrope', sans-serif;
  font-size: .75rem;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.service-card h3 {
  margin: 0 0 12px;
  font-size: 1.55rem;
  line-height: 1.2;
}

.service-card p {
  margin: 0;
  color: rgba(255, 255, 255, .7);
  font-size: .92rem;
  line-height: 1.6;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--red);
  font-family: 'Manrope', sans-serif;
  font-size: .84rem;
  font-weight: 800;
}

.operations-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 90px;
  align-items: start;
}

.sticky-copy {
  position: sticky;
  top: 150px;
}

.process-list {
  counter-reset: process;
}

.process-item {
  position: relative;
  display: grid;
  min-height: 148px;
  grid-template-columns: 82px 1fr;
  gap: 25px;
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, .13);
  counter-increment: process;
}

.process-item:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, .13);
}

.process-item::before {
  color: #ff5360;
  content: '0' counter(process);
  font-family: 'Manrope', sans-serif;
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .08em;
}

.process-item h3 {
  margin-bottom: 8px;
  font-size: 1.25rem;
}

.process-item p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, .62);
  font-size: .93rem;
}

.fleet-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
  gap: 30px;
}

.fleet-feature {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  color: var(--white);
}

.fleet-feature::after {
  position: absolute;
  inset: 0;
  content: '';
  background: linear-gradient(0deg, rgba(3, 16, 30, .94), rgba(3, 16, 30, .05) 66%);
}

.fleet-feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fleet-overlay {
  position: absolute;
  z-index: 2;
  right: 38px;
  bottom: 36px;
  left: 38px;
}

.fleet-overlay h3 {
  margin-bottom: 8px;
  font-size: clamp(1.65rem, 3vw, 2.55rem);
}

.fleet-overlay p {
  max-width: 590px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, .72);
}

.fleet-side {
  display: grid;
  gap: 22px;
}

.fleet-card {
  position: relative;
  min-height: 294px;
  overflow: hidden;
  border-radius: var(--radius-md);
  color: var(--white);
}

.fleet-card::after {
  position: absolute;
  inset: 0;
  content: '';
  background: linear-gradient(0deg, rgba(3, 16, 30, .88), rgba(3, 16, 30, .1));
}

.fleet-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fleet-card span {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 22px;
  left: 24px;
  font-family: 'Manrope', sans-serif;
  font-size: 1.02rem;
  font-weight: 800;
}

.platform-wrap {
  position: relative;
  overflow: hidden;
}

.platform-wrap::before {
  position: absolute;
  top: -240px;
  right: -240px;
  width: 580px;
  height: 580px;
  border: 100px solid rgba(227, 36, 50, .05);
  border-radius: 50%;
  content: '';
}

.platform-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 85px;
  align-items: center;
}

.dashboard-card {
  position: relative;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-lg);
}

.dashboard-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.dashboard-title {
  font-family: 'Manrope', sans-serif;
  font-size: .92rem;
  font-weight: 800;
}

.live-pill {
  padding: 6px 10px;
  border-radius: 999px;
  color: #16844a;
  background: #e5f6ec;
  font-size: .68rem;
  font-weight: 800;
}

.chart {
  display: flex;
  height: 220px;
  align-items: end;
  gap: 14px;
  padding: 24px 20px 12px;
  border-radius: 16px;
  background: #f5f7f9;
}

.bar {
  position: relative;
  flex: 1;
  height: var(--h);
  min-height: 24px;
  border-radius: 6px 6px 2px 2px;
  background: linear-gradient(180deg, var(--blue), var(--navy-800));
}

.bar.active {
  background: linear-gradient(180deg, #ff5663, var(--red));
}

.bar::after {
  position: absolute;
  right: 0;
  bottom: -28px;
  left: 0;
  color: #8490a0;
  content: attr(data-day);
  font-size: .65rem;
  font-weight: 700;
  text-align: center;
}

.dashboard-footer {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 38px;
}

.mini-metric {
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.mini-metric strong,
.mini-metric span {
  display: block;
}

.mini-metric strong {
  font-family: 'Manrope', sans-serif;
  font-size: .9rem;
}

.mini-metric span {
  color: var(--muted);
  font-size: .68rem;
}

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

.feature-item {
  padding: 19px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, .64);
}

.feature-item strong {
  display: block;
  margin-bottom: 4px;
  font-family: 'Manrope', sans-serif;
  font-size: .86rem;
}

.feature-item span {
  color: var(--muted);
  font-size: .78rem;
}

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

.commitment-card {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.commitment-card:hover {
  border-color: rgba(227, 36, 50, .28);
  box-shadow: var(--shadow-sm);
  transform: translateY(-6px);
}

.commitment-number {
  display: block;
  margin-bottom: 42px;
  color: var(--red);
  font-family: 'Manrope', sans-serif;
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .12em;
}

.commitment-card h3 {
  margin-bottom: 12px;
  font-size: 1.3rem;
}

.commitment-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: .91rem;
}

.cta-section {
  padding: 0 0 112px;
}

.cta-box {
  position: relative;
  display: grid;
  min-height: 400px;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 60px;
  align-items: center;
  overflow: hidden;
  padding: 70px;
  border-radius: var(--radius-lg);
  color: var(--white);
  background: var(--navy-900);
  isolation: isolate;
}

.cta-box::before {
  position: absolute;
  z-index: -1;
  top: -45%;
  right: -7%;
  width: 440px;
  height: 440px;
  border: 80px solid rgba(227, 36, 50, .16);
  border-radius: 50%;
  content: '';
}

.cta-box::after {
  position: absolute;
  z-index: -1;
  right: 20%;
  bottom: -170px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  content: '';
  background: rgba(22, 103, 168, .18);
  filter: blur(10px);
}

.cta-box h2 {
  max-width: 720px;
  margin-bottom: 18px;
  font-size: clamp(2.2rem, 4.2vw, 4.3rem);
  font-weight: 800;
  letter-spacing: -.045em;
  line-height: 1.06;
}

.cta-box p {
  max-width: 620px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, .66);
}

.cta-action {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
}

.cta-phone {
  color: rgba(255, 255, 255, .62);
  font-size: .85rem;
}

.site-footer {
  color: rgba(255, 255, 255, .66);
  background: var(--navy-950);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.35fr .65fr .75fr 1fr;
  gap: 50px;
  padding: 76px 0 58px;
}

.footer-brand img {
  width: 190px;
  margin-bottom: 18px;
}

.footer-brand p {
  max-width: 320px;
  margin-bottom: 0;
  font-size: .89rem;
}

.footer-title {
  margin-bottom: 20px;
  color: var(--white);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.footer-links,
.footer-contact {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links li + li,
.footer-contact li + li {
  margin-top: 11px;
}

.footer-links a,
.footer-contact a {
  font-size: .86rem;
  transition: color var(--transition);
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--white);
}

.footer-note {
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, .1);
  font-size: .76rem;
}

.footer-note-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.page-hero {
  position: relative;
  display: flex;
  min-height: 570px;
  align-items: flex-end;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-950);
}

.page-hero::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: '';
  background: linear-gradient(90deg, rgba(3, 16, 30, .96), rgba(3, 16, 30, .55) 62%, rgba(3, 16, 30, .25)), linear-gradient(0deg, rgba(3, 16, 30, .78), transparent 55%);
}

.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 840px;
  padding-top: 190px;
  padding-bottom: 80px;
}

.page-hero h1 {
  margin-bottom: 20px;
  font-size: clamp(3rem, 6vw, 5.6rem);
  font-weight: 800;
  letter-spacing: -.05em;
  line-height: 1.04;
}

.page-hero p {
  max-width: 650px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, .74);
  font-size: 1.15rem;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, .56);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.breadcrumbs span:last-child {
  color: #ff6873;
}

.page-intro-grid {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 100px;
  align-items: start;
}

.large-copy {
  color: var(--ink);
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  font-weight: 500;
  letter-spacing: -.02em;
  line-height: 1.5;
}

.body-copy p {
  color: var(--muted);
}

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

.value-card {
  min-height: 250px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
}

.value-card span {
  display: block;
  margin-bottom: 52px;
  color: var(--red);
  font-family: 'Manrope', sans-serif;
  font-size: .75rem;
  font-weight: 800;
}

.value-card h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.value-card p {
  margin: 0;
  color: var(--muted);
  font-size: .84rem;
}

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

.office-card {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  border-radius: var(--radius-md);
}

.office-card::after {
  position: absolute;
  inset: 0;
  content: '';
  background: linear-gradient(0deg, rgba(3, 16, 30, .86), transparent 60%);
}

.office-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.office-card-info {
  position: absolute;
  z-index: 2;
  right: 28px;
  bottom: 25px;
  left: 28px;
  color: var(--white);
}

.office-card-info strong,
.office-card-info span {
  display: block;
}

.office-card-info strong {
  font-family: 'Manrope', sans-serif;
  font-size: 1.15rem;
}

.office-card-info span {
  color: rgba(255, 255, 255, .66);
  font-size: .8rem;
}

.empty-state {
  position: relative;
  overflow: hidden;
  padding: 70px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.empty-state::after {
  position: absolute;
  top: -110px;
  right: -110px;
  width: 280px;
  height: 280px;
  border: 56px solid var(--blue-soft);
  border-radius: 50%;
  content: '';
}

.state-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  padding: 7px 12px;
  border-radius: 999px;
  color: #9b650c;
  background: #fff4d9;
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.state-tag::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #efa51f;
  content: '';
}

.empty-state h2 {
  position: relative;
  z-index: 1;
  max-width: 660px;
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 3.6rem);
  letter-spacing: -.04em;
  line-height: 1.1;
}

.empty-state p {
  position: relative;
  z-index: 1;
  max-width: 660px;
  margin-bottom: 30px;
  color: var(--muted);
}

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

.information-card {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
}

.information-card .number {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  margin-bottom: 36px;
  border-radius: 50%;
  color: var(--white);
  background: var(--navy-900);
  font-family: 'Manrope', sans-serif;
  font-size: .75rem;
  font-weight: 800;
}

.information-card h3 {
  margin-bottom: 10px;
  font-size: 1.16rem;
}

.information-card p {
  margin: 0;
  color: var(--muted);
  font-size: .86rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 70px;
  align-items: start;
}

.contact-panel {
  position: sticky;
  top: 145px;
  padding: 42px;
  border-radius: var(--radius-lg);
  color: var(--white);
  background: var(--navy-900);
}

.contact-panel h2 {
  margin-bottom: 14px;
  font-size: 2rem;
  letter-spacing: -.035em;
}

.contact-panel > p {
  margin-bottom: 34px;
  color: rgba(255, 255, 255, .64);
  font-size: .91rem;
}

.contact-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-list li {
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, .12);
}

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

.contact-list small {
  margin-bottom: 5px;
  color: #ff6470;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.contact-list strong {
  color: var(--white);
  font-family: 'Manrope', sans-serif;
  font-size: .98rem;
}

.contact-list span {
  color: rgba(255, 255, 255, .56);
  font-size: .79rem;
}

.contact-form-wrap {
  padding: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.contact-form-wrap h2 {
  margin-bottom: 8px;
  font-size: 2.15rem;
  letter-spacing: -.04em;
}

.form-intro {
  margin-bottom: 34px;
  color: var(--muted);
  font-size: .9rem;
}

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

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

.field label {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-family: 'Manrope', sans-serif;
  font-size: .78rem;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  outline: none;
  color: var(--ink);
  background: #f8f9fa;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

.field input,
.field select {
  height: 54px;
  padding: 0 16px;
}

.field textarea {
  min-height: 150px;
  padding: 14px 16px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--blue);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(22, 103, 168, .1);
}

.consent {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  margin: 24px 0;
  color: var(--muted);
  font-size: .78rem;
}

.consent input {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  margin-top: 3px;
  accent-color: var(--red);
}

.form-status {
  display: none;
  margin-top: 16px;
  padding: 12px 14px;
  border-radius: 10px;
  color: #13683b;
  background: #e9f8ef;
  font-size: .82rem;
}

.form-status.visible {
  display: block;
}

.js-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 700ms cubic-bezier(.22, .61, .36, 1), transform 700ms cubic-bezier(.22, .61, .36, 1);
}

.js-reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 80ms; }
.delay-2 { transition-delay: 160ms; }
.delay-3 { transition-delay: 240ms; }

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }

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

@media (max-width: 1080px) {
  .nav-links {
    gap: 20px;
  }

  .nav-menu {
    gap: 22px;
  }

  .hero-grid {
    grid-template-columns: 1fr 245px;
    gap: 32px;
  }

  .story-grid,
  .operations-grid,
  .platform-grid,
  .page-intro-grid {
    gap: 55px;
  }

  .footer-main {
    grid-template-columns: 1.2fr .8fr .8fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 900px) {
  .topbar-group:first-child {
    display: none;
  }

  .topbar-inner {
    justify-content: center;
  }

  .navbar {
    height: 76px;
  }

  .brand img {
    top: -27px;
    left: -9px;
    width: 185px;
  }

  .menu-toggle {
    display: flex;
    flex-direction: column;
  }

  .nav-menu {
    position: fixed;
    top: 114px;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    visibility: hidden;
    align-items: flex-start;
    flex-direction: column;
    padding: 48px 24px;
    background: rgba(3, 16, 30, .99);
    opacity: 0;
    transform: translateY(-12px);
    transition: opacity var(--transition), visibility var(--transition), transform var(--transition);
  }

  .nav-menu.open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .nav-links {
    width: 100%;
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-link {
    display: block;
    width: 100%;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    font-size: 1.08rem;
  }

  .nav-link::after {
    display: none;
  }

  .nav-cta {
    width: 100%;
    margin-top: 18px;
  }

  .hero {
    min-height: 820px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    padding-top: 180px;
    padding-bottom: 58px;
  }

  .hero-proof {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-proof-label {
    grid-column: 1 / -1;
  }

  .proof-item {
    grid-template-columns: 1fr;
    border-top: 1px solid rgba(255, 255, 255, .1);
  }

  .hero-scroll {
    display: none;
  }

  .story-grid,
  .operations-grid,
  .platform-grid,
  .page-intro-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .sticky-copy,
  .contact-panel {
    position: static;
  }

  .services-grid,
  .commitment-grid,
  .information-grid {
    grid-template-columns: 1fr 1fr;
  }

  .service-card:last-child,
  .commitment-card:last-child,
  .information-card:last-child {
    grid-column: 1 / -1;
  }

  .fleet-layout {
    grid-template-columns: 1fr;
  }

  .fleet-side {
    grid-template-columns: 1fr 1fr;
  }

  .fleet-card {
    min-height: 260px;
  }

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

  .cta-box {
    grid-template-columns: 1fr;
    padding: 60px 44px;
  }

  .cta-action {
    align-items: flex-start;
  }
}

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

  .section {
    padding: 82px 0;
  }

  .section-sm {
    padding: 56px 0;
  }

  .topbar {
    height: 34px;
  }

  .topbar-group:last-child span:last-child {
    display: none;
  }

  .topbar-group {
    gap: 0;
  }

  .brand {
    width: 160px;
    height: 58px;
  }

  .nav-menu {
    top: 110px;
  }

  .hero {
    min-height: 900px;
  }

  .hero-bg::before {
    background: linear-gradient(90deg, rgba(3, 16, 30, .94), rgba(3, 16, 30, .58)), linear-gradient(0deg, rgba(3, 16, 30, .9), transparent 50%);
  }

  .hero-bg img {
    object-position: 64% center;
  }

  .hero-grid {
    padding-top: 160px;
    padding-bottom: 38px;
  }

  .display-title {
    font-size: clamp(2.9rem, 14vw, 4.15rem);
  }

  .hero-actions,
  .hero-actions .btn {
    width: 100%;
  }

  .hero-proof {
    grid-template-columns: 1fr;
    padding: 18px 22px;
  }

  .proof-item {
    grid-template-columns: 48px 1fr;
    padding: 12px 0;
  }

  .expertise-grid {
    grid-template-columns: 1fr 1fr;
    padding: 16px 0;
  }

  .expertise-item {
    padding: 12px 8px;
    font-size: .64rem;
  }

  .expertise-item:nth-child(3)::before {
    display: none;
  }

  .image-stack {
    min-height: 490px;
  }

  .image-card.primary {
    width: 86%;
    height: 365px;
  }

  .image-card.secondary {
    width: 66%;
    height: 210px;
    border-width: 7px;
  }

  .story-badge {
    left: 4%;
    width: 112px;
    height: 112px;
    border-width: 6px;
    font-size: .65rem;
  }

  .check-list,
  .services-grid,
  .commitment-grid,
  .information-grid,
  .feature-grid,
  .office-grid,
  .values-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .service-card:last-child,
  .commitment-card:last-child,
  .information-card:last-child {
    grid-column: auto;
  }

  .service-card {
    min-height: 380px;
  }

  .process-item {
    grid-template-columns: 52px 1fr;
  }

  .fleet-feature {
    min-height: 480px;
  }

  .fleet-overlay {
    right: 24px;
    bottom: 24px;
    left: 24px;
  }

  .fleet-side {
    grid-template-columns: 1fr;
  }

  .dashboard-card {
    padding: 18px;
  }

  .chart {
    gap: 8px;
    padding-right: 10px;
    padding-left: 10px;
  }

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

  .cta-section {
    padding-bottom: 82px;
  }

  .cta-box {
    min-height: 0;
    padding: 45px 26px;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-main > div:last-child {
    grid-column: 1 / -1;
  }

  .footer-note-inner {
    flex-direction: column;
  }

  .page-hero {
    min-height: 520px;
  }

  .page-hero img {
    object-position: 62% center;
  }

  .page-hero-content {
    padding-top: 170px;
    padding-bottom: 60px;
  }

  .page-hero h1 {
    font-size: clamp(2.7rem, 14vw, 4.2rem);
  }

  .empty-state {
    padding: 42px 26px;
  }

  .empty-state::after {
    opacity: .45;
  }

  .contact-panel,
  .contact-form-wrap {
    padding: 30px 22px;
  }
}

/* Final cascade overrides for the landing header and cover */
.brand {
  width: 112px;
  height: 38px;
}

.brand img {
  top: -17px;
  left: -7px;
  width: 128px;
}

.footer-brand img {
  width: 150px;
}

.hero {
  min-height: 820px;
}

.hero-bg::before {
  background:
    linear-gradient(90deg, rgba(3, 16, 30, .34) 0%, rgba(3, 16, 30, .10) 48%, rgba(3, 16, 30, 0) 82%),
    linear-gradient(0deg, rgba(3, 16, 30, .20) 0%, transparent 50%);
}

.hero-bg::after {
  opacity: .10;
}

.hero-bg img {
  filter: brightness(1.24) saturate(1.05) contrast(1.08);
  transform: none;
}

.hero-copy,
.display-title {
  max-width: 760px;
}

.display-title {
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  text-shadow: 0 5px 32px rgba(0, 0, 0, .22);
}

.hero-lead {
  max-width: 610px;
  font-size: clamp(.92rem, 1.2vw, 1.05rem);
}

.cta-box {
  grid-template-columns: minmax(0, 1fr) auto;
}

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

@media (max-width: 640px) {
  .brand {
    width: 100px;
    height: 36px;
  }

  .brand img {
    top: -15px;
    left: -5px;
    width: 116px;
  }

  .hero {
    min-height: 820px;
  }

  .hero-bg::before {
    background:
      linear-gradient(90deg, rgba(3, 16, 30, .38), rgba(3, 16, 30, .06)),
      linear-gradient(0deg, rgba(3, 16, 30, .38), transparent 62%);
  }

  .hero-bg img {
    object-position: 57% center;
    filter: brightness(1.20) saturate(1.04) contrast(1.07);
    transform: none;
  }

  .display-title {
    font-size: clamp(2rem, 9vw, 2.9rem);
  }
}

/* Why Fastlane page */
.why-hero img {
  object-position: center 58%;
  filter: brightness(1.08) saturate(1.04);
}

.why-proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 72px;
}

.why-proof-card {
  min-height: 250px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 18px 48px rgba(7, 24, 43, .06);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.why-proof-card:hover {
  transform: translateY(-6px);
  border-color: rgba(22, 103, 168, .28);
  box-shadow: 0 24px 56px rgba(7, 24, 43, .11);
}

.why-proof-value {
  display: block;
  margin-bottom: 44px;
  color: var(--red);
  font-family: 'Manrope', sans-serif;
  font-size: 1.9rem;
  font-weight: 800;
  letter-spacing: -.04em;
}

.why-proof-card h3 {
  margin-bottom: 10px;
  font-size: 1.06rem;
}

.why-proof-card p {
  margin: 0;
  color: var(--muted);
  font-size: .84rem;
}

.partner-contract-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 42px;
}

.partner-contract-card {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  padding: 42px;
  border: 1px solid rgba(22, 103, 168, .14);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, var(--white), #f5f9fc);
  box-shadow: var(--shadow-sm);
}

.partner-contract-card::after {
  position: absolute;
  right: -75px;
  bottom: -85px;
  width: 210px;
  height: 210px;
  border: 42px solid rgba(22, 103, 168, .06);
  border-radius: 50%;
  content: '';
}

.contract-location {
  display: inline-flex;
  margin-bottom: 52px;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--blue);
  background: var(--blue-soft);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.partner-contract-card h3 {
  position: relative;
  z-index: 1;
  max-width: 440px;
  margin-bottom: 14px;
  font-size: clamp(1.45rem, 2.4vw, 2.2rem);
  letter-spacing: -.035em;
}

.partner-contract-card p {
  position: relative;
  z-index: 1;
  max-width: 480px;
  color: var(--muted);
}

.contract-status {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 12px;
  color: var(--navy-700);
  font-size: .76rem;
  font-weight: 800;
}

.contract-status i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2fa464;
  box-shadow: 0 0 0 5px rgba(47, 164, 100, .12);
}

.section-action {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

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

@media (max-width: 720px) {
  .why-proof-grid,
  .partner-contract-grid {
    grid-template-columns: 1fr;
  }

  .why-proof-grid {
    margin-top: 48px;
  }

  .why-proof-card {
    min-height: 0;
  }

  .why-proof-value,
  .contract-location {
    margin-bottom: 30px;
  }

  .partner-contract-card {
    min-height: 0;
    padding: 32px 26px;
  }
}

/* Light-blue application platform block */
.section-dark.platform-wrap {
  color: var(--navy-900);
  background: linear-gradient(135deg, #f0f6fa 0%, #d8e8f2 55%, #bdd8e9 100%);
}

.section-dark.platform-wrap::before {
  border-color: rgba(13, 86, 141, .10);
}

.platform-wrap .section-title {
  color: var(--navy-900);
}

.platform-wrap .section-copy {
  color: #4f6578;
}

.platform-wrap .eyebrow {
  color: #0d568d;
}

.platform-wrap .app-features-grid {
  border-color: rgba(13, 86, 141, .16);
  background: rgba(13, 86, 141, .13);
  box-shadow: 0 18px 48px rgba(7, 24, 43, .08);
}

.platform-wrap .app-feature {
  background: rgba(255, 255, 255, .82);
}

.platform-wrap .app-feature span {
  color: #0d568d;
}

.platform-wrap .app-feature h3 {
  color: var(--navy-900);
}

.platform-wrap .app-feature p {
  color: #5c7082;
}

/* Light-blue homepage contact block */
.contact-cta-box {
  color: var(--navy-900);
  background: linear-gradient(135deg, #f0f6fa 0%, #d8e8f2 54%, #bdd8e9 100%);
  box-shadow: 0 24px 64px rgba(7, 24, 43, .12);
}

.contact-cta-box::before {
  background: rgba(13, 86, 141, .10);
}

.contact-cta-box::after {
  background: rgba(255, 255, 255, .28);
}

.contact-cta-box .eyebrow,
.contact-cta-box .contact-quick small {
  color: #0d568d;
}

.contact-cta-box h2 {
  color: var(--navy-900);
}

.contact-cta-box p {
  color: #4f6578;
}

.contact-cta-box .contact-quick {
  border-top-color: rgba(13, 86, 141, .20);
}

.contact-cta-box .contact-quick > * {
  color: var(--navy-800);
}

/* Medium light-blue footer */
.site-footer {
  color: rgba(255, 255, 255, .90);
  background: linear-gradient(135deg, #061d38 0%, #0a315c 56%, #0d568d 100%);
}

.site-footer .footer-brand p,
.site-footer .footer-links a,
.site-footer .footer-contact,
.site-footer .footer-contact a {
  color: rgba(255, 255, 255, .92);
}

.site-footer .footer-title {
  color: var(--white);
}

.site-footer .footer-links a:hover,
.site-footer .footer-contact a:hover {
  color: #e4f6ff;
}

.site-footer .footer-note {
  color: rgba(255, 255, 255, .92);
  border-top-color: rgba(255, 255, 255, .24);
  background: rgba(3, 16, 30, .10);
}

/* Raise only the homepage hero text and proof blocks */
.hero-copy,
.hero-proof {
  transform: translateY(-54px);
}

@media (max-width: 900px) {
  .hero-copy,
  .hero-proof {
    transform: translateY(-34px);
  }
}

@media (max-width: 640px) {
  .hero-copy,
  .hero-proof {
    transform: translateY(-28px);
  }
}

/* Refined motion system */
.js-enabled .site-header {
  opacity: 0;
  transform: translateY(-18px);
}

.js-enabled body.is-ready .site-header {
  animation: headerEntrance 680ms cubic-bezier(.22, .61, .36, 1) forwards;
}

.js-enabled .hero-copy > .eyebrow,
.js-enabled .hero-copy > .display-title,
.js-enabled .hero-copy > .hero-lead,
.js-enabled .hero-copy > .hero-actions {
  opacity: 0;
  transform: translateY(22px);
}

.js-enabled body.is-ready .hero-copy > .eyebrow,
.js-enabled body.is-ready .hero-copy > .display-title,
.js-enabled body.is-ready .hero-copy > .hero-lead,
.js-enabled body.is-ready .hero-copy > .hero-actions {
  animation: heroContentEntrance 760ms cubic-bezier(.22, .61, .36, 1) forwards;
}

.js-enabled body.is-ready .hero-copy > .eyebrow { animation-delay: 100ms; }
.js-enabled body.is-ready .hero-copy > .display-title { animation-delay: 190ms; }
.js-enabled body.is-ready .hero-copy > .hero-lead { animation-delay: 300ms; }
.js-enabled body.is-ready .hero-copy > .hero-actions { animation-delay: 410ms; }

.js-enabled .hero-proof {
  opacity: 0;
  clip-path: inset(18% 0 0 0 round var(--radius-md));
}

.js-enabled body.is-ready .hero-proof {
  animation: proofEntrance 850ms 480ms cubic-bezier(.22, .61, .36, 1) forwards;
}

.js-enabled .page-hero-content {
  opacity: 0;
  transform: translateY(24px);
}

.js-enabled body.is-ready .page-hero-content {
  animation: pageHeroEntrance 800ms 120ms cubic-bezier(.22, .61, .36, 1) forwards;
}

.js-reveal {
  filter: blur(5px);
  transform: translateY(34px) scale(.992);
  transition:
    opacity 760ms cubic-bezier(.22, .61, .36, 1),
    transform 760ms cubic-bezier(.22, .61, .36, 1),
    filter 760ms cubic-bezier(.22, .61, .36, 1);
}

.js-reveal.in-view {
  filter: blur(0);
  transform: translateY(0) scale(1);
}

.dashboard-card.in-view .bar {
  animation: chartBarRise 780ms cubic-bezier(.22, .61, .36, 1) both;
  transform-origin: center bottom;
}

.dashboard-card.in-view .bar:nth-child(2) { animation-delay: 80ms; }
.dashboard-card.in-view .bar:nth-child(3) { animation-delay: 140ms; }
.dashboard-card.in-view .bar:nth-child(4) { animation-delay: 200ms; }
.dashboard-card.in-view .bar:nth-child(5) { animation-delay: 260ms; }
.dashboard-card.in-view .bar:nth-child(6) { animation-delay: 320ms; }

.status-dot,
.contract-status i {
  animation: statusPulse 2.4s ease-in-out infinite;
}

.btn {
  position: relative;
  overflow: hidden;
}

.btn::after {
  position: absolute;
  top: -70%;
  bottom: -70%;
  left: -45%;
  width: 28%;
  content: '';
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .34), transparent);
  pointer-events: none;
  transform: rotate(18deg) translateX(-220%);
  transition: transform 650ms cubic-bezier(.22, .61, .36, 1);
}

.btn:hover::after {
  transform: rotate(18deg) translateX(620%);
}

.app-feature,
.about-highlight,
.information-card,
.value-card,
.partner-contract-card,
.process-item,
.mini-metric {
  transition: transform 320ms cubic-bezier(.22, .61, .36, 1), box-shadow 320ms ease, border-color 320ms ease, background 320ms ease;
}

@media (hover: hover) and (pointer: fine) {
  .app-feature:hover,
  .about-highlight:hover,
  .information-card:hover,
  .value-card:hover,
  .partner-contract-card:hover,
  .mini-metric:hover {
    z-index: 2;
    border-color: rgba(13, 86, 141, .24);
    box-shadow: 0 20px 46px rgba(7, 24, 43, .12);
    transform: translateY(-6px);
  }

  .process-item:hover {
    transform: translateX(8px);
  }
}

.hero-scroll {
  animation: scrollHint 2.2s ease-in-out infinite;
}

@keyframes headerEntrance {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes heroContentEntrance {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes proofEntrance {
  to { opacity: 1; clip-path: inset(0 0 0 0 round var(--radius-md)); }
}

@keyframes pageHeroEntrance {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes chartBarRise {
  from { opacity: .25; transform: scaleY(.08); }
  to { opacity: 1; transform: scaleY(1); }
}

@keyframes statusPulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(69, 212, 131, .12); }
  50% { box-shadow: 0 0 0 8px rgba(69, 212, 131, 0); }
}

@keyframes scrollHint {
  0%, 100% { opacity: .48; transform: translateY(0); }
  50% { opacity: .9; transform: translateY(7px); }
}

@media (prefers-reduced-motion: reduce) {
  .js-enabled .site-header,
  .js-enabled .hero-copy > *,
  .js-enabled .hero-proof,
  .js-enabled .page-hero-content,
  .js-reveal {
    opacity: 1 !important;
    filter: none !important;
    clip-path: none !important;
    animation: none !important;
  }

  .js-enabled .site-header,
  .js-enabled .hero-copy > *,
  .js-enabled .page-hero-content,
  .js-reveal {
    transform: none !important;
  }

  .hero-copy,
  .hero-proof {
    transform: translateY(-54px) !important;
  }
}

@media (max-width: 900px) and (prefers-reduced-motion: reduce) {
  .hero-copy,
  .hero-proof {
    transform: translateY(-34px) !important;
  }
}

@media (max-width: 640px) and (prefers-reduced-motion: reduce) {
  .hero-copy,
  .hero-proof {
    transform: translateY(-28px) !important;
  }
}

/* Unified secondary pages — aligned with the homepage identity */
.inner-page .page-hero {
  min-height: 530px;
  background: #061d38;
}

.inner-page .page-hero::before {
  background:
    linear-gradient(90deg, rgba(6, 29, 56, .80) 0%, rgba(10, 49, 92, .48) 58%, rgba(13, 86, 141, .16) 100%),
    linear-gradient(0deg, rgba(6, 29, 56, .42) 0%, transparent 58%);
}

.inner-page .page-hero img {
  filter: brightness(1.14) saturate(1.04) contrast(1.05);
  transform: none;
}

.about-page .page-hero img { object-position: center 55%; }
.why-page .page-hero img { object-position: center 58%; }
.tenders-page .page-hero img { object-position: center 54%; }
.contact-page .page-hero img { object-position: center 44%; }

.inner-page .page-hero-content {
  max-width: 780px;
  padding-top: 185px;
  padding-bottom: 70px;
}

.inner-page .page-hero h1 {
  margin-bottom: 18px;
  font-size: clamp(2.45rem, 4.6vw, 4.35rem);
  text-shadow: 0 5px 28px rgba(0, 0, 0, .24);
}

.inner-page .page-hero p {
  max-width: 620px;
  color: rgba(255, 255, 255, .86);
  font-size: clamp(.98rem, 1.35vw, 1.12rem);
}

.inner-page .breadcrumbs {
  color: rgba(255, 255, 255, .72);
}

.page-highlight-strip {
  position: relative;
  z-index: 4;
  border-bottom: 1px solid rgba(13, 86, 141, .14);
  background: rgba(255, 255, 255, .97);
  box-shadow: 0 16px 40px rgba(7, 24, 43, .08);
}

.page-highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.page-highlight-grid > div {
  position: relative;
  min-width: 0;
  padding: 25px 30px;
  border-left: 1px solid rgba(13, 86, 141, .12);
}

.page-highlight-grid > div:first-child {
  border-left: 0;
}

.page-highlight-grid > div::before {
  position: absolute;
  top: 0;
  right: 30px;
  left: 30px;
  height: 3px;
  content: '';
  background: linear-gradient(90deg, #e32432, rgba(227, 36, 50, 0));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 500ms cubic-bezier(.22, .61, .36, 1);
}

.page-highlight-grid > div:hover::before {
  transform: scaleX(1);
}

.page-highlight-grid strong,
.page-highlight-grid span {
  display: block;
}

.page-highlight-grid strong {
  margin-bottom: 6px;
  color: #061d38;
  font-family: 'Manrope', sans-serif;
  font-size: .88rem;
  font-weight: 800;
}

.page-highlight-grid span {
  color: #64798b;
  font-size: .76rem;
  line-height: 1.45;
}

.inner-page .section-cream {
  background: linear-gradient(135deg, #f4f8fb 0%, #e2edf4 58%, #d4e5ef 100%);
}

.inner-page .section-dark {
  background: linear-gradient(135deg, #061d38 0%, #0a315c 58%, #0d568d 100%);
}

.inner-page .cta-box {
  background: linear-gradient(135deg, #061d38 0%, #0a315c 60%, #0d568d 100%);
  box-shadow: 0 28px 70px rgba(6, 29, 56, .22);
}

.inner-page .value-card,
.inner-page .information-card,
.tenders-page .empty-state,
.contact-page .contact-form-wrap {
  border-color: rgba(13, 86, 141, .14);
  box-shadow: 0 18px 48px rgba(7, 24, 43, .07);
}

.inner-page .value-card,
.inner-page .information-card {
  position: relative;
  overflow: hidden;
}

.inner-page .value-card::before,
.inner-page .information-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  content: '';
  background: linear-gradient(90deg, #e32432, #0d568d);
}

.about-page .office-card {
  box-shadow: 0 22px 54px rgba(7, 24, 43, .12);
}

.about-page .office-card img {
  transition: transform 800ms cubic-bezier(.22, .61, .36, 1);
}

.about-page .office-card:hover img {
  transform: scale(1.035);
}

.tenders-page .empty-state {
  background: linear-gradient(145deg, #ffffff 0%, #f4f9fc 100%);
}

.tenders-page .empty-state::after {
  border-color: rgba(13, 86, 141, .08);
}

.contact-page .contact-panel {
  background: linear-gradient(155deg, #061d38 0%, #0a315c 68%, #0d568d 100%);
  box-shadow: 0 24px 64px rgba(6, 29, 56, .20);
}

.contact-page .contact-form-wrap {
  background: linear-gradient(145deg, #ffffff 0%, #f8fbfd 100%);
}

.contact-page .field input,
.contact-page .field select,
.contact-page .field textarea {
  border-color: rgba(13, 86, 141, .14);
  background: #f3f8fb;
}

.contact-page .field input:focus,
.contact-page .field select:focus,
.contact-page .field textarea:focus {
  border-color: #0d568d;
  box-shadow: 0 0 0 4px rgba(13, 86, 141, .10);
}

.js-enabled .page-highlight-grid > div {
  opacity: 0;
  transform: translateY(14px);
}

.js-enabled body.is-ready .page-highlight-grid > div {
  animation: heroContentEntrance 620ms 360ms cubic-bezier(.22, .61, .36, 1) forwards;
}

.js-enabled body.is-ready .page-highlight-grid > div:nth-child(2) { animation-delay: 440ms; }
.js-enabled body.is-ready .page-highlight-grid > div:nth-child(3) { animation-delay: 520ms; }

@media (max-width: 720px) {
  .inner-page .page-hero {
    min-height: 500px;
  }

  .inner-page .page-hero-content {
    padding-top: 165px;
    padding-bottom: 54px;
  }

  .inner-page .page-hero h1 {
    font-size: clamp(2.25rem, 11vw, 3.2rem);
  }

  .page-highlight-grid {
    grid-template-columns: 1fr;
    padding: 10px 0;
  }

  .page-highlight-grid > div {
    padding: 17px 8px;
    border-top: 1px solid rgba(13, 86, 141, .10);
    border-left: 0;
  }

  .page-highlight-grid > div:first-child {
    border-top: 0;
  }

  .page-highlight-grid > div::before {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .js-enabled .page-highlight-grid > div {
    opacity: 1 !important;
    animation: none !important;
    transform: none !important;
  }
}


/* SEO and accessibility review: readable cover, stable images and keyboard navigation. */
img { height: auto; }

:where(a, button, input, select, textarea):focus-visible {
  outline: 3px solid #2186d0;
  outline-offset: 4px;
  box-shadow: 0 0 0 2px #fff;
}

.hero-grid {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
  grid-template-columns: minmax(0, 1fr) 285px;
  gap: 56px;
}

.hero-copy, .hero-proof { min-width: 0; }
.hero-bg::before {
  background: linear-gradient(90deg, rgba(3, 16, 30, .89), rgba(3, 16, 30, .67) 48%, rgba(3, 16, 30, .26)),
    linear-gradient(0deg, rgba(3, 16, 30, .3), transparent 65%);
}
.hero-bg img { filter: saturate(1.04); }
.hero .accent, .hero .eyebrow { color: #ff6975; }
.hero .display-title { line-height: 1.12; }
.hero-lead { font-size: clamp(1rem, 1.25vw, 1.125rem); color: #f0f4f8; }
.hero .btn-outline-light { background: rgba(3, 16, 30, .55); border-color: rgba(255, 255, 255, .65); }
.hero .btn-outline-light:hover { background: rgba(3, 16, 30, .85); }
.contact-list a, .footer-contact a, .cta-phone { overflow-wrap: anywhere; }
.field, .form-grid, .contact-form-wrap { min-width: 0; }

/* Content stays available when JavaScript is disabled or fails to download. */
html:not(.js-enabled) .js-reveal { opacity: 1; transform: none; filter: none; }
html:not(.js-enabled) .site-header { position: relative; }
html:not(.js-enabled) .hero-grid { padding-top: 100px; }
html:not(.js-enabled) .page-hero-content { padding-top: 70px; }
html:not(.js-enabled) [data-contact-form] > .btn { display: none; }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: minmax(0, 1fr); gap: 32px; }
  .nav-menu {
    position: absolute;
    top: 100%;
    bottom: auto;
    height: calc(100vh - 114px);
    height: calc(100dvh - 114px);
    padding: 24px;
    overflow-y: auto;
    overscroll-behavior: contain;
  }
  html:not(.js-enabled) .menu-toggle { display: none; }
  html:not(.js-enabled) .navbar { height: auto; padding-block: 16px; }
  html:not(.js-enabled) .nav-inner { flex-wrap: wrap; gap: 16px; }
  html:not(.js-enabled) .nav-menu {
    position: static;
    visibility: visible;
    width: 100%;
    height: auto;
    padding: 0;
    opacity: 1;
    transform: none;
    background: transparent;
  }
  html:not(.js-enabled) .nav-links { flex-direction: row; flex-wrap: wrap; gap: 4px 20px; }
  html:not(.js-enabled) .nav-links li { width: auto; }
  html:not(.js-enabled) .nav-link { font-size: .875rem; padding-block: 10px; }
  html:not(.js-enabled) .nav-cta { margin-top: 0; }
}

@media (max-width: 640px) {
  .hero { min-height: 0; }
  .hero-grid { width: calc(100% - 32px); padding-top: 154px; padding-bottom: 40px; }
  .hero-copy, .hero-proof { transform: none; }
  .hero .display-title { font-size: clamp(2rem, 8.8vw, 2.75rem); }
  .hero .eyebrow { font-size: .75rem; letter-spacing: .1em; }
  .hero-bg::before { background: linear-gradient(180deg, rgba(3, 16, 30, .86), rgba(3, 16, 30, .7) 55%, rgba(3, 16, 30, .55)); }
  .hero-proof-label { font-size: .75rem; }
  .proof-copy { font-size: .875rem; }
  .expertise-item { font-size: .75rem; letter-spacing: .04em; }
  .page-hero h1 { font-size: clamp(2rem, 9vw, 2.7rem); overflow-wrap: break-word; }
  .nav-menu { height: calc(100vh - 110px); height: calc(100dvh - 110px); }
  .field input, .field select, .field textarea { font-size: 1rem; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-copy, .hero-proof { transform: none; }
}


/* Social links shared by all page footers. */
.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.footer-socials a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 8px;
  color: #fff;
  background: rgba(255, 255, 255, .07);
  font-size: .875rem;
  font-weight: 600;
  transition: background var(--transition), border-color var(--transition);
}
.footer-socials a:hover {
  background: rgba(255, 255, 255, .17);
  border-color: rgba(255, 255, 255, .7);
}


/* Header social icons follow the phone number on every viewport. */
.topbar .topbar-contacts {
  display: flex;
  min-width: 0;
  gap: 16px;
}
.topbar-contacts > a[href^="tel:"] { white-space: nowrap; }
.topbar-socials {
  display: flex;
  align-items: center;
  gap: 6px;
}
.topbar-social-link {
  display: inline-flex;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 6px;
  background: rgba(255, 255, 255, .07);
  transition: background var(--transition), border-color var(--transition);
}
.topbar-social-link img {
  width: 16px;
  height: 16px;
  filter: brightness(0) invert(1);
}
.topbar-social-link:hover {
  background: rgba(255, 255, 255, .2);
  border-color: rgba(255, 255, 255, .6);
}
@media (max-width: 1080px) {
  .topbar-contacts > a[href^="mailto:"] { display: none; }
}
@media (max-width: 900px) {
  .topbar-inner { justify-content: space-between; }
}
@media (max-width: 640px) {
  html { scroll-padding-top: 130px; }
  .topbar { height: 44px; }
  .topbar .topbar-contacts { width: 100%; justify-content: space-between; gap: 12px; }
  .topbar .topbar-group:not(.topbar-contacts) { display: none; }
  .topbar-contacts > a[href^="tel:"] { display: inline-flex; min-height: 44px; align-items: center; font-size: .875rem; }
  .topbar-social-link { width: 36px; height: 36px; }
  .topbar-social-link img { width: 18px; height: 18px; }
  .nav-menu { height: calc(100vh - 120px); height: calc(100dvh - 120px); }
}
