/* ============================================================
   CarZoum Custom Styles — v2.0
   Colors: Navy #0F1729 | Navy2 #1A2238 | Blue #1E90FF | Gold #FFD700
   ============================================================ */

:root {
  --cz-navy:   #0F1729;
  --cz-navy2:  #1A2238;
  --cz-blue:   #1E90FF;
  --cz-gold:   #FFD700;
  --cz-white:  #FFFFFF;
  --cz-muted:  rgba(255,255,255,0.65);
  --cz-border: rgba(30,144,255,0.18);
  --cz-glass:  rgba(255,255,255,0.04);
  --cz-radius: 16px;
  --cz-radius-lg: 24px;
}

/* ── Global overrides ─────────────────────────────── */
body { background: var(--cz-navy); }

/* ── Utility ──────────────────────────────────────── */
.cz-gold-bar {
  display: inline-block;
  width: 48px;
  height: 4px;
  background: var(--cz-gold);
  border-radius: 2px;
  margin-bottom: 12px;
}

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

.cz-label-text {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--cz-gold);
}

.cz-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,215,0,0.12);
  border: 1px solid rgba(255,215,0,0.35);
  color: var(--cz-gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.cz-badge__dot {
  width: 7px;
  height: 7px;
  background: var(--cz-gold);
  border-radius: 50%;
  animation: cz-pulse 1.8s ease-in-out infinite;
}

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

/* ── Buttons ──────────────────────────────────────── */
.cz-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--cz-blue);
  color: var(--cz-white);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 14px 32px;
  border-radius: 100px;
  border: none;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 6px 28px rgba(30,144,255,0.38);
}
.cz-btn-primary:hover {
  background: #1a7fef;
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(30,144,255,0.5);
  color: var(--cz-white);
  text-decoration: none;
}

.cz-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--cz-white);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 13px 30px;
  border-radius: 100px;
  border: 1.5px solid rgba(255,255,255,0.3);
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}
.cz-btn-ghost:hover {
  border-color: var(--cz-white);
  background: rgba(255,255,255,0.06);
  color: var(--cz-white);
  text-decoration: none;
}

/* ── HERO ─────────────────────────────────────────── */
.cz-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, var(--cz-navy) 0%, #0d2045 60%, #0a1535 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
}

.cz-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 70% 50%, rgba(30,144,255,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(255,215,0,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.cz-hero__inner {
  position: relative;
  z-index: 2;
}

.cz-hero__title {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--cz-white);
  margin-bottom: 20px;
}

.cz-hero__title .highlight {
  background: linear-gradient(90deg, var(--cz-blue), #60b4ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cz-hero__sub {
  font-size: 1.1rem;
  color: var(--cz-muted);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}

.cz-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 48px;
}

.cz-hero__stats {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
}

.cz-hero__stat-num {
  font-size: 1.7rem;
  font-weight: 900;
  color: var(--cz-gold);
  line-height: 1;
}

.cz-hero__stat-lbl {
  font-size: 0.75rem;
  color: var(--cz-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* Phone mockup area */
.cz-hero__phone-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cz-glow--blue {
  position: absolute;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(30,144,255,0.22) 0%, transparent 70%);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.cz-glow--gold {
  position: absolute;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255,215,0,0.14) 0%, transparent 70%);
  border-radius: 50%;
  bottom: -20px;
  right: -20px;
  pointer-events: none;
}

.cz-app-preview {
  position: relative;
  z-index: 2;
  border-radius: 32px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(30,144,255,0.25),
    0 30px 80px rgba(0,0,0,0.6),
    0 0 60px rgba(30,144,255,0.15);
  max-width: 280px;
  width: 100%;
}

.cz-app-preview img { display: block; width: 100%; }

/* floating card on phone */
.cz-float-card {
  position: absolute;
  background: rgba(26,34,56,0.92);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(30,144,255,0.25);
  border-radius: 14px;
  padding: 12px 16px;
  z-index: 3;
  min-width: 150px;
}

.cz-float-card--tl { top: 10%; left: -30px; }
.cz-float-card--br { bottom: 15%; right: -30px; }

.cz-float-card__label {
  font-size: 0.65rem;
  color: var(--cz-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 4px;
}

.cz-float-card__value {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--cz-white);
}

.cz-float-card__value span {
  color: var(--cz-gold);
}

/* ── CHOICE YOU CAR ───────────────────────────────── */
.cz-choice-section {
  background: var(--cz-navy2);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.cz-choice-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cz-blue), transparent);
}

.cz-choice-section::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,215,0,0.4), transparent);
}

.cz-choice-headline {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--cz-white);
  margin-bottom: 16px;
  line-height: 1.15;
}

.cz-choice-headline .cz-blue { color: var(--cz-blue); }
.cz-choice-headline .cz-gold { color: var(--cz-gold); }

.cz-choice-sub {
  font-size: 1rem;
  color: var(--cz-muted);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 40px;
}

/* feature cards */
.cz-feature-card {
  background: var(--cz-glass);
  border: 1px solid var(--cz-border);
  border-radius: var(--cz-radius);
  padding: 32px 24px;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  height: 100%;
}

.cz-feature-card:hover {
  border-color: rgba(30,144,255,0.45);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3), 0 0 30px rgba(30,144,255,0.1);
}

.cz-feature-card--gold {
  border-color: rgba(255,215,0,0.25);
}

.cz-feature-card--gold:hover {
  border-color: rgba(255,215,0,0.55);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3), 0 0 30px rgba(255,215,0,0.12);
}

.cz-feature-card__icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.cz-feature-card__icon--blue {
  background: rgba(30,144,255,0.15);
  color: var(--cz-blue);
}

.cz-feature-card__icon--gold {
  background: rgba(255,215,0,0.15);
  color: var(--cz-gold);
}

.cz-feature-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--cz-white);
  margin-bottom: 10px;
}

.cz-feature-card__desc {
  font-size: 0.88rem;
  color: var(--cz-muted);
  line-height: 1.65;
}

/* ── HOW IT WORKS / STEPS ─────────────────────────── */
.cz-steps-section {
  background: var(--cz-navy);
  padding: 100px 0;
}

.cz-steps__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  margin-top: 60px;
  position: relative;
}

/* connector line between steps */
.cz-steps__grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cz-blue), var(--cz-gold), var(--cz-blue), transparent);
  opacity: 0.3;
}

.cz-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.cz-step__number {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cz-navy2), #0a1535);
  border: 2px solid var(--cz-blue);
  color: var(--cz-blue);
  font-size: 1.4rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 0 24px rgba(30,144,255,0.25);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.cz-step:hover .cz-step__number {
  border-color: var(--cz-gold);
  color: var(--cz-gold);
  box-shadow: 0 0 30px rgba(255,215,0,0.3);
}

.cz-step__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--cz-white);
  margin-bottom: 10px;
}

.cz-step__desc {
  font-size: 0.85rem;
  color: var(--cz-muted);
  line-height: 1.6;
}

/* ── WHY CARZOUM ──────────────────────────────────── */
.cz-why-section {
  background: linear-gradient(160deg, #0a1535 0%, var(--cz-navy2) 50%, #0a1535 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.cz-why-section::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,215,0,0.05) 0%, transparent 70%);
  top: -100px; right: -100px;
  pointer-events: none;
}

.cz-why-headline {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 900;
  color: var(--cz-white);
  margin-bottom: 14px;
}

.cz-why-sub {
  color: var(--cz-muted);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 40px;
}

.cz-why-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cz-why-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
  background: var(--cz-glass);
  border: 1px solid var(--cz-border);
  border-radius: var(--cz-radius);
  transition: border-color 0.3s, background 0.3s;
}

.cz-why-item:hover {
  border-color: rgba(255,215,0,0.3);
  background: rgba(255,215,0,0.03);
}

