/* reset & base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* font-size tokens — single source of truth for text sizing */
:root {
  --text-3xs:  0.625rem;  /* 10px */
  --text-2xs:  0.6875rem; /* 11px */
  --text-xs:   0.75rem;   /* 12px */
  --text-sm:   0.875rem;  /* 14px */
  --text-base: 1rem;      /* 16px */
  --text-lg:   1.125rem;  /* 18px */
  --text-xl:   1.25rem;   /* 20px */
  --text-2xl:  1.5rem;    /* 24px */
  --text-3xl:  1.75rem;   /* 28px */
  --text-4xl:  2rem;      /* 32px */
  --text-5xl:  2.25rem;   /* 36px */
  --text-6xl:  2.5rem;    /* 40px */
  --text-7xl:  3rem;      /* 48px */
  --text-8xl:  3.5rem;    /* 56px */
  --text-9xl:  4rem;      /* 64px */
  --text-10xl: 6rem;      /* 96px */
}

body {
  background: #F8F9FA;
  display: flex;
  justify-content: center;
  font-family: 'Hanken Grotesk', sans-serif;
  min-height: 100vh;
}

.frame {
  position: relative;
  width: 100%;
  /* max-width: 1280px; */
  background: linear-gradient(0deg, #F8F9FA, #F8F9FA), #FFFFFF;
  overflow: hidden;
  display: flex;
  flex-direction: column;

  /* Layout tokens — single source of truth for homepage rhythm */
  --section-x: 40px;
  --section-y: 64px;
  --section-y-half: 32px;
  --section-header-gap: 32px;
  --content-gap: 24px;
  --border-subtle: rgba(108, 122, 113, 0.08);
}

/* utility */
.text-green {
  color: #10B981;
}

.bg-green {
  background: #10B981;
}

.text-dark {
  color: #191C1D;
}

.text-muted {
  color: #3C4A42;
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.items-center {
  align-items: center;
}

.justify-between {
  justify-content: space-between;
}

.gap-8 {
  gap: 8px;
}

.gap-16 {
  gap: 16px;
}

.gap-24 {
  gap: 24px;
}

.gap-32 {
  gap: 32px;
}

.gap-40 {
  gap: 40px;
}

.px-40 {
  padding-left: 40px;
  padding-right: 40px;
}

.py-16 {
  padding-top: 16px;
  padding-bottom: 16px;
}

.py-24 {
  padding-top: 24px;
  padding-bottom: 24px;
}

.py-48 {
  padding-top: 48px;
  padding-bottom: 48px;
}

.py-80 {
  padding-top: 80px;
  padding-bottom: 80px;
}

.rounded-full {
  border-radius: 9999px;
}

.rounded-2xl {
  border-radius: 16px;
}

.rounded-3xl {
  border-radius: 24px;
}

.border {
  border: 1px solid rgba(65, 102, 86, 0.1);
}

.shadow-sm {
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05);
}

/* Shared homepage layout primitives */
.homepage {
  display: flex;
  flex-direction: column;
}

.section-header {
  display: flex;
    flex-direction: row;
  justify-content: space-between;
  width: 100%;
  margin-bottom: var(--section-header-gap);
  gap: var(--content-gap);
}

@media (max-width: 768px) {
  .section-header {
    flex-direction: column !important;
    text-align: center;
  }
}


.section-header-left {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.section-header-nav {
  display: flex;
  gap: 12px;
  align-items: center;
  padding-top: 4px;
}

.section-header-actions {
  display: flex;
  align-items: center;
  gap: var(--content-gap);
  flex-shrink: 0;
}

.section-header-actions .section-header-nav {
  padding-top: 0;
}

.section-header--center {
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.section-header--center .section-header-left {
  align-items: center;
}

.section-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(var(--text-3xl), 3vw, var(--text-5xl));
  font-weight: 400;
  color: #191C1D;
  margin: 0;
  line-height: 1.15;
}

.section-sub {
  font-size: var(--text-base);
  color: #6B7280;
  margin: 0;
  line-height: 1.5;
}

/* header */
.header {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 40px;
  position: absolute;
  width: 100%;
  /* max-width: 1280px; */
  height: 80px;
  left: 0px;
  top: 0px;
  background: rgba(248, 249, 250, 0.82);
  border-bottom: 1px solid rgba(65, 102, 86, 0.08);
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.03);
  backdrop-filter: blur(16px);
  z-index: 1000;
  transition: all 0.3s ease;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-svg {
  width: 32px;
  height: 32px;
  transition: transform 0.3s ease;
}

.logo:hover .logo-svg {
  transform: rotate(-10deg) scale(1.05);
}

.logo-text {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: var(--text-4xl);
  line-height: 40px;
  letter-spacing: -0.8px;
  color: #10B981;
}

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

.nav-mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  padding: 0;
  z-index: 1100;
}

.hamburger-bar {
  display: block;
  width: 100%;
  height: 2px;
  background: #191C1D;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 500;
  font-size: var(--text-base);
  color: #3C4A42;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

@keyframes buttonFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

.btn-login {
  background: #10B981;
  color: #fff;
  padding: 10px 28px;
  border-radius: 9999px;
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 700;
  font-size: var(--text-sm);
  box-shadow: 0px 4px 14px rgba(16, 185, 129, 0.35);
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  animation: buttonFloat 3s ease-in-out infinite;
  transition: background-color 0.25s, box-shadow 0.25s, transform 0.25s;
}

.btn-login:hover {
  background-color: #059669;
  box-shadow: 0px 6px 20px rgba(16, 185, 129, 0.5);
  animation: none;
  transform: translateY(-2px);
}

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

.nav-links a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: #10B981;
}

.hero-actions a {
  text-decoration: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* ============================================
   KEYFRAME ANIMATIONS
   ============================================ */

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(48px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes floatBobSlow {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-10px); }
}

@keyframes floatBadge1 {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50%       { transform: translateY(-9px) rotate(4deg); }
}

@keyframes floatBadge2 {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50%       { transform: translateY(-7px) rotate(-3deg); }
}

@keyframes floatBadge3 {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  40%       { transform: translateY(-11px) rotate(5deg); }
}

@keyframes floatCircle {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-14px) scale(1.15); }
}

@keyframes floatBox {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%       { transform: translateY(-10px) rotate(12deg); }
}

@keyframes floatAvatars {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-6px); }
}

@keyframes pulseRing {
  0%   { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.45); }
  70%  { box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
  100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

/* hero — full-banner carousel container */
.hero-section {
  width: 100%;
  min-height: min(720px, 92vh);
  background: #D1E7DD;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 100%;
  grid-template-rows: 100%;
}

/* Each banner is a full slide */
.hero-banner {
  grid-area: 1 / 1 / 2 / 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: calc(var(--section-y-half)) var(--section-x) var(--section-y-half);
  opacity: 0;
  transform: translateX(60px);
  pointer-events: none;
  transition: opacity 0.85s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.85s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}

.hero-banner--active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
  z-index: 2;
}

/* Banner navigation dots */
.hero-banner-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 20;
}

.hero-banner-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.25);
  border: 2px solid rgba(16, 185, 129, 0.4);
  cursor: pointer;
  transition: all 0.35s ease;
}

.hero-banner-dot.active {
  background: #10B981;
  border-color: #10B981;
  transform: scale(1.3);
  box-shadow: 0 0 10px rgba(16, 185, 129, 0.45);
}

.hero-banner-dot:hover:not(.active) {
  background: rgba(16, 185, 129, 0.45);
  border-color: rgba(16, 185, 129, 0.6);
}

