/* ===== /v2 home — relationship-led variant ===== */
/* Inherits :root tokens from v1.css. Builds on the v1 hero with a real driver
   carousel and a "meet the network" section. */

/* Hero with driver carousel */
.v2-hero {
  position: relative;
  padding: 130px 0 80px;
  overflow: hidden;
  color: #fff;
  background: #061625;
}

.v2-hero__slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.v2-hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
}

.v2-hero__slide.is-active {
  opacity: 0.45;
}

.v2-hero__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 22, 37, 0.94) 0%, rgba(6, 22, 37, 0.7) 55%, rgba(6, 22, 37, 0.45) 100%),
    radial-gradient(circle at 80% 25%, rgba(0, 167, 226, 0.18), transparent 55%);
  z-index: 1;
}

.v2-hero__inner {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 72px;
  align-items: center;
}

/* Driver name card (anchored bottom-right of hero, over the photo) */
.v2-driver-card {
  position: absolute;
  bottom: 36px;
  right: 36px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(9, 30, 46, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  padding: 16px 20px;
  color: #fff;
  max-width: 320px;
}

.v2-driver-card__pin {
  position: relative;
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #3FCB6E;
  box-shadow: 0 0 0 4px rgba(63, 203, 110, 0.25);
}

.v2-driver-card__pin::after {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid rgba(63, 203, 110, 0.5);
  animation: v2-pulse 2.5s ease-out infinite;
}

@keyframes v2-pulse {
  0%   { transform: scale(0.85); opacity: 1; }
  100% { transform: scale(1.6); opacity: 0; }
}

.v2-driver-card__body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 13px;
  line-height: 1.3;
}

.v2-driver-card__label {
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 10px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.55);
}

.v2-driver-card__name {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 16px;
  color: #fff;
}

.v2-driver-card__stats {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
}

.v2-driver-card__stats strong {
  color: #fff;
  font-weight: 700;
}

@media (max-width: 1024px) {
  .v2-hero__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .v2-driver-card {
    position: static;
    margin-top: 24px;
    max-width: none;
  }
}

/* Hero text block */
.v2-hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px 7px 9px;
  border-radius: 999px;
  background: rgba(0, 167, 226, 0.18);
  border: 1px solid rgba(0, 167, 226, 0.4);
  color: #B8E5F8;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 22px;
}

.v2-hero__pill .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3FCB6E;
  box-shadow: 0 0 10px rgba(63, 203, 110, 0.7);
}

.v2-hero__title {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: clamp(38px, 4.8vw, 60px);
  line-height: 1.04;
  letter-spacing: -0.01em;
  margin-bottom: 18px;
  color: #fff;
}

.v2-hero__title em {
  font-style: normal;
  color: #00A7E2;
}

.v2-hero__sub {
  font-size: 19px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 32px;
  max-width: 560px;
}

/* ===== NETWORK BAND (the "meet the drivers" strip) ===== */
.v2-network {
  background: var(--v1-surface);
  padding: 72px 0;
  border-top: 1px solid var(--v1-line);
}

.v2-network__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 40px;
}

.v2-network__heading {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: clamp(26px, 3vw, 36px);
  color: var(--v1-ink);
  margin-bottom: 12px;
  line-height: 1.15;
}

.v2-network__sub {
  font-size: 16px;
  color: var(--v1-muted);
  line-height: 1.6;
}

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

.v2-driver {
  background: #fff;
  border-radius: 16px;
  border: 1.5px solid var(--v1-line);
  overflow: hidden;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s;
}

.v2-driver:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 48px -22px rgba(15, 27, 38, 0.22);
  border-color: rgba(0, 167, 226, 0.45);
}

