/**
 * Premium Landing — Cinematic hero, dark theme, logistics identity
 * Unique Pickups homepage revamp
 */

/* ---------- Base ---------- */
.premium-landing {
  background: #030303;
  color: #fff;
  overflow-x: hidden;
}

.premium-landing #main-content {
  position: relative;
}

/* ---------- Premium Nav (overrides when inside .premium-landing) ---------- */
.premium-landing #main-nav .nav,
.premium-landing .nav {
  max-width: 80rem;
  margin: 0 auto;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(2rem);
  -webkit-backdrop-filter: blur(2rem);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  padding: 0.5rem 0.75rem;
}

.premium-landing #main-nav .nav__container,
.premium-landing .nav .nav__container {
  padding: 0.25rem 0.5rem 0.25rem 0.5rem;
}

.premium-landing .nav__logo-mark {
  color: #030303;
  background: #fff;
  border-radius: 0.75rem;
  padding: 0 0.4rem;
  font-size: 0.8rem;
  font-weight: 800;
}

.premium-landing .nav__link {
  color: rgba(255, 255, 255, 0.7);
}

.premium-landing .nav__link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.premium-landing .nav .btn-glass {
  color: rgba(255, 255, 255, 0.7);
}

.premium-landing .nav .btn-primary {
  background: #fff;
  color: #030303;
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.25);
}

/* ---------- Hero Section ---------- */
.premium-hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Atmospheric layers */
.premium-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.premium-hero__bg-mist {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 150% 70% at 50% -20%, rgba(255, 255, 255, 0.12), transparent 50%);
}

.premium-hero__bg-gold {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 50%, rgba(251, 191, 36, 0.15), transparent 40%);
}

.premium-hero__bg-cyan {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 60%, rgba(6, 182, 212, 0.12), transparent 35%);
}

.premium-hero__bg-blue {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 85% 80%, rgba(59, 130, 246, 0.1), transparent 35%);
}

.premium-hero__bg-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 0%, transparent 60%, #030303 100%);
}

/* Hero content wrapper */
.premium-hero__inner {
  position: relative;
  z-index: 10;
  max-width: 90rem;
  margin: 0 auto;
  width: 100%;
  padding: 3rem 1rem 8rem;
}

@media (min-width: 1024px) {
  .premium-hero__inner {
    padding: 5rem 2rem 10rem;
  }
}

.premium-hero__grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .premium-hero__grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

/* Left column */
.premium-hero__content {
  position: relative;
  z-index: 20;
}

.premium-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 1rem 0.625rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(1rem);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.premium-badge__dot {
  position: relative;
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 50%;
  background: #22d3ee;
  box-shadow: 0 0 12px rgba(34, 211, 238, 0.8);
}

.premium-badge__dot::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  background: #22d3ee;
  opacity: 0.5;
  animation: premium-pulse 2s ease-in-out infinite;
}

@keyframes premium-pulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.8); opacity: 0; }
}

.premium-badge__text {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.9);
}

.premium-hero__title {
  margin-top: 2rem;
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 700;
  line-height: 1.03;
  letter-spacing: -0.045em;
  color: #fff;
}

.premium-hero__title .gradient {
  background: linear-gradient(to right, #22d3ee, #67e8f9, #3b82f6);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 30px rgba(34, 211, 238, 0.5);
  letter-spacing: -0.03em;
  display: inline-block;
}

.premium-hero__subtitle {
  margin-top: 1.5rem;
  max-width: 32rem;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
}

@media (min-width: 640px) {
  .premium-hero__subtitle {
    font-size: 1.125rem;
    margin-top: 2rem;
  }
}

.premium-hero__ctas {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .premium-hero__ctas {
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    margin-top: 2.5rem;
  }
}

.premium-hero__btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  padding: 1rem 2rem;
  border-radius: 1rem;
  background: #fff;
  color: #030303;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 12px 40px rgba(255, 255, 255, 0.2);
  transition: transform 0.2s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}

.premium-hero__btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 50px rgba(255, 255, 255, 0.3);
}

.premium-hero__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  backdrop-filter: blur(0.25rem);
  transition: background 0.2s, border-color 0.2s;
}

.premium-hero__btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.25);
}

/* Trust row */
.premium-hero__trust {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem 1.5rem;
}

.premium-hero__trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
}

@media (min-width: 640px) {
  .premium-hero__trust-item {
    font-size: 0.8125rem;
  }
}

.premium-hero__trust-item svg {
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.4);
}

