/* Base colors (provided) */
:root {
  --white-smoke: #F2F2F2ff;
  --white: #FEFEFEff;
  --white-2: #FFFFFFff;
  --cornflower-blue: #588DFAff;
  --silver: #C6C6C5ff;
  --charcoal-blue: #4B5463ff;
  --carbon-black: #191A1Cff;
}

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

/* Typography: aiming ~90% similarity to reference */
/* Using Inter + Plus Jakarta Sans as close modern substitutes */
html {
  font-size: 16px;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--charcoal-blue);
  background: linear-gradient(180deg, var(--white-2), var(--white-smoke));
  font-family: "Plus Jakarta Sans", "Inter", system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
  letter-spacing: 0.05em !important;
  word-spacing: 0.15em !important;
}

* {
  letter-spacing: 0.05em !important;
  word-spacing: 0.15em !important;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.main-header {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  margin: 15px auto;
  background: rgba(88, 141, 250, 0.15);
  border-radius: 20px;
  padding: 20px;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateY(0);
  will-change: transform;
}

.site-header.nav-hidden {
  transform: translateY(-100%);
}

.navbar {
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.94), rgba(248, 250, 255, 0.90));
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  /* border: 1px solid rgba(88, 141, 250, 0.15); */
  padding: 7px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  box-shadow: 0 8px 24px -6px rgba(0, 0, 0, 0.10);
  border-radius: 24px;
  max-width: 700px;
  width: calc(100% - 40px);
  margin: 5px auto;
  transition: all 0.28s ease;
}

.navbar::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(88, 141, 250, 0.18), rgba(255, 255, 255, 0));
  pointer-events: none;
  opacity: 0.65;
}

.navbar:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 60px -24px rgba(0, 0, 0, 0.28), 0 10px 28px -14px rgba(88, 141, 250, 0.30);
}

.navbar {
  will-change: transform, opacity;
}

/* Logo Styles */
.logo {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  line-height: 1;
  padding: 4px 10px;
}

.logo-main {
  font-family: 'Nippo-Regular', sans-serif;
  font-size: 30px;
  font-weight: 400;
  letter-spacing: 0.02em;
  background: #191a1c;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.logo-sub {
  font-family: 'Nippo-Regular', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.30em;
  color: #191a1c;
  text-transform: uppercase;
}

/* Navigation Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  color: #1f2937;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 14px;
  border-radius: 12px;
  transition: all 0.25s ease;
  position: relative;
}

.nav-links a:hover {
  color: #0f172a;
  background: rgba(88, 141, 250, 0.08);
  box-shadow: inset 0 0 0 1px rgba(88, 141, 250, 0.18);
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 6px;
  width: 14px;
  height: 3px;
  border-radius: 999px;
  background: rgba(88, 141, 250, 0.9);
  transform: translateX(-50%) scaleX(0);
  transition: transform 0.25s ease;
}

.nav-links a:hover::after {
  transform: translateX(-50%) scaleX(1);
}

/* Action Buttons */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.get-started-btn {
  background: #719aff;
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 999px;
  transition: all 0.25s ease;
  border: 1px solid rgba(255, 255, 255, 0.16);
  letter-spacing: 0.05em;
}

.get-started-btn:hover {
  filter: brightness(1.03);
  transform: translateY(-1px);
}

.get-started-btn:active {
  transform: translateY(0);
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-left: auto;
  position: relative;
  z-index: 10000;
}

.hamburger-line {
  width: 100%;
  height: 2px;
  background: var(--carbon-black);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.hamburger.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
  background: var(--cornflower-blue);
}

.hamburger.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
  background: var(--cornflower-blue);
}

.hamburger.active {
  opacity: 0;
  pointer-events: none;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 400px;
  height: auto;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 30px 20px;
  z-index: 9998;
  overflow-y: auto;
  animation: fadeIn 0.3s ease;
  display: none;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

.mobile-menu.active {
  display: flex;
  animation: fadeIn 0.3s ease;
}

.mobile-menu.closing {
  animation: fadeOut 0.3s ease;
}

/* Close Button */
.mobile-menu-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10001;
}