.hero-content {
  max-width: 628px;
  position: relative;
}

.hero-badge {
  font-weight: 700;
  font-size: var(--text-sm);
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #10B981;
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
  animation-delay: 0.1s;
}

.hero-title {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: var(--text-9xl);
  line-height: 70px;
  letter-spacing: -1.6px;
  color: #10B981;
  margin-top: 8px;
  opacity: 0;
  animation: fadeInUp 0.65s ease forwards;
  animation-delay: 0.25s;
}

.hero-desc {
  font-size: var(--text-xl);
  line-height: 32px;
  color: #3C4A42;
  max-width: 486px;
  margin-top: 16px;
  opacity: 0;
  animation: fadeInUp 0.65s ease forwards;
  animation-delay: 0.42s;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 24px;
  opacity: 0;
  animation: fadeInUp 0.65s ease forwards;
  animation-delay: 0.58s;
}

.hero-actions .btn-primary {
  color: #10B981;
  font-weight: 700;
  font-size: var(--text-base);
  text-decoration: none;
  border-bottom: 2px solid #10B981;
  padding: 0 0 4px 0;
  border-radius: 0;
  background: transparent;
}

.hero-actions .btn-secondary {
  color: #3C4A42;
  font-weight: 700;
  font-size: var(--text-base);
  text-decoration: none;
  padding: 0 0 4px 0;
  border-radius: 0;
  background: transparent;
  border: none;
}

/* ── Guest CTA button ── */
.btn-guest {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: #10B981;
  color: #fff;
  font-weight: 700;
  font-size: var(--text-base);
  letter-spacing: 0.3px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(16, 185, 129, 0.38);
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
  animation: pulseRing 2.8s ease-in-out infinite;
  animation-delay: 1.2s;
  position: relative;
}

.btn-guest:hover {
  background: #0ea472;
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(16, 185, 129, 0.48);
  animation-play-state: paused;
}

.btn-guest:active {
  transform: translateY(0);
  box-shadow: 0 3px 12px rgba(16, 185, 129, 0.3);
}

.btn-guest-icon {
  flex-shrink: 0;
  stroke: #fff;
}


.hero-users {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 32px;
  opacity: 0;
  animation: fadeInUp 0.65s ease forwards;
  animation-delay: 0.75s;
}

.avatar-stack {
  display: flex;
  animation: floatAvatars 3.2s ease-in-out infinite;
  animation-delay: 1.2s;
}

.avatar-stack .avatar:first-child {
  animation: pulseRing 2.4s ease-in-out infinite;
  animation-delay: 1.5s;
}

.avatar {
  width: 48px;
  height: 48px;
  border-radius: 9999px;
  border: 4px solid #D1E7DD;
  margin-right: -16px;
  object-fit: cover;
  background: #ccc;
}

.hero-stat {
  font-weight: 700;
  font-size: var(--text-4xl);
  color: #10B981;
  line-height: 1.1;
}

.hero-stat-label {
  font-weight: 500;
  font-size: var(--text-xs);
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: #3C4A42;
}

/* hero right visual with floating elements */
.hero-visual {
  position: relative;
  width: 523px;
  height: 608px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  animation: fadeInRight 0.8s ease forwards;
  animation-delay: 0.3s;
}

.floating-badge {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.floating-badge:hover {
  transform: scale(1.1);
}

.floating-badge svg {
  stroke: #fff;
}

.badge-lightning svg,
.badge-leaf svg {
  fill: #fff;
}

.badge-lightning {
  top: 70px;
  left: 20px;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #FBBF24, #D97706);
  border-radius: 18px;
  color: #fff;
  z-index: 10; /* Fully overlaps on top of card */
  box-shadow: 0 8px 24px rgba(217, 119, 6, 0.38);
  animation: floatBadge1 3.2s ease-in-out infinite;
}

.badge-leaf {
  bottom: 120px;
  left: 10px;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #34D399, #059669);
  border-radius: 50%;
  color: #fff;
  z-index: 4; /* Tucked half under the card */
  box-shadow: -4px 8px 20px rgba(5, 150, 105, 0.28);
  animation: floatBadge2 3.8s ease-in-out infinite;
  animation-delay: 0.6s;
}

.badge-plug {
  top: 190px;
  right: 15px;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #065F46, #022C22);
  border-radius: 18px;
  color: #fff;
  z-index: 4; /* Tucked half under the card */
  box-shadow: 4px 8px 20px rgba(2, 44, 34, 0.35);
  animation: floatBadge3 4.2s ease-in-out infinite;
  animation-delay: 1.1s;
}

.floating-circle {
  position: absolute;
  border-radius: 50%;
  z-index: 1;
}

.circle-gray {
  top: -10px;
  right: 80px;
  width: 32px;
  height: 32px;
  background: #CBD5E1;
  animation: floatCircle 5s ease-in-out infinite;
  animation-delay: 0.8s;
}

.floating-box {
  position: absolute;
  border-radius: 12px;
  z-index: 1;
}

.box-green {
  bottom: 20px;
  right: 60px;
  width: 40px;
  height: 40px;
  border: 3px solid #A7F3D0;
  animation: floatBox 4.5s ease-in-out infinite;
  animation-delay: 1.4s;
}

.hero-card {
  background: #fff;
  border-radius: 60px;
  padding: 16px;
  box-shadow: 0px 0px 25px rgba(16, 185, 129, 0.3);
  width: 448px;
  height: 448px;
  position: relative;
  z-index: 5;
  animation: floatBobSlow 4s ease-in-out infinite;
  transition: box-shadow 0.3s ease;
  overflow: hidden;
}

.hero-card:hover {
  box-shadow: 0 0 48px rgba(16, 185, 129, 0.45);
}

.hero-carousel-track {
  width: 100%;
  height: 100%;
  position: relative;
  border-radius: 50px;
  overflow: hidden;
}

.hero-card-inner {
  width: 100%;
  height: 100%;
  border-radius: 50px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
  z-index: 2;
}

.hero-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
  display: flex;
  flex-direction: column;
  color: #fff;
}

.hero-card-label {
  font-weight: 700;
  font-size: var(--text-sm);
  letter-spacing: 1.4px;
  text-transform: uppercase;
  opacity: 0.8;
}

.hero-card-name {
  font-weight: 700;
  font-size: var(--text-2xl);
}

/* Hero carousel dots — positioned at the bottom center of the card */
.hero-carousel-dots {
  display: flex;
  gap: 8px;
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.hero-dot.active {
  background: #10B981;
  transform: scale(1.25);
}

.hero-dot:hover:not(.active) {
  background: rgba(255, 255, 255, 0.7);
}

/* ============================================
   HERO BANNER 2 — MARKETPLACE VEHICLE GRID
   ============================================ */

.hero-visual--marketplace {
  /* Same base as .hero-visual but no extra overrides needed */
}

.hero-marketplace-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
  width: 420px;
  height: 420px;
  position: relative;
  z-index: 5;
}

