@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap");

:root {
  --navy-950: #060d1f;
  --navy-900: #0a1628;
  --navy-800: #122044;
  --navy-700: #1a3070;
  --blue-600: #2563eb;
  --blue-500: #3b82f6;
  --blue-100: #dbeafe;
  --green-600: #059669;
  --green-500: #10b981;
  --green-50: #ecfdf5;
  --amber-400: #fbbf24;
  --bg: #f1f5f9;
  --surface: #ffffff;
  --text: #0f172a;
  --muted: #64748b;
  --border: #e2e8f0;
  --radius: 16px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.06);
  --shadow: 0 24px 60px rgba(6, 13, 31, 0.14);
  --shadow-glow: 0 0 0 1px rgba(255, 255, 255, 0.06), 0 32px 64px rgba(0, 0, 0, 0.28);
  --font: "Inter", system-ui, -apple-system, sans-serif;
}

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

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

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

.skip-link {
  position: absolute; top: -100px; left: 16px;
  background: var(--blue-600); color: white;
  padding: 8px 16px; border-radius: 8px; z-index: 9999;
  text-decoration: none; font-weight: 600;
}
.skip-link:focus { top: 16px; }

/* ── Header ── */
.site-header {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 100;
}

.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 72px; gap: 16px; flex-wrap: wrap;
}

.logo { display: flex; align-items: center; gap: 14px; }

.logo-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--navy-700), var(--blue-600));
  color: white; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 0.85rem;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
}

.logo strong { display: block; font-size: 1.05rem; font-weight: 700; letter-spacing: -0.02em; }
.logo span { font-size: 0.78rem; color: var(--muted); font-weight: 500; }

.badges { display: flex; gap: 8px; flex-wrap: wrap; }

.badge {
  font-size: 0.72rem; font-weight: 600;
  padding: 6px 13px; border-radius: 999px;
  background: var(--blue-100); color: var(--navy-700);
  border: 1px solid #bfdbfe; letter-spacing: 0.01em;
}

.badge-green { background: var(--green-50); color: var(--green-600); border-color: #a7f3d0; }

.badge-ai {
  background: linear-gradient(135deg, #ecfdf5, #dbeafe);
  color: #047857; border-color: #6ee7b7;
}

/* ── Hero ── */
.hero {
  background: var(--navy-950);
  color: white;
  padding: 64px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 0%, rgba(37, 99, 235, 0.22), transparent),
    radial-gradient(ellipse 60% 50% at 90% 80%, rgba(16, 185, 129, 0.12), transparent);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: 48px; align-items: start;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.75rem; text-transform: uppercase;
  letter-spacing: 0.1em; color: #93c5fd;
  margin-bottom: 16px; font-weight: 600;
}

.eyebrow::before {
  content: ""; width: 24px; height: 2px;
  background: linear-gradient(90deg, var(--green-500), transparent);
  border-radius: 2px;
}

.hero h1 {
  font-size: clamp(1.85rem, 4vw, 2.5rem);
  line-height: 1.15; margin-bottom: 18px;
  font-weight: 800; letter-spacing: -0.03em;
}

.lead { color: #94a3b8; font-size: 1.02rem; margin-bottom: 24px; max-width: 52ch; }
.lead strong { color: #e2e8f0; font-weight: 600; }

.ai-highlights {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 8px; margin-bottom: 20px;
}

.ai-chip {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.78rem; font-weight: 500;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 8px 12px; border-radius: 10px; color: #cbd5e1;
}

.ai-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--green-500); flex-shrink: 0;
  animation: aiPulse 2s ease-in-out infinite;
}

@keyframes aiPulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4); }
  50% { opacity: 0.7; box-shadow: 0 0 0 4px rgba(16, 185, 129, 0); }
}

.hero-features {
  list-style: none; display: flex; flex-wrap: wrap; gap: 8px;
}

.hero-features li {
  font-size: 0.78rem; font-weight: 500;
  padding: 7px 14px; border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #94a3b8;
}

