/* ═══════════════════════════════════════════════
   FERCA TAXI — Landing Page Styles
   ═══════════════════════════════════════════════ */

/* ─── Reset & Tokens ─── */
:root {
  --red: #e50914;
  --red-dark: #b40710;
  --red-glow: rgba(229, 9, 20, 0.35);
  --red-subtle: rgba(229, 9, 20, 0.08);
  --ink: #f0f2f8;
  --ink-2: #a8b2c1;
  --ink-3: #667085;
  --bg: #0a0c12;
  --bg-2: #12141c;
  --bg-3: #1a1d28;
  --card: rgba(255, 255, 255, 0.04);
  --card-border: rgba(255, 255, 255, 0.08);
  --card-hover: rgba(255, 255, 255, 0.07);
  --white: #ffffff;
  --green: #14a44d;
  --amber: #d97706;
  --blue: #3b82f6;
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-xl: 40px;
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.15);
  --shadow-md: 0 12px 32px rgba(0, 0, 0, 0.25);
  --shadow-lg: 0 24px 64px rgba(0, 0, 0, 0.35);
  --font: 'Outfit', 'Inter', ui-sans-serif, system-ui, -apple-system, sans-serif;
  --transition: 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  border: 0;
  background: none;
  cursor: pointer;
  font: inherit;
  color: inherit;
}

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

/* ─── Section Commons ─── */
.section-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 64px;
}

.section-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  background: var(--red-subtle);
  border: 1px solid rgba(229, 9, 20, 0.18);
  padding: 6px 18px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.section-tag--light {
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
}