/* Social proof badge */
.premium-hero__social-proof {
  margin-top: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(1rem);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

@media (min-width: 640px) {
  .premium-hero__social-proof {
    margin-top: 2.5rem;
  }
}

.premium-hero__avatars {
  display: flex;
  margin-right: -0.75rem;
}

.premium-hero__avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 2.5px solid #030303;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.premium-hero__avatar:nth-child(1) {
  background-image: url("https://images.pexels.com/photos/1181519/pexels-photo-1181519.jpeg?auto=compress&cs=tinysrgb&w=200");
}

.premium-hero__avatar:nth-child(2) {
  background-image: url("https://images.pexels.com/photos/2379004/pexels-photo-2379004.jpeg?auto=compress&cs=tinysrgb&w=200");
}

.premium-hero__avatar:nth-child(3) {
  background-image: url("https://images.pexels.com/photos/1181686/pexels-photo-1181686.jpeg?auto=compress&cs=tinysrgb&w=200");
}

.premium-hero__avatar:nth-child(4) {
  background-image: url("https://images.pexels.com/photos/614810/pexels-photo-614810.jpeg?auto=compress&cs=tinysrgb&w=200");
}

.premium-hero__social-text {
  border-left: 1px solid rgba(255, 255, 255, 0.15);
  padding-left: 1rem;
}

.premium-hero__social-value {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
}

.premium-hero__social-rating {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.premium-hero__social-meta {
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
}

/* Right column — truck + visual */
.premium-hero__visual {
  position: relative;
}

.premium-hero__route-map {
  position: absolute;
  inset: 0;
  z-index: 10;
  overflow: visible;
  pointer-events: none;
}

.premium-hero__route-map svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- Hero route: premium path + subtle energy shimmer ---------- */
.premium-route-path--animate {
  stroke-dasharray: 1200;
  stroke-dashoffset: 1200;
  animation: premium-route-draw 2.8s ease-out 0.3s infinite alternate,
             premium-route-shimmer 4s ease-in-out infinite;
  filter: drop-shadow(0 0 12px rgba(34, 211, 238, 0.5)) drop-shadow(0 0 24px rgba(6, 182, 212, 0.25));
}

@keyframes premium-route-draw {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes premium-route-shimmer {
  0%, 100% { opacity: 1; filter: drop-shadow(0 0 12px rgba(34, 211, 238, 0.5)) drop-shadow(0 0 24px rgba(6, 182, 212, 0.25)); }
  50% { opacity: 0.94; filter: drop-shadow(0 0 14px rgba(34, 211, 238, 0.6)) drop-shadow(0 0 28px rgba(6, 182, 212, 0.3)); }
}

/* ---------- Traveler: motion path (shared by trail + main) ---------- */
.premium-route-traveler {
  offset-path: path("M-50,380 Q150,320 300,350 Q450,380 550,330 Q700,270 900,320");
  -webkit-offset-path: path("M-50,380 Q150,320 300,350 Q450,380 550,330 Q700,270 900,320");
  offset-anchor: center;
  offset-rotate: auto;
  transform-origin: center;
  animation: premium-route-travel 6s linear 0.5s infinite;
}

.premium-route-traveler--trail {
  animation-delay: 0.35s;
}

.premium-route-traveler--main {
  animation: premium-route-travel 6s linear 0.5s infinite;
}

@keyframes premium-route-travel {
  0% {
    offset-distance: 0%;
    -webkit-offset-distance: 0%;
  }
  100% {
    offset-distance: 100%;
    -webkit-offset-distance: 100%;
  }
}

/* Trail: soft blurred ghost behind the orb */
.premium-route-traveler-trail-circle {
  fill: rgba(34, 211, 238, 0.35);
  filter: url(#travelerTrailBlur);
}

/* Main orb layers: bloom → glow → core */
.premium-route-traveler-bloom {
  fill: rgba(34, 211, 238, 0.25);
  filter: drop-shadow(0 0 16px rgba(34, 211, 238, 0.6));
}

.premium-route-traveler-glow {
  fill: rgba(34, 211, 238, 0.85);
  filter: drop-shadow(0 0 10px rgba(34, 211, 238, 0.9));
  animation: premium-traveler-glow-pulse 2.2s ease-in-out infinite;
}

.premium-route-traveler-core {
  fill: url(#travelerCoreGrad);
  filter: drop-shadow(0 0 6px rgba(224, 247, 250, 0.95));
  animation: premium-traveler-core-pulse 2.2s ease-in-out infinite;
}

@keyframes premium-traveler-glow-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.92; transform: scale(1.03); }
}

@keyframes premium-traveler-core-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.98; transform: scale(1.05); }
}

