/* ============================================================
   TAXI BOOKING — LANDING PAGE CSS
   ============================================================ */

/* ---- CSS VARIABLES ---- */
:root {
  --clr-accent:     #1155FF;
  --clr-accent-dk:  #0E47D6;
  --clr-dark:       #1a1a2e;
  --clr-dark2:      #16213e;
  --clr-body:       #555e6d;
  --clr-heading:    #1a1a2e;
  --clr-white:      #ffffff;
  --clr-light:      #f9f9fb;
  --clr-border:     #e8eaf0;
  --clr-muted:      #aab0be;

  --ff-base:        'Poppins', sans-serif;

  --radius-sm:      8px;
  --radius-md:      14px;
  --radius-lg:      22px;
  --radius-xl:      32px;
  --radius-pill:    999px;

  --shadow-sm:      0 2px 12px rgba(0,0,0,.06);
  --shadow-md:      0 8px 32px rgba(0,0,0,.10);
  --shadow-lg:      0 20px 60px rgba(0,0,0,.14);
  --shadow-accent:  0 8px 28px rgba(17,85,255,.35);

  --transition:     0.25s ease;
  --section-pad:    100px 0;
}

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--ff-base);
  font-size: 15px;
  color: var(--clr-body);
  background: var(--clr-white);
  line-height: 1.7;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* ---- CONTAINER ---- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- TYPOGRAPHY HELPERS ---- */
.text--accent  { color: var(--clr-accent); }
.text--muted   { color: var(--clr-muted); }

.section-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--clr-accent);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.section-label--light { color: var(--clr-accent); }

.section-title {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700;
  color: var(--clr-heading);
  line-height: 1.25;
  margin-bottom: 16px;
}
.section-title--light { color: var(--clr-white); }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
}
.btn--primary {
  background: var(--clr-accent);
  color: var(--clr-white);
  box-shadow: var(--shadow-accent);
}
.btn--primary:hover {
  background: var(--clr-accent-dk);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(17,85,255,.45);
}
.btn--outline {
  background: transparent;
  color: var(--clr-accent);
  border: 2px solid var(--clr-accent);
}
.btn--outline:hover {
  background: var(--clr-accent);
  color: var(--clr-white);
}
.btn--outline-dark {
  background: transparent;
  color: var(--clr-heading);
  border: 2px solid var(--clr-border);
  border-radius: var(--radius-pill);
}
.btn--outline-dark:hover {
  border-color: var(--clr-accent);
  color: var(--clr-accent);
}
.btn--white {
  background: var(--clr-white);
  color: var(--clr-accent);
  font-weight: 700;
}
.btn--white:hover {
  background: var(--clr-accent);
  color: var(--clr-white);
}

/* ---- STORE BUTTONS ---- */
.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: var(--clr-dark);
  color: var(--clr-white);
  border-radius: var(--radius-md);
  border: 1.5px solid rgba(255,255,255,.15);
  transition: var(--transition);
  min-width: 145px;
}
.store-btn i { font-size: 24px; color: var(--clr-white); }
.store-btn span {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.store-btn span small {
  font-size: 10px;
  opacity: .7;
  font-weight: 400;
}
.store-btn span { font-size: 14px; font-weight: 600; }
.store-btn:hover {
  background: var(--clr-accent);
  border-color: var(--clr-accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-accent);
}

.store-btn--dark {
  background: var(--clr-dark);
  border-color: rgba(255,255,255,.2);
}
.store-btn--dark:hover { background: var(--clr-dark2); }

.store-btn--sm { min-width: 130px; padding: 8px 16px; }
.store-btn--sm i { font-size: 20px; }
.store-btn--sm span { font-size: 12px; }

/* ---- AVATAR ---- */
.avatar {
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--clr-white);
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--clr-white);
  box-shadow: 0 2px 16px rgba(0,0,0,.07);
}
.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}
.navbar__logo {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 20px;
  font-weight: 700;
  color: var(--clr-heading);
  white-space: nowrap;
}
.navbar__logo i {
  color: var(--clr-accent);
  font-size: 22px;
}
.navbar__links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.navbar__links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--clr-body);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  transition: var(--transition);
}
.navbar__links a:hover,
.navbar__links a.active {
  color: var(--clr-accent);
  background: rgba(17,85,255,.09);
}