.v2-driver__photo {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  background: linear-gradient(180deg, #061625, #0E2D45);
  display: block;
}

.v2-driver__photo-fallback {
  width: 100%;
  aspect-ratio: 4/5;
  background: linear-gradient(180deg, #061625, #0E2D45);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.55);
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 56px;
}

.v2-driver__body {
  padding: 18px 20px 22px;
}

.v2-driver__name {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 17px;
  color: var(--v1-ink);
  margin-bottom: 4px;
}

.v2-driver__role {
  font-size: 12px;
  color: var(--v1-muted);
  margin-bottom: 12px;
  letter-spacing: 0.03em;
}

.v2-driver__stats {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--v1-line);
}

.v2-driver__stat {
  display: flex;
  flex-direction: column;
}

.v2-driver__stat-num {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  color: var(--v1-blue);
  font-size: 18px;
  line-height: 1;
}

.v2-driver__stat-label {
  font-size: 11px;
  color: var(--v1-muted);
  margin-top: 4px;
  letter-spacing: 0.03em;
}

.v2-network__cta {
  text-align: center;
  margin-top: 36px;
}

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

@media (max-width: 480px) {
  .v2-network__grid { grid-template-columns: 1fr; }
}

/* ===== TRACKING / HOW (with driver-led copy) ===== */
.v2-tracking {
  background: var(--v1-navy);
  color: #fff;
  padding: 96px 0;
}

.v2-tracking__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.v2-tracking__title {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.15;
  margin-bottom: 16px;
}

.v2-tracking__sub {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 32px;
}

.v2-tracking__steps {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.v2-tracking__step {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
}

.v2-tracking__step-num {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, #00A7E2, #0082B0);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 16px;
  flex-shrink: 0;
}

.v2-tracking__step strong {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 17px;
  color: #fff;
  display: block;
  margin-bottom: 4px;
}

.v2-tracking__step span.desc {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14.5px;
  line-height: 1.55;
}

.v2-tracking__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.v2-tracking__map {
  position: absolute;
  width: 110%;
  max-width: 560px;
  border-radius: 24px;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.5));
  opacity: 0.85;
}

.v2-tracking__phone {
  position: relative;
  width: 240px;
  z-index: 2;
}

@media (max-width: 1024px) {
  .v2-tracking__inner { grid-template-columns: 1fr; gap: 36px; }
}

/* ===== DRIVER STORY SPOTLIGHT ===== */
.v2-spotlight {
  padding: 96px 0;
  background: #fff;
}

.v2-spotlight__inner {
  display: grid;
  grid-template-columns: 0.85fr 1.1fr;
  gap: 60px;
  align-items: center;
  background: linear-gradient(135deg, #F7F9FC 0%, #EAF6FB 100%);
  border-radius: 22px;
  padding: 50px;
  border: 1px solid var(--v1-line);
}

.v2-spotlight__photo-wrap {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 24px 48px -20px rgba(15, 27, 38, 0.3);
}

.v2-spotlight__photo {
  width: 100%;
  display: block;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.v2-spotlight__badge {
  position: absolute;
  bottom: 22px;
  left: 22px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(9, 30, 46, 0.85);
  backdrop-filter: blur(12px);
  border-radius: 999px;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
}

.v2-spotlight__badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3FCB6E;
}

.v2-spotlight__eyebrow {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(0, 167, 226, 0.12);
  color: var(--v1-blue);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.v2-spotlight__quote {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.32;
  color: var(--v1-ink);
  margin-bottom: 18px;
  font-style: italic;
}

.v2-spotlight__quote::before {
  content: '\201C';
  color: var(--v1-blue);
  font-size: 1.4em;
  line-height: 0;
  vertical-align: -0.15em;
  margin-right: 0.04em;
}

.v2-spotlight__quote::after {
  content: '\201D';
  color: var(--v1-blue);
  font-size: 1.4em;
  line-height: 0;
  vertical-align: -0.15em;
  margin-left: 0.04em;
}

.v2-spotlight__author {
  font-size: 15px;
  color: var(--v1-muted);
  margin-bottom: 16px;
}

.v2-spotlight__author strong {
  color: var(--v1-ink);
  font-weight: 700;
}

.v2-spotlight__bio {
  color: var(--v1-body);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 24px;
}

@media (max-width: 1024px) {
  .v2-spotlight__inner { grid-template-columns: 1fr; padding: 36px; gap: 36px; }
}

/* Customer testimonial selfies */
.v2-customers {
  padding: 96px 0;
  background: var(--v1-surface);
}

.v2-customers__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 40px;
}

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

.v2-customer {
  background: #fff;
  border-radius: 18px;
  border: 1.5px solid var(--v1-line);
  overflow: hidden;
  transition: transform 0.18s, box-shadow 0.18s;
}

.v2-customer:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -22px rgba(15, 27, 38, 0.22);
}

.v2-customer__photo-frame {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: #0B1722;
}

.v2-customer__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.v2-customer__play {
  position: absolute;
  bottom: 16px;
  right: 16px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(0, 167, 226, 0.95);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  box-shadow: 0 12px 24px -8px rgba(0, 167, 226, 0.6);
}

.v2-customer__body {
  padding: 22px;
}

.v2-customer__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.v2-customer__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 14px;
  flex-shrink: 0;
}

.v2-customer__name {
  font-weight: 700;
  font-size: 14px;
  color: var(--v1-ink);
}

.v2-customer__date {
  font-size: 12px;
  color: var(--v1-muted);
}

.v2-customer__stars {
  display: inline-flex;
  gap: 2px;
  margin-bottom: 8px;
}

.v2-customer__quote {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--v1-body);
}

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