/* ---------- Waypoints: premium layered glow + subtle pulse ---------- */
.premium-route-waypoint {
  transform-origin: center;
  filter: drop-shadow(0 0 8px rgba(34, 211, 238, 0.7)) drop-shadow(0 0 16px rgba(6, 182, 212, 0.35));
  animation: premium-waypoint-pulse 3s ease-in-out infinite;
}

.premium-route-waypoint:nth-of-type(2) { animation-delay: 0.5s; }
.premium-route-waypoint:nth-of-type(3) { animation-delay: 1s; }

@keyframes premium-waypoint-pulse {
  0%, 100% {
    opacity: 0.92;
    transform: scale(1);
    filter: drop-shadow(0 0 8px rgba(34, 211, 238, 0.7)) drop-shadow(0 0 16px rgba(6, 182, 212, 0.35));
  }
  50% {
    opacity: 1;
    transform: scale(1.08);
    filter: drop-shadow(0 0 12px rgba(34, 211, 238, 0.9)) drop-shadow(0 0 24px rgba(6, 182, 212, 0.45));
  }
}

.premium-hero__img-wrap {
  position: relative;
  aspect-ratio: 4 / 3;
  width: 100%;
  overflow: hidden;
  border-radius: 2rem;
  box-shadow: 0 50px 100px -20px rgba(0, 0, 0, 0.7), 0 0 80px -20px rgba(6, 182, 212, 0.3);
}

.premium-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.premium-hero__img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(3, 3, 3, 0.6), transparent 40%);
}

.premium-hero__img-overlay--bottom {
  background: linear-gradient(to top, rgba(3, 3, 3, 0.5), transparent 30%);
}

.premium-hero__img-overlay--top {
  background: linear-gradient(to bottom, rgba(3, 3, 3, 0.2), transparent 20%);
}

/* Floating cards */
.premium-float-card {
  position: absolute;
  z-index: 30;
  animation: premium-float 5s ease-in-out infinite;
}

.premium-float-card--1 { top: 10%; left: -1rem; animation-duration: 6s; animation-delay: 0s; }
@media (min-width: 640px) { .premium-float-card--1 { left: -1.5rem; } }
@media (min-width: 1024px) { .premium-float-card--1 { left: -2.5rem; } }

.premium-float-card--2 { top: 35%; right: -0.75rem; animation-duration: 7s; animation-delay: 0.2s; }
@media (min-width: 640px) { .premium-float-card--2 { right: -1rem; } }
@media (min-width: 1024px) { .premium-float-card--2 { right: -2rem; } }

.premium-float-card--3 { bottom: 12%; left: 5%; animation-duration: 5.5s; animation-delay: 0.4s; }
@media (min-width: 640px) { .premium-float-card--3 { left: 8%; } }

.premium-float-card--4 { bottom: 5%; right: 8%; animation-duration: 6s; animation-delay: 0.6s; }

@keyframes premium-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.premium-card {
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.95);
  padding: 1rem;
  backdrop-filter: blur(2rem);
  box-shadow: 0 25px 60px -10px rgba(0, 0, 0, 0.5), 0 0 30px rgba(16, 185, 129, 0.2);
}

@media (min-width: 640px) {
  .premium-card {
    padding: 1.25rem;
  }
}

.premium-card--dark {
  background: rgba(3, 3, 3, 0.95);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 25px 60px -10px rgba(0, 0, 0, 0.7), 0 0 40px rgba(6, 182, 212, 0.15);
}

.premium-card__row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .premium-card__row {
    gap: 1rem;
  }
}

.premium-card__icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

@media (min-width: 640px) {
  .premium-card__icon {
    width: 3rem;
    height: 3rem;
  }
}

.premium-card__icon--green {
  background: linear-gradient(135deg, #34d399, #14b8a6);
  box-shadow: 0 10px 20px rgba(16, 185, 129, 0.4);
}

.premium-card__icon--cyan {
  background: linear-gradient(135deg, #22d3ee, #3b82f6);
  box-shadow: 0 10px 20px rgba(6, 182, 212, 0.4);
}

.premium-card__label {
  font-size: 0.625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #64748b;
}

.premium-card--dark .premium-card__label {
  color: rgba(255, 255, 255, 0.5);
}

.premium-card__value {
  font-size: 0.875rem;
  font-weight: 700;
  color: #0f172a;
}

@media (min-width: 640px) {
  .premium-card__value {
    font-size: 1rem;
  }
}

.premium-card--dark .premium-card__value {
  color: #fff;
}

.premium-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.95);
  font-size: 0.75rem;
  font-weight: 600;
  color: #1e293b;
  box-shadow: 0 20px 50px -10px rgba(0, 0, 0, 0.4), 0 0 20px rgba(16, 185, 129, 0.15);
}

@media (min-width: 640px) {
  .premium-card__badge {
    padding: 0.625rem 1.25rem;
    font-size: 0.8125rem;
  }
}

.premium-card__live-dot {
  position: relative;
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 8px rgba(52, 211, 153, 0.8);
}

.premium-card__live-dot::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  background: #34d399;
  opacity: 0.75;
  animation: premium-pulse 2s ease-in-out infinite;
}

/* Signature wave */
.premium-wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 250px;
  overflow: hidden;
  pointer-events: none;
}

.premium-wave__glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 100% 100% at 50% 100%, rgba(6, 182, 212, 0.25), transparent 60%);
}

.premium-wave svg {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100%;
}

/* Wave path — subtle draw and glow */
.premium-wave-path {
  stroke-dasharray: 1600;
  stroke-dashoffset: 1600;
  animation:
    premium-wave-draw 2.2s ease-out 0.4s forwards,
    premium-wave-flow 8s ease-in-out 2.6s infinite alternate;
  filter: drop-shadow(0 0 10px rgba(34, 211, 238, 0.55));
}

@keyframes premium-wave-draw {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes premium-wave-flow {
  0% {
    transform: translateX(0) translateY(0);
  }
  50% {
    transform: translateX(-40px) translateY(4px);
  }
  100% {
    transform: translateX(0) translateY(0);
  }
}

/* ---------- Sections ---------- */
.premium-section {
  position: relative;
  z-index: 10;
  background: #030303;
  padding: 6rem 1rem;
}

@media (min-width: 640px) {
  .premium-section {
    padding: 8rem 1.5rem;
  }
}

@media (min-width: 1024px) {
  .premium-section {
    padding: 8rem 2rem;
  }
}

.premium-section__inner {
  max-width: 80rem;
  margin: 0 auto;
}

.premium-section__eyebrow {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #22d3ee;
  text-align: center;
}

.premium-section__title {
  margin-top: 1rem;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #fff;
  text-align: center;
}

.premium-section__title .gradient {
  background: linear-gradient(to right, #22d3ee, #3b82f6);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.premium-section__subtitle {
  margin-top: 1.25rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.0625rem;
  line-height: 1.6;
  color: #9ca3af;
  text-align: center;
}

/* Benefit cards */
.premium-benefits {
  margin-top: 4rem;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .premium-benefits {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .premium-benefits {
    grid-template-columns: repeat(4, 1fr);
  }
}

.premium-benefit-card {
  position: relative;
  overflow: hidden;
  padding: 2rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  transition: border-color 0.3s, background 0.3s;
}

.premium-benefit-card:hover {
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.06);
}

.premium-benefit-card__icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.premium-benefit-card__icon--cyan { background: linear-gradient(135deg, #22d3ee, #3b82f6); }
.premium-benefit-card__icon--emerald { background: linear-gradient(135deg, #34d399, #14b8a6); }
.premium-benefit-card__icon--amber { background: linear-gradient(135deg, #fbbf24, #f97316); }
.premium-benefit-card__icon--violet { background: linear-gradient(135deg, #a78bfa, #8b5cf6); }

.premium-benefit-card__title {
  margin-top: 1.5rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
}

.premium-benefit-card__desc {
  margin-top: 0.75rem;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #9ca3af;
}

/* How it works steps */
.premium-steps {
  margin-top: 4rem;
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}

@media (min-width: 1024px) {
  .premium-steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

.premium-step {
  position: relative;
  padding: 2rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  text-align: center;
  transition: border-color 0.3s;
}

.premium-step:hover {
  border-color: rgba(255, 255, 255, 0.15);
}

.premium-step__number {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1.5rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.2), rgba(59, 130, 246, 0.2));
  font-size: 1.5rem;
  font-weight: 700;
  color: #22d3ee;
  display: flex;
  align-items: center;
  justify-content: center;
}

.premium-step__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
}

.premium-step__desc {
  margin-top: 1rem;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #9ca3af;
}

/* For Customers / For Drivers split */
.premium-split {
  margin-top: 4rem;
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}

@media (min-width: 1024px) {
  .premium-split {
    grid-template-columns: repeat(2, 1fr);
  }
}

.premium-split-card {
  position: relative;
  overflow: hidden;
  padding: 2rem;
  border-radius: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

@media (min-width: 640px) {
  .premium-split-card {
    padding: 2.5rem;
  }
}

.premium-split-card--customers {
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.1), transparent);
}

.premium-split-card--customers::before {
  content: '';
  position: absolute;
  right: -5rem;
  top: -5rem;
  width: 15rem;
  height: 15rem;
  border-radius: 50%;
  background: rgba(34, 211, 238, 0.15);
  filter: blur(3rem);
}

.premium-split-card--drivers {
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.1), transparent);
}

.premium-split-card--drivers::before {
  content: '';
  position: absolute;
  right: -5rem;
  top: -5rem;
  width: 15rem;
  height: 15rem;
  border-radius: 50%;
  background: rgba(251, 191, 36, 0.15);
  filter: blur(3rem);
}

.premium-split-card__icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.premium-split-card__icon--cyan {
  background: linear-gradient(135deg, #22d3ee, #3b82f6);
  box-shadow: 0 10px 30px rgba(34, 211, 238, 0.3);
}

.premium-split-card__icon--amber {
  background: linear-gradient(135deg, #fbbf24, #f97316);
  box-shadow: 0 10px 30px rgba(251, 191, 36, 0.3);
}

.premium-split-card__title {
  margin-top: 1.5rem;
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
}

.premium-split-card__p {
  margin-top: 1rem;
  font-size: 1rem;
  line-height: 1.6;
  color: #9ca3af;
}

.premium-split-card__list {
  margin-top: 2rem;
  list-style: none;
  padding: 0;
}

.premium-split-card__list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: #d1d5db;
  margin-bottom: 1rem;
}

.premium-split-card__list li:last-child {
  margin-bottom: 0;
}

.premium-split-card__link {
  margin-top: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
}

.premium-split-card--customers .premium-split-card__link {
  color: #22d3ee;
}

.premium-split-card--customers .premium-split-card__link:hover {
  color: #67e8f9;
}

.premium-split-card--drivers .premium-split-card__link {
  color: #fbbf24;
}

.premium-split-card--drivers .premium-split-card__link:hover {
  color: #fcd34d;
}

/* Testimonials */
.premium-testimonials {
  margin-top: 4rem;
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .premium-testimonials {
    grid-template-columns: repeat(3, 1fr);
  }
}

.premium-testimonial {
  position: relative;
  padding: 2rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.premium-testimonial__stars {
  display: flex;
  gap: 0.25rem;
}

.premium-testimonial__quote {
  margin-top: 1.5rem;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #d1d5db;
}

.premium-testimonial__author {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-weight: 600;
  color: #fff;
}

.premium-testimonial__role {
  font-size: 0.8125rem;
  color: #9ca3af;
}

/* Final CTA */
.premium-cta {
  padding: 6rem 1rem;
}

@media (min-width: 640px) {
  .premium-cta {
    padding: 8rem 1.5rem;
  }
}

.premium-cta__inner {
  max-width: 56rem;
  margin: 0 auto;
  text-align: center;
}

.premium-cta__title {
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #fff;
}

.premium-cta__title .gradient {
  background: linear-gradient(to right, #38bdf8, #4f46e5);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.premium-cta__subtitle {
  margin-top: 1.5rem;
  font-size: 1.0625rem;
  line-height: 1.6;
  color: #1e293b;
  font-weight: 500;
}

.premium-cta__buttons {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

@media (min-width: 640px) {
  .premium-cta__buttons {
    flex-direction: row;
  }
}

/* ---------- Footer ---------- */
.premium-footer {
  position: relative;
  z-index: 10;
  padding: 4rem 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: #030303;
}

.premium-footer__inner {
  max-width: 80rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

@media (min-width: 768px) {
  .premium-footer__inner {
    flex-direction: row;
  }
}

.premium-footer__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.premium-footer__logo {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  background: #fff;
  color: #030303;
  font-size: 0.8125rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.premium-footer__name {
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #fff;
}

.premium-footer__links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  font-size: 0.8125rem;
  color: #6b7280;
}

.premium-footer__links a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

.premium-footer__links a:hover {
  color: #fff;
}

.premium-footer__copy {
  font-size: 0.8125rem;
  color: #6b7280;
}