.navbar__links a.navbar__link--blue {
  color: var(--clr-accent);
  font-weight: 700;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding: 80px 0 60px;
  overflow: hidden;
  background: var(--clr-white);
}
.hero__bg-shape {
  position: absolute;
  top: -60px;
  right: -80px;
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(17,85,255,.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}
.hero__content { flex: 1; max-width: 540px; }

.hero__tagline {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--clr-body);
  margin-bottom: 16px;
  letter-spacing: .02em;
}
.hero__title {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  color: var(--clr-heading);
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero__desc {
  font-size: 15px;
  color: var(--clr-body);
  margin-bottom: 32px;
  max-width: 420px;
}
.hero__store-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero__stats {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 32px;
  border-top: 1.5px solid var(--clr-border);
}
.stat { text-align: left; }
.stat strong {
  display: block;
  font-size: 22px;
  font-weight: 800;
  color: var(--clr-heading);
  line-height: 1.1;
}
.stat span {
  font-size: 12px;
  color: var(--clr-muted);
  font-weight: 500;
}
.stat__divider {
  width: 1.5px;
  height: 36px;
  background: var(--clr-border);
  flex-shrink: 0;
}

/* Phone mockup */
.hero__phone {
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero__phone-mockup {
  position: relative;
  width: 300px;
}
.hero__phone-mockup img {
  width: 100%;
  border-radius: 36px;
  box-shadow: var(--shadow-lg);
  border: 10px solid #111;
}

/* Floating cards */
.hero__float {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--clr-white);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  box-shadow: var(--shadow-md);
  font-size: 12px;
  white-space: nowrap;
  animation: float 3s ease-in-out infinite;
}
.hero__float i { font-size: 18px; color: var(--clr-accent); }
.hero__float small { display: block; color: var(--clr-muted); font-size: 10px; }
.hero__float span, .hero__float strong { font-size: 12px; font-weight: 600; color: var(--clr-heading); }

.hero__float--map   { top: 10%;  left: -60px; animation-delay: 0s; }
.hero__float--rating { top: 42%; right: -55px; animation-delay: .8s; }
.hero__float--arrive { bottom: 14%; left: -50px; animation-delay: 1.4s; }

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

/* ============================================================
   DOWNLOAD BANNER
   ============================================================ */
.download-banner {
  background: var(--clr-dark);
  padding: 70px 0;
}
.download-banner__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
}
.download-banner__text { flex: 1; }
.download-banner__text h2 {
  font-size: clamp(24px, 2.8vw, 36px);
  font-weight: 700;
  color: var(--clr-white);
  line-height: 1.3;
  margin-bottom: 16px;
}
.download-banner__text p {
  color: rgba(255,255,255,.65);
  font-size: 14px;
  margin-bottom: 32px;
}
.download-banner__stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.download-banner__stats .stat strong { color: var(--clr-accent); font-size: 20px; }
.download-banner__stats .stat span  { color: rgba(255,255,255,.6); }

.download-banner__cards {
  display: flex;
  gap: 20px;
  flex-shrink: 0;
}