.close-line {
  position: absolute;
  width: 24px;
  height: 2px;
  background: var(--cornflower-blue);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.close-line-1 {
  transform: rotate(45deg);
}

.close-line-2 {
  transform: rotate(-45deg);
}

.mobile-menu-close:hover .close-line {
  background: var(--carbon-black);
  width: 28px;
}

.mobile-menu-close:active .close-line {
  transform: scale(0.9);
}

.mobile-menu-close:active .close-line-1 {
  transform: rotate(45deg) scale(0.9);
}

.mobile-menu-close:active .close-line-2 {
  transform: rotate(-45deg) scale(0.9);
}

/* Close button animation when menu closes */
.mobile-menu.closing .mobile-menu-close {
  animation: closeButtonPulse 0.3s ease;
}

@keyframes closeButtonPulse {
  0% {
    transform: scale(1) rotate(0deg);
    opacity: 1;
  }

  50% {
    transform: scale(1.2) rotate(90deg);
    opacity: 0.7;
  }

  100% {
    transform: scale(0) rotate(180deg);
    opacity: 0;
  }
}

.mobile-menu.closing .close-line-1 {
  animation: lineRotateOut1 0.3s ease;
}

.mobile-menu.closing .close-line-2 {
  animation: lineRotateOut2 0.3s ease;
}

@keyframes lineRotateOut1 {
  0% {
    transform: rotate(45deg) translateX(0);
    opacity: 1;
  }

  100% {
    transform: rotate(180deg) translateX(12px);
    opacity: 0;
  }
}

@keyframes lineRotateOut2 {
  0% {
    transform: rotate(-45deg) translateX(0);
    opacity: 1;
  }

  100% {
    transform: rotate(-180deg) translateX(-12px);
    opacity: 0;
  }
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
  text-align: center;
}

.mobile-nav-links li {
  padding: 0;
}

.mobile-nav-links a {
  display: block;
  color: var(--charcoal-blue);
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  padding: 8px 0;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.mobile-nav-links a:hover {
  color: var(--cornflower-blue);
}

.mobile-nav-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: 100%;
}

.get-started-btn-mobile {
  background: var(--cornflower-blue);
  color: var(--white);
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 20px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(88, 141, 250, 0.3);
  text-align: center;
  display: block;
  width: 100%;
}

.get-started-btn-mobile:hover {
  filter: brightness(0.95);
  transform: translateY(-1px);
}

.get-started-btn-mobile:active {
  transform: translateY(0);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  border: 1px solid transparent;
}

.btn-primary {
  background: linear-gradient(90deg, var(--cornflower-blue), #3A6FE6);
  color: var(--white);
  box-shadow: 0 8px 18px rgba(88, 141, 250, 0.35);
}

.btn-primary:hover {
  filter: brightness(1.05);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.7);
  border-color: rgba(198, 198, 197, 0.8);
  color: var(--charcoal-blue);
}

.btn-soft {
  background: var(--white-2);
  border-color: rgba(198, 198, 197, 0.8);
  color: var(--charcoal-blue);
}

.btn-soft:hover,
.btn-ghost:hover {
  border-color: var(--cornflower-blue);
  color: var(--carbon-black);
}

/* Hero */
.hero {
  width: 100vw;
  height: 100vh;
  padding: 0;
  margin: 0;
  position: relative;
  overflow: hidden;
}

.hero-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 650px;
  padding: 0 80px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-title {
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 700;
  line-height: 1.1;
  color: #ffffff;
  letter-spacing: 0.01em;
  margin: 0 0 32px 0;
  text-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  animation: slideInUp 0.8s ease-out;
}

.hero-subtitle {
  font-size: clamp(16px, 1.5vw, 18px);
  color: #ffffff;
  line-height: 1.6;
  margin: 0 0 40px 0;
  max-width: 500px;

  /* Glassmorphism effect */
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 24px 32px;
  border-radius: 20px;
  display: inline-block;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1);

  animation: slideInUp 0.8s ease-out 0.1s both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 0;
  animation: slideInUp 0.8s ease-out 0.2s both;
}