.cz-why-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 12px;
  background: rgba(30,144,255,0.12);
  color: var(--cz-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.cz-why-item:nth-child(odd) .cz-why-icon {
  background: rgba(255,215,0,0.12);
  color: var(--cz-gold);
}

.cz-why-item__title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--cz-white);
  margin-bottom: 4px;
}

.cz-why-item__desc {
  font-size: 0.83rem;
  color: var(--cz-muted);
  line-height: 1.55;
}

/* ── STATS BAR ────────────────────────────────────── */
.cz-stats-bar {
  background: var(--cz-navy2);
  border-top: 1px solid var(--cz-border);
  border-bottom: 1px solid var(--cz-border);
  padding: 32px 0;
}

.cz-stat-item {
  text-align: center;
}

.cz-stat-item__num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--cz-gold);
  line-height: 1;
  margin-bottom: 4px;
}

.cz-stat-item__lbl {
  font-size: 0.75rem;
  color: var(--cz-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.cz-stat-divider {
  width: 1px;
  background: rgba(30,144,255,0.2);
  height: 48px;
  margin: auto;
}

/* ── DRIVE SECTION ────────────────────────────────── */
.cz-drive-section {
  background: var(--cz-navy);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.cz-drive-inner {
  position: relative;
  background: linear-gradient(135deg, var(--cz-navy2) 0%, #0a1535 100%);
  border: 1px solid var(--cz-border);
  border-radius: var(--cz-radius-lg);
  padding: 64px 48px;
  overflow: hidden;
}

.cz-drive-inner::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(30,144,255,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.cz-drive-inner::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,215,0,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cz-drive-headline {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: var(--cz-white);
  margin-bottom: 16px;
  line-height: 1.15;
}

.cz-drive-headline .cz-gold { color: var(--cz-gold); }

.cz-drive-sub {
  color: var(--cz-muted);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 460px;
}

.cz-drive-stats {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.cz-drive-stat__num {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--cz-blue);
  line-height: 1;
}

.cz-drive-stat__lbl {
  font-size: 0.75rem;
  color: var(--cz-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* ── TESTIMONIALS ─────────────────────────────────── */
.cz-testimonials {
  background: var(--cz-navy2);
  padding: 100px 0;
}

.cz-testimonial-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(30,144,255,0.15);
  border-radius: var(--cz-radius);
  padding: 32px 28px;
  height: 100%;
  transition: border-color 0.3s, transform 0.3s;
}

.cz-testimonial-card:hover {
  border-color: rgba(255,215,0,0.25);
  transform: translateY(-4px);
}

.cz-testimonial-stars {
  color: var(--cz-gold);
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.cz-testimonial-text {
  color: rgba(255,255,255,0.8);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

.cz-testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cz-testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cz-blue), #0a4a8a);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: var(--cz-white);
  border: 2px solid rgba(255,215,0,0.3);
}

.cz-testimonial-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--cz-white);
}

.cz-testimonial-loc {
  font-size: 0.75rem;
  color: var(--cz-muted);
}

/* ── CTA FINAL ────────────────────────────────────── */
.cz-cta-section {
  background: linear-gradient(135deg, #051025 0%, #0a1535 50%, #051025 100%);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cz-cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(30,144,255,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.cz-cta-headline {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--cz-white);
  margin-bottom: 16px;
}

.cz-cta-sub {
  font-size: 1.05rem;
  color: var(--cz-muted);
  margin-bottom: 40px;
}

.cz-cta-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

/* ── STORE BADGES ─────────────────────────────────── */
.cz-store-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 12px;
  padding: 12px 22px;
  color: var(--cz-white);
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}

.cz-store-badge:hover {
  background: rgba(30,144,255,0.15);
  border-color: var(--cz-blue);
  color: var(--cz-white);
  text-decoration: none;
}

.cz-store-badge__icon { font-size: 1.6rem; }

.cz-store-badge__sub {
  font-size: 0.65rem;
  opacity: 0.75;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
}

.cz-store-badge__name {
  font-size: 0.95rem;
  font-weight: 700;
  display: block;
}

/* ── RESPONSIVE ───────────────────────────────────── */
@media (max-width: 991px) {
  .cz-hero {
    padding: 100px 0 60px;
    text-align: center;
  }
  .cz-hero__sub { margin: 0 auto 32px; }
  .cz-hero__cta { justify-content: center; }
  .cz-hero__stats { justify-content: center; }
  .cz-hero__phone-wrap { margin-top: 60px; }
  .cz-float-card--tl { left: 0; }
  .cz-float-card--br { right: 0; }
  .cz-steps__grid::before { display: none; }
  .cz-drive-inner { padding: 48px 28px; }
}

@media (max-width: 576px) {
  .cz-hero__title { font-size: 2rem; }
  .cz-drive-stats { gap: 20px; }
  .cz-stat-divider { display: none; }
}

/* ── SECTION HEADINGS override ────────────────────── */
.cz-section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 900;
  color: var(--cz-white);
  margin-bottom: 14px;
}

.cz-section-title .cz-blue  { color: var(--cz-blue); }
.cz-section-title .cz-gold  { color: var(--cz-gold); }

.cz-section-desc {
  font-size: 1rem;
  color: var(--cz-muted);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 48px;
}

/* center section desc when centered layout */
.text-center .cz-section-desc { margin-left: auto; margin-right: auto; }

/* ── CAR SHOWCASE (Hero Visual) ───────────────────── */
.cz-car-showcase {
  position: relative;
  padding: 20px;
}

.cz-car-showcase__glow-blue {
  position: absolute;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(30,144,255,0.18) 0%, transparent 65%);
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
}

.cz-car-showcase__glow-gold {
  position: absolute;
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(255,215,0,0.14) 0%, transparent 70%);
  border-radius: 50%;
  bottom: 30px; right: 0;
  pointer-events: none;
  z-index: 0;
}

.cz-car-showcase__main {
  position: relative;
  z-index: 1;
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255,215,0,0.2),
    0 30px 70px rgba(0,0,0,0.65),
    0 0 50px rgba(30,144,255,0.12);
}

.cz-car-img {
  display: block;
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.88) contrast(1.05) saturate(1.1);
}

/* floating info tags on car image */
.cz-car-tag {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(15,23,41,0.88);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,215,0,0.3);
  border-radius: 12px;
  padding: 10px 14px;
  z-index: 3;
}

.cz-car-tag--tl { top: 16px; left: 16px; }
.cz-car-tag--br { bottom: 16px; right: 16px; }

.cz-car-tag__icon { font-size: 1.2rem; }

.cz-car-tag__val {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--cz-gold);
  line-height: 1.1;
}

.cz-car-tag__lbl {
  font-size: 0.7rem;
  color: var(--cz-muted);
}

/* thumbnail strip */
.cz-car-thumbs {
  display: flex;
  gap: 10px;
  margin-top: 14px;
  position: relative;
  z-index: 1;
}

.cz-car-thumb {
  flex: 1;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid rgba(255,255,255,0.06);
  cursor: pointer;
  transition: border-color 0.2s, transform 0.2s;
}

.cz-car-thumb img {
  display: block;
  width: 100%;
  height: 60px;
  object-fit: cover;
  filter: brightness(0.7);
  transition: filter 0.2s;
}

.cz-car-thumb:hover img,
.cz-car-thumb--active img { filter: brightness(1); }

.cz-car-thumb--active {
  border-color: var(--cz-gold);
}

/* ── HERO TRUST BAR ───────────────────────────────── */
.cz-hero__trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.cz-trust-item {
  font-size: 0.78rem;
  color: var(--cz-muted);
  display: flex;
  align-items: center;
  gap: 5px;
}

.cz-trust-item i { color: var(--cz-blue); }