.hero-mp-card {
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.hero-mp-card:hover {
  transform: translateY(-4px) scale(1.02) !important;
  box-shadow: 0 12px 36px rgba(16, 185, 129, 0.18);
}

.hero-mp-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Top-left card — tilted left */
.hero-mp-card--tl {
  grid-column: 1;
  grid-row: 1;
  transform: rotate(-2deg);
}

/* Top-right card — tilted right */
.hero-mp-card--tr {
  grid-column: 2;
  grid-row: 1;
  transform: rotate(2.5deg);
}

/* Bottom card — spans full width */
.hero-mp-card--bottom {
  grid-column: 1 / -1;
  grid-row: 2;
  transform: rotate(0.5deg);
}

/* Category pill label */
.hero-mp-label {
  position: absolute;
  bottom: 10px;
  left: 12px;
  font-size: var(--text-sm);
  font-weight: 700;
  color: #1a1a1a;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(6px);
  padding: 4px 14px;
  border-radius: 20px;
  letter-spacing: 0.4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* Lightning badge icon */
.hero-mp-badge-icon {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, #34d399, #10b981);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 10px rgba(16, 185, 129, 0.35);
}

/* E-MASTER tag */
.hero-mp-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: var(--text-3xs);
  font-weight: 800;
  letter-spacing: 1.2px;
  color: #065f46;
  background: rgba(167, 243, 208, 0.85);
  backdrop-filter: blur(4px);
  padding: 3px 9px;
  border-radius: 6px;
  text-transform: uppercase;
}


/* ============================================
   TABS / VEHICLE CAROUSEL
   ============================================ */

.tabs-section {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: var(--section-y-half) var(--section-x);
  gap: 0;
  position: relative;
  width: 100%;
  /* max-width: 1280px; */
  margin: 0 auto;
  border-top: 1px solid var(--border-subtle);
}

.tabs-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(108, 122, 113, 0.12);
  padding-bottom: 0;
  width: 100%;
  flex-wrap: wrap;
}

.tab-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 12px 20px 14px;
  border: none;
  border-bottom: 3px solid transparent;
  background: transparent;
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 700;
  font-size: var(--text-base);
  color: #6C7A71;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
  white-space: nowrap;
  position: relative;
  top: 1px;
}

.tab-icon {
  flex-shrink: 0;
  transition: stroke 0.2s;
}

.tab-item:hover {
  color: #10B981;
}

.tab-item.active {
  border-bottom-color: #10B981;
  color: #10B981;
}

/* Tab panel shown/hidden */
.tab-panel {
  display: none;
  width: 100%;
  margin-top: 24px;
  animation: fadeInUp 0.3s ease;
}

/* View All row just above the cards */
.tabs-viewall-row {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  margin-top: 20px;
}

.tab-panel.active {
  display: block;
}

/* Carousel wrapper */
.tab-carousel-wrapper {
  width: 100%;
  position: relative;
}

.tab-carousel-viewport {
  width: 100%;
  overflow: hidden;
  border-radius: 0 0 16px 16px;
}

.tab-carousel-track {
  display: flex;
  gap: 24px;
  transition: transform 0.45s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

/* Controls row */
.tab-carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 20px;
}

.tc-prev,
.tc-next {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid rgba(108, 122, 113, 0.25);
  background: #fff;
  color: #3C4A42;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.15s;
  flex-shrink: 0;
}

.tc-prev:hover,
.tc-next:hover {
  background: #10B981;
  border-color: #10B981;
  color: #fff;
  transform: scale(1.08);
}

.tc-dots {
  display: flex;
  gap: 7px;
  align-items: center;
}

.tc-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(108, 122, 113, 0.25);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  border: none;
}

.tc-dot.active {
  background: #10B981;
  transform: scale(1.3);
}

/* Vehicle card — same as before but now used inside carousel */
.vehicle-card {
  background: #fff;
  border-radius: 24px;
  border: 1px solid rgba(108, 122, 113, 0.07);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  transition: transform 0.22s, box-shadow 0.22s;
  flex-shrink: 0;
  text-decoration: none;
  color: inherit;
  display: block;
  /* width is set by JS based on visible count */
}

.vehicle-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.1);
}

.vehicle-img {
  height: 220px;
  background: #e5e9f0;
  position: relative;
}

.vehicle-badge {
  position: absolute;
  right: 14px;
  top: 14px;
  background: #10B981;
  color: #fff;
  padding: 3px 10px;
  border-radius: 9999px;
  font-weight: 700;
  font-size: var(--text-3xs);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.vehicle-body {
  padding: 20px;
}

.vehicle-name {
  font-weight: 700;
  font-size: var(--text-lg);
  color: #191C1D;
}

.vehicle-desc {
  font-size: var(--text-sm);
  color: #6C7A71;
  margin: 4px 0 12px;
  line-height: 1.5;
}

.vehicle-body {
  padding: 20px;
  display: block;
}

.vehicle-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(108, 122, 113, 0.1);
  padding-top: 14px;
}

.vehicle-price {
  font-weight: 700;
  font-size: var(--text-base);
  color: #10B981;
}

.vehicle-link {
  font-weight: 700;
  font-size: var(--text-sm);
  color: #10B981;
  text-decoration: none;
  transition: opacity 0.18s;
}

.vehicle-link:hover,
.vehicle-card:hover .vehicle-link {
  opacity: 0.7;
}

/* brand carousel */
.brands {
  width: 100%;
  background: #fff;
  padding: var(--section-y-half) var(--section-x);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  text-align: center;
}

.brands-label {
  font-weight: 700;
  font-size: var(--text-xs);
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: #3C4A42;
}

.brand-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 64px;
  margin-top: 28px;
  flex-wrap: wrap;
}

@keyframes colorPulse {
  0%, 100% {
    filter: grayscale(100%);
    opacity: 0.45;
  }
  40%, 60% {
    filter: grayscale(0%);
    opacity: 1;
  }
}

.brand-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: colorPulse 6s ease-in-out infinite;
  transition: filter 0.3s, opacity 0.3s, transform 0.3s;
}

/* Stagger each logo so they light up one by one */
.brand-logo-item:nth-child(1) { animation-delay: 0s; }
.brand-logo-item:nth-child(2) { animation-delay: 1.2s; }
.brand-logo-item:nth-child(3) { animation-delay: 2.4s; }
.brand-logo-item:nth-child(4) { animation-delay: 3.6s; }
.brand-logo-item:nth-child(5) { animation-delay: 4.8s; }

/* Hover overrides — instantly full colour + subtle lift */
.brand-logo-item:hover {
  filter: grayscale(0%) !important;
  opacity: 1 !important;
  transform: translateY(-3px) scale(1.08);
  animation-play-state: paused;
}

.brand-logo-item img {
  height: 38px;
  width: auto;
  max-width: 130px;
  object-fit: contain;
  display: block;
}

/* featured section */
.featured {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: var(--section-y-half) var(--section-x);
  width: 100%;
  background: #F3F4F5;
  border-top: 1px solid var(--border-subtle);
}

.nav-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(65, 102, 86, 0.2);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #191C1D;
  font-size: var(--text-base);
  transition: all 0.2s;
}

.nav-arrow:hover {
  background: #10B981;
  color: #fff;
  border-color: #10B981;
}

.carousel-viewport {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 4px 0;
}

.carousel-track {
  display: flex;
  gap: 24px;
  width: max-content;
  transition: transform 0.45s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

/* Set explicit widths for cards inside tracks so they flow horizontally */
.featured-track .feature-item,
.latest-track .feature-item {
  width: 282px;
  flex-shrink: 0;
}

.acc-track .acc-card {
  width: 282px;
  flex-shrink: 0;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  width: 100%;
}

.feature-item {
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(108, 122, 113, 0.08);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.feature-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.09);
}

.feature-img {
  height: 220px;
  background: #dce1e8;
  background-size: cover;
  background-position: center;
  position: relative;
  flex-shrink: 0;
}

.feature-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: #10B981;
  color: #fff;
  padding: 4px 12px;
  border-radius: 9999px;
  font-size: var(--text-3xs);
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.feature-body {
  padding: 20px 20px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0;
}