/* Hero car scene */
.car-scene {
  margin-top: 32px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.car-scene-svg { display: block; width: 100%; height: auto; }

.car-scene-caption {
  text-align: center; font-size: 0.72rem;
  color: #64748b; padding: 10px 16px 14px;
}

.cloud-1 { animation: cloudDrift 9s ease-in-out infinite; }
.cloud-2 { animation: cloudDrift 12s ease-in-out infinite reverse; }

@keyframes cloudDrift {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(14px); }
}

.road-lines { animation: roadScroll 1.4s linear infinite; }

@keyframes roadScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-70px); }
}

.car-modern { animation: showModern 7s ease-in-out infinite; }
.car-classic { animation: showClassic 7s ease-in-out infinite; }

@keyframes showModern {
  0%, 45% { opacity: 1; } 50%, 95% { opacity: 0; } 100% { opacity: 1; }
}

@keyframes showClassic {
  0%, 45% { opacity: 0; } 50%, 95% { opacity: 1; } 100% { opacity: 0; }
}

.car-bounce { animation: carBounce 0.7s ease-in-out infinite; }

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

@media (prefers-reduced-motion: reduce) {
  .cloud-1, .cloud-2, .road-lines, .car-modern, .car-classic, .car-bounce, .ai-dot {
    animation: none !important;
  }
  .car-classic { opacity: 0; }
}

/* ── Form card ── */
.form-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-glow);
  color: var(--text);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.8);
  position: relative;
}

.form-card::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--blue-600), var(--green-500));
}

.card-header {
  padding: 28px 28px 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 0;
  padding-bottom: 20px;
}

.card-header h2 {
  font-size: 1.3rem; font-weight: 700;
  margin-bottom: 4px; letter-spacing: -0.02em;
}

.card-header p { color: var(--muted); font-size: 0.875rem; }

#consulta-form { padding: 24px 28px 28px; }

.field { margin-bottom: 18px; }

.field label {
  display: block; font-size: 0.8125rem;
  font-weight: 600; margin-bottom: 7px; color: #334155;
}