.cz-trust-sep {
  color: rgba(255,255,255,0.2);
  font-size: 0.9rem;
}

/* ── CAR GALLERY ──────────────────────────────────── */
.cz-car-gallery__item {
  position: relative;
  border-radius: var(--cz-radius);
  overflow: hidden;
  border: 1px solid rgba(255,215,0,0.15);
}

.cz-car-gallery__item img {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
  filter: brightness(0.75) saturate(1.1);
  transition: filter 0.4s, transform 0.4s;
}

.cz-car-gallery__item:hover img {
  filter: brightness(0.9) saturate(1.15);
  transform: scale(1.03);
}

.cz-car-gallery__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,23,41,0.85) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 20px;
  pointer-events: none;
}

.cz-car-gallery__brand {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--cz-white);
  letter-spacing: 0.5px;
}

.cz-car-gallery__tag {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--cz-navy);
  background: var(--cz-gold);
  padding: 4px 10px;
  border-radius: 100px;
  letter-spacing: 0.5px;
}

/* ── APP PREVIEW (Why section) ────────────────────── */
.cz-app-preview {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(30,144,255,0.2),
    0 30px 70px rgba(0,0,0,0.55);
}

.cz-app-preview__img {
  display: block;
  width: 100%;
  height: 420px;
  object-fit: cover;
  filter: brightness(0.82) saturate(1.1);
}

.cz-app-preview__glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(30,144,255,0.15) 100%);
  pointer-events: none;
  z-index: 1;
}

/* ── DRIVE STATS ──────────────────────────────────── */
.cz-drive-stat__value {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--cz-blue);
  display: block;
  line-height: 1;
}

.cz-drive-stat__label {
  font-size: 0.72rem;
  color: var(--cz-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* ── HERO TITLE (text color helpers) ──────────────── */
.cz-text-gold { color: var(--cz-gold) !important; }
.cz-text-blue { color: var(--cz-blue) !important; }

/* ── WHY LIST structure fix ───────────────────────── */
.cz-why-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
  background: var(--cz-glass);
  border: 1px solid var(--cz-border);
  border-radius: var(--cz-radius);
  transition: border-color 0.3s;
  list-style: none;
}

.cz-why-list li:hover { border-color: rgba(255,215,0,0.28); }

.cz-why-list strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--cz-white);
  margin-bottom: 4px;
}

.cz-why-list p {
  font-size: 0.83rem;
  color: var(--cz-muted);
  margin: 0;
  line-height: 1.55;
}

/* ── SECTION SUB ──────────────────────────────────── */
.cz-section-sub {
  font-size: 1rem;
  color: var(--cz-muted);
  line-height: 1.7;
  max-width: 540px;
}

/* ── NO LIGHT COLORS OVERRIDE ─────────────────────── */
.cz-hero,
.cz-choice-section,
.cz-why-section,
.cz-drive-section,
.cz-steps-section {
  color: var(--cz-white);
}

/* ensure text in dark sections stays readable */
.cz-feature-card__text,
.cz-step__desc,
.cz-drive-sub { color: var(--cz-muted); }

/* ── RESPONSIVE EXTRAS ────────────────────────────── */
@media (max-width: 991px) {
  .cz-car-img { height: 220px; }
  .cz-app-preview__img { height: 280px; }
  .cz-car-gallery__item img { height: 160px; }
}

/* ════════════════════════════════════════════════════
   HEADER / NAVBAR — Dark override
   ════════════════════════════════════════════════════ */

header {
  background: rgba(15, 23, 41, 0.97) !important;
  box-shadow: 0 2px 24px rgba(0,0,0,0.5) !important;
  border-bottom: 1px solid rgba(30,144,255,0.18) !important;
  backdrop-filter: blur(12px) !important;
}

.navbar-bottom {
  background: transparent !important;
}

/* Logo — bigger, with gold glow on hover */
.navbar-bottom-wrapper .logo {
  display: flex;
  align-items: center;
}

.navbar-bottom-wrapper .logo img {
  height: 52px !important;
  width: auto !important;
  filter: drop-shadow(0 0 10px rgba(255,215,0,0.25));
  transition: filter 0.3s, transform 0.3s;
}

.navbar-bottom-wrapper .logo img:hover {
  filter: drop-shadow(0 0 18px rgba(255,215,0,0.5));
  transform: scale(1.03);
}

/* Nav links — white on dark */
.navbar-bottom-wrapper .menu li a {
  color: rgba(255,255,255,0.8) !important;
  font-weight: 600 !important;
  font-size: 0.9rem !important;
  transition: color 0.2s !important;
}

.navbar-bottom-wrapper .menu li a:hover,
.navbar-bottom-wrapper .menu li a.active {
  color: var(--cz-gold) !important;
}

.navbar-bottom-wrapper .menu li a span::before {
  background: var(--cz-gold) !important;
}

/* Contact Us button in nav */
header .cmn--btn {
  background: var(--cz-blue) !important;
  color: #fff !important;
  font-weight: 700 !important;
  border-radius: 100px !important;
  padding: 10px 24px !important;
  box-shadow: 0 4px 16px rgba(30,144,255,0.35) !important;
  transition: background 0.2s, box-shadow 0.2s !important;
}

header .cmn--btn:hover {
  background: #1a7fef !important;
  box-shadow: 0 6px 24px rgba(30,144,255,0.5) !important;
}

/* Mobile hamburger lines */
.nav-toggle span {
  background: rgba(255,255,255,0.85) !important;
}

/* Mobile menu open */
@media (max-width: 991px) {
  .navbar-bottom-wrapper .menu {
    background: rgba(15,23,41,0.98) !important;
    border: 1px solid rgba(30,144,255,0.15) !important;
  }
}

/* ════════════════════════════════════════════════════
   HERO LOGO — grande, centralizado, destaque total
   ════════════════════════════════════════════════════ */

.cz-hero__logo {
  margin-bottom: 32px;
}

.cz-hero__logo-img {
  height: 90px;
  width: auto;
  max-width: 340px;
  object-fit: contain;
  /* drop-shadow dourado para gravar na memória */
  filter:
    drop-shadow(0 0 18px rgba(255, 215, 0, 0.55))
    drop-shadow(0 0 40px rgba(255, 215, 0, 0.25));
  animation: cz-logo-pulse 3.5s ease-in-out infinite;
}

@keyframes cz-logo-pulse {
  0%, 100% {
    filter:
      drop-shadow(0 0 16px rgba(255, 215, 0, 0.55))
      drop-shadow(0 0 38px rgba(255, 215, 0, 0.22));
  }
  50% {
    filter:
      drop-shadow(0 0 28px rgba(255, 215, 0, 0.80))
      drop-shadow(0 0 60px rgba(255, 215, 0, 0.35));
  }
}

/* Navbar sem logo — centraliza os links */
.navbar-bottom-wrapper .logo {
  display: none !important;
}

/* Ajusta espaçamento do navbar sem logo */
.navbar-bottom-wrapper {
  justify-content: space-between;
}

/* Mobile: logo maior */
@media (max-width: 991px) {
  .cz-hero__logo-img {
    height: 70px;
    max-width: 360px;
  }
}


/* ════════════════════════════════════════════════════
   HERO — full-screen car background, centered layout
   ════════════════════════════════════════════════════ */

.cz-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--cz-navy);
}

/* ── Background car image ── */
.cz-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cz-hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
  filter: brightness(0.55) saturate(1.1);
  transition: opacity 0.6s ease;
}

.cz-hero__bg-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom,
      rgba(15,23,41,0.72) 0%,
      rgba(15,23,41,0.38) 40%,
      rgba(15,23,41,0.55) 70%,
      rgba(15,23,41,0.92) 100%
    );
}