.feature-row {
  display: flex;
  justify-content: flex-start;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 14px;
}

.feature-name {
  font-family: 'Sora', sans-serif;
  font-size: var(--text-lg);
  font-weight: 700;
  color: #191C1D;
}

.feature-price {
  font-weight: 700;
  font-size: var(--text-base);
  color: #10B981;
  white-space: nowrap;
}

.feature-specs {
  display: flex;
  gap: 0;
  margin-bottom: 20px;
}

.feature-spec-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  border-right: 1px solid rgba(108, 122, 113, 0.1);
  padding: 0 8px;
}

.feature-spec-col:first-child {
  padding-left: 0;
}

.feature-spec-col:last-child {
  border-right: none;
  padding-right: 0;
}

.spec-label {
  font-size: var(--text-3xs);
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #9CA3AF;
}

.spec-value {
  font-size: var(--text-sm);
  font-weight: 700;
  color: #191C1D;
}

.btn-config {
  display: block;
  width: 100%;
  padding: 12px;
  border: 1px solid rgba(16, 185, 129, 0.4);
  border-radius: 12px;
  background: transparent;
  font-weight: 600;
  color: #10B981;
  font-size: var(--text-sm);
  letter-spacing: 0.3px;
  text-align: center;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  margin-top: auto;
  text-decoration: none;
}

.btn-config:hover,
.feature-item:hover .btn-config {
  background: #10B981;
  color: #fff;
}

/* latest section */
.latest {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: var(--section-y-half) var(--section-x);
  width: 100%;
  background: #FFFFFF;
  border-top: 1px solid var(--border-subtle);
}

.text-green {
  color: #10B981;
  font-weight: 700;
  font-size: var(--text-base);
  text-decoration: none;
  white-space: nowrap;
  align-self: center;
  transition: opacity 0.2s;
}

.text-green:hover {
  opacity: 0.75;
}

.accessories {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: var(--section-y-half) var(--section-x);
  width: 100%;
  background: #FFFFFF;
  border-top: 1px solid var(--border-subtle);
}

.acc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  width: 100%;
}

.acc-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(108, 122, 113, 0.08);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.acc-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.09);
}

.acc-img {
  height: 220px;
  background: #E8EAE9;
  background-size: cover;
  background-position: center;
  border-radius: 12px 12px 0 0;
  flex-shrink: 0;
}

.acc-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 6px;
}

.acc-name {
  font-family: 'Sora', sans-serif;
  font-size: var(--text-base);
  font-weight: 700;
  color: #191C1D;
}

.acc-desc {
  font-size: var(--text-sm);
  color: #6B7280;
  line-height: 1.5;
  flex: 1;
}

.acc-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
}

.acc-price {
  font-size: var(--text-xl);
  font-weight: 700;
  color: #10B981;
}

.btn-cart {
  width: 40px;
  height: 40px;
  background: #10B981;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #fff;
  font-size: var(--text-base);
  transition: background 0.2s, transform 0.1s;
  flex-shrink: 0;
}

.btn-cart:hover {
  background: #059669;
  transform: translateY(-1px);
}

/* fleet partner */
.fleet {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  isolation: isolate;
  width: calc(100% - (var(--section-x) * 2));
  min-height: 340px;
  margin: var(--section-y-half) auto;
  background: #10B981;
  border-radius: 32px;
  overflow: hidden;
  position: relative;
}

.fleet-inner {
  display: flex;
  width: 100%;
  min-height: 340px;
}

.fleet-content {
  flex: 0 0 52%;
  padding: 48px 56px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  color: #fff;
  position: relative;
  z-index: 2;
}

.fleet-content h2 {
  font-family: 'Sora', sans-serif;
  font-size: var(--text-3xl);
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 12px;
  color: #fff;
}

.fleet-content p {
  font-size: var(--text-sm);
  line-height: 1.65;
  opacity: 0.85;
  margin: 0 0 18px;
  max-width: 380px;
}

.fleet-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.fleet-list-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: var(--text-sm);
  color: #fff;
  opacity: 0.95;
}

.fleet-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
  font-size: var(--text-xs);
}

.fleet-btn {
  background: #fff;
  color: #10B981;
  padding: 12px 28px;
  border-radius: 12px;
  font-weight: 700;
  font-size: var(--text-sm);
  display: inline-block;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.fleet-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.fleet-image {
  flex: 0 0 48%;
  display: flex;
  align-items: stretch;
  justify-content: center;
  padding: 20px 24px 20px 12px;
  position: relative;
  align-self: stretch;
}

.fleet-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 20px;
  display: block;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.22);
}

.fleet-img-overlay {
  display: none;
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.hiw-section {
  width: 100%;
  background: #fff;
  padding: var(--section-y-half) var(--section-x);
  border-top: 1px solid var(--border-subtle);
}

.hiw-header {
  text-align: center;
  margin-bottom: 40px;
}

.hiw-badge {
  font-weight: 700;
  font-size: var(--text-sm);
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: #10B981;
  margin-bottom: 12px;
}

.hiw-title {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: var(--text-6xl);
  color: #191C1D;
  line-height: 1.2;
  letter-spacing: -0.8px;
  margin: 0 0 12px;
}

.hiw-sub {
  font-size: var(--text-base);
  color: #3C4A42;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* wrapper holds both the wave SVG and the steps grid */
.hiw-wrapper {
  position: relative;
}

/* wavy dashed connector line */
.hiw-wave-line {
  position: absolute;
  top: 48px; /* aligns with the centre of the icon circles */
  left: 0;
  right: 0;
  height: 80px;
  pointer-events: none;
  z-index: 0;
}

.hiw-wave-line svg {
  width: 100%;
  height: 100%;
}

/* step cards row */
.hiw-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
  z-index: 1;
}

/* individual step */
.hiw-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  opacity: 0;
  animation: fadeInUp 0.65s ease forwards;
}

.hiw-step--1 { animation-delay: 0.1s; }
.hiw-step--2 { animation-delay: 0.28s; }
.hiw-step--3 { animation-delay: 0.46s; }
.hiw-step--4 { animation-delay: 0.64s; }

/* icon circle wrapper — floats on a wave */
.hiw-icon-wrap {
  position: relative;
  width: 96px;
  height: 96px;
  background: linear-gradient(135deg, #D1FAE5 0%, #A7F3D0 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  box-shadow: 0 4px 20px rgba(16, 185, 129, 0.18);
  transition: box-shadow 0.3s;
}

/* staggered wave float per step */
.hiw-step--1 .hiw-icon-wrap { animation: waveFloat 3s ease-in-out infinite; animation-delay: 0s; }
.hiw-step--2 .hiw-icon-wrap { animation: waveFloat 3s ease-in-out infinite; animation-delay: 0.4s; }
.hiw-step--3 .hiw-icon-wrap { animation: waveFloat 3s ease-in-out infinite; animation-delay: 0.8s; }
.hiw-step--4 .hiw-icon-wrap { animation: waveFloat 3s ease-in-out infinite; animation-delay: 1.2s; }

.hiw-step:hover .hiw-icon-wrap {
  box-shadow: 0 10px 36px rgba(16, 185, 129, 0.32);
}

@keyframes waveFloat {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-12px); }
}

.hiw-icon {
  font-size: var(--text-5xl);
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* step number badge */
.hiw-step-num {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 26px;
  height: 26px;
  background: #10B981;
  color: #fff;
  border-radius: 50%;
  font-size: var(--text-sm);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.4);
}

.hiw-step-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hiw-step-title {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: var(--text-lg);
  color: #191C1D;
}