/* Hero Stats */
.hero-stats {
  position: absolute;
  bottom: 60px;
  left: 80px;
  display: flex;
  align-items: center;
  gap: 40px;
  padding-top: 0;
  border-top: none;
  animation: slideInUp 0.8s ease-out 0.3s both;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-value {
  font-size: 36px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.stat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.3);
}

@media (max-width: 1024px) {
  .hero-copy {
    max-width: 100%;
    padding: 0 40px;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 100%);
  }

  .hero-stats {
    position: relative;
    bottom: auto;
    left: auto;
    margin-top: 60px;
    flex-wrap: wrap;
  }
}

@media (max-width: 768px) {
  .hero-stats {
    gap: 24px;
  }

  .stat-divider {
    display: none;
  }
}

.hero-brands {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-top: 48px;
  opacity: 0.9;
}

.hero-brands img {
  height: 24px;
  filter: grayscale(100%) contrast(0.9) brightness(1.05);
}

.hero-illustration {
  width: 100%;
  max-width: 540px;
}

/* Hero video styling */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  box-shadow: none;
  border: none;
  margin: 0;
  padding: 0;
  z-index: 0;
  pointer-events: none;
  /* Optimized: Using opacity overlay instead of filter for better performance */
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

/* Desktop: push text further left and allow larger media */
@media (min-width: 1024px) {
  .hero-inner {
    max-width: 100%;
  }

  .hero-copy {
    justify-self: start;
  }

  .hero-video {
    width: 100%;
  }
}

/* Footer */
.site-footer {
  margin-top: 48px;
}

.footer-inner {
  border-top: 1px solid rgba(198, 198, 197, 0.6);
  padding: 24px 0;
  text-align: center;
  font-size: 14px;
  color: var(--charcoal-blue);
}

/* Responsive adjustments for mobile devices */
@media (max-width: 980px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
  }

  .get-started-btn {
    display: none;
  }
}

@media (max-width: 600px) {
  .container {
    max-width: 100%;
    padding: 0 8px;
  }

  .navbar {
    max-width: 80%;
    padding: 12px 8px;
    border-radius: 24px;
  }

  .main-header {
    padding: 12px;
    border-radius: 12px;
  }

  .hero {
    width: 100vw;
    height: 100vh;
  }

  .hero-copy {
    padding: 40px 24px;
    max-width: 100%;
  }

  .hero-title {
    font-size: clamp(32px, 5vw, 48px);
    margin-bottom: 16px;
  }

  .hero-subtitle {
    font-size: clamp(14px, 1.5vw, 16px);
    margin-bottom: 24px;
  }

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

  .hero-inner {
    height: 100vh;
  }

  .hero-video {
    width: 100%;
    height: 100%;
    margin-top: 0;
    border-radius: 0;
    display: block;
  }

  .hero-art,
  .hero-illustration {
    max-width: 100%;
    width: 100%;
  }

  .nav-links {
    gap: 16px;
  }

  .get-started-btn {
    padding: 10px 16px;
    font-size: 14px;
  }
}

/* Cards / sections (for other pages) */
.section {
  padding: 64px 0;
}

.section-title {
  font-size: 32px;
  color: var(--carbon-black);
  margin-bottom: 12px;
}

.section-subtitle {
  color: var(--charcoal-blue);
  opacity: 0.9;
}

.grid {
  display: grid;
  gap: 20px;
}

/* Transport highlight */
.transport-highlight {
  
  background: linear-gradient(180deg, rgba(88, 141, 250, 0.02), rgba(255, 255, 255, 0));
}

.transport-highlight__container {
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 24px;
}

.transport-highlight__image-wrapper {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  margin-bottom: 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.transport-highlight__image-wrapper img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 24 / 8;
  object-fit: cover;
  background: linear-gradient(180deg, #ffffff, #f8faff);
}

@media (max-width: 768px) {
  .transport-highlight__image-wrapper img {
    aspect-ratio: 16 / 9;
  }
}

/* Overlay content */
.transport-highlight__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: flex-end;
  padding: 28px;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.15) 100%);
}