/* ── Hero body (content) ── */
.cz-hero__body {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 18px;
  padding-bottom: 160px; /* space for strip */
}

/* ── Logo ── */
.cz-hero__logo {
  margin-bottom: 52px;
}

.cz-hero__logo-img {
  height: 155px;
  width: auto;
  max-width: 520px;
  object-fit: contain;
  filter:
    drop-shadow(0 0 20px rgba(255,215,0,0.6))
    drop-shadow(0 0 50px rgba(255,215,0,0.25));
  animation: cz-logo-pulse 3.5s ease-in-out infinite;
}

@keyframes cz-logo-pulse {
  0%,100% {
    filter:
      drop-shadow(0 0 18px rgba(255,215,0,0.55))
      drop-shadow(0 0 40px rgba(255,215,0,0.22));
  }
  50% {
    filter:
      drop-shadow(0 0 32px rgba(255,215,0,0.85))
      drop-shadow(0 0 70px rgba(255,215,0,0.38));
  }
}

/* ── Badge ── */
.cz-hero .cz-badge {
  margin-bottom: 20px;
}

/* ── Title ── */
.cz-hero__title {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 900;
  color: var(--cz-white);
  line-height: 1.08;
  margin-bottom: 20px;
}

/* ── Subtitle ── */
.cz-hero__sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 36px;
}

/* ── CTA buttons ── */
.cz-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

/* ── Car strip selector ── */
.cz-hero__strip {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  background: rgba(10,18,35,0.85);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255,215,0,0.15);
  padding: 12px 0;
}

.cz-strip__track {
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: stretch;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.cz-strip__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.04);
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 8px;
  cursor: pointer;
  transition: border-color 0.25s, background 0.25s, transform 0.2s;
  max-width: 180px;
}

.cz-strip__item img {
  width: 100%;
  height: 64px;
  object-fit: cover;
  border-radius: 8px;
  filter: brightness(0.75);
  transition: filter 0.25s;
}

.cz-strip__label {
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.5px;
  transition: color 0.25s;
}

.cz-strip__item:hover {
  border-color: rgba(255,215,0,0.35);
  background: rgba(255,215,0,0.04);
  transform: translateY(-2px);
}

.cz-strip__item:hover img { filter: brightness(0.95); }
.cz-strip__item:hover .cz-strip__label { color: rgba(255,255,255,0.9); }

.cz-strip__item--active {
  border-color: var(--cz-gold) !important;
  background: rgba(255,215,0,0.08) !important;
}

.cz-strip__item--active img { filter: brightness(1) !important; }

.cz-strip__item--active .cz-strip__label {
  color: var(--cz-gold) !important;
}

/* ── Remove old car showcase classes (replaced by new hero) ── */
.cz-car-showcase,
.cz-car-thumbs,
.cz-car-thumb,
.cz-car-img,
.cz-car-tag,
.cz-hero__phone-wrap,
.cz-hero__visual,
.cz-hero__trust,
.cz-hero__stats,
.cz-hero__inner { all: unset; }

.cz-hero__inner {
  display: contents;
}

/* ── Responsive ── */
@media (max-width: 767px) {
  .cz-hero__body { padding-bottom: 200px; }

  .cz-hero__logo-img {
    height: 135px;
    max-width: 360px;
  }

  .cz-hero__title { font-size: 2rem; }

  .cz-strip__track {
    gap: 8px;
    overflow-x: auto;
    justify-content: flex-start;
    scrollbar-width: none;
  }
  .cz-strip__track::-webkit-scrollbar { display: none; }

  .cz-strip__item {
    min-width: 120px;
    max-width: 140px;
  }

  .cz-strip__item img { height: 52px; }
}
/* ════════════════════════════════════════════════════
   CHOICEYOUCAR SOUL SECTION
   ════════════════════════════════════════════════════ */

.cz-soul-section {
  background: var(--cz-navy2);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.cz-soul-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cz-blue), transparent);
}

/* ── NAME BREAKDOWN: CAR · ZO · UM ── */
.cz-name-break {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin-bottom: 72px;
  flex-wrap: wrap;
}

.cz-name-piece {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 32px;
}

.cz-name-letters {
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 900;
  letter-spacing: 0.08em;
  color: var(--cz-white);
  line-height: 1;
  text-shadow: 0 0 40px rgba(255,255,255,0.08);
  display: block;
  margin-bottom: 14px;
}

.cz-name-letters--blue {
  color: var(--cz-blue);
  text-shadow: 0 0 40px rgba(30,144,255,0.4);
}

.cz-name-letters--gold {
  color: var(--cz-gold);
  text-shadow: 0 0 40px rgba(255,215,0,0.45);
}

.cz-name-meaning {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
  max-width: 160px;
  font-style: italic;
}

.cz-name-dot {
  font-size: 4rem;
  font-weight: 900;
  color: rgba(255,255,255,0.15);
  line-height: 1;
  align-self: center;
  padding: 0 8px;
  margin-bottom: 40px;
}

/* ── SOUL STATEMENT ── */
.cz-soul-statement {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 80px;
}

.cz-soul-statement .cz-gold-bar {
  display: block;
  margin: 0 auto 24px;
  width: 64px;
}

.cz-soul-headline {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: var(--cz-white);
  margin-bottom: 20px;
  line-height: 1.2;
}

.cz-soul-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
}

/* ── THE 3 MOMENTS ── */
.cz-moments {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 72px;
}

.cz-moment {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 20px;
}

.cz-moment__connector {
  display: flex;
  align-items: center;
  padding-top: 60px;
  color: rgba(30,144,255,0.45);
  font-size: 1.6rem;
  flex-shrink: 0;
}

/* visual mock area */
.cz-moment__visual {
  width: 130px;
  height: 130px;
  border-radius: 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(30,144,255,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}

/* Map mock */
.cz-map-mock {
  position: relative;
  width: 90px;
  height: 90px;
}

.cz-map-dot {
  position: absolute;
  background: rgba(30,144,255,0.15);
  border: 1.5px solid rgba(30,144,255,0.4);
  border-radius: 50%;
  width: 30px; height: 30px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
}

.cz-map-dot--1 { top: 0; left: 10px; }
.cz-map-dot--2 { top: 30px; right: 0; }
.cz-map-dot--3 { bottom: 0; left: 28px; }

.cz-map-dot--active {
  background: rgba(255,215,0,0.2);
  border-color: var(--cz-gold);
  box-shadow: 0 0 12px rgba(255,215,0,0.45);
  z-index: 2;
}

.cz-map-ripple {
  position: absolute;
  bottom: -2px; left: 26px;
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 2px solid rgba(255,215,0,0.3);
  animation: cz-ripple 2s ease-out infinite;
}

@keyframes cz-ripple {
  0%   { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(2.2); opacity: 0; }
}

/* Pick mock */
.cz-pick-mock {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
  padding: 8px;
}

.cz-pick-card {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 8px;
  border-radius: 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  font-size: 0.75rem;
}

.cz-pick-card--chosen {
  background: rgba(255,215,0,0.1);
  border-color: var(--cz-gold);
  position: relative;
}

.cz-pick-icon { font-size: 1rem; }

.cz-pick-star {
  font-size: 0.65rem;
  color: var(--cz-gold);
  font-weight: 700;
  margin-left: auto;
}

.cz-pick-badge {
  position: absolute;
  top: -8px; right: 6px;
  background: var(--cz-gold);
  color: var(--cz-navy);
  font-size: 0.55rem;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 100px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Ride mock */
.cz-ride-mock {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.cz-ride-confirm {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(30,200,100,0.12);
  border: 1px solid rgba(30,200,100,0.3);
  border-radius: 100px;
  padding: 5px 12px;
}

.cz-ride-icon {
  color: #2ecc71;
  font-size: 0.9rem;
  font-weight: 900;
}

.cz-ride-text {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.8);
  white-space: nowrap;
}

.cz-ride-track {
  display: flex;
  align-items: center;
  gap: 4px;
  width: 90px;
}

.cz-ride-line {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, var(--cz-blue), var(--cz-gold));
  border-radius: 1px;
}

.cz-ride-car {
  font-size: 1.2rem;
  animation: cz-drive 2.5s linear infinite;
}

@keyframes cz-drive {
  0%   { transform: translateX(-10px); }
  100% { transform: translateX(0px); }
}

/* step numbers */
.cz-moment__num {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.3);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.cz-moment__num--gold { color: var(--cz-gold); }

.cz-moment__title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--cz-white);
  margin-bottom: 10px;
}