.hiw-step-desc {
  font-size: var(--text-sm);
  color: #3C4A42;
  line-height: 1.65;
  max-width: 200px;
  margin: 0 auto;
}

/* testimonials */

.testimonials {
  width: 100%;
  background: #F8F9FA;
  padding: var(--section-y-half) var(--section-x);
  border-top: 1px solid var(--border-subtle);
}

/* testimonial carousel */
.testimonial-carousel-wrap {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding-bottom: 24px;
  /* Fade edges */
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
}
.testimonial-track {
  display: flex;
  gap: 28px;
  width: max-content;
  cursor: grab;
  user-select: none;
  padding-bottom: 12px;
}

.testimonial-card {
  background: #fff;
  border-radius: 32px;
  padding: 32px;
  border: 1px solid rgba(108, 122, 113, 0.05);
  width: 380px;
  flex-shrink: 0;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  transition: transform 0.2s, box-shadow 0.2s;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.09);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.testimonial-avatar {
  width: 64px;
  height: 64px;
  border-radius: 9999px;
  background: #ccc;
}

.testimonial-name {
  font-weight: 700;
  font-size: var(--text-lg);
}

.testimonial-stars {
  color: #FACC15;
}

.testimonial-quote {
  font-style: italic;
  font-size: var(--text-base);
  line-height: 26px;
  color: #3C4A42;
}

/* app download */
.app-section {
  width: 100%;
  background: #fff;
  padding: var(--section-y-half) var(--section-x);
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  gap: 48px;
  border-top: 1px solid var(--border-subtle);
}

.app-content {
  max-width: 480px;
}

.app-badge {
  background: rgba(16, 185, 129, 0.1);
  padding: 6px 14px;
  border-radius: 9999px;
  font-weight: 700;
  font-size: var(--text-2xs);
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: #10B981;
  display: inline-block;
}

.app-title {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: var(--text-5xl);
  line-height: 1.2;
  letter-spacing: -0.6px;
  color: #191C1D;
  margin: 12px 0 10px;
}

.app-desc {
  font-size: var(--text-base);
  line-height: 1.7;
  color: #3C4A42;
}

.app-buttons {
  display: flex;
  gap: 14px;
  margin-top: 24px;
}

.app-store-btn {
  background: #191C1D;
  color: #fff;
  padding: 11px 22px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
  text-decoration: none;
}

.app-store-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.app-mockup {
  position: relative;
  width: 200px;
  height: 420px;
  flex-shrink: 0;
  background: #1a1a1a;
  border-radius: 42px;
  /* box-shadow:
    0 0 0 2px #3a3a3a,
    0 0 0 8px #1a1a1a,
    0 0 0 10px #333,
    0 24px 60px rgba(0,0,0,0.3),
    0 6px 20px rgba(16,185,129,0.12); */
  /* padding: 12px; */
  overflow: visible;
  animation: floatBobSlow 4s ease-in-out infinite;
  margin-right: 60px;
}

/* Volume buttons (left side) */
/* .app-mockup::before {
  content: '';
  position: absolute;
  left: -10px;
  top: 90px;
  width: 3px;
  height: 28px;
  background: #2a2a2a;
  border-radius: 2px 0 0 2px;
  box-shadow: 0 36px 0 #2a2a2a;
} */

/* Power button (right side) */
/* .app-mockup::after {
  content: '';
  position: absolute;
  right: -10px;
  top: 110px;
  width: 3px;
  height: 48px;
  background: #2a2a2a;
  border-radius: 0 2px 2px 0;
} */

.app-mockup-inner {
  background: #fff;
  width: 100%;
  height: 100%;
  border-radius: 32px;
  overflow: hidden;
  position: relative;
}


/* driver recruitment */
.driver-section {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: var(--section-y-half) var(--section-x);
  width: 100%;
  min-height: auto;
  background: #2E3132;
  color: #fff;
  gap: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.driver-content {
  max-width: 480px;
}

.driver-badge {
  font-weight: 700;
  font-size: var(--text-xs);
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: #10B981;
  margin-bottom: 12px;
}

.driver-title {
  font-family: 'Sora', sans-serif;
  font-size: var(--text-4xl);
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 12px;
  color: #fff;
}

.driver-desc {
  font-size: var(--text-sm);
  line-height: 1.65;
  opacity: 0.85;
  margin-bottom: 20px;
}

.driver-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.driver-list-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: var(--text-sm);
  color: #fff;
}

.driver-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid #10B981;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #10B981;
  font-size: var(--text-xs);
}

.driver-btn {
  background: #10B981;
  color: #fff;
  padding: 12px 28px;
  border-radius: 12px;
  font-weight: 700;
  font-size: var(--text-sm);
  display: inline-block;
  text-decoration: none;
  transition: transform 0.2s, background-color 0.2s;
}

.driver-btn:hover {
  background: #059669;
  transform: translateY(-2px);
}

.driver-images {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.driver-img-box {
  width: 200px;
  height: 200px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.22);
}

.driver-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.driver-img-box.offset {
  margin-top: 24px;
}


/* join section (driver + fleet partner) */
.join-section {
  box-sizing: border-box;
  padding: var(--section-y-half) var(--section-x);
  width: 100%;
  background: #fff;
  border-top: 1px solid var(--border-subtle);
}

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

.join-card {
  border-radius: 20px;
  padding: 36px;
  display: flex;
  flex-direction: column;
}

.join-card--driver {
  background: #2E3132;
  color: #fff;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.16);
}

.join-card--partner {
  background: #F4FBF7;
  color: #191C1D;
  border: 1px solid rgba(16, 185, 129, 0.14);
  box-shadow: 0 8px 28px rgba(16, 185, 129, 0.08);
}

.join-badge {
  font-weight: 700;
  font-size: var(--text-xs);
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: #10B981;
  margin-bottom: 12px;
}

.join-title {
  font-family: 'Sora', sans-serif;
  font-size: var(--text-3xl);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.4px;
  margin: 0 0 14px;
  color: inherit;
}

.join-title-green {
  color: #10B981;
}

.join-desc {
  font-size: var(--text-base);
  line-height: 1.65;
  margin-bottom: 24px;
}

.join-card--driver .join-desc {
  opacity: 0.85;
}

.join-card--partner .join-desc {
  color: #3C4A42;
}

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

.join-list-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: var(--text-sm);
  font-weight: 500;
  line-height: 1.5;
}

.join-card--driver .join-list-item {
  color: #fff;
}

.join-card--partner .join-list-item {
  color: #3C4A42;
}

.join-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.14);
  color: #10B981;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.join-btn {
  margin-top: auto;
  align-self: flex-start;
  background: #10B981;
  color: #fff;
  padding: 13px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: var(--text-sm);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(16, 185, 129, 0.25);
  transition: transform 0.2s, background-color 0.2s, box-shadow 0.2s;
}

.join-btn:hover {
  background: #059669;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(16, 185, 129, 0.35);
}

.join-btn svg {
  transition: transform 0.2s;
}

.join-btn:hover svg {
  transform: translateX(3px);
}

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

@media (max-width: 640px) {
  .join-section {
    padding: var(--section-y-half) var(--section-x);
  }

  .join-card {
    padding: 28px 20px;
  }

  .join-title {
    font-size: var(--text-2xl);
  }
}

/* fleet partner section */
.fleet-partner-section {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: var(--section-y-half) var(--section-x);
  width: 100%;
  min-height: auto;
  background: #F4FBF7;
  border-top: 1px solid rgba(16, 185, 129, 0.08);
  border-bottom: 1px solid rgba(16, 185, 129, 0.08);
  gap: 60px;
  position: relative;
  overflow: hidden;
}