.overlay-badge {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  padding: 12px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  color: #191a1c;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.badge-text {
      font-size: clamp(0.8rem, 1.5vw, 0.875rem);
    font-weight: 500;
    color: #4B5463;
    letter-spacing: 0.01em;
}

.badge-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: #588dfa;
  color: white;
  border-radius: 50%;
  font-size: 12px;
  font-weight: bold;
}

/* Content Bar */
.transport-highlight__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  padding: 40px 32px;
  background: linear-gradient(135deg, #ffffff 0%, #f8faff 100%);
  border-radius: 24px;
  border: 1px solid rgba(88, 141, 250, 0.08);
  margin-bottom: 50px;
}

.content-left {
  flex: 1;
  min-width: 0;
}

.content-title {
  margin: 0 0 12px 0;
  font-size: 24px;
  font-weight: 700;
  color: #191a1c;
  letter-spacing: -0.3px;
}

.content-subtitle {
  margin: 0;
  font-size: 15px;
  color: #4b5463;
  line-height: 1.6;
}

.content-right {
  display: flex;
  gap: 32px;
  flex-shrink: 0;
}

.metric-item {
  text-align: center;
  padding: 0 16px;
  border-left: 1px solid rgba(88, 141, 250, 0.12);
}

.metric-item:first-child {
  border-left: none;
  padding-left: 0;
}

.metric-value {
  font-size: 28px;
  font-weight: 700;
  color: #588dfa;
  line-height: 1;
  margin-bottom: 6px;
}

.metric-label {
  font-size: 12px;
  font-weight: 600;
  color: #4b5463;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Partners Trust Section */
.transport-highlight__partners {
  padding: 40px 32px;
  background: rgba(88, 141, 250, 0.04);
  border-radius: 20px;
  border: 1px solid rgba(88, 141, 250, 0.08);
}

.partners-header {
  margin-bottom: 24px;
}

.partners-label {
  font-size: 12px;
  font-weight: 700;
  color: #4b5463;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 24px;
  align-items: center;
}

.partner-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 14px;
  border: 1px solid rgba(88, 141, 250, 0.08);
  transition: all 0.3s ease;
}