.cz-moment__desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  max-width: 200px;
  margin: 0 auto;
}

/* ── BOTTOM QUOTE ── */
.cz-soul-quote {
  text-align: center;
  padding: 40px 0 0;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.cz-soul-quote blockquote {
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-style: italic;
  color: rgba(255,255,255,0.5);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
  border: none;
  padding: 0;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .cz-name-break { gap: 0; }
  .cz-name-piece { padding: 0 16px; }
  .cz-name-dot { font-size: 2.5rem; margin-bottom: 30px; }

  .cz-moments {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }

  .cz-moment__connector {
    transform: rotate(90deg);
    padding-top: 0;
  }
}

/* ════════════════════════════════════════════════════
   NAVBAR — menu centralizado
   ════════════════════════════════════════════════════ */

.navbar-bottom-wrapper {
  justify-content: center !important;
  gap: 32px;
}

.navbar-bottom-wrapper .menu {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

/* Contact Us button fica à direita por position absolute */
header .cmn--btn.d-none.d-sm-block {
  position: absolute;
  right: 22px;
}

/* Hamburger mobile fica à esquerda */
.nav-toggle {
  position: absolute;
  left: 20px;
}

/* ════════════════════════════════════════════════════
   HERO — remove fundo de carro, cor oficial CarZoum
   ════════════════════════════════════════════════════ */

.cz-hero__bg { display: none !important; }

.cz-hero {
  background: linear-gradient(145deg, #0F1729 0%, #0d2045 55%, #0F1729 100%) !important;
  min-height: 100vh;
}

/* glow sutil para não ficar chapado */
.cz-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 40%, rgba(30,144,255,0.10) 0%, transparent 70%),
    radial-gradient(ellipse 40% 35% at 80% 80%, rgba(255,215,0,0.05) 0%, transparent 60%);
  pointer-events: none;
}

/* strip de carros some também */
.cz-hero__strip { display: none !important; }

/* body fica sem padding de baixo extra */
.cz-hero__body { padding-bottom: 80px !important; }

/* ════════════════════════════════════════════════════
   HERO — conteúdo centralizado
   ════════════════════════════════════════════════════ */

.cz-hero__body {
  text-align: center !important;
  align-items: center !important;
}

.cz-hero__logo,
.cz-hero .cz-badge,
.cz-hero__title,
.cz-hero__sub,
.cz-hero__actions {
  text-align: center !important;
  justify-content: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* garante que a col-lg-6 não limite o centro */
.cz-hero__body .col-lg-6,
.cz-hero__body .cz-hero__content {
  max-width: 700px !important;
  width: 100% !important;
  flex: none !important;
  margin: 0 auto !important;
  text-align: center !important;
}

/* esconde a coluna visual (showcase de carro) se existir */
.cz-hero__body .col-lg-6:last-child:not(.cz-hero__content) {
  display: none !important;
}

/* ════════════════════════════════════════════════════
   HERO — centralizado verticalmente na viewport
   ════════════════════════════════════════════════════ */

.cz-hero {
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  min-height: 100vh !important;
}

.cz-hero__body {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  flex: 1 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  /* compensa a altura do navbar (~70px) */
  margin-top: -70px;
}

/* ════════════════════════════════════════════════════
   STEPS PREMIUM — 3 passos ChoiceYouCar
   ════════════════════════════════════════════════════ */

.cz-steps-premium {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-bottom: 64px;
  position: relative;
}

/* ── Card ── */
.czs-card {
  flex: 1;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(30,144,255,0.15);
  border-radius: 20px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}

.czs-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(30,144,255,0.4), transparent);
  border-radius: 20px 20px 0 0;
}

.czs-card:hover {
  border-color: rgba(30,144,255,0.35);
  transform: translateY(-6px);
  box-shadow: 0 24px 56px rgba(0,0,0,0.3), 0 0 32px rgba(30,144,255,0.08);
}

.czs-card--featured {
  border-color: rgba(255,215,0,0.3);
  background: rgba(255,215,0,0.03);
}

.czs-card--featured::before {
  background: linear-gradient(90deg, transparent, rgba(255,215,0,0.5), transparent);
}

.czs-card--featured:hover {
  border-color: rgba(255,215,0,0.5);
  box-shadow: 0 24px 56px rgba(0,0,0,0.3), 0 0 32px rgba(255,215,0,0.1);
}

/* ── Top row: number + icon ── */
.czs-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
}

.czs-num {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 4px;
  color: rgba(255,255,255,0.25);
  text-transform: uppercase;
}

.czs-num--gold { color: var(--cz-gold); }

.czs-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.czs-icon--blue {
  background: rgba(30,144,255,0.12);
  color: var(--cz-blue);
  box-shadow: 0 0 20px rgba(30,144,255,0.15);
}

.czs-icon--gold {
  background: rgba(255,215,0,0.12);
  color: var(--cz-gold);
  box-shadow: 0 0 20px rgba(255,215,0,0.2);
}

/* ── Text ── */
.czs-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--cz-white);
  margin: 0;
}

.czs-desc {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
  margin: 0;
  flex: 1;
}

/* ── Visual mock area ── */
.czs-visual {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

/* Map visual */
.czs-map {
  position: relative;
  height: 155px;
  border-radius: 12px;
  background: rgba(10,20,40,0.6);
  overflow: hidden;
}

.czs-map__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(30,144,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30,144,255,0.06) 1px, transparent 1px);
  background-size: 20px 20px;
}

.czs-map__pin {
  position: absolute;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(30,144,255,0.15);
  border: 1.5px solid rgba(30,144,255,0.4);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem;
  color: var(--cz-blue);
}

.czs-map__pin--1 { top: 18px; left: 20px; }
.czs-map__pin--2 { top: 40px; right: 30px; }
.czs-map__pin--3 {
  bottom: 16px; left: 50%;
  transform: translateX(-50%);
  background: rgba(255,215,0,0.18);
  border-color: var(--cz-gold);
  color: var(--cz-gold);
  box-shadow: 0 0 12px rgba(255,215,0,0.35);
  z-index: 2;
}

.czs-map__radius {
  position: absolute;
  bottom: 16px; left: 50%;
  transform: translate(-50%, 50%);
  width: 70px; height: 70px;
  border-radius: 50%;
  border: 1px dashed rgba(255,215,0,0.25);
  animation: cz-ripple 2.5s ease-out infinite;
}

/* Car list visual */
.czs-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.czs-list__row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 10px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  transition: border-color 0.2s;
}

.czs-list__row > .bi-car-front-fill {
  color: rgba(255,255,255,0.3);
  font-size: 1rem;
}

.czs-list__row--active {
  background: rgba(255,215,0,0.08);
  border-color: rgba(255,215,0,0.35);
  color: var(--cz-white);
}

.czs-list__row--active > .bi-car-front-fill { color: var(--cz-gold); }