.section-title {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.section-title--light {
  color: var(--white);
}

.section-desc {
  font-size: 17px;
  color: var(--ink-2);
  margin-top: 16px;
  line-height: 1.7;
}

.text-accent {
  background: linear-gradient(135deg, var(--red), #ff4d5a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 700;
  font-size: 15px;
  border-radius: 14px;
  padding: 14px 28px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.btn__icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.btn--primary {
  background: linear-gradient(135deg, var(--red) 0%, #c20812 100%);
  color: var(--white);
  box-shadow: 0 8px 24px var(--red-glow), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px var(--red-glow), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

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

.btn--ghost {
  background: rgba(255, 255, 255, 0.06);
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.btn--white {
  background: var(--white);
  color: var(--bg);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.btn--white:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.3);
}

.btn--lg {
  padding: 16px 36px;
  font-size: 16px;
  border-radius: 16px;
}

/* ═══════════════════════════════════════════════
   NAV
   ═══════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 24px;
  transition: all 0.4s ease;
}

.nav.scrolled {
  background: rgba(10, 12, 18, 0.85);
  backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav__logo {
  height: 28px;
  width: auto;
}

.nav__name {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--ink-2);
  font-style: italic;
}

.nav__name strong {
  color: var(--white);
  font-weight: 800;
}

.nav__links {
  display: flex;
  gap: 8px;
  margin-left: auto;
}

.nav__link {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-2);
  padding: 8px 16px;
  border-radius: 10px;
  transition: all var(--transition);
}

.nav__link:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.nav__cta {
  margin-left: 12px;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  background: linear-gradient(135deg, var(--red), #c20812);
  padding: 10px 24px;
  border-radius: 12px;
  box-shadow: 0 4px 16px var(--red-glow);
  transition: all var(--transition);
  flex-shrink: 0;
}

.nav__cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px var(--red-glow);
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}

.nav__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.nav__burger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav__burger.open span:nth-child(2) {
  opacity: 0;
}

.nav__burger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  background: rgba(10, 12, 18, 0.96);
  backdrop-filter: blur(20px);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu__inner {
  padding: 40px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  max-width: 400px;
  transform: translateY(-20px);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.mobile-menu.open .mobile-menu__inner {
  transform: translateY(0);
}

.mobile-menu__link {
  font-size: 20px;
  font-weight: 700;
  color: var(--ink-2);
  padding: 16px;
  border-radius: 16px;
  transition: all var(--transition);
  text-align: center;
}

.mobile-menu__link:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.mobile-menu__cta {
  margin-top: 16px;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  background: linear-gradient(135deg, var(--red), #c20812);
  padding: 16px 32px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 8px 24px var(--red-glow);
}

@media (max-width: 768px) {
  .nav__links,
  .nav__cta {
    display: none;
  }

  .nav__burger {
    display: flex;
  }
}

/* ═══════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 100px 24px 60px;
}

.hero__bg-effects {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
}

.hero__orb--1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--red-glow), transparent 70%);
  top: -200px;
  right: -100px;
  animation: orb-float 8s ease-in-out infinite;
}

.hero__orb--2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.12), transparent 70%);
  bottom: -100px;
  left: -100px;
  animation: orb-float 10s ease-in-out infinite reverse;
}

.hero__orb--3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(217, 119, 6, 0.1), transparent 70%);
  top: 40%;
  left: 30%;
  animation: orb-float 12s ease-in-out infinite 2s;
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
}

@keyframes orb-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 15px) scale(0.95); }
}

.hero__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__content {
  max-width: 560px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-2);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
  animation: fade-in-up 0.8s ease both;
}

.hero__badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px rgba(20, 164, 77, 0.5);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 8px rgba(20, 164, 77, 0.5); }
  50% { box-shadow: 0 0 16px rgba(20, 164, 77, 0.8), 0 0 32px rgba(20, 164, 77, 0.3); }
}

.hero__title {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--white);
  margin-bottom: 24px;
  animation: fade-in-up 0.8s ease 0.1s both;
}

.hero__title-accent {
  background: linear-gradient(135deg, var(--red), #ff4d5a, #ff8a8a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: 18px;
  color: var(--ink-2);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 460px;
  animation: fade-in-up 0.8s ease 0.2s both;
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  animation: fade-in-up 0.8s ease 0.3s both;
}

.hero__stats-strip {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 20px 28px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-md);
  backdrop-filter: blur(12px);
  animation: fade-in-up 0.8s ease 0.4s both;
}

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

.hero__stat strong {
  font-size: 24px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.02em;
}

.hero__stat span {
  font-size: 12px;
  color: var(--ink-3);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.hero__stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
}

/* Hero Visual */
.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  animation: fade-in-up 0.8s ease 0.2s both;
}

.hero__phone-frame {
  position: relative;
  width: 340px;
  max-width: 100%;
}

.hero__phone-glow {
  position: absolute;
  inset: -40px;
  background: radial-gradient(circle, var(--red-glow), transparent 60%);
  filter: blur(60px);
  z-index: 0;
  animation: orb-float 6s ease-in-out infinite;
}

.hero__phone-img {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: 28px;
  box-shadow: var(--shadow-lg), 0 0 60px var(--red-glow);
}

/* Floating cards */
.hero__float-card {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: rgba(20, 22, 30, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-md);
  white-space: nowrap;
}

.hero__float-card strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
}

.hero__float-card span {
  display: block;
  font-size: 11px;
  color: var(--ink-3);
  margin-top: 2px;
}

.hero__float-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.hero__float-icon svg {
  width: 18px;
  height: 18px;
}

.hero__float-icon--green {
  background: rgba(20, 164, 77, 0.15);
  color: var(--green);
}

.hero__float-icon--red {
  background: rgba(229, 9, 20, 0.15);
  color: var(--red);
}

.hero__float-card--1 {
  top: 18%;
  left: -40px;
  animation: float-card 4s ease-in-out infinite;
}

.hero__float-card--2 {
  bottom: 22%;
  right: -30px;
  animation: float-card 5s ease-in-out infinite 1s;
}

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

/* Scroll hint */
.hero__scroll-hint {
  text-align: center;
  margin-top: 32px;
  animation: scroll-bounce 2s ease-in-out infinite;
  position: relative;
  z-index: 1;
}

.hero__scroll-hint svg {
  width: 24px;
  height: 24px;
  color: var(--ink-3);
}

@keyframes scroll-bounce {
  0%, 100% { transform: translateY(0); opacity: 0.5; }
  50% { transform: translateY(8px); opacity: 1; }
}

@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ═══════════════════════════════════════════════
   SERVICES
   ═══════════════════════════════════════════════ */
.services {
  padding: 120px 0;
  position: relative;
}

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

.service-card {
  position: relative;
  padding: 40px 32px;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}

.service-card:hover {
  background: var(--card-hover);
  border-color: rgba(255, 255, 255, 0.14);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.service-card--featured {
  border-color: rgba(229, 9, 20, 0.3);
  background: rgba(229, 9, 20, 0.04);
}

.service-card--featured:hover {
  border-color: rgba(229, 9, 20, 0.5);
  box-shadow: 0 24px 64px rgba(229, 9, 20, 0.15);
}

.service-card__badge {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
  background: var(--red);
  padding: 5px 14px;
  border-radius: 100px;
}

.service-card__glow {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.service-card:hover .service-card__glow {
  opacity: 1;
}

.service-card__glow--amber { background: rgba(217, 119, 6, 0.2); }
.service-card__glow--red { background: rgba(229, 9, 20, 0.2); }
.service-card__glow--blue { background: rgba(59, 130, 246, 0.2); }

.service-card__icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
}

.service-card__icon-wrap--amber { background: rgba(217, 119, 6, 0.12); }
.service-card__icon-wrap--red { background: rgba(229, 9, 20, 0.12); }
.service-card__icon-wrap--blue { background: rgba(59, 130, 246, 0.12); }

.service-card__icon-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.service-card__title {
  font-size: 24px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}

.service-card__desc {
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-card__desc strong {
  color: var(--white);
}

.service-card__price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 24px;
}

.service-card__price-from {
  font-size: 13px;
  color: var(--ink-3);
  font-weight: 600;
}

.service-card__price-amount {
  font-size: 32px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.02em;
}

.service-card__features {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-card__feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--ink-2);
  font-weight: 500;
}

.service-card__feature svg {
  width: 16px;
  height: 16px;
  color: var(--green);
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════
   HOW IT WORKS
   ═══════════════════════════════════════════════ */
.how {
  padding: 120px 0;
  background: var(--bg-2);
  position: relative;
  overflow: hidden;
}

.how::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.06), transparent);
}

.how__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 80px;
}