.partner-item:hover {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(88, 141, 250, 0.15);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.partner-item img {
  max-width: 100%;
  height: auto;
  max-height: 50px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.partner-item:hover img {
  filter: grayscale(0%);
  opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 960px) {
  .transport-highlight__content {
    flex-direction: column;
    gap: 32px;
    text-align: center;
  }
  
  .content-right {
    justify-content: center;
    width: 100%;
  }
  
  .metric-item {
    border-left: none;
    padding-left: 16px;
  }
  
  .metric-item:first-child {
    padding-left: 16px;
  }
}

@media (max-width: 720px) {
  .transport-highlight { padding: 50px 0; }
  
  .transport-highlight__image-wrapper {
    margin-bottom: 28px;
    border-radius: 20px;
  }
  
  .transport-highlight__content {
    padding: 28px 24px;
    gap: 28px;
    margin-bottom: 32px;
  }
  
  .content-title {
    font-size: 20px;
  }
  
  .content-subtitle {
    font-size: 14px;
  }
  
  .content-right {
    gap: 24px;
  }
  
  .metric-value {
    font-size: 24px;
  }
  
  .transport-highlight__partners {
    padding: 28px 24px;
  }
  
  .partners-grid {
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .transport-highlight { padding: 40px 0; }
  
  .transport-highlight__image-wrapper {
    margin-bottom: 24px;
    border-radius: 16px;
  }
  
  .transport-highlight__overlay {
    padding: 16px;
  }
  
  .overlay-badge {
    font-size: 12px;
    padding: 10px 16px;
  }


  
  .transport-highlight__content {
    flex-direction: column;
    padding: 20px 16px;
    gap: 24px;
    margin-bottom: 24px;
    border-radius: 16px;
  }
  
  .content-title {
    font-size: 15px;
    margin-bottom: 10px;
  }
  
  .content-right {
    width: 100%;
    gap: 16px;
  }
  
  .metric-item {
    padding: 0 12px;
  }
  
  .metric-value {
    font-size: 20px;
  }
  
  .metric-label {
    font-size: 11px;
  }
  
  .transport-highlight__partners {
    padding: 20px 16px;
    border-radius: 16px;
  }
  
  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  
}

/* Why Choose Section */
.why-choose {
  padding: clamp(80px, 12vw, 140px) 0;
  background: linear-gradient(180deg, rgba(88, 141, 250, 0.02), transparent);
}

.why-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(60px, 8vw, 100px);
  align-items: start;
}

.why-text {
  z-index: 1;
}

.why-title {
  margin: 0 0 24px 0;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  color: #191a1c;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.why-description {
  margin: 0;
  font-size: 16px;
  color: #4b5463;
  line-height: 1.8;
  letter-spacing: 0.3px;
  word-spacing: 0.1em;
}

.visual-card {
  position: relative;
  padding: 40px 32px;
  background: linear-gradient(135deg, #ffffff 0%, #f8faff 100%);
  border: 1px solid rgba(88, 141, 250, 0.12);
  border-radius: 24px;
  overflow: hidden;
}

.card-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #588dfa, #6b9bff);
}

.card-title {
  margin: 0 0 20px 0;
  font-size: 18px;
  font-weight: 700;
  color: #191a1c;
  letter-spacing: -0.3px;
}

.card-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.card-list li {
  font-size: 14px;
  color: #4b5463;
  line-height: 1.6;
  padding-left: 0;
  position: relative;
}

.card-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #588dfa;
  font-weight: 700;
  margin-right: 10px;
}

.card-list li {
  padding-left: 20px;
}

/* Responsive */
@media (max-width: 1024px) {
  .why-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

@media (max-width: 720px) {
  .why-choose {
    padding: 60px 0;
  }
  
  .why-title {
    font-size: 28px;
    margin-bottom: 20px;
  }
  
  .why-description {
    font-size: 15px;
    line-height: 1.7;
  }
  
  .visual-card {
    padding: 32px 24px;
    border-radius: 20px;
  }
  
  .card-title {
    font-size: 16px;
    margin-bottom: 16px;
  }
  
  .card-list {
    gap: 12px;
  }
  
  .card-list li {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .why-choose {
    padding: 48px 0;
  }
  
  .why-title {
    font-size: 24px;
  }
  
  .why-description {
    font-size: 14px;
  }
  
  .visual-card {
    padding: 24px 20px;
    border-radius: 16px;
  }
  
  .card-list li {
    font-size: 12px;
    padding-left: 16px;
  }
}

/* Benefit section */
.benefit {
  padding: 80px 0;
}

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

.benefit-inner {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

.benefit-kicker {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 24px;
  font-weight: 500;
  display: block;
}

.benefit-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 60px;
}

.benefit-title {
  font-size: clamp(42px, 5vw, 56px);
  line-height: 1.2;
  font-weight: 400;
  color: var(--carbon-black);
  margin: 0;
}

.benefit-lead {
  font-size: 16px;
  line-height: 1.7;
  color: #666;
  font-weight: 400;
}


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

.benefit-card {
  background: #f5f5f5;
  padding: 20px 40px;
  border-radius: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: none;
}

.benefit-card:nth-child(2) {
  background: #588dfa26;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.benefit-index {
  font-size: 14px;
  color: #999;
  font-weight: 500;
}

.benefit-card:nth-child(2) .benefit-index {
  color: #4b5463;
}

.benefit-card-title {
  font-size: 30px;
  font-weight: 400;
  color: var(--carbon-black);
  margin-bottom: 24px;
  line-height: 1.3;
}

.benefit-card-desc {
  font-size: 16px;
  line-height: 1.7;
  color: #666;
  font-weight: 400;
}

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

@media (max-width: 980px) {
  .benefit-header {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .benefit-title {
    font-size: 28px;
  }

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

 

  .benefit-inner {
    max-width: 100%;
    padding: 0 16px;
  }

  .benefit-grid {
    gap: 16px;
  }
}

/* Prevent potential horizontal overflow within benefit section */
.benefit {
  overflow-x: clip;
}

/* Responsive */
@media (max-width: 980px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .navbar {
    padding: 9px 24px;
  }

  .nav-links {
    display: none;
  }
}

/* Faq Section */
.faq-section {
  background: #f8faff;
  margin: 0 auto;
  padding: 80px 20px;
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-label {
  font-size: 13px;
  color: #999;
  margin-bottom: 16px;
  font-weight: 500;
}

.section-title {
  font-size: 56px;
  line-height: 1.2;
  color: #1a1a1a;
  font-weight: 400;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  padding: 50px 0;
  border-bottom: 1px solid #e5e5e5;
  align-items: start;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-number {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 600;
  color: white;
  flex-shrink: 0;
  background: #091a3b;
}

.faq-item:nth-child(1) .faq-number {
  background: #091a3b
}

.faq-item:nth-child(2) .faq-number {
  background: #091a3b
}

.faq-item:nth-child(3) .faq-number {
  background: #091a3b
}

.faq-item:nth-child(4) .faq-number {
  background: #091a3b
}

.faq-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.faq-question {
  font-size: 24px;
  line-height: 1.4;
  color: #1a1a1a;
  font-weight: 400;
}

.faq-answer {
  font-size: 16px;
  line-height: 1.7;
  color: #666;
  font-weight: 400;
}

/* Benefit Card Background Image (adjustable) */
.benefit-card--bg1 {
  position: relative;
  overflow: hidden;
}

.benefit-card--bg1::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../img/media/bibictruck.png");
  background-repeat: no-repeat;
  background-position: var(--bg-pos-x, 80%) var(--bg-pos-y, 11%);
  background-size: var(--bg-size, 420px);
  opacity: var(--bg-opacity, 1);
  transform: rotate(var(--bg-rotate, 0deg));
  filter: saturate(0.95) contrast(1.05);
  z-index: 0;
  pointer-events: none;
}

.benefit-card--bg1 > * {
  position: relative;
  z-index: 1;
}

/* benefitcard2 */
.benefit-card--bg2 {
  position: relative;
  overflow: hidden;
}

.benefit-card--bg2::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../img/media/bibicpaket.png");
  background-repeat: no-repeat;
  background-position: var(--bg-pos-x, 50%) var(--bg-pos-y, 5%);
  background-size: var(--bg-size, 250px);
  opacity: var(--bg-opacity, 1);
  transform: rotate(var(--bg-rotate, 0deg));
  filter: saturate(0.95) contrast(1.05);
  z-index: 0;
  pointer-events: none;
}

.benefit-card--bg2 > * {
  position: relative;
  z-index: 1;
}


/* benefitcard2 */

.benefit-card--bg3 {
  position: relative;
  overflow: hidden;
}

.benefit-card--bg3::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../img/media/bibiclist.png");
  background-repeat: no-repeat;
  background-position: var(--bg-pos-x, 50%) var(--bg-pos-y, 15%);
  background-size: var(--bg-size, 130px);
  opacity: var(--bg-opacity, 1);
  transform: rotate(var(--bg-rotate, 0deg));
  filter: saturate(0.95) contrast(1.05);
  z-index: 0;
  pointer-events: none;
}

.benefit-card--bg3 > * {
  position: relative;
  z-index: 1;
}


/* Cookie Banner */
.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  width: min(1120px, calc(100% - 32px));
  z-index: 11000;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.cookie-banner.cookie-banner--hide {
  opacity: 0;
  transform: translate(-50%, 14px);
  pointer-events: none;
}

.cookie-close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  border: 1px solid rgba(88, 141, 250, 0.35);
  background: rgba(255, 255, 255, 0.92);
  color: #0f172a;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
  transition: transform 0.18s ease, filter 0.18s ease, box-shadow 0.18s ease;
  z-index: 2;
}

.cookie-close:hover {
  filter: brightness(1.02);
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.12);
}

.cookie-close:active {
  transform: translateY(0);
}

.cookie-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 18px 20px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 255, 0.92));
  border: 1px solid rgba(88, 141, 250, 0.28);
  border-radius: 22px;
  box-shadow: 0 26px 68px -34px rgba(0, 0, 0, 0.5), 0 14px 34px -20px rgba(88, 141, 250, 0.4);
  backdrop-filter: blur(16px);
  position: relative;
  overflow: hidden;
}