.czs-list__info {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.czs-list__name { font-weight: 700; font-size: 0.78rem; }
.czs-list__dist { font-size: 0.66rem; color: rgba(255,255,255,0.35); }

.czs-list__stars {
  font-size: 0.7rem;
  color: var(--cz-gold);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 3px;
  white-space: nowrap;
}

.czs-list__chosen {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--cz-gold);
  color: var(--cz-navy);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem;
  font-weight: 900;
}

/* Confirm visual */
.czs-confirm {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.czs-confirm__badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(46,204,113,0.1);
  border: 1px solid rgba(46,204,113,0.3);
  border-radius: 100px;
  padding: 6px 16px;
  color: #2ecc71;
  font-size: 0.8rem;
  font-weight: 700;
}

.czs-confirm__timer {
  font-size: 2rem;
  font-weight: 900;
  color: var(--cz-blue);
  line-height: 1;
  text-shadow: 0 0 20px rgba(30,144,255,0.4);
}

.czs-confirm__track {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 0 8px;
}

.czs-confirm__road {
  flex: 1;
  height: 3px;
  background: linear-gradient(90deg, var(--cz-blue), rgba(30,144,255,0.2));
  border-radius: 2px;
  position: relative;
}

.czs-confirm__car {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--cz-blue);
  font-size: 1rem;
  animation: cz-drive 2.5s linear infinite;
}

.czs-confirm__dest {
  color: var(--cz-gold);
  font-size: 1.1rem;
}

/* ── Connectors ── */
.czs-connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
  padding-bottom: 120px;
  flex-shrink: 0;
}

.czs-connector__line {
  width: 1px;
  flex: 1;
  background: linear-gradient(to bottom, transparent, rgba(30,144,255,0.3), transparent);
  display: none;
}

.czs-connector__arrow {
  color: rgba(30,144,255,0.4);
  font-size: 1.2rem;
}

/* ── Responsive ── */
@media (max-width: 991px) {
  .cz-steps-premium {
    flex-direction: column;
    gap: 16px;
  }

  .czs-connector {
    flex-direction: row;
    padding: 0;
    justify-content: center;
  }

  .czs-connector__arrow {
    transform: rotate(90deg);
  }

  .czs-card { padding: 24px 20px; }
}

/* ════════════════════════════════════════════════════
   STEPS — fotos de carro reais
   ════════════════════════════════════════════════════ */

/* ── Mapa com fotos de carros ── */
.czs-map {
  position: relative;
  height: 130px;
  border-radius: 12px;
  background: rgba(10,20,40,0.7);
  overflow: hidden;
}

.czs-map__carpin {
  position: absolute;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(30,144,255,0.5);
  box-shadow: 0 0 10px rgba(30,144,255,0.3);
  z-index: 2;
}

.czs-map__carpin img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85);
}

.czs-map__carpin--1 { top: 12px;  left: 16px;  }
.czs-map__carpin--2 { top: 8px;   right: 20px; }
.czs-map__carpin--3 { bottom: 14px; left: 38px; }
.czs-map__carpin--4 { bottom: 10px; right: 16px; }

.czs-map__you {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(255,215,0,0.2);
  border: 2px solid var(--cz-gold);
  display: flex; align-items: center; justify-content: center;
  color: var(--cz-gold);
  font-size: 0.85rem;
  box-shadow: 0 0 14px rgba(255,215,0,0.4);
  z-index: 3;
}

.czs-map__radius {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 80px; height: 80px;
  border-radius: 50%;
  border: 1.5px dashed rgba(255,215,0,0.25);
  animation: cz-ripple 2.5s ease-out infinite;
  z-index: 1;
}

/* ── Car list com fotos ── */
.czs-carlist {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.czs-carlist__row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  transition: border-color 0.2s;
}

.czs-carlist__row--active {
  background: rgba(255,215,0,0.07);
  border-color: rgba(255,215,0,0.4);
}

.czs-carlist__photo {
  width: 48px;
  height: 36px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

.czs-carlist__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.8);
}

.czs-carlist__row--active .czs-carlist__photo img {
  filter: brightness(1);
}

.czs-carlist__info {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}

.czs-carlist__name {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--cz-white);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.czs-carlist__dist {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.4);
}

.czs-carlist__badge {
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--cz-navy);
  background: var(--cz-gold);
  padding: 3px 8px;
  border-radius: 100px;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ── Confirm com foto de carro ── */
.czs-confirm {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.czs-confirm__carphoto {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 80px;
}

.czs-confirm__carphoto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.55);
}

.czs-confirm__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.czs-confirm__badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(46,204,113,0.18);
  border: 1px solid rgba(46,204,113,0.45);
  border-radius: 100px;
  padding: 5px 14px;
  color: #2ecc71;
  font-size: 0.78rem;
  font-weight: 700;
}

.czs-confirm__time {
  font-size: 1rem;
  font-weight: 900;
  color: var(--cz-white);
  background: rgba(30,144,255,0.25);
  border: 1px solid rgba(30,144,255,0.4);
  border-radius: 100px;
  padding: 4px 12px;
}

.czs-confirm__track {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 4px;
}

.czs-confirm__road {
  flex: 1;
  height: 3px;
  background: linear-gradient(90deg, var(--cz-blue), rgba(30,144,255,0.15));
  border-radius: 2px;
  position: relative;
  overflow: visible;
}

.czs-confirm__car {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--cz-blue);
  font-size: 0.95rem;
  animation: cz-drive 2.5s linear infinite;
}

.czs-confirm__dest {
  color: var(--cz-gold);
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* ════════════════════════════════════════════════════
   CHOICEYOUCAR — header + callout + bottom
   ════════════════════════════════════════════════════ */

/* ── Section header ── */
.cz-soul-header {
  text-align: center;
  margin-bottom: 56px;
}

.cz-soul-header__label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 16px;
}

.cz-soul-header__title {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 900;
  color: var(--cz-white);
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 12px;
  text-shadow: 0 0 60px rgba(255,215,0,0.08);
}

.cz-soul-header__sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.5);
  margin: 0;
}

/* ── Callout block ── */
.cz-soul-callout {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  background: rgba(30,144,255,0.05);
  border: 1px solid rgba(30,144,255,0.2);
  border-left: 4px solid var(--cz-blue);
  border-radius: 16px;
  padding: 32px 36px;
  margin-bottom: 56px;
  position: relative;
  overflow: hidden;
}

.cz-soul-callout::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(30,144,255,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.cz-soul-callout__left {
  flex-shrink: 0;
}

.cz-soul-callout__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px; height: 52px;
  border-radius: 14px;
  background: rgba(30,144,255,0.12);
  color: var(--cz-blue);
  font-size: 1.5rem;
  box-shadow: 0 0 20px rgba(30,144,255,0.2);
}

.cz-soul-callout__headline {
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  font-weight: 900;
  color: var(--cz-white);
  margin-bottom: 12px;
  line-height: 1.2;
}

.cz-soul-callout__text {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  margin: 0;
}

/* ── Bottom: quote + CTA ── */
.cz-soul-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.07);
  flex-wrap: wrap;
}

.cz-soul-bottom__quote {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  flex: 1;
  min-width: 260px;
}

.cz-soul-bottom__qicon {
  font-size: 2.5rem;
  color: var(--cz-gold);
  opacity: 0.6;
  line-height: 1;
  flex-shrink: 0;
  margin-top: -4px;
}

.cz-soul-bottom__quote p {
  font-size: 1.05rem;
  font-style: italic;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
  margin: 0;
}

.cz-soul-bottom__cta {
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .cz-soul-callout { flex-direction: column; gap: 16px; padding: 24px 20px; }
  .cz-soul-bottom { flex-direction: column; text-align: center; }
  .cz-soul-bottom__quote { justify-content: center; }
}

/* ════════════════════════════════════════════════════
   WHY CARZOUM — redesign
   ════════════════════════════════════════════════════ */