.how__step {
  text-align: center;
  position: relative;
}

.how__step-number {
  font-size: 56px;
  font-weight: 900;
  background: linear-gradient(180deg, rgba(229, 9, 20, 0.3), rgba(229, 9, 20, 0.05));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 24px;
}

.how__step-line {
  position: absolute;
  top: 32px;
  right: -16px;
  width: calc(100% - 60px);
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(229, 9, 20, 0.2), transparent);
  transform: translateX(50%);
}

.how__step-line--hidden {
  display: none;
}

.how__step-content {
  position: relative;
  z-index: 1;
}

.how__step-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(229, 9, 20, 0.1);
  border: 1px solid rgba(229, 9, 20, 0.2);
  display: grid;
  place-items: center;
  margin: 0 auto 20px;
  color: var(--red);
}

.how__step-icon svg {
  width: 24px;
  height: 24px;
}

.how__step h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
}

.how__step p {
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.7;
  max-width: 280px;
  margin: 0 auto;
}

.how__visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.how__phone-glow {
  position: absolute;
  width: 500px;
  height: 300px;
  background: radial-gradient(circle, var(--red-glow), transparent 60%);
  filter: blur(80px);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.how__phones-img {
  position: relative;
  z-index: 1;
  max-width: 700px;
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* ═══════════════════════════════════════════════
   MARQUEE
   ═══════════════════════════════════════════════ */
.marquee-section {
  padding: 48px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  background: var(--bg);
}

.marquee {
  position: relative;
  overflow: hidden;
}

.marquee__track {
  display: flex;
  gap: 32px;
  align-items: center;
  animation: marquee-scroll 25s linear infinite;
  white-space: nowrap;
  width: max-content;
}

.marquee__item {
  font-size: 20px;
  font-weight: 800;
  color: var(--ink-2);
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.marquee__dot {
  font-size: 10px;
  color: var(--red);
}

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

/* ═══════════════════════════════════════════════
   DRIVER
   ═══════════════════════════════════════════════ */
.driver {
  padding: 120px 0;
  background: linear-gradient(135deg, #0f1118, #1a1024 50%, #12141c);
  position: relative;
  overflow: hidden;
}

.driver__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.driver__image-col {
  position: relative;
}

.driver__image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.driver__image-glow {
  position: absolute;
  inset: -60px;
  background: radial-gradient(circle at 30% 70%, rgba(229, 9, 20, 0.15), transparent 60%);
  filter: blur(40px);
  z-index: 0;
}

.driver__img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.driver__image-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, transparent 60%, rgba(10, 12, 18, 0.6));
  border-radius: var(--radius-lg);
}

.driver__content {
  max-width: 480px;
}

.driver__desc {
  font-size: 17px;
  color: var(--ink-2);
  line-height: 1.7;
  margin: 24px 0 36px;
}

.driver__perks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.driver__perk {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.driver__perk-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(229, 9, 20, 0.1);
  border: 1px solid rgba(229, 9, 20, 0.2);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--red);
}

.driver__perk-icon svg {
  width: 20px;
  height: 20px;
}

.driver__perk strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.driver__perk span {
  font-size: 14px;
  color: var(--ink-3);
  line-height: 1.5;
}

/* ═══════════════════════════════════════════════
   TRUST
   ═══════════════════════════════════════════════ */
.trust {
  padding: 120px 0;
  background: var(--bg);
}

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

.trust__card {
  padding: 36px 28px;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  text-align: center;
  transition: all var(--transition);
}

.trust__card:hover {
  background: var(--card-hover);
  border-color: rgba(255, 255, 255, 0.14);
  transform: translateY(-4px);
}

.trust__card-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(229, 9, 20, 0.08);
  border: 1px solid rgba(229, 9, 20, 0.15);
  display: grid;
  place-items: center;
  margin: 0 auto 20px;
  color: var(--red);
}

