/* Typography */
.text-display-lg {
  font-family: 'Montserrat', sans-serif;
  font-size: 56px;
  font-weight: 800;
  line-height: 64px;
  letter-spacing: -0.02em;
}

.text-display-md {
  font-family: 'Montserrat', sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 48px;
  letter-spacing: -0.01em;
}

.text-headline-lg {
  font-family: 'Montserrat', sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 40px;
}

.text-headline-md {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
}

.text-body-lg {
  font-family: 'Work Sans', sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
}

.text-body-md {
  font-family: 'Work Sans', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.text-label-bold {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
}

.text-label-sm {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
}

.skip-link {
  position: fixed;
  left: 20px;
  top: -80px;
  z-index: 100;
  background: #001736;
  color: #ffffff;
  border: 1px solid #0054cd;
  padding: 10px 14px;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
  border-radius: 0.125rem;
}

.skip-link:focus {
  top: 20px;
}

.nav-link {
  border-bottom: 2px solid transparent;
  padding-bottom: 4px;
  color: #43474f;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  transition: color 160ms ease, border-color 160ms ease;
}

.nav-link:hover,
.nav-link:focus,
.nav-link-active {
  border-color: #0054cd;
  color: #0054cd;
}

.mobile-link {
  display: block;
  border-bottom: 1px solid #c4c6d0;
  padding: 14px 0;
  color: #43474f;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
}

.mobile-link-active {
  color: #0054cd;
}

.hamburger-icon {
  display: inline-flex;
  height: 16px;
  width: 22px;
  flex-direction: column;
  justify-content: space-between;
}

.hamburger-icon span {
  display: block;
  height: 2px;
  width: 100%;
  border-radius: 9999px;
  background: currentColor;
  transition: opacity 160ms ease, transform 160ms ease;
}

#menu-toggle[aria-expanded="true"] .hamburger-icon span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

#menu-toggle[aria-expanded="true"] .hamburger-icon span:nth-child(2) {
  opacity: 0;
}

#menu-toggle[aria-expanded="true"] .hamburger-icon span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.btn {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 0.125rem;
  padding: 12px 24px;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.btn-primary {
  background: #0054cd;
  color: #ffffff;
}

.btn-primary:hover,
.btn-primary:focus {
  background: #0040a1;
}

.btn-secondary {
  border: 2px solid #001736;
  color: #001736;
  background: transparent;
}

.btn-secondary:hover,
.btn-secondary:focus {
  background: #f4f3f8;
}

.btn-ghost-light {
  border: 2px solid #ffffff;
  color: #ffffff;
}

.btn-ghost-light:hover,
.btn-ghost-light:focus {
  background: rgba(255, 255, 255, 0.1);
}

.bg-diagonal-stripes {
  animation: diagonalSlide 10s linear infinite;
  background-image: repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255, 255, 255, 0.03) 10px, rgba(255, 255, 255, 0.03) 20px);
}

.section-heading {
  border-left: 4px solid #0054cd;
  padding-left: 16px;
  color: #001736;
  font-family: "Montserrat", sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 40px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.feature-card {
  border-right: 1px solid rgba(196, 198, 208, 0.5);
  background: #faf9fe;
  padding: 40px;
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
}

.feature-card:hover {
  background: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.05);
  border-left-color: #0054cd;
}

.feature-icon {
  margin-bottom: 24px;
  display: block;
  color: #0054cd;
  font-size: 48px;
}

.feature-card h2,
.workshop-item h3,
.why-card h3 {
  color: #001736;
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
}

.feature-card p,
.workshop-item p,
.why-card p {
  margin-top: 12px;
  color: #43474f;
  font-family: 'Work Sans', sans-serif;
  font-size: 15px;
  line-height: 24px;
}

.stat-block {
  border-left: 4px solid #0054cd;
  padding-left: 24px;
}

.stat-block span {
  display: block;
  margin-bottom: 6px;
  color: #001736;
  font-family: "Montserrat", sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 34px;
  white-space: nowrap
}

.stat-block p {
  color: #43474f;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 20px;
  text-transform: uppercase;
}

.client-logo {
  display: flex;
  height: 96px;
  align-items: center;
  justify-content: center;
  border: 1px solid #c4c6d0;
  border-radius: 0.125rem;
  background: #faf9fe;
  padding: 24px;
  filter: grayscale(1);
  transition: filter 160ms ease, border-color 160ms ease;
}

.client-logo:hover {
  border-color: #0054cd;
  filter: grayscale(0);
}

.client-logo span {
  color: #747780;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}

.operation-card {
  border: 1px solid rgba(196, 198, 208, 0.2);
  background: rgba(0, 43, 92, 0.82);
  padding: 32px;
  box-shadow: 0 10px 0 rgba(0, 0, 0, 0.12);
  transition: transform 300ms ease, box-shadow 300ms ease;
  border-radius: 0.125rem;
}

.operation-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.25);
  background: rgba(0, 43, 92, 0.9);
}