.cz-why-section {
  background: linear-gradient(160deg, #0a1535 0%, var(--cz-navy2) 50%, #0a1535 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.cz-why-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,215,0,0.3), transparent);
}

/* ── Left column ── */
.cz-why-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.cz-why-title {
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  font-weight: 900;
  color: var(--cz-white);
  line-height: 1.1;
  margin-bottom: 18px;
}

.cz-why-intro {
  font-size: 0.97rem;
  color: rgba(255,255,255,0.58);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 480px;
}

/* ── 2×2 grid of reasons ── */
.cz-why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.cz-why-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 20px 18px;
  transition: border-color 0.3s, transform 0.3s;
}

.cz-why-item:hover {
  border-color: rgba(30,144,255,0.3);
  transform: translateY(-3px);
}

.cz-why-item:nth-child(even):hover {
  border-color: rgba(255,215,0,0.3);
}

.cz-why-item__icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.cz-why-item__icon--blue {
  background: rgba(30,144,255,0.12);
  color: var(--cz-blue);
}

.cz-why-item__icon--gold {
  background: rgba(255,215,0,0.12);
  color: var(--cz-gold);
}

.cz-why-item__title {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--cz-white);
  margin-bottom: 6px;
  line-height: 1.3;
}

.cz-why-item__desc {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.55;
  margin: 0;
}

/* ── Right: visual ── */
.cz-why-visual {
  position: relative;
}

.cz-why-visual__glow-blue {
  position: absolute;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(30,144,255,0.15) 0%, transparent 70%);
  border-radius: 50%;
  top: -40px; left: -40px;
  pointer-events: none;
}

.cz-why-visual__glow-gold {
  position: absolute;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(255,215,0,0.1) 0%, transparent 70%);
  border-radius: 50%;
  bottom: 40px; right: -20px;
  pointer-events: none;
}

.cz-why-visual__img-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255,215,0,0.2);
  box-shadow: 0 30px 70px rgba(0,0,0,0.5);
}

.cz-why-visual__img {
  display: block;
  width: 100%;
  height: 360px;
  object-fit: cover;
  filter: brightness(0.75) saturate(1.1);
  transition: filter 0.4s;
}

.cz-why-visual__img-wrap:hover .cz-why-visual__img {
  filter: brightness(0.88) saturate(1.15);
}

/* floating badge on image */
.cz-why-visual__badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(15,23,41,0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,215,0,0.4);
  border-radius: 100px;
  padding: 12px 28px;
  color: var(--cz-gold);
  font-size: 0.88rem;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  margin: 16px auto;
  width: fit-content;
}

/* stats bar below image */
.cz-why-visual__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-top: 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 18px 24px;
}

.cz-why-stat {
  flex: 1;
  text-align: center;
}

.cz-why-stat--divider {
  flex: none;
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.1);
  margin: 0 8px;
}

.cz-why-stat__val {
  display: block;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--cz-gold);
  line-height: 1;
  margin-bottom: 4px;
}

.cz-why-stat__lbl {
  display: block;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ── Responsive ── */
@media (max-width: 767px) {
  .cz-why-grid { grid-template-columns: 1fr; }
  .cz-why-visual__img { height: 240px; }
}

/* ════════════════════════════════════════════════════
   DRIVE / EARN — redesign
   ════════════════════════════════════════════════════ */

.cz-drive-section {
  background: var(--cz-navy);
  padding: 100px 0;
  position: relative;
}

.cz-drive-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(30,144,255,0.3), transparent);
}

/* ── Left visual ── */
.cz-drive-visual {
  position: relative;
}

.cz-drive-visual__glow {
  position: absolute;
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(30,144,255,0.12) 0%, transparent 70%);
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.cz-drive-visual__img-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(30,144,255,0.2);
  box-shadow: 0 30px 70px rgba(0,0,0,0.5);
}

.cz-drive-visual__img {
  display: block;
  width: 100%;
  height: 400px;
  object-fit: cover;
  filter: brightness(0.7) saturate(1.1);
}

.cz-drive-visual__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,23,41,0.6) 0%, transparent 60%);
}

/* floating card */
.cz-drive-card {
  position: absolute;
  bottom: -20px;
  right: -20px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(15,23,41,0.92);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,215,0,0.35);
  border-radius: 16px;
  padding: 14px 20px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.4);
  z-index: 2;
  max-width: 240px;
}

.cz-drive-card__icon {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: rgba(255,215,0,0.12);
  color: var(--cz-gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.cz-drive-card__val {
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--cz-white);
  line-height: 1.2;
}

.cz-drive-card__sub {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.5);
  margin-top: 2px;
}

/* ── Right content ── */
.cz-drive-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.cz-drive-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--cz-white);
  line-height: 1.1;
  margin-bottom: 20px;
}

.cz-drive-title__sub {
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  display: block;
  margin-top: 6px;
}

.cz-drive-desc {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.58);
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 500px;
}

/* 4 benefits list */
.cz-drive-benefits {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 8px;
}

.cz-drive-benefit {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  transition: border-color 0.3s;
}

.cz-drive-benefit:hover {
  border-color: rgba(30,144,255,0.25);
}

.cz-drive-benefit__icon {
  width: 38px; height: 38px;
  min-width: 38px;
  border-radius: 10px;
  background: rgba(30,144,255,0.1);
  color: var(--cz-blue);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
}

.cz-drive-benefit:nth-child(odd) .cz-drive-benefit__icon {
  background: rgba(255,215,0,0.1);
  color: var(--cz-gold);
}

.cz-drive-benefit strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--cz-white);
  margin-bottom: 3px;
}

.cz-drive-benefit p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.48);
  margin: 0;
  line-height: 1.5;
}

/* ── Responsive ── */
@media (max-width: 991px) {
  .cz-drive-visual__img { height: 280px; }
  .cz-drive-card { right: 0; bottom: -16px; }
}

/* ════════════════════════════════════════════════════
   TESTIMONIALS — redesign
   ════════════════════════════════════════════════════ */

.cz-testimonial-section {
  background: var(--cz-navy2);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.cz-testimonial-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(30,144,255,0.3), transparent);
}

.cz-testimonial-header { margin-bottom: 56px; }

.cz-testimonial-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--cz-white);
  margin-top: 16px;
}

/* ── Card ── */
.cz-tcard {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(30,144,255,0.15);
  border-radius: 20px;
  padding: 32px 28px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.cz-tcard:hover {
  border-color: rgba(30,144,255,0.35);
  transform: translateY(-6px);
  box-shadow: 0 24px 56px rgba(0,0,0,0.25);
}

.cz-tcard--featured {
  border-color: rgba(255,215,0,0.3);
  background: rgba(255,215,0,0.03);
  position: relative;
}

.cz-tcard--featured::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cz-gold), transparent);
  border-radius: 20px 20px 0 0;
}

.cz-tcard--featured:hover {
  border-color: rgba(255,215,0,0.55);
  box-shadow: 0 24px 56px rgba(0,0,0,0.25), 0 0 40px rgba(255,215,0,0.07);
}

/* stars */
.cz-tcard__stars {
  display: flex;
  gap: 3px;
  color: var(--cz-gold);
  font-size: 0.85rem;
}

/* quote text */
.cz-tcard__text {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.75;
  font-style: italic;
  margin: 0;
  flex: 1;
}

/* author */
.cz-tcard__author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.cz-tcard__avatar {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cz-blue), #0a4a8a);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 800;
  color: var(--cz-white);
  border: 2px solid rgba(30,144,255,0.35);
}

.cz-tcard__avatar--gold {
  background: linear-gradient(135deg, #b8860b, var(--cz-gold));
  border-color: rgba(255,215,0,0.4);
  color: var(--cz-navy);
}

.cz-tcard__name {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--cz-white);
}