.trust__card-icon svg {
  width: 26px;
  height: 26px;
}

.trust__card h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
}

.trust__card p {
  font-size: 14px;
  color: var(--ink-3);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════
   CTA BANNER
   ═══════════════════════════════════════════════ */
.cta-banner {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.cta-banner__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1a0406, var(--red-dark), #1a0406);
}

.cta-banner__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}

.cta-banner__orb--1 {
  width: 400px;
  height: 400px;
  background: rgba(255, 100, 100, 0.2);
  top: -100px;
  right: 10%;
  animation: orb-float 8s ease-in-out infinite;
}

.cta-banner__orb--2 {
  width: 300px;
  height: 300px;
  background: rgba(255, 200, 100, 0.1);
  bottom: -100px;
  left: 10%;
  animation: orb-float 10s ease-in-out infinite reverse;
}

.cta-banner__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}

.cta-banner__title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.cta-banner__desc {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 36px;
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════ */
.footer {
  padding: 80px 0 40px;
  background: var(--bg-2);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

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

.footer__logo {
  height: 32px;
  width: auto;
}

.footer__brand-name {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-2);
  font-style: italic;
  letter-spacing: 0.04em;
}

.footer__brand-name strong {
  font-weight: 800;
  color: var(--white);
}

.footer__tagline {
  font-size: 15px;
  color: var(--ink-3);
  margin-bottom: 20px;
  line-height: 1.6;
}

.footer__social {
  display: flex;
  gap: 10px;
}

.footer__social-link {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  place-items: center;
  color: var(--ink-2);
  transition: all var(--transition);
}

.footer__social-link:hover {
  background: rgba(229, 9, 20, 0.15);
  border-color: rgba(229, 9, 20, 0.3);
  color: var(--red);
  transform: translateY(-2px);
}

.footer__social-link svg {
  width: 18px;
  height: 18px;
}

.footer__links-col h4 {
  font-size: 14px;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

.footer__links-col a {
  display: block;
  font-size: 14px;
  color: var(--ink-3);
  padding: 6px 0;
  transition: color 0.2s ease;
}

.footer__links-col a:hover {
  color: var(--red);
}

.footer__bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
}

.footer__bottom p {
  font-size: 13px;
  color: var(--ink-3);
}

/* ═══════════════════════════════════════════════
   SCROLL ANIMATIONS
   ═══════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 48px;
  }

  .hero__content {
    max-width: 100%;
  }

  .hero__subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__stats-strip {
    justify-content: center;
  }

  .hero__phone-frame {
    width: 280px;
  }

  .hero__float-card--1 {
    left: 0;
    top: 10%;
  }

  .hero__float-card--2 {
    right: 0;
    bottom: 15%;
  }

  .services__grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }

  .how__grid {
    grid-template-columns: 1fr;
    gap: 48px;
    max-width: 400px;
    margin: 0 auto 80px;
  }

  .how__step-line {
    display: none;
  }

  .driver__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .driver__image-col {
    order: 2;
    max-width: 400px;
    margin: 0 auto;
  }

  .driver__content {
    order: 1;
    max-width: 100%;
    text-align: center;
  }

  .driver__perks {
    text-align: left;
  }

  .driver__content .btn {
    margin: 0 auto;
  }

  .trust__grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 640px) {
  .hero {
    padding: 90px 20px 40px;
  }

  .hero__stats-strip {
    flex-direction: column;
    gap: 16px;
    padding: 20px;
  }

  .hero__stat-divider {
    width: 60px;
    height: 1px;
  }

  .hero__float-card {
    display: none;
  }

  .trust__grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

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

  .container {
    padding: 0 16px;
  }
}

@media (max-width: 380px) {
  .hero__title {
    font-size: 36px;
  }

  .btn--lg {
    padding: 14px 24px;
    font-size: 15px;
  }
}