.cookie-layout::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 16px;
  background: linear-gradient(120deg, rgba(88, 141, 250, 0.06), rgba(74, 127, 230, 0.02));
  pointer-events: none;
}

.cookie-left {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 14px;
  position: relative;
  z-index: 1;
}

.cookie-icon {
  width: 55px;
  height: 55px;
  border-radius: 18px;
  background: radial-gradient(circle at 18% 25%, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0)) , linear-gradient(145deg, #436fdb, #588dfa);
  display: grid;
  place-items: center;
  position: relative;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35), 0 16px 30px rgba(88, 141, 250, 0.35);
}

.cookie-icon-main {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  position: relative;
  display: block;
}

.cookie-icon-main::after,
.cookie-icon-main::before {
  content: "";
  position: absolute;
  background: #588dfa;
  border-radius: 50%;
}

.cookie-icon-main::before {
  width: 6px;
  height: 6px;
  top: 9px;
  left: 7px;
}

.cookie-icon-main::after {
  width: 4px;
  height: 4px;
  bottom: 7px;
  right: 9px;
}

.cookie-icon-bite {
  position: absolute;
  width: 12px;
  height: 12px;
  background: linear-gradient(145deg, #4a7fe6, #588dfa);
  border-radius: 50%;
  top: 8px;
  right: 8px;
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.9);
}