.qr-card {
  background: var(--clr-white);
  border-radius: var(--radius-lg);
  padding: 24px 22px;
  text-align: center;
  min-width: 160px;
  box-shadow: var(--shadow-md);
}
.qr-card__icon {
  width: 48px;
  height: 48px;
  background: var(--clr-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  font-size: 22px;
  color: var(--clr-accent);
}
.qr-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--clr-heading);
  margin-bottom: 6px;
}
.qr-card p {
  font-size: 11.5px;
  color: var(--clr-muted);
  margin-bottom: 14px;
}
.qr-placeholder img {
  width: 200px;
  margin: 0 auto;
  border-radius: var(--radius-sm);
}
.qr-card__store {
  font-size: 12px;
  font-weight: 600;
  color: var(--clr-heading);
  background: var(--clr-light);
  border-radius: var(--radius-pill);
  padding: 5px 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ============================================================
   BENEFITS
   ============================================================ */
.benefits {
  padding: var(--section-pad);
  text-align: center;
}
.benefits .section-label,
.benefits .section-title { display: block; text-align: center; }
.benefits .section-title { margin-bottom: 56px; }

.benefits__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.benefit-card {
  background: var(--clr-white);
  border: 1.5px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 36px 24px 30px;
  text-align: center;
  transition: var(--transition);
}
.benefit-card:hover {
  border-color: var(--clr-accent);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.benefit-card__icon {
  width: 64px;
  height: 64px;
  background: rgba(17,85,255,.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 26px;
  color: var(--clr-accent);
  transition: var(--transition);
}
.benefit-card:hover .benefit-card__icon {
  background: var(--clr-accent);
  color: var(--clr-white);
}
.benefit-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--clr-heading);
  margin-bottom: 10px;
}
.benefit-card p { font-size: 13.5px; color: var(--clr-body); }

/* ============================================================
   ABOUT US
   ============================================================ */
.about {
  padding: var(--section-pad);
  background: #F3F3F3;
}
.about__inner {
  display: flex;
  align-items: center;
  gap: 72px;
}

/*
  .about__image has right padding so icon pills (which spill 40px outside the
  frame) are visible without triggering page scroll.
*/
.about__image {
  flex: 0 0 auto;
  width: min(100%, 480px);
  padding-right: 56px;
  box-sizing: border-box;
}

/*
  Frame is a fixed square — the disc fills it edge-to-edge.
  overflow: visible lets the head / hair peek above the disc.
*/
.about__image-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  overflow: visible;
}

/* White disc — pure background, no clipping */
.about__image-disc {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--clr-white);
  border: 1.5px solid var(--clr-border);
  box-shadow:
    0 20px 52px rgba(26, 26, 46, 0.10),
    0 6px 18px rgba(26, 26, 46, 0.06);
  z-index: 0;
}

/*
  Photo is absolutely positioned inside the square frame:
  - bottom-aligned so the body fills the disc
  - width: 92% so a thin disc rim shows on both sides
  - head/hair naturally overflows above (frame overflow:visible)
*/
.about__photo {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  display: block;
  z-index: 1;
}

/* Pill container covers the frame; icons spill right */
.about__float-icons {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.about__float-icon {
  position: absolute;
  width: 56px;
  height: 56px;
  background: var(--clr-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-accent);
  font-size: 20px;
  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.13),
    0 2px 6px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--clr-border);
}

/* Arc: 2 o'clock, 3 o'clock, 4 o'clock — straddling the disc rim */
.about__float-icon--1 {
  top:    20%;
  right:  -22px;
}
.about__float-icon--2 {
  top:    50%;
  right:  -28px;
  transform: translateY(-50%);
}
.about__float-icon--3 {
  bottom: 20%;
  right:  -22px;
}

.about__content { flex: 1; }
.about__content .section-title { margin-bottom: 28px; }

.about__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}
.about__list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.about__list li i {
  color: var(--clr-accent);
  font-size: 18px;
  margin-top: 2px;
  flex-shrink: 0;
}
.about__list li p { font-size: 14px; color: var(--clr-body); }

/* ============================================================
   APP DEMO
   ============================================================ */
.app-demo {
  padding: var(--section-pad);
  text-align: center;
}
.app-demo .section-label,
.app-demo .section-title { display: block; text-align: center; }
.app-demo .section-title { margin-bottom: 52px; }

.app-demo__screens {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 16px;
  position: relative;
}
.demo-screen {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  flex-shrink: 0;
}
.demo-screen--small img { width: 150px; border-radius: var(--radius-lg); }
.demo-screen--large img { width: 190px; border-radius: var(--radius-xl); }
.demo-screen:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }

.app-demo__play {
  margin-top: 48px;
  display: flex;
  justify-content: center;
}
.play-btn {
  width: 68px;
  height: 68px;
  background: var(--clr-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-white);
  font-size: 22px;
  box-shadow: var(--shadow-accent);
  transition: var(--transition);
  position: relative;
}
.play-btn::before {
  content: '';
  position: absolute;
  inset: -8px;
  border: 2px solid rgba(17,85,255,.3);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
.play-btn:hover { transform: scale(1.1); background: var(--clr-accent-dk); }

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.2); opacity: 0.4; }
}

/* ============================================================
   PHONE CTA (floating bottom-right)
   ============================================================ */
.phone-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: linear-gradient(180deg, var(--clr-accent) 0%, var(--clr-accent-dk) 100%);
  color: var(--clr-white);
  padding: 14px 22px;
  border-radius: var(--radius-pill);
  box-shadow: 0 12px 30px rgba(17,85,255,.28), 0 6px 18px rgba(0,0,0,.12);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 16px;
  z-index: 2000;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}
.phone-cta i { font-size: 18px; color: rgba(255,255,255,0.95); }
.phone-cta__number { color: var(--clr-white); letter-spacing: 0.02em; }
.phone-cta:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(17,85,255,.32); }

@media (max-width: 520px) {
  .phone-cta { right: 14px; bottom: 14px; padding: 12px 18px; font-size: 15px; }
}

/* Icon-only variant (circular) */
.phone-cta.phone-cta--icon-only {
  padding: 0;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  font-size: 18px;
}
.phone-cta.phone-cta--icon-only i { font-size: 20px; }
.phone-cta.phone-cta--icon-only:hover { transform: translateY(-4px) scale(1.02); }

@media (max-width: 520px) {
  .phone-cta.phone-cta--icon-only { width: 56px; height: 56px; }
}

/* Ripple + Buzz animations for attention */
.phone-cta.phone-cta--icon-only {
  position: fixed;
  /* keep stacking context safe for pseudo element */
  will-change: transform;
  animation: buzz 4.5s ease-in-out infinite;
}
.phone-cta.phone-cta--icon-only::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 64px;
  height: 64px;
  transform: translate(-50%, -50%) scale(0.9);
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.12);
  opacity: 0;
  pointer-events: none;
  z-index: -1;
  animation: ripple 2.6s ease-out infinite;
}

@keyframes ripple {
  0% {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0.45;
  }
  60% {
    transform: translate(-50%, -50%) scale(1.6);
    opacity: 0.12;
  }
  100% {
    transform: translate(-50%, -50%) scale(2.4);
    opacity: 0;
  }
}

@keyframes buzz {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  10% { transform: translateY(-1px) rotate(-2deg); }
  30% { transform: translateY(0px) rotate(2deg); }
  50% { transform: translateY(-1px) rotate(-1deg); }
}

/* Reduce animation intensity on small screens */
@media (max-width: 520px) {
  .phone-cta.phone-cta--icon-only::after { width: 56px; height: 56px; animation-duration: 2.8s; }
  .phone-cta.phone-cta--icon-only { animation-duration: 5.5s; }
}

/* ============================================================
   KEY FEATURES
   ============================================================ */
.key-features {
  padding: var(--section-pad);
  background: var(--clr-dark);
}
.key-features__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 56px;
}
.key-features__desc {
  flex: 0 0 480px;
  font-size: 14px;
  color: rgba(255,255,255,.6);
  line-height: 1.8;
  padding-top: 12px;
}
.key-features__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: rgba(255,255,255,.05);
  border: 1.5px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.feature-card:hover {
  border-color: var(--clr-accent);
  transform: translateY(-4px);
}
.feature-card--center {
  background: rgba(17,85,255,.12);
  border-color: rgba(17,85,255,.3);
}
.feature-card__phone {
  background: var(--clr-dark2);
  padding: 24px 24px 0;
  display: flex;
  justify-content: center;
}
.feature-card__phone img {
  width: 160px;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}