.field input, .field select, .field textarea {
  width: 100%; padding: 12px 14px;
  border: 1.5px solid var(--border); border-radius: 11px;
  font: inherit; background: #fafbfc;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--blue-600);
  background: white;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.field small { color: var(--muted); font-size: 0.75rem; margin-top: 4px; display: block; }

.field-error { color: #dc2626; font-size: 0.8125rem; margin-top: 6px; }

.form-banner-error {
  margin: 20px 28px 0; padding: 12px 16px;
  background: #fef2f2; border: 1px solid #fecaca; border-radius: 11px;
}

.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.plate-input-wrap {
  display: flex; border: 2px solid var(--border);
  border-radius: 11px; overflow: hidden; background: #f8fafc;
}

.plate-flag {
  display: flex; align-items: center; justify-content: center;
  padding: 0 16px; background: var(--navy-700);
  color: white; font-weight: 800; font-size: 0.8rem;
}

.plate-input-wrap input {
  border: none; border-radius: 0; background: white;
  font-size: 1.2rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
}

.plate-input-wrap input:focus { box-shadow: none; }

.ai-report-preview {
  background: linear-gradient(135deg, #f0f9ff 0%, #ecfdf5 100%);
  border: 1px solid #bae6fd; border-radius: 12px;
  padding: 16px 18px; margin-bottom: 18px;
}

.ai-report-title {
  font-size: 0.8125rem; font-weight: 700;
  color: var(--navy-700); margin-bottom: 10px;
}

.ai-report-preview ul { list-style: none; font-size: 0.8125rem; color: #475569; }

.ai-report-preview li {
  padding: 5px 0 5px 18px; position: relative;
}

.ai-report-preview li::before {
  content: "✓"; position: absolute; left: 0;
  color: var(--green-600); font-weight: 700; font-size: 0.75rem;
}

.btn-primary {
  width: 100%; padding: 15px 20px; border: none;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--green-600) 0%, var(--green-500) 100%);
  color: white; font-size: 0.95rem; font-weight: 700;
  cursor: pointer; letter-spacing: -0.01em;
  box-shadow: 0 4px 16px rgba(5, 150, 105, 0.35);
  transition: transform 0.15s, box-shadow 0.15s, opacity 0.15s;
}

.btn-primary:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(5, 150, 105, 0.4);
}

.btn-primary:disabled { opacity: 0.75; cursor: wait; transform: none; }

.btn-secondary {
  margin-top: 16px; padding: 11px 20px;
  border: 1.5px solid var(--border); border-radius: 11px;
  background: white; font-weight: 600; font-size: 0.875rem;
  cursor: pointer; transition: background 0.15s;
}

.btn-secondary:hover { background: #f8fafc; }

.form-note {
  margin-top: 14px; font-size: 0.75rem;
  color: var(--muted); text-align: center; line-height: 1.5;
}

/* ── Send animation overlay ── */
.send-overlay {
  position: absolute; inset: 0; z-index: 20;
  background: linear-gradient(180deg, #0a1628 0%, #122044 100%);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 28px; border-radius: var(--radius-lg);
  opacity: 0; visibility: hidden;
  transition: opacity 0.35s, visibility 0.35s;
}

.send-overlay.active { opacity: 1; visibility: visible; }

.send-overlay-svg {
  width: 100%; max-width: 320px; height: auto;
  display: block;
}

.send-phase-label {
  margin-top: 20px; font-size: 0.875rem; font-weight: 600;
  color: #94a3b8; text-align: center;
  min-height: 1.4em; transition: color 0.3s;
}

.send-phase-label.active { color: #34d399; }

.send-progress {
  margin-top: 16px; width: 100%; max-width: 240px;
  height: 3px; background: rgba(255,255,255,0.1);
  border-radius: 999px; overflow: hidden;
}

.send-progress-bar {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--green-500), var(--blue-500));
  border-radius: 999px;
  transition: width 0.4s ease;
}

/* Animation phases inside SVG */
.anim-scene { opacity: 0; transition: opacity 0.4s; }
.anim-scene.visible { opacity: 1; }

.car-door {
  transform-origin: 95px 95px;
  transform: rotateY(0deg);
}

.send-overlay.phase-door .car-door {
  animation: doorOpen 1s ease-out forwards;
}

@keyframes doorOpen {
  0% { transform: perspective(200px) rotateY(0deg); }
  100% { transform: perspective(200px) rotateY(-55deg); }
}

.dashboard-glow { opacity: 0; }
.send-overlay.phase-engine .dashboard-glow { animation: dashGlow 0.8s ease-out forwards; }

@keyframes dashGlow {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

.engine-light { opacity: 0; }
.send-overlay.phase-engine .engine-light { animation: engineOn 0.5s 0.3s ease-out forwards; }

@keyframes engineOn {
  0% { opacity: 0; }
  50% { opacity: 1; }
  70% { opacity: 0.4; }
  100% { opacity: 1; }
}

.km-display { opacity: 0; }
.send-overlay.phase-km .km-display { animation: kmShow 0.6s ease-out forwards; }

.km-value { font-variant-numeric: tabular-nums; }

.send-overlay.phase-km .km-needle {
  animation: needleMove 1.2s ease-out forwards;
}

@keyframes kmShow {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes needleMove {
  from { transform: rotate(-90deg); }
  to { transform: rotate(20deg); }
}

/* ── Resultado ── */
.resultado { padding: 36px 28px 32px; text-align: center; }

.resultado-icon {
  width: 60px; height: 60px; margin: 0 auto 18px;
  background: linear-gradient(135deg, var(--green-50), #d1fae5);
  color: var(--green-600); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; font-weight: 800;
  box-shadow: 0 4px 16px rgba(5, 150, 105, 0.2);
}

.resultado h3 {
  font-size: 1.25rem; font-weight: 700;
  margin-bottom: 8px; letter-spacing: -0.02em;
}

.resultado-ia-note {
  font-size: 0.875rem; color: var(--muted);
  max-width: 380px; margin: 10px auto 0; line-height: 1.55;
}

.resultado-datos {
  margin: 24px auto; max-width: 300px;
  text-align: left; display: grid;
  grid-template-columns: auto 1fr; gap: 10px 20px;
  font-size: 0.875rem; padding: 16px 20px;
  background: #f8fafc; border-radius: 12px;
  border: 1px solid var(--border);
}

.resultado-datos dt { color: var(--muted); font-weight: 500; }
.resultado-datos dd { font-weight: 700; color: var(--text); }

/* ── Stats ── */
.stats {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px 0;
}

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

.stat {
  text-align: center; padding: 20px 16px;
  border-radius: var(--radius);
  background: #fafbfc; border: 1px solid var(--border);
}

.stat-num {
  display: block; font-size: 1.4rem; font-weight: 800;
  color: var(--navy-700); letter-spacing: -0.02em;
}

.stat-label { font-size: 0.8125rem; color: var(--muted); font-weight: 500; margin-top: 2px; }

/* ── Steps & IA ── */
.section-head {
  text-align: center; margin-bottom: 36px;
}

.section-head h2 {
  font-size: 1.65rem; font-weight: 800;
  letter-spacing: -0.03em; margin-bottom: 8px;
}

.section-head p { color: var(--muted); font-size: 0.95rem; }

.steps { padding: 64px 24px; }

.steps-grid, .ia-cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}

.step, .ia-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s;
}

.step:hover, .ia-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.step-num {
  display: inline-flex; width: 32px; height: 32px;
  align-items: center; justify-content: center;
  background: var(--navy-700); color: white;
  border-radius: 10px; font-weight: 800;
  font-size: 0.875rem; margin-bottom: 14px;
}

.step h3, .ia-card h3 {
  font-size: 1.05rem; font-weight: 700;
  margin-bottom: 8px; letter-spacing: -0.01em;
}

.step p, .ia-card p { color: var(--muted); font-size: 0.875rem; line-height: 1.55; }

.ia-section { padding: 0 24px 64px; }

.ia-card-icon {
  display: inline-flex; width: 40px; height: 40px;
  align-items: center; justify-content: center;
  border-radius: 12px; font-weight: 800;
  margin-bottom: 14px; font-size: 1rem;
}

.ia-card-ok .ia-card-icon { background: var(--green-50); color: var(--green-600); }
.ia-card-warn .ia-card-icon { background: #fffbeb; color: #d97706; }
.ia-card-info .ia-card-icon { background: #eff6ff; color: var(--blue-600); }

/* ── Footer ── */
.site-footer {
  background: var(--navy-950);
  color: #64748b; padding: 28px 0;
  text-align: center; font-size: 0.8125rem;
}

@media (max-width: 900px) {
  .hero-grid, .steps-grid, .stats-grid, .ia-cards, .ai-highlights {
    grid-template-columns: 1fr;
  }
  .pricing-row-2, .pricing-row-3 { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .pkg-free-banner { flex-direction: column; text-align: center; }
}

/* ── Pricing packages ── */
.pricing-section {
  padding: 64px 24px;
  background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
}

.pricing-row {
  display: grid;
  gap: 20px;
  margin-bottom: 20px;
}

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

.pkg {
  position: relative;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.pkg:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.pkg.pkg-selected {
  border-color: var(--blue-600);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.pkg-featured {
  border-color: var(--blue-600);
  border-width: 2px;
}

.pkg-premium {
  border-color: #a855f7;
  border-width: 2px;
}

.pkg-pack {
  border-style: dashed;
  border-color: #93c5fd;
}

.pkg-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 999px;
  white-space: nowrap;
}

.pkg-badge-top { background: var(--blue-600); color: white; }
.pkg-badge-dark { background: #1e293b; color: white; left: 24px; transform: none; }
.pkg-badge-orange { background: #fff7ed; color: #c2410c; border: 1px solid #fed7aa; left: 24px; transform: none; }
.pkg-badge-purple { background: #f3e8ff; color: #7e22ce; border: 1px solid #e9d5ff; }
.pkg-badge-green { background: var(--green-50); color: var(--green-600); border: 1px solid #a7f3d0; left: 24px; transform: none; }

.pkg-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; margin-bottom: 12px;
}

.pkg-icon-blue { background: #eff6ff; }
.pkg-icon-gray { background: #f1f5f9; }
.pkg-icon-orange { background: #fff7ed; }
.pkg-icon-purple { background: #faf5ff; }

.pkg h3 {
  font-size: 1.15rem; font-weight: 700;
  margin-bottom: 4px; letter-spacing: -0.02em;
}

.pkg-source {
  font-size: 0.75rem; font-weight: 600;
  color: var(--blue-600); margin-bottom: 8px;
}

.pkg-desc {
  font-size: 0.8125rem; color: var(--muted);
  margin-bottom: 16px; line-height: 1.45;
}

.pkg-price-row {
  display: flex; align-items: center; gap: 10px;
  flex-wrap: wrap; margin-bottom: 12px;
}

.pkg-price {
  font-size: 1.75rem; font-weight: 800;
  color: var(--blue-600); letter-spacing: -0.03em;
}

.pkg-price-orange { color: #ea580c; }
.pkg-price-purple { color: #9333ea; }
.pkg-price-muted { font-size: 1.1rem; color: var(--muted); font-weight: 700; }

.pkg-speed {
  font-size: 0.68rem; font-weight: 700;
  padding: 4px 10px; border-radius: 999px;
}

.pkg-speed-fast { background: var(--green-50); color: var(--green-600); }
.pkg-speed-wait { background: #fef9c3; color: #a16207; }

.pkg-ai-badge {
  display: inline-block;
  font-size: 0.72rem; font-weight: 700;
  padding: 5px 12px; border-radius: 999px;
  background: linear-gradient(135deg, #ecfdf5, #eff6ff);
  color: #047857; border: 1px solid #6ee7b7;
  margin-bottom: 16px; align-self: flex-start;
}

.pkg-features {
  list-style: none; flex: 1;
  margin-bottom: 20px;
}

.pkg-features li {
  font-size: 0.8125rem; color: #475569;
  padding: 5px 0 5px 22px; position: relative;
  line-height: 1.4;
}

.pkg-features li::before {
  content: "✓"; position: absolute; left: 0;
  color: var(--blue-600); font-weight: 700; font-size: 0.8rem;
}

.pkg-premium .pkg-features li::before { color: #9333ea; }

.pkg-checklist li { padding-left: 0; }
.pkg-checklist li::before { content: none; }

.pkg-checklist label {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.8125rem; color: #475569; cursor: default;
}

.pkg-btn {
  width: 100%; padding: 13px 16px;
  border: none; border-radius: 11px;
  font-size: 0.875rem; font-weight: 700;
  cursor: pointer; transition: transform 0.15s, opacity 0.15s;
}

.pkg-btn:hover { transform: translateY(-1px); opacity: 0.95; }

.pkg-btn-orange { background: #f97316; color: white; }
.pkg-btn-blue { background: var(--blue-600); color: white; }
.pkg-btn-purple { background: #9333ea; color: white; }

.pkg-btn-outline {
  background: white; color: var(--blue-600);
  border: 2px solid var(--blue-600);
  white-space: nowrap; width: auto; padding: 12px 24px;
}

.pkg-free-banner {
  display: flex; align-items: center;
  justify-content: space-between; gap: 20px;
  margin-top: 8px; padding: 20px 24px;
  background: linear-gradient(135deg, #eff6ff, #ecfdf5);
  border: 1px solid #bfdbfe; border-radius: var(--radius-lg);
}

.pkg-free-banner strong {
  display: block; font-size: 1rem; margin-bottom: 4px;
}

.pkg-free-banner p {
  font-size: 0.8125rem; color: var(--muted); margin: 0;
}

@media (prefers-reduced-motion: reduce) {
  .send-overlay.phase-door .car-door,
  .send-overlay.phase-engine .engine-light,
  .send-overlay.phase-engine .dashboard-glow,
  .send-overlay.phase-km .km-display,
  .send-overlay.phase-km .km-needle {
    animation: none !important;
  }
  .car-door { transform: perspective(200px) rotateY(-55deg); }
  .engine-light, .dashboard-glow, .km-display { opacity: 1; }
}