.operation-card strong {
  display: block;
  margin-bottom: 8px;
  color: #0054cd;
  font-family: "Montserrat", sans-serif;
  font-size: 40px;
  font-weight: 800;
  line-height: 48px;
}

.operation-card h3 {
  margin-bottom: 8px;
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
  color: #ffffff;
}

.operation-card p {
  color: rgba(255, 255, 255, 0.75);
  font-family: 'Work Sans', sans-serif;
  font-size: 16px;
  line-height: 24px;
}

.operation-symbol {
  display: block;
  margin-bottom: 16px;
  color: #0054cd;
  font-size: 48px;
}

.fleet-card {
  position: relative;
  display: block;
  height: 320px;
  overflow: hidden;
  border: 1px solid #c4c6d0;
  border-radius: 0.25rem;
  background: #faf9fe;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.fleet-card img {
  height: 100%;
  width: 100%;
   object-fit: contain;
  background-color: #ffffff;
  transition: transform 500ms ease;
  padding: 16px;
}

.fleet-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 23, 54, 0.95) 0%, rgba(0, 23, 54, 0.4) 50%, transparent 100%);
}

.fleet-card:hover {
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.2);
}

.fleet-card:hover img,
.fleet-card:focus img {
  transform: scale(1.02);
}

.fleet-card span {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: block;
  width: 100%;
  padding: 24px;
}

.fleet-card strong {
  display: block;
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
}

.fleet-card small {
  color: #0054cd;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 20px;
  text-transform: uppercase;
}

.workshop-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.workshop-item > span,
.why-card > span {
  flex: 0 0 auto;
  color: #0054cd;
  font-size: 40px;
}

.why-card {
  display: flex;
  align-items: center;
  gap: 24px;
  border: 1px solid #c4c6d0;
  border-radius: 0.25rem;
  background: #faf9fe;
  padding: 24px;
  transition: all 0.3s ease;
}

.why-card:hover {
  background: #ffffff;
  border-color: #0054cd;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.industry-chip {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 1px solid #c4c6d0;
  border-radius: 0.125rem;
  background: #faf9fe;
  padding: 16px 24px;
  color: #001736;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 20px;
  text-transform: uppercase;
  transition: all 0.2s ease;
}

.industry-chip:hover {
  background: #ffffff;
  border-color: #0054cd;
  transform: translateY(-1px);
}

.industry-chip span {
  color: #0054cd;
  font-size: 24px;
}

.footer-title {
  margin-bottom: 24px;
  color: #0054cd;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 24px;
  text-transform: uppercase;
}

.footer-contact {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  line-height: 24px;
}

.footer-contact span:first-child {
  color: #0054cd;
}

.footer-link {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  line-height: 24px;
  transition: color 160ms ease;
}

.footer-link:hover,
.footer-link:focus {
  color: #ffffff;
}

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-marquee {
  display: flex;
  width: max-content;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  perspective: 1000px;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.client-logo-carousel {
  height: 64px;
  width: 160px;
  background: white;
  border: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  flex-shrink: 0;
  border-radius: 4px;
  margin-right: 24px; /* 32px gap between items */
}

/* Ensure no grayscale filters or opacity */
.client-logo-carousel img {
  max-height: 40px;
  max-width: 120px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: none !important;
  opacity: 1 !important;
}

@media (max-width: 767px) {
  .section-heading {
    font-size: 24px;
    line-height: 32px;
  }

  .feature-card {
    border-right: 0;
    border-bottom: 1px solid rgba(196, 198, 208, 0.5);
    padding: 28px;
  }

  .feature-card:last-child {
    border-bottom: 0;
  }

  .stat-block span,
  .operation-card strong {
    font-size: 24px;
    line-height: 30px;
  }

  .why-card {
    align-items: flex-start;
  }

  .text-display-lg {
    font-size: 36px;
    line-height: 44px;
  }
  
  .text-display-md {
    font-size: 28px;
    line-height: 36px;
  }
}

@media (prefers-reduced-motion: reduce) {

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

@keyframes keyboardFocus {
  0% {
    outline: 2px solid transparent;
  }

  100% {
    outline: 2px solid #0054cd;
  }
}

:focus-visible {
  animation: keyboardFocus 0.2s forwards;
  outline-offset: 2px;
}

/* Card Shadow */
.shadow-heavy {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 8px 10px -2px rgba(0, 0, 0, 0.05);
}

.shadow-industrial {
  box-shadow: 0 16px 32px -4px rgba(0, 23, 54, 0.2);
}