.feature-card__content {
  padding: 22px 24px 26px;
}
.feature-card__content h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: 10px;
  line-height: 1.35;
}
.feature-card__content p {
  font-size: 13px;
  color: rgba(255,255,255,.55);
  line-height: 1.7;
}

/* ============================================================
   PRICING
   ============================================================ */
.pricing {
  padding: var(--section-pad);
  text-align: center;
  background: var(--clr-white);
}
.pricing .section-label,
.pricing .section-title { display: block; text-align: center; }
.pricing .section-title { margin-bottom: 24px; }

.pricing__toggle {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 52px;
  font-size: 14px;
  font-weight: 600;
  color: var(--clr-body);
}
.pricing__toggle-option.active { color: var(--clr-heading); }

/* Toggle switch */
.toggle-switch { position: relative; display: inline-block; width: 46px; height: 24px; }
.toggle-switch input { opacity: 0; width: 0; height: 0; }
.toggle-slider {
  position: absolute;
  inset: 0;
  background: var(--clr-accent);
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: var(--transition);
}
.toggle-slider::before {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  background: var(--clr-white);
  border-radius: 50%;
  left: 3px;
  top: 3px;
  transition: var(--transition);
}
.toggle-switch input:checked + .toggle-slider::before { transform: translateX(22px); }

.pricing__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 900px;
  margin: 0 auto;
}
.pricing-card {
  background: var(--clr-white);
  border: 1.5px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  text-align: left;
  position: relative;
  transition: var(--transition);
}
.pricing-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }

.pricing-card--featured {
  background: var(--clr-accent);
  border-color: var(--clr-accent);
  transform: translateY(-12px);
  box-shadow: var(--shadow-accent);
}
.pricing-card--featured:hover { transform: translateY(-16px); }

.pricing-card__badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--clr-dark);
  color: var(--clr-white);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 18px;
  border-radius: var(--radius-pill);
  letter-spacing: .06em;
  text-transform: uppercase;
}

.pricing-card__header h3 {
  font-size: 30px;
  font-weight: 800;
  color: var(--clr-heading);
  line-height: 1;
  margin-bottom: 4px;
}
.pricing-card__header h3 small {
  font-size: 14px;
  font-weight: 500;
  color: var(--clr-muted);
}
.pricing-card__header p {
  font-size: 15px;
  font-weight: 600;
  color: var(--clr-body);
  margin-bottom: 24px;
}
.pricing-card--featured .pricing-card__header h3,
.pricing-card--featured .pricing-card__header p { color: var(--clr-white); }
.pricing-card--featured .pricing-card__header h3 small { color: rgba(255,255,255,.75); }

.pricing-card__features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 30px;
}
.pricing-card__features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: var(--clr-body);
}
.pricing-card__features li i.fa-check { color: var(--clr-accent); font-weight: 700; }
.pricing-card__features li i.fa-xmark  { color: var(--clr-muted); }
.pricing-card--featured .pricing-card__features li { color: rgba(255,255,255,.9); }
.pricing-card--featured .pricing-card__features li i.fa-check { color: var(--clr-white); }
.pricing-card--featured .pricing-card__features li i.fa-xmark  { color: rgba(255,255,255,.45); }

.pricing-card .btn { width: 100%; justify-content: center; }

/* ============================================================
   COUNTRIES MARQUEE
   ============================================================ */
.countries-marquee {
  background: var(--clr-accent);
  padding: 20px 0;
  overflow: hidden;
}
.marquee-track { overflow: hidden; width: 100%; }
.marquee-inner {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  animation: marquee-scroll 28s linear infinite;
}
.marquee-inner span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 700;
  color: var(--clr-white);
  padding: 0 40px;
  white-space: nowrap;
  letter-spacing: .02em;
}
.marquee-inner span i { font-size: 8px; }

@keyframes marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  padding: var(--section-pad);
  text-align: center;
  background: var(--clr-light);
}
.testimonials .section-label,
.testimonials .section-title { display: block; text-align: center; }
.testimonials .section-title { margin-bottom: 40px; }