/* Ambient background decorations for Fleet Partner */
.fp-bg-circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  opacity: 0.55;
  pointer-events: none;
}

.fp-bg-circle-1 {
  width: 320px;
  height: 320px;
  background: rgba(16, 185, 129, 0.12);
  top: -100px;
  right: -50px;
}

.fp-bg-circle-2 {
  width: 260px;
  height: 260px;
  background: rgba(78, 222, 163, 0.15);
  bottom: -80px;
  left: -40px;
}

.fp-content {
  max-width: 520px;
  position: relative;
  z-index: 2;
}

.fp-badge {
  font-weight: 700;
  font-size: var(--text-xs);
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: #10B981;
  margin-bottom: 12px;
}

.fp-title {
  font-family: 'Sora', sans-serif;
  font-size: var(--text-5xl);
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 16px;
  color: #191C1D;
  letter-spacing: -0.8px;
}

.fp-title-green {
  color: #10B981;
}

.fp-desc {
  font-size: var(--text-base);
  line-height: 1.65;
  color: #3C4A42;
  margin-bottom: 24px;
}

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

.fp-list-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: var(--text-base);
  color: #3C4A42;
  font-weight: 500;
}

.fp-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #10B981;
}

.fp-cta {
  background: #10B981;
  color: #fff;
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 700;
  font-size: var(--text-sm);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(16, 185, 129, 0.25);
  transition: transform 0.2s, background-color 0.2s, box-shadow 0.2s;
}

.fp-cta:hover {
  background: #0ea472;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(16, 185, 129, 0.35);
}

.fp-cta svg {
  transition: transform 0.2s;
}

.fp-cta:hover svg {
  transform: translateX(3px);
}

.fp-visual {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
}

.fp-img-frame {
  position: relative;
  width: 100%;
  max-width: 480px;
  border-radius: 24px;
  overflow: visible; /* to allow badge to peak out */
  box-shadow: 0 12px 32px rgba(16, 185, 129, 0.12);
  animation: floatBobSlow 4.5s ease-in-out infinite;
}

.fp-img {
  width: 100%;
  height: auto;
  border-radius: 24px;
  display: block;
  object-fit: cover;
  border: 1px solid rgba(16, 185, 129, 0.1);
}

.fp-img-badge {
  position: absolute;
  bottom: -20px;
  left: 30px;
  background: #fff;
  padding: 12px 20px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(108, 122, 113, 0.08);
  color: #191C1D;
  z-index: 5;
  animation: floatBadge1 3.5s ease-in-out infinite;
  animation-delay: 0.5s;
}

.fp-img-badge svg {
  color: #10B981;
  flex-shrink: 0;
}

.fp-badge-num {
  font-weight: 800;
  font-size: var(--text-base);
  line-height: 1.1;
  color: #10B981;
}

.fp-badge-label {
  font-size: var(--text-2xs);
  font-weight: 600;
  color: #6C7A71;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* how it works */
.how-it-works {
  width: 100%;
  padding: 96px 40px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  text-align: center;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  top: 48px;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(16, 185, 129, 0.1);
}

.step {
  position: relative;
}

.step-icon {
  width: 96px;
  height: 96px;
  background: #10B981;
  border-radius: 9999px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: var(--text-4xl);
  position: relative;
}

.step-number {
  position: absolute;
  top: -8px;
  right: -8px;
  background: #2B6954;
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 9999px;
  border: 2px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: var(--text-sm);
}

.step-title {
  font-weight: 700;
  font-size: var(--text-xl);
  margin-top: 8px;
}

.step-desc {
  font-size: var(--text-sm);
  line-height: 20px;
  color: #3C4A42;
  max-width: 226px;
  margin: 8px auto 0;
}

/* faq + mission */
.faq-mission {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  padding: 0;
  gap: 48px;
  width: calc(100% - (var(--section-x) * 2));
  margin: var(--section-y-half) auto;
  min-height: auto;
}

.faq {
  flex: 1;
}

.faq-title, .mission-title {
  font-family: 'Sora', sans-serif;
  font-size: var(--text-4xl);
  font-weight: 700;
  color: #191C1D;
  margin: 0 0 32px 0;
}

.faq-item {
  background: #FFFFFF;
  border: 1px solid rgba(108,122,113,0.1);
  border-radius: 16px;
  margin-bottom: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.02);
  transition: border-color 0.25s, box-shadow 0.25s;
  overflow: hidden;
}

.faq-item:hover {
  border-color: rgba(16,185,129,0.3);
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}

.faq-item.open {
  border-color: rgba(16,185,129,0.35);
  box-shadow: 0 6px 24px rgba(16,185,129,0.08);
}

/* trigger button — resets all button defaults */
.faq-trigger {
  width: 100%;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 24px;
  text-align: left;
  gap: 16px;
}

.faq-question {
  font-size: var(--text-base);
  font-weight: 700;
  color: #191C1D;
  flex: 1;
}

.faq-icon {
  color: #10B981;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

/* rotate chevron when open */
.faq-item.open .faq-icon {
  transform: rotate(180deg);
}

/* collapsible answer panel */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 24px;
}

.faq-item.open .faq-answer {
  padding-bottom: 20px;
}

.faq-answer p {
  font-size: var(--text-sm);
  line-height: 1.75;
  color: #3C4A42;
  margin-bottom: 12px;
}

.faq-answer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-answer ul li {
  font-size: var(--text-sm);
  color: #3C4A42;
  line-height: 1.6;
  padding: 8px 14px;
  background: #F6FDF9;
  border-radius: 10px;
  border-left: 3px solid #10B981;
}

.mission {
  flex: 1;
}

.mission-text {
  font-size: var(--text-base);
  line-height: 1.7;
  color: #4B5563;
  margin-bottom: 32px;
}

.mission-box {
  background: #F6FDF9;
  border: 1px solid rgba(16, 185, 129, 0.15);
  border-radius: 24px;
  padding: 24px 32px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.mission-circle {
  width: 56px;
  height: 56px;
  background: #10B981;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: var(--text-2xl);
  flex-shrink: 0;
}

.mission-stats {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mission-num {
  font-family: 'Sora', sans-serif;
  font-size: var(--text-3xl);
  font-weight: 700;
  color: #10B981;
  line-height: 1.2;
}

.mission-label {
  font-size: var(--text-sm);
  color: #4B5563;
}

/* footer */
.footer {
  width: 100%;
  background: #EDEEEF;
  padding: 80px 40px;
  border-top: 1px solid rgba(108, 122, 113, 0.1);
}

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

.footer-col h4 {
  font-weight: 700;
  color: #10B981;
  margin-bottom: 16px;
}

.footer-col p {
  color: #3C4A42;
  margin-bottom: 8px;
  font-size: var(--text-sm);
}

.footer-newsletter {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.footer-newsletter input {
  flex: 1;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid rgba(108, 122, 113, 0.1);
  background: #fff;
}

.footer-newsletter button {
  background: #10B981;
  color: #fff;
  border: none;
  padding: 12px 24px;
  border-radius: 12px;
  font-weight: 700;
}

.footer-bottom {
  border-top: 1px solid rgba(108, 122, 113, 0.1);
  padding-top: 32px;
  margin-top: 48px;
  display: flex;
  justify-content: space-between;
  font-size: var(--text-xs);
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #3C4A42;
}

/* misc */
.inline-icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: #4EDEA3;
  border-radius: 4px;
}

/* ── Floating Action Buttons (Chatbot, WhatsApp & Scroll to Top) ── */
.chatbot-btn,
.whatsapp-btn,
.scroll-to-top-btn {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
  z-index: 1000;
  transition: transform 0.25s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.25s ease, opacity 0.25s ease, background-color 0.2s;
}

/* Chatbot toggle button (Bottom) */
.chatbot-btn {
  bottom: 24px;
  right: 28px;
  width: 40px;
  height: 40px;
  background: #10B981;
  color: #fff;
  border: none;
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.35);
}

.chatbot-btn:hover {
  background: #0ea472;
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.45);
}