.cz-tcard__location {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  margin-top: 2px;
}

/* owl carousel dark override */
.cz-owl-dark .cz-tcard { margin: 8px; }

/* ════════════════════════════════════════════════════
   FACTS (Stats) — verdades do produto
   ════════════════════════════════════════════════════ */

.cz-facts-section {
  background: var(--cz-navy);
  padding: 60px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.cz-facts-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.cz-fact {
  flex: 1;
  min-width: 140px;
  text-align: center;
  padding: 24px 16px;
}

.cz-fact__icon {
  font-size: 1.4rem;
  color: var(--cz-blue);
  margin-bottom: 10px;
}

.cz-fact:nth-child(3) .cz-fact__icon,
.cz-fact:nth-child(7) .cz-fact__icon { color: var(--cz-gold); }

.cz-fact__val {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--cz-white);
  line-height: 1;
  margin-bottom: 6px;
}

.cz-fact__lbl {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.4;
}

.cz-fact__divider {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.08);
  flex-shrink: 0;
}

@media (max-width: 576px) {
  .cz-fact__divider { display: none; }
  .cz-fact { min-width: 45%; }
}

/* ════════════════════════════════════════════════════
   CTA FINAL
   ════════════════════════════════════════════════════ */

.cz-cta-final {
  background: linear-gradient(160deg, #051025 0%, #0a1535 50%, #051025 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.cz-cta-final__inner {
  position: relative;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(30,144,255,0.15);
  border-radius: 28px;
  padding: 64px 48px;
  text-align: center;
  overflow: hidden;
}

.cz-cta-final__glow-blue {
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(30,144,255,0.1) 0%, transparent 70%);
  border-radius: 50%;
  top: -100px; left: -100px;
  pointer-events: none;
}

.cz-cta-final__glow-gold {
  position: absolute;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(255,215,0,0.07) 0%, transparent 70%);
  border-radius: 50%;
  bottom: -80px; right: -80px;
  pointer-events: none;
}

.cz-cta-final__content { position: relative; z-index: 2; }

.cz-cta-final__title {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--cz-white);
  line-height: 1.1;
  margin-bottom: 16px;
}

.cz-cta-final__sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 48px;
}

/* apps layout */
.cz-cta-final__apps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

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

.cz-cta-app__label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 800;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.cz-cta-app__label--gold { color: var(--cz-gold); }

.cz-cta-app__btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.cz-store-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  padding: 12px 20px;
  color: var(--cz-white);
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  min-width: 150px;
}

.cz-store-btn:hover {
  background: rgba(30,144,255,0.15);
  border-color: var(--cz-blue);
  transform: translateY(-2px);
  color: var(--cz-white);
  text-decoration: none;
}

.cz-store-btn--gold:hover {
  background: rgba(255,215,0,0.1);
  border-color: var(--cz-gold);
}

.cz-store-btn img {
  width: 24px; height: 24px;
  object-fit: contain;
}

.cz-store-btn span {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.cz-store-btn small {
  font-size: 0.62rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1;
}

.cz-store-btn span > :last-child {
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.2;
}

/* separator */
.cz-cta-app__sep {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.2);
  font-size: 0.75rem;
}

.cz-cta-app__sep-line {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.1);
}

@media (max-width: 767px) {
  .cz-cta-final__inner { padding: 40px 24px; }
  .cz-cta-final__apps { flex-direction: column; gap: 24px; }
  .cz-cta-app__sep { flex-direction: row; }
  .cz-cta-app__sep-line { width: 40px; height: 1px; }
}

/* ════════════════════════════════════════════════════
   FOOTER — CarZoum dark theme
   ════════════════════════════════════════════════════ */

footer,
.footer-top,
.dark-theme footer {
  background: #080f1e !important;
  border-top: 1px solid rgba(30,144,255,0.15);
}

.footer-bottom,
.dark-theme .footer-bottom {
  background: #050b18 !important;
  border-top: 1px solid rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.35) !important;
  font-size: 0.8rem;
}

/* Logo */
.footer__wrapper-widget .logo img {
  height: 48px !important;
  width: auto !important;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(255,215,0,0.2));
}

/* Tagline */
.footer__wrapper-widget p {
  color: rgba(255,255,255,0.45) !important;
  font-size: 0.85rem !important;
  line-height: 1.7 !important;
}

/* Social icons */
.footer__wrapper-widget .social-icons {
  display: flex;
  gap: 10px;
  padding: 0;
  list-style: none;
  margin: 16px 0;
}

.footer__wrapper-widget .social-icons li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  transition: background 0.2s, border-color 0.2s;
}

.footer__wrapper-widget .social-icons li a:hover {
  background: rgba(30,144,255,0.15);
  border-color: rgba(30,144,255,0.4);
}

.footer__wrapper-widget .social-icons li a img {
  width: 18px; height: 18px;
  object-fit: contain;
  filter: brightness(0) invert(1) opacity(0.7);
}

/* Nav links */
.footer__wrapper-link {
  list-style: none;
  padding: 0;
}

.footer__wrapper-link li {
  padding: 5px 0;
}

.footer__wrapper-link li a {
  color: rgba(255,255,255,0.5) !important;
  font-size: 0.88rem;
  text-decoration: none;
  transition: color 0.2s, padding-left 0.2s;
  display: inline-block;
}

.footer__wrapper-link li a:hover {
  color: var(--cz-gold) !important;
  padding-left: 4px;
}

/* Contact / email block */
.footer__wrapper-contact h6 {
  color: var(--cz-white) !important;
  font-weight: 700 !important;
  font-size: 0.9rem !important;
  margin: 10px 0 6px;
}

.footer__wrapper-contact .icon {
  filter: brightness(0) invert(1) opacity(0.5);
  width: 20px;
}

.footer__wrapper-contact a {
  color: var(--cz-blue) !important;
  font-size: 0.88rem;
  text-decoration: none;
  transition: color 0.2s;
}

.footer__wrapper-contact a:hover {
  color: var(--cz-gold) !important;
}

/* App buttons labels */
footer .text-white {
  color: rgba(255,255,255,0.6) !important;
  font-size: 0.78rem !important;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* App store / Play store badges */
footer .w-115px {
  width: 115px;
  opacity: 0.85;
  transition: opacity 0.2s, transform 0.2s;
}

footer .w-115px:hover {
  opacity: 1;
  transform: translateY(-2px);
}

/* Divider between widgets */
.footer__wrapper-widget:not(:last-child) {
  border-color: rgba(255,255,255,0.07) !important;
}

/* Copyright */
.footer-bottom a {
  color: rgba(255,255,255,0.35) !important;
}

.footer-bottom a:hover {
  color: var(--cz-gold) !important;
}


/* Mobile: sobe o logo um pouco para centralizar visualmente */
@media (max-width: 767px) {
  .cz-hero__logo {
    margin-top: -90px !important;
    margin-bottom: 60px !important;
  }
}

/* iPhone: reduz espaco da navbar pela metade */
@media (max-width: 767px) {
  .navbar-bottom-wrapper {
    padding-top: 5px !important;
    padding-bottom: 5px !important;
  }
}

/* iPhone: navbar mais compacta */
@media (max-width: 767px) {
  header,
  .navbar-bottom,
  .navbar-bottom .container {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .navbar-bottom-wrapper {
    padding: 3px 16px !important;
    min-height: unset !important;
  }
  .cz-lang-btn {
    padding: 4px 8px !important;
    font-size: 0.75rem !important;
  }
  .nav-toggle {
    width: 22px !important;
    height: 16px !important;
  }
}


/* Mobile: sobe os botoes de download */
@media (max-width: 767px) {
  .cz-hero__actions {
    margin-top: -28px !important;
  }
}