.testimonials__avatars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
}
.avatar--sm  { width: 48px;  height: 48px;  }
.avatar--md  { width: 60px;  height: 60px;  }
.avatar--lg  { width: 76px;  height: 76px;  }
.avatar--active { border: 3px solid var(--clr-accent); box-shadow: 0 0 0 4px rgba(17,85,255,.2); }

.testimonials__card {
  max-width: 680px;
  margin: 0 auto 32px;
  background: var(--clr-white);
  border-radius: var(--radius-xl);
  padding: 44px 48px;
  box-shadow: var(--shadow-md);
  text-align: center;
}
.testimonials__stars {
  color: var(--clr-accent);
  font-size: 18px;
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 20px;
}
.testimonials__quote {
  font-size: 15px;
  color: var(--clr-body);
  line-height: 1.85;
  margin-bottom: 28px;
  font-style: italic;
}
.testimonials__author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.testimonials__author img { width: 48px; height: 48px; }
.testimonials__author strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--clr-heading);
}
.testimonials__author span { font-size: 12px; color: var(--clr-muted); }

.testimonials__nav {
  display: flex;
  justify-content: center;
  gap: 12px;
}
.testimonials__nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--clr-border);
  background: var(--clr-white);
  color: var(--clr-body);
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.testimonials__nav-btn:hover,
.testimonials__nav-btn--active {
  background: var(--clr-accent);
  border-color: var(--clr-accent);
  color: var(--clr-white);
}

/* ============================================================
   TOP DRIVERS
   ============================================================ */
.drivers {
  padding: var(--section-pad);
  background: var(--clr-white);
}
.drivers__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  gap: 24px;
}
.drivers__header .section-title { margin-bottom: 0; }

.drivers__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.driver-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1.5px solid var(--clr-border);
  background: var(--clr-white);
  transition: var(--transition);
}
.driver-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--clr-accent);
}
.driver-card__img { position: relative; overflow: hidden; }
.driver-card__img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: var(--transition);
}
.driver-card:hover .driver-card__img img { transform: scale(1.05); }

.driver-card__info {
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.driver-card__info h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--clr-heading);
  flex: 1;
  min-width: 0;
}
.driver-card__title {
  font-size: 12px;
  color: var(--clr-muted);
  display: block;
  width: 100%;
}
.driver-card__rating {
  display: flex;
  align-items: center;
  gap: 5px;
  background: var(--clr-accent);
  color: var(--clr-white);
  border-radius: var(--radius-pill);
  padding: 4px 12px;
  font-size: 13px;
}
.driver-card__rating i { font-size: 11px; }
.driver-card__rating strong { font-weight: 700; }

/* ============================================================
   BLOG
   ============================================================ */
.blog {
  padding: var(--section-pad);
  background: var(--clr-light);
}
.blog__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 48px;
}
.blog__desc {
  flex: 0 0 380px;
  font-size: 14px;
  color: var(--clr-body);
  padding-top: 12px;
  line-height: 1.8;
}
.blog__header .section-title { margin-bottom: 0; }

.blog__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.blog-card {
  background: var(--clr-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1.5px solid var(--clr-border);
  transition: var(--transition);
}
.blog-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.blog-card__img {
  position: relative;
  overflow: hidden;
}
.blog-card__img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: var(--transition);
}
.blog-card:hover .blog-card__img img { transform: scale(1.06); }