.cookie-copy {
  display: grid;
  gap: 6px;
}

.cookie-eyebrow {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #1f2937;
}

.cookie-title {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  color: #0f172a;
  letter-spacing: -0.01em;
}

.cookie-desc {
  margin: 0;
  font-size: 12px;
  line-height: 1.6;
  color: #4b5463;
}

.cookie-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.cookie-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
  min-width: 150px;
  text-decoration: none;
}

.cookie-btn-primary {
  background: linear-gradient(135deg, #4a7fe6 0%, #588dfa 100%);
  color: #ffffff;
  box-shadow: 0 14px 32px rgba(88, 141, 250, 0.42);
  border-color: rgba(255, 255, 255, 0.26);
}

.cookie-btn-primary:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}

.cookie-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #0f172a;
  font-weight: 600;
  font-size: 13px;
  text-decoration: none;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px dashed rgba(88, 141, 250, 0.35);
}

.cookie-link:hover {
  color: #4a7fe6;
  border-style: solid;
}

@media (max-width: 980px) {
  .cookie-layout {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-actions {
    width: 100%;
    flex-wrap: wrap;
  }

  .cookie-btn,
  .cookie-link {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 540px) {
  .cookie-banner {
    bottom: 12px;
    width: calc(100% - 18px);
  }

  .cookie-layout {
    padding: 16px;
    gap: 14px;
  }

  .cookie-btn {
    width: 100%;
    justify-content: center;
    font-size: 13px;
    width: 100%;
    justify-content: center;
}
}

@media (max-width: 1024px) {
  .section-title {
    font-size: 46px;
  }

  .faq-content {
    gap: 50px;
  }

  .faq-question {
    font-size: 22px;
  }

  .faq-answer {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .faq-section {
    padding: 60px 20px;
  }

  .section-header {
    margin-bottom: 60px;
  }

  .section-title {
    font-size: 36px;
  }

  .faq-item {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 40px 0;
  }

  .faq-number {
    width: 44px;
    height: 44px;
    font-size: 18px;
  }

  .faq-content {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .faq-question {
    font-size: 20px;
  }

  .faq-answer {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .faq-section {
    padding: 40px 16px;
  }

  .section-title {
    font-size: 32px;
  }

  .faq-item {
    padding: 32px 0;
  }

  .faq-number {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .faq-question {
    font-size: 18px;
  }

  .faq-answer {
    font-size: 14px;
    line-height: 1.6;
  }
}