/* WhatsApp button (Middle) */
.whatsapp-btn {
  bottom: 74px;
  right: 28px;
  width: 40px;
  height: 40px;
  background: #25D366;
  color: #fff;
  border: none;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
  animation: floatBobSlow 3.8s ease-in-out infinite;
}

.whatsapp-btn:hover {
  background: #20ba59;
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  animation-play-state: paused;
}

/* Scroll to Top button (Top) */
.scroll-to-top-btn {
  bottom: 124px;
  right: 32px; /* slightly shifted for center alignment */
  width: 32px;
  height: 32px;
  background: #fff;
  border: 1.5px solid rgba(16, 185, 129, 0.25);
  color: #10B981;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
}

.scroll-to-top-btn.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.scroll-to-top-btn:hover {
  background: #10B981;
  border-color: #10B981;
  color: #fff;
  transform: translateY(-2px) scale(1.06);
  box-shadow: 0 6px 14px rgba(16, 185, 129, 0.25);
}

/* ── Interactive Chatbot Box Widget ── */
.chatbot-box {
  position: fixed;
  bottom: 76px;
  right: 28px;
  width: 300px;
  height: 380px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(108, 122, 113, 0.08);
  display: flex;
  flex-direction: column;
  z-index: 1001;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px) scale(0.95);
  transition: opacity 0.3s cubic-bezier(0.25, 1, 0.5, 1), transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.chatbot-box.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.chatbot-header {
  background: #10B981;
  color: #fff;
  padding: 14px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cb-title-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cb-status-dot {
  width: 8px;
  height: 8px;
  background: #4EDEA3;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 8px #4EDEA3;
}

.cb-title {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: var(--text-sm);
}

.cb-close-btn {
  background: none;
  border: none;
  color: #fff;
  font-size: var(--text-xl);
  cursor: pointer;
  line-height: 1;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.cb-close-btn:hover {
  opacity: 1;
}

.chatbot-body {
  flex: 1;
  padding: 16px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #F8F9FA;
  scrollbar-width: thin;
}

.cb-msg {
  max-width: 80%;
  padding: 10px 14px;
  border-radius: 14px;
  font-size: var(--text-sm);
  line-height: 1.5;
}

.bot-msg {
  background: #fff;
  color: #191C1D;
  align-self: flex-start;
  border-bottom-left-radius: 4px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(108, 122, 113, 0.05);
}

.user-msg {
  background: #10B981;
  color: #fff;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
  box-shadow: 0 2px 6px rgba(16, 185, 129, 0.15);
}

.chatbot-footer {
  padding: 12px;
  background: #fff;
  border-top: 1px solid rgba(108, 122, 113, 0.08);
}

.cb-quick-replies {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cb-reply-btn {
  background: #F4FBF7;
  color: #10B981;
  border: 1px solid rgba(16, 185, 129, 0.15);
  padding: 8px 12px;
  border-radius: 12px;
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: var(--text-xs);
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s;
}

.cb-reply-btn:hover:not(:disabled) {
  background: #10B981;
  color: #fff;
}

.cb-reply-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}



/* ── Footer Enhancements ── */
.footer-col a {
  transition: color 0.2s;
}

.footer-col a:hover {
  color: #10B981 !important;
}

.footer-newsletter input:focus {
  outline: none;
  border-color: #10B981;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.12);
}

.footer-newsletter button {
  cursor: pointer;
  transition: background-color 0.2s, transform 0.15s;
}

.footer-newsletter button:hover {
  background: #0ea472;
  transform: scale(1.04);
}


/* RESPONSIVE DESIGN - MEDIA QUERIES */
@media (max-width: 1024px) {
  .frame {
    --section-x: 20px;
    --section-y: 48px;
    --section-y-half: 24px;
    --section-header-gap: 24px;
    --content-gap: 16px;
  }

  .header {
    position: relative;
    height: auto;
    width: 100%;
    padding: 20px 20px;
    z-index: 1000;
  }

  .nav {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    position: relative;
  }

  .nav-mobile-toggle {
    display: flex;
  }

  .nav-menu-wrapper {
    display: none;
    position: absolute;
    top: 100%;
    left: -20px;
    right: -20px;
    background: #fff;
    border-bottom: 1px solid rgba(65, 102, 86, 0.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    padding: 24px 20px;
    flex-direction: column;
    gap: 20px;
    z-index: 9999;
  }

  .nav-menu-wrapper.open {
    display: flex;
  }

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

  .nav-actions {
    flex-direction: column;
    align-items: center;
    gap: 16px;
    width: 100%;
  }

  .btn-outline-login,
  .btn-login {
    width: 100%;
    text-align: center;
  }

  /* Hamburger transition active transforms */
  .nav-mobile-toggle.active .hamburger-bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .nav-mobile-toggle.active .hamburger-bar:nth-child(2) {
    opacity: 0;
  }
  .nav-mobile-toggle.active .hamburger-bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .hero-section {
    min-height: auto;
  }

  .hero-banner {
    flex-direction: column;
    padding: calc(64px + var(--section-y-half)) var(--section-x) var(--section-y-half);
    gap: 32px;
  }

  .hero-content {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .hero-title {
    font-size: var(--text-7xl);
    line-height: 54px;
  }

  .hero-desc {
    max-width: 100%;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-users {
    justify-content: center;
  }

  .hero-visual {
    width: 100%;
    height: 440px;
    padding: 20px;
  }

  .floating-badge {
    transform: scale(0.85);
  }

  .badge-lightning {
    top: 40px;
    left: 20px;
  }

  .badge-leaf {
    bottom: 40px;
    left: 10px;
  }

  .badge-plug {
    top: 120px;
    right: 15px;
  }

  .circle-gray {
    top: -10px;
    right: 80px;
  }

  .box-green {
    bottom: 20px;
    right: 60px;
  }

  .hero-card {
    width: 340px;
    height: 340px;
    border-radius: 40px;
  }

  .hero-marketplace-grid {
    width: 340px;
    height: 340px;
    gap: 10px;
  }

  .hero-mp-card {
    border-radius: 18px;
  }

  .hero-mp-label {
    font-size: var(--text-2xs);
    padding: 3px 10px;
    bottom: 8px;
    left: 8px;
  }

  .tabs-section {
    padding: var(--section-y-half) var(--section-x);
  }

  .tabs-row {
    gap: 4px;
  }

  .tab-item {
    font-size: var(--text-sm);
    padding: 10px 14px 12px;
  }

  .brands {
    padding: var(--section-y-half) var(--section-x);
    margin-top: 0;
  }

  .brand-logos {
    gap: 40px;
    flex-wrap: wrap;
  }

  .featured,
  .latest,
  .accessories,
  .testimonials,
  .hiw-section,
  .app-section,
  .driver-section,
  .fleet-partner-section {
    padding: var(--section-y-half) var(--section-x);
  }

  .section-header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 32px;
    gap: 20px;
  }

  /* Hide navigation controls on tablet since it's a grid */
  .section-header-nav {
    display: none !important;
  }

  /* Hide cloned cards on non-laptop views */
  .cloned {
    display: none !important;
  }

  /* Convert tracks to grid layouts on tablet viewport */
  .featured-track,
  .latest-track,
  .acc-track {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 24px !important;
    width: 100% !important;
    transform: none !important;
    transition: none !important;
  }

  .featured-track .feature-item,
  .latest-track .feature-item,
  .acc-track .acc-card {
    width: 100% !important;
  }

  .testimonial-card {
    width: 310px;
    padding: 24px;
    border-radius: 24px;
  }

  /* Compact Fleet banner - Tablet */
  .fleet {
    width: calc(100% - (var(--section-x) * 2));
    margin: var(--section-y-half) var(--section-x);
    padding: 0;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: auto;
    border-radius: 24px;
  }

  .fleet-inner {
    flex-direction: column;
    min-height: auto;
  }

  .fleet-content {
    flex: 0 0 100%;
    padding: 40px 32px;
    align-items: center;
    text-align: center;
  }

  .fleet-content h2 {
    font-size: var(--text-2xl);
    margin-bottom: 12px;
  }

  .fleet-content p {
    max-width: 100%;
    margin-bottom: 20px;
  }

  .fleet-list {
    align-items: flex-start;
    text-align: left;
    display: inline-flex;
    margin: 0 auto 24px;
  }

  .fleet-image {
    flex: 0 0 100%;
    width: 100%;
    padding: 0 32px 36px;
    align-self: auto;
  }

  .fleet-image img {
    height: 240px;
    border-radius: 16px;
  }

  /* How It Works - Tablet */
  .hiw-section {
    padding: 60px 20px;
  }

  .hiw-title {
    font-size: var(--text-4xl);
  }

  .hiw-wave-line {
    display: none;
  }

  .hiw-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 24px;
  }

  /* App Download - Tablet */
  .app-section {
    flex-direction: column;
    padding: 60px 20px;
    gap: 40px;
    text-align: center;
  }

  .app-content {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .app-buttons {
    justify-content: center;
  }

  .app-mockup {
    width: 220px;
    height: 460px;
    border-radius: 42px;
    margin-right: 0;
  }

  .testimonials {
    padding: 60px 20px;
  }

  .driver-section {
    flex-direction: column;
    padding: 60px 20px;
    gap: 40px;
    text-align: center;
  }

  .driver-content {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .driver-section>div:last-child {
    justify-content: center !important;
    width: 100%;
  }

  /* Fleet Partner - Tablet */
  .fleet-partner-section {
    flex-direction: column;
    padding: 60px 20px;
    gap: 40px;
    text-align: center;
  }

  .fp-content {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .fp-list {
    align-items: flex-start;
    max-width: 480px;
    margin: 0 auto 24px;
    text-align: left;
  }

  .fp-visual {
    width: 100%;
  }

  .faq-mission {
    width: calc(100% - (var(--section-x) * 2));
    margin: var(--section-y-half) var(--section-x);
    flex-direction: column;
    gap: var(--content-gap);
  }

  .footer {
    padding: 60px 20px;
  }

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

@media (max-width: 640px) {
  .frame {
    --section-x: 16px;
    --section-y-half: 20px;
    --section-header-gap: 20px;
    --content-gap: 12px;
  }

  .hero-title {
    font-size: var(--text-5xl);
    line-height: 42px;
  }

  .hero-desc {
    font-size: var(--text-base);
    line-height: 26px;
  }

  .hero-visual {
    height: 340px;
  }

  .hero-card {
    width: 260px;
    height: 260px;
    border-radius: 32px;
  }

  .hero-card-inner {
    padding: 20px;
  }

  .hero-card-name {
    font-size: var(--text-lg);
  }

  .hero-marketplace-grid {
    width: 260px;
    height: 260px;
    gap: 8px;
  }

  .hero-mp-card {
    border-radius: 14px;
  }

  .hero-mp-label {
    font-size: var(--text-3xs);
    padding: 2px 8px;
    bottom: 6px;
    left: 6px;
  }

  .hero-mp-badge-icon {
    width: 20px;
    height: 20px;
    top: 6px;
    right: 6px;
  }

  .hero-mp-tag {
    font-size: var(--text-3xs);
    padding: 2px 6px;
    top: 6px;
    left: 6px;
  }

  .hero-banner-dots {
    bottom: 18px;
  }

  .tabs-section {
    padding: var(--section-y-half) var(--section-x);
  }

  .tabs-row {
    overflow-x: auto;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 2px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 0;
  }

  .tabs-row::-webkit-scrollbar { display: none; }

  .tab-item {
    font-size: var(--text-sm);
    padding: 10px 12px 12px;
    white-space: nowrap;
  }

  .tab-carousel-controls {
    margin-top: 20px;
    gap: 12px;
  }

  .tc-prev, .tc-next {
    width: 36px;
    height: 36px;
  }

  /* Carousel card sizes on mobile */
  .featured-track .feature-item,
  .latest-track .feature-item,
  /* Carousel card sizes on mobile */
  .featured-track .feature-item,
  .latest-track .feature-item,
  .acc-track .acc-card {
    width: 250px !important;
    scroll-snap-align: start;
  }

  .testimonial-card {
    width: 250px !important;
    padding: 20px;
    border-radius: 20px;
    scroll-snap-align: start;
  }

  /* Native touch horizontal swiping on mobile */
  .carousel-viewport {
    overflow-x: auto !important;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 16px;
  }

  .carousel-track {
    display: flex !important;
    width: max-content !important;
    transform: none !important;
    transition: none !important;
    gap: 16px !important;
  }

  /* Hide navigation controls on mobile since it's swipe scroll */
  .section-header-nav {
    display: none !important;
  }

  /* Hide cloned cards on non-laptop views */
  .cloned {
    display: none !important;
  }

  .section-header {
    margin-bottom: 20px;
    gap: 12px;
  }

  .section-title {
    font-size: var(--text-2xl) !important;
  }

  .section-sub {
    font-size: var(--text-sm) !important;
  }

  /* How It Works - Mobile */
  .hiw-title {
    font-size: var(--text-3xl);
  }

  .hiw-steps {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hiw-icon-wrap {
    width: 80px;
    height: 80px;
    margin-bottom: 16px;
  }

  .hiw-icon {
    font-size: var(--text-3xl);
  }

  /* App Download - Mobile */
  .app-title {
    font-size: var(--text-4xl);
    line-height: 36px;
  }

  .app-desc {
    font-size: var(--text-sm);
    line-height: 24px;
  }

  .app-buttons {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  /* Fleet Partner - Mobile */
  .fleet-partner-section {
    padding: 48px 16px;
    gap: 32px;
  }

  .fp-title {
    font-size: var(--text-3xl);
    line-height: 1.3;
  }

  .fp-desc {
    font-size: var(--text-sm);
    line-height: 1.6;
  }

  .fp-list-item {
    font-size: var(--text-sm);
  }

  .fp-img-badge {
    bottom: -15px;
    left: 15px;
    padding: 8px 14px;
    gap: 8px;
  }

  .fp-badge-num {
    font-size: var(--text-sm);
  }

  .fp-badge-label {
    font-size: var(--text-3xs);
  }

  /* Driver recruitment - Mobile */
  .driver-title {
    font-size: var(--text-3xl);
    line-height: 32px;
  }

  .driver-section>div:last-child {
    display: none !important;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    align-items: center;
    text-align: center;
  }
}