.blog-card__cat {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--clr-accent);
  color: var(--clr-white);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: .06em;
}
.blog-card__content { padding: 22px 22px 26px; }
.blog-card__meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.blog-card__meta span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--clr-muted);
}
.blog-card__content h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--clr-heading);
  line-height: 1.45;
  margin-bottom: 16px;
}
.blog-card__link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 600;
  color: var(--clr-accent);
  transition: var(--transition);
}
.blog-card__link:hover { gap: 12px; }
.blog-card__link i { font-size: 12px; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: var(--clr-accent);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  background: rgba(255,255,255,.08);
  border-radius: 50%;
  pointer-events: none;
}
.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -40px;
  width: 220px;
  height: 220px;
  background: rgba(255,255,255,.06);
  border-radius: 50%;
  pointer-events: none;
}
.cta-banner__inner {
  position: relative;
  z-index: 1;
  text-align: center;
}
.cta-banner__content h2 {
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 800;
  color: var(--clr-white);
  margin-bottom: 16px;
}
.cta-banner__content p {
  font-size: 15px;
  color: rgba(255,255,255,.8);
  max-width: 480px;
  margin: 0 auto 36px;
}
.cta-banner__btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--clr-dark);
  padding-top: 72px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer__logo {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 19px;
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: 16px;
}
.footer__logo i { color: var(--clr-accent); font-size: 20px; }
.footer__brand p {
  font-size: 13.5px;
  color: rgba(255,255,255,.55);
  line-height: 1.75;
  margin-bottom: 24px;
}
.footer__socials {
  display: flex;
  gap: 10px;
}
.footer__socials a {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,.07);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.7);
  font-size: 14px;
  transition: var(--transition);
}
.footer__socials a:hover {
  background: var(--clr-accent);
  color: var(--clr-white);
}

.footer__col h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: 22px;
}
.footer__col ul li { margin-bottom: 12px; }
.footer__col ul li a {
  font-size: 13.5px;
  color: rgba(255,255,255,.55);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer__col ul li a:hover { color: var(--clr-accent); }
.footer__col ul li a i { font-size: 13px; color: var(--clr-accent); }

.footer__store-btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Footer bottom bar */
.footer__bottom {
  padding: 20px 0;
}
.footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.footer__bottom p {
  font-size: 13px;
  color: rgba(255,255,255,.4);
}
.footer__bottom-links {
  display: flex;
  gap: 24px;
}
.footer__bottom-links a {
  font-size: 13px;
  color: rgba(255,255,255,.45);
  transition: var(--transition);
}
.footer__bottom-links a:hover { color: var(--clr-accent); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .benefits__grid           { grid-template-columns: repeat(2, 1fr); }
  .key-features__header     { flex-direction: column; gap: 24px; }
  .key-features__desc       { flex: unset; max-width: 100%; }
  .footer__inner            { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .hero__inner              { flex-direction: column; text-align: center; }
  .hero__content            { max-width: 100%; }
  .hero__store-btns         { justify-content: center; }
  .hero__stats              { justify-content: center; }
  .hero__float              { display: none; }
  .download-banner__inner   { flex-direction: column; }
  .download-banner__cards   { justify-content: center; }
  .about__inner             { flex-direction: column; align-items: center; }
  .about__image             { width: min(320px, 80vw); padding-right: 48px; }
  .about__float-icon        { width: 46px; height: 46px; font-size: 17px; }
  .about__float-icon--1     { top: 20%; right: -18px; }
  .about__float-icon--2     { top: 50%; right: -22px; }
  .about__float-icon--3     { bottom: 20%; right: -18px; }
  .key-features__cards      { grid-template-columns: repeat(2, 1fr); }
  .pricing__cards           { grid-template-columns: 1fr; max-width: 360px; }
  .pricing-card--featured   { transform: none; }
  .drivers__header          { flex-direction: column; align-items: flex-start; }
  .drivers__grid            { grid-template-columns: repeat(2, 1fr); }
  .blog__header             { flex-direction: column; }
  .blog__desc               { flex: unset; }
  .blog__grid               { grid-template-columns: repeat(2, 1fr); }
  .footer__inner            { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 640px) {
  :root { --section-pad: 64px 0; }
  .navbar__nav              { display: none; }
  .benefits__grid           { grid-template-columns: 1fr; }
  .key-features__cards      { grid-template-columns: 1fr; }
  .drivers__grid            { grid-template-columns: 1fr; }
  .blog__grid               { grid-template-columns: 1fr; }
  .hero__phone              { width: 100%; }
  .hero__phone-mockup       { width: 240px; margin: 0 auto; }
  .app-demo__screens        { flex-wrap: wrap; }
  .demo-screen--small img   { width: 120px; }
  .demo-screen--large img   { width: 150px; }
  .testimonials__card       { padding: 28px 22px; }
  .footer__bottom-inner     { flex-direction: column; text-align: center; }
}

/* ============================================================
   LEGAL PAGES (Privacy Policy / Terms & Conditions)
   ============================================================ */

.page-hero {
  background: linear-gradient(135deg, var(--clr-dark) 0%, var(--clr-dark2) 100%);
  padding: 100px 0 72px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 70% 50%, rgba(17,85,255,.18) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero__inner {
  position: relative;
  z-index: 1;
}

.page-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--clr-muted);
  margin-bottom: 18px;
}

.page-hero__breadcrumb a {
  color: var(--clr-muted);
  transition: color var(--transition);
}

.page-hero__breadcrumb a:hover { color: var(--clr-white); }

.page-hero__breadcrumb i {
  font-size: 10px;
  color: var(--clr-accent);
}

.page-hero__label {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--clr-accent);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.page-hero__title {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  color: var(--clr-white);
  line-height: 1.15;
  margin-bottom: 16px;
}

.page-hero__title span { color: var(--clr-accent); }

.page-hero__meta {
  font-size: 14px;
  color: var(--clr-muted);
}

.page-hero__meta strong { color: var(--clr-white); }

/* ---- Legal content body ---- */
.legal-content {
  padding: var(--section-pad);
  background: var(--clr-white);
}

.legal-content__inner {
  max-width: 820px;
}

.legal-content__intro {
  background: var(--clr-light);
  border-left: 4px solid var(--clr-accent);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 20px 24px;
  margin-bottom: 48px;
  font-size: 14px;
  color: var(--clr-body);
}

.legal-section {
  margin-bottom: 44px;
}

.legal-section:last-child { margin-bottom: 0; }

.legal-section__number {
  display: inline-block;
  width: 32px;
  height: 32px;
  background: var(--clr-accent);
  color: var(--clr-white);
  font-size: 13px;
  font-weight: 700;
  border-radius: var(--radius-sm);
  text-align: center;
  line-height: 32px;
  margin-bottom: 12px;
  flex-shrink: 0;
}

.legal-section h2 {
  font-size: 20px;
  font-weight: 700;
  color: var(--clr-heading);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.legal-section p {
  font-size: 15px;
  color: var(--clr-body);
  margin-bottom: 12px;
  line-height: 1.8;
}

.legal-section p:last-child { margin-bottom: 0; }

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

.legal-section ul li {
  padding-left: 24px;
  position: relative;
  font-size: 15px;
  color: var(--clr-body);
  line-height: 1.75;
}

.legal-section ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--clr-accent);
}

.legal-section a {
  color: var(--clr-accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-divider {
  border: none;
  border-top: 1px solid var(--clr-border);
  margin: 40px 0;
}

.legal-contact-box {
  background: linear-gradient(135deg, var(--clr-dark) 0%, var(--clr-dark2) 100%);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  margin-top: 52px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.legal-contact-box__icon {
  width: 48px;
  height: 48px;
  background: var(--clr-accent);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--clr-white);
  flex-shrink: 0;
}

.legal-contact-box__text h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: 8px;
}

.legal-contact-box__text p {
  font-size: 14px;
  color: var(--clr-muted);
  margin-bottom: 16px;
  line-height: 1.7;
}

.legal-contact-box__text a {
  color: var(--clr-accent);
  font-weight: 600;
}

.legal-contact-box__links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.legal-contact-box__links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--clr-white);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-pill);
  padding: 8px 18px;
  transition: background var(--transition), border-color var(--transition);
  text-decoration: none;
}

.legal-contact-box__links a:hover {
  background: var(--clr-accent);
  border-color: var(--clr-accent);
}

@media (max-width: 768px) {
  .page-hero { padding: 80px 0 56px; }
  .legal-contact-box { flex-direction: column; padding: 28px 22px; }
}

@media (max-width: 640px) {
  .page-hero__title { font-size: 32px; }
  .legal-section h2 { font-size: 17px; }
}