/* ============================================================
   QUEREMOS TU MOTO — Design tokens
   Rojo + crema (paleta original) · Tipografía Cuimo (Jokker)
   ============================================================ */

@font-face {
  font-family: 'Jokker';
  src: url('fonts/Jokker-Regular.otf') format('opentype');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Jokker';
  src: url('fonts/Jokker-Medium.otf') format('opentype');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Jokker';
  src: url('fonts/Jokker-Semibold.otf') format('opentype');
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Jokker';
  src: url('fonts/Jokker-Bold.otf') format('opentype');
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Jokker';
  src: url('fonts/Jokker-Heavy.otf') format('opentype');
  font-weight: 900; font-style: normal; font-display: swap;
}

:root {
  /* QTM brand — rojo + crema */
  --qtm-red:        #C1121F;
  --qtm-red-deep:   #9C0E1A;
  --qtm-red-soft:   #DA2638;
  --qtm-cream:      #FBE9C4;   /* fondo principal */
  --qtm-cream-deep: #F5DDA7;
  --qtm-ink:        #0E2A2C;   /* texto oscuro (verde-azulado profundo, como en site original) */
  --qtm-ink-soft:   #2C4548;
  --qtm-accent:     #0FDD9F;   /* acento sutil (verde, sólo confirmaciones / WhatsApp) */
  --qtm-white:      #FFFFFF;
  --qtm-line:       rgba(14, 42, 44, 0.12);
  --qtm-line-cream: rgba(14, 42, 44, 0.18);
  --qtm-shadow:     0 1px 2px rgba(14,42,44,.04), 0 8px 24px rgba(14,42,44,.06);
  --qtm-shadow-lg:  0 4px 12px rgba(14,42,44,.06), 0 24px 60px rgba(14,42,44,.12);

  /* Type */
  --font: 'Jokker', system-ui, -apple-system, Segoe UI, sans-serif;

  /* Radius — píldora es la firma Cuimo */
  --r-xs: 6px;
  --r-sm: 10px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-2xl: 40px;
  --r-pill: 999px;

  /* Layout */
  --max-w: 1240px;
  --pad-x: clamp(20px, 4vw, 56px);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.45;
  letter-spacing: -0.01em;
  color: var(--qtm-ink);
  background: var(--qtm-cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
h1,h2,h3,h4,h5 { margin: 0; font-weight: 600; letter-spacing: -0.02em; line-height: 1.05; color: var(--qtm-ink); }
p { margin: 0; text-wrap: pretty; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input, textarea, select { font-family: inherit; font-size: inherit; color: inherit; }
em, i, .italic { font-style: normal !important; }

/* Layout helpers */
.qtm-wrap { max-width: var(--max-w); margin: 0 auto; padding-left: var(--pad-x); padding-right: var(--pad-x); }

/* ===== Top nav ===== */
.qtm-nav {
  position: sticky; top: 0; z-index: 1100;
  background: var(--qtm-red);
  color: var(--qtm-cream);
}
.qtm-nav-inner {
  max-width: var(--max-w); margin: 0 auto;
  padding: 18px var(--pad-x);
  display: flex; align-items: center; gap: 32px;
}
.qtm-logo {
  display: flex; align-items: center; gap: 10px;
  font-weight: 900; letter-spacing: -0.02em;
  font-size: 17px; line-height: 1; color: var(--qtm-cream);
}
.qtm-logo-img { display: block; height: 44px; width: auto; }
.qtm-logo-mark {
  width: 38px; height: 38px; border-radius: var(--r-pill);
  background: var(--qtm-cream); color: var(--qtm-red);
  display: grid; place-items: center;
  font-weight: 900;
}
.qtm-logo-mark svg { width: 24px; height: 24px; }
.qtm-logo-text { display: flex; flex-direction: column; gap: 2px; }
.qtm-logo-text small { font-size: 9px; font-weight: 700; opacity: .8; letter-spacing: .12em; }
.qtm-nav-links {
  display: flex; align-items: center; gap: 6px;
  margin-left: auto;
}
.qtm-nav-link {
  padding: 10px 16px; border-radius: var(--r-pill);
  color: var(--qtm-cream); font-weight: 500; font-size: 15px;
  transition: background .15s ease, color .15s ease;
}
.qtm-nav-link:hover { background: rgba(255,255,255,.12); }
.qtm-nav-link.is-active { background: var(--qtm-cream); color: var(--qtm-red); font-weight: 600; }

/* ===== Dropdown (desktop) ===== */
.qtm-nav-dd { position: relative; }
.qtm-nav-link-dd { display: inline-flex; align-items: center; cursor: pointer; }
.qtm-nav-dd.is-active > .qtm-nav-link-dd { background: var(--qtm-cream); color: var(--qtm-red); font-weight: 600; }
.qtm-nav-dd-panel {
  position: absolute; top: calc(100% + 6px); left: 0;
  min-width: 280px;
  background: var(--qtm-cream); color: var(--qtm-ink);
  border-radius: 18px; padding: 8px;
  box-shadow: 0 18px 48px rgba(0,0,0,.18), 0 2px 6px rgba(0,0,0,.08);
  opacity: 0; visibility: hidden; transform: translateY(-4px);
  transition: opacity .15s ease, transform .15s ease, visibility .15s ease;
  z-index: 60;
}
.qtm-nav-dd:hover > .qtm-nav-dd-panel,
.qtm-nav-dd.is-open > .qtm-nav-dd-panel { opacity: 1; visibility: visible; transform: translateY(0); }
.qtm-nav-dd-item {
  display: flex; flex-direction: column; gap: 2px;
  padding: 10px 14px; border-radius: 12px;
  color: var(--qtm-ink);
  transition: background .15s ease;
}
.qtm-nav-dd-item:hover { background: rgba(200,16,46,.08); }
.qtm-nav-dd-item.is-active { background: var(--qtm-red); color: var(--qtm-cream); }
.qtm-nav-dd-item .t { font-weight: 700; font-size: 14px; }
.qtm-nav-dd-item .d { font-size: 12px; opacity: .65; }
.qtm-nav-dd-item.is-active .d { opacity: .85; }
.qtm-nav-cta {
  margin-left: 8px;
  padding: 11px 20px; border-radius: var(--r-pill);
  background: var(--qtm-cream); color: var(--qtm-red);
  font-weight: 700; font-size: 15px;
  display: inline-flex; align-items: center; gap: 8px;
  transition: transform .15s ease, background .15s ease;
}
.qtm-nav-cta:hover { background: var(--qtm-white); transform: translateY(-1px); }
.qtm-nav-phone {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; font-size: 14px; color: var(--qtm-cream);
  padding: 10px 14px; border-radius: var(--r-pill);
  border: 1px solid rgba(255,255,255,.25);
}
.qtm-nav-phone:hover { background: rgba(255,255,255,.10); }

/* ===== Buttons ===== */
.qtm-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 28px; border-radius: var(--r-pill);
  font-weight: 700; font-size: 16px; line-height: 1;
  transition: transform .15s ease, background .15s ease, box-shadow .15s ease;
  cursor: pointer; white-space: nowrap;
}
.qtm-btn-primary {
  background: var(--qtm-red); color: var(--qtm-cream);
  box-shadow: 0 6px 20px rgba(200,16,46,.25);
}
.qtm-btn-primary:hover { background: var(--qtm-red-deep); transform: translateY(-1px); }
.qtm-btn-ink {
  background: var(--qtm-ink); color: var(--qtm-cream);
}
.qtm-btn-ink:hover { background: #06181a; transform: translateY(-1px); }
.qtm-btn-ghost {
  background: transparent; color: var(--qtm-ink);
  border: 1.5px solid var(--qtm-line-cream);
}
.qtm-btn-ghost:hover { border-color: var(--qtm-ink); }
.qtm-btn-lg { padding: 20px 36px; font-size: 18px; }
.qtm-btn-sm { padding: 11px 18px; font-size: 14px; }

/* ===== Footer ===== */
.qtm-footer {
  background: var(--qtm-red); color: var(--qtm-cream);
  padding: 80px 0 32px;
  margin-top: 120px;
}
.qtm-footer-grid {
  max-width: var(--max-w); margin: 0 auto;
  padding: 0 var(--pad-x);
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.qtm-footer h4 {
  color: var(--qtm-cream);
  font-size: 14px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .12em; margin-bottom: 20px;
  opacity: .75;
}
.qtm-footer-brand h3 {
  color: var(--qtm-cream); font-size: 28px; font-weight: 700;
  letter-spacing: -0.02em; margin-bottom: 16px;
}
.qtm-footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.qtm-footer a { opacity: .85; transition: opacity .15s; }
.qtm-footer a:hover { opacity: 1; text-decoration: underline; text-underline-offset: 4px; }
.qtm-footer-bottom {
  max-width: var(--max-w); margin: 56px auto 0; padding: 24px var(--pad-x) 0;
  border-top: 1px solid rgba(251,233,196,.18);
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
  font-size: 14px; opacity: .8; flex-wrap: wrap;
}
.qtm-footer-legal { display: flex; gap: 24px; flex-wrap: wrap; }

/* ===== Floating WhatsApp ===== */
.qtm-wa {
  position: fixed; right: 24px; bottom: 24px; z-index: 100;
  width: 56px; height: 56px; border-radius: var(--r-pill);
  background: #25D366; color: white;
  display: grid; place-items: center;
  box-shadow: 0 8px 24px rgba(37,211,102,.4);
  transition: transform .15s;
}
.qtm-wa:hover { transform: scale(1.06); }

/* ===== Generic section ===== */
.qtm-section { padding: 96px 0; }
.qtm-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px; border-radius: var(--r-pill);
  background: rgba(200,16,46,.10); color: var(--qtm-red);
  font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em;
}

/* ===== Form fields ===== */
.qtm-field { display: flex; flex-direction: column; gap: 8px; }
.qtm-field label {
  font-size: 13px; font-weight: 600; color: var(--qtm-ink-soft);
  text-transform: uppercase; letter-spacing: .08em;
}
.qtm-input, .qtm-select, .qtm-textarea {
  width: 100%;
  padding: 16px 18px;
  background: var(--qtm-white);
  border: 1.5px solid var(--qtm-line-cream);
  border-radius: var(--r-md);
  font-weight: 500; color: var(--qtm-ink);
  outline: none;
  transition: border-color .15s, box-shadow .15s;
}
.qtm-input:focus, .qtm-select:focus, .qtm-textarea:focus {
  border-color: var(--qtm-red);
  box-shadow: 0 0 0 3px rgba(200,16,46,.12);
}
.qtm-textarea { resize: vertical; min-height: 110px; }
.qtm-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%230E2A2C' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  background-size: 12px;
  padding-right: 44px;
}

/* ===== Cards ===== */
.qtm-card {
  background: var(--qtm-white);
  border-radius: var(--r-xl);
  padding: 32px;
  box-shadow: var(--qtm-shadow);
}

/* Animation helpers */
@keyframes qtm-fade-in { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.qtm-fade-in { animation: qtm-fade-in .35s ease both; }

/* ============================================================
   MOBILE — single source of truth for responsive shell + pages
   ============================================================ */

/* Hamburger button (hidden on desktop) */
.qtm-burger {
  display: none;
  width: 44px; height: 44px; border-radius: var(--r-pill);
  background: rgba(255,255,255,.12); color: var(--qtm-cream);
  align-items: center; justify-content: center;
  margin-left: auto;
  flex-shrink: 0;
  transition: background .15s;
}
.qtm-burger:hover, .qtm-burger:active { background: rgba(255,255,255,.2); }
.qtm-burger svg { width: 22px; height: 22px; }

/* Mobile menu sheet */
.qtm-mobile-menu {
  display: none;
  position: fixed; inset: 0; z-index: 100;
  background: var(--qtm-red); color: var(--qtm-cream);
  flex-direction: column;
  padding: 0;
  opacity: 0; pointer-events: none;
  transition: opacity .25s ease;
}
.qtm-mobile-menu.is-open { opacity: 1; pointer-events: auto; }
.qtm-mobile-menu-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px var(--pad-x);
  border-bottom: 1px solid rgba(251,233,196,.18);
}
.qtm-mobile-menu-close {
  width: 44px; height: 44px; border-radius: 999px;
  background: rgba(255,255,255,.12); color: var(--qtm-cream);
  display: grid; place-items: center;
}
.qtm-mobile-menu-links {
  display: flex; flex-direction: column;
  padding: 24px var(--pad-x);
  gap: 4px;
  flex: 1;
}
.qtm-mobile-menu-links a {
  padding: 16px 20px; border-radius: var(--r-md);
  font-size: 19px; font-weight: 600;
  color: var(--qtm-cream);
  display: flex; align-items: center; justify-content: space-between;
}
.qtm-mobile-menu-links a.is-active { background: var(--qtm-cream); color: var(--qtm-red); }
.qtm-mobile-menu-links a.is-sub { font-size: 15px; padding: 12px 20px 12px 36px; font-weight: 500; opacity: .82; }
.qtm-mobile-menu-links a::after { content: '→'; opacity: .4; }
.qtm-mobile-menu-foot {
  padding: 24px var(--pad-x) 32px;
  border-top: 1px solid rgba(251,233,196,.18);
  display: flex; flex-direction: column; gap: 12px;
}
.qtm-mobile-menu-foot a {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 18px; border-radius: var(--r-pill);
  font-weight: 700; font-size: 16px;
}
.qtm-mobile-menu-foot .wa { background: #25D366; color: white; justify-content: center; }
.qtm-mobile-menu-foot .tel { background: var(--qtm-cream); color: var(--qtm-red); justify-content: center; }

@media (max-width: 860px) {
  :root { --pad-x: 20px; }

  /* === Shell: nav === */
  .qtm-nav-inner { padding: 14px var(--pad-x); gap: 12px; }
  .qtm-logo { font-size: 15px; }
  .qtm-logo-mark { width: 34px; height: 34px; }
  .qtm-logo-mark svg { width: 20px; height: 20px; }
  .qtm-logo-text small { font-size: 8px; }
  .qtm-nav-links { display: none; }
  .qtm-burger { display: inline-flex; }
  .qtm-mobile-menu { display: flex; }

  /* === Shell: footer === */
  .qtm-footer { padding: 56px 0 24px; margin-top: 80px; }
  .qtm-footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .qtm-footer-brand h3 { font-size: 24px; }
  .qtm-footer-bottom { flex-direction: column; align-items: flex-start; margin-top: 36px; padding-top: 20px; gap: 12px; font-size: 13px; }
  .qtm-footer-legal { gap: 16px; }
  .qtm-footer h4 { margin-bottom: 14px; }

  /* === Shell: WhatsApp FAB === */
  .qtm-wa { right: 16px; bottom: 16px; width: 52px; height: 52px; }
  .qtm-wa svg { width: 26px; height: 26px; }

  /* === Buttons === */
  .qtm-btn { padding: 14px 22px; font-size: 15px; }
  .qtm-btn-lg { padding: 16px 26px; font-size: 16px; }
  .qtm-btn-sm { padding: 10px 16px; font-size: 13px; }

  /* === Eyebrow === */
  .qtm-eyebrow { font-size: 11px; padding: 6px 12px; }

  /* === Cards === */
  .qtm-card { padding: 24px; border-radius: var(--r-lg); }

  /* === Sections === */
  .qtm-section { padding: 64px 0; }

  /* === HOME === */
  .home-hero { padding: 32px 0 56px; }
  .home-hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .home-hero h1 { font-size: clamp(34px, 9vw, 44px) !important; }
  .home-hero-lede { font-size: 16px; margin-bottom: 24px; }
  .home-hero-ctas { flex-direction: column; align-items: stretch; }
  .home-hero-ctas .qtm-btn { width: 100%; justify-content: center; }
  .home-hero-trust { gap: 16px; margin-top: 28px; padding-top: 20px; }
  .home-hero-trust-item { font-size: 13px; }
  .tasar-widget { padding: 6px; border-radius: 24px; }
  .tasar-widget-header { padding: 16px 20px; border-radius: 18px 18px 14px 14px; }
  .tasar-widget-header h3 { font-size: 17px; }
  .tasar-widget-pill { font-size: 10px; padding: 5px 10px; }
  .tasar-widget-body { padding: 20px; }
  .tasar-result-amount { font-size: 44px; }
  .tasar-grid-options { grid-template-columns: 1fr 1fr; }

  .home-features { padding: 56px 0; }
  .home-features-grid { grid-template-columns: 1fr; gap: 16px; }
  .home-feature { padding: 28px 24px; }
  .home-feature h3 { font-size: 19px; }

  .home-steps { margin: 48px 16px 0 !important; padding: 56px 0; border-radius: 28px; }
  .home-steps-head { margin-bottom: 36px; padding: 0 20px; }
  .home-steps-head h2 { font-size: 28px !important; }
  .home-steps-head p { font-size: 15px; }
  .home-steps-grid { grid-template-columns: 1fr !important; padding: 0 20px !important; gap: 16px; }
  .home-step { padding: 24px; }
  .home-step-num { width: 40px; height: 40px; font-size: 17px; margin-bottom: 14px; }
  .home-step h3 { font-size: 19px; }

  .home-testimonials { padding: 64px 0 32px; }
  .home-testimonials-head { flex-direction: column; align-items: flex-start; gap: 16px; margin-bottom: 32px; }
  .home-testimonials-head > div:last-child { text-align: left !important; display: flex; align-items: center; gap: 12px; }
  .home-testimonials-head > div:last-child > div:first-child { font-size: 32px !important; }
  .home-testimonials-grid { grid-template-columns: 1fr; gap: 14px; }
  .home-testimonial { padding: 24px; }
  .home-testimonial blockquote { font-size: 15px; }

  .home-cta { margin: 0 16px !important; flex-direction: column; align-items: flex-start !important; padding: 40px 28px !important; border-radius: 28px; gap: 24px !important; }
  .home-cta h2 { font-size: 28px !important; }
  .home-cta p { font-size: 15px; }
  .home-cta-side { width: 100%; }
  .home-cta-side .qtm-btn { width: 100%; justify-content: center; }

  /* === CÓMO FUNCIONA === */
  .como-hero { padding: 32px 0 24px; }
  .como-hero h1 { font-size: clamp(32px, 9vw, 42px) !important; }
  .como-hero-lede { font-size: 16px; margin-top: 16px; }
  .como-stats { grid-template-columns: 1fr 1fr !important; padding: 28px 20px !important; gap: 20px; margin-top: 32px; border-radius: 20px; }
  .como-stat-num { font-size: 32px !important; }
  .como-stat-label { font-size: 12px; }

  .como-steps { padding: 56px 0; }
  .como-steps-head { margin-bottom: 48px !important; }
  .como-steps-head h2 { font-size: 28px !important; }
  .como-steps-head p { font-size: 15px; }
  .como-step { grid-template-columns: 1fr !important; gap: 24px !important; margin-bottom: 64px !important; }
  .como-step.reverse > :first-child { order: 0 !important; }
  .como-step-num-big { font-size: 96px !important; margin-bottom: -8px !important; }
  .como-step h3 { font-size: 26px !important; }
  .como-step p { font-size: 15px; }
  .como-step-bullets li { font-size: 14px; }
  .como-step-visual { padding: 28px !important; aspect-ratio: auto !important; min-height: 280px; border-radius: 24px; }
  .visual-payment-amount { font-size: 40px !important; }

  .como-timeline { padding: 56px 0; margin-top: 48px; }
  .como-timeline h2 { font-size: 26px !important; }
  .como-timeline-grid { grid-template-columns: 1fr !important; gap: 8px !important; margin-top: 36px; }
  .como-timeline-grid::before { display: none !important; }
  .timeline-item { display: flex; align-items: flex-start; gap: 16px; text-align: left !important; padding: 14px 0; border-bottom: 1px solid rgba(251,233,196,.15); }
  .timeline-item:last-child { border-bottom: 0; }
  .timeline-dot { margin: 0 !important; width: 44px; height: 44px; font-size: 16px; flex-shrink: 0; }
  .timeline-item .when { margin-bottom: 4px; font-size: 10px; }
  .timeline-item h4 { font-size: 15px; }
  .timeline-item p { font-size: 13px; }

  /* === FAQ === */
  .faq-hero { padding: 32px 0 16px; }
  .faq-hero h1 { font-size: clamp(34px, 9vw, 44px) !important; }
  .faq-hero-lede { font-size: 16px; margin-top: 14px; }
  .faq-search input { padding: 14px 16px 14px 46px; font-size: 15px; }
  .faq-search svg { left: 16px; }
  .faq-layout { grid-template-columns: 1fr !important; gap: 24px !important; margin-top: 36px !important; }
  .faq-nav { position: static !important; flex-direction: row !important; flex-wrap: wrap; gap: 6px !important; overflow-x: auto; padding-bottom: 4px; }
  .faq-nav h4 { width: 100%; margin-bottom: 4px; }
  .faq-nav-link { font-size: 13px; padding: 8px 14px; white-space: nowrap; }
  .faq-content { gap: 40px !important; }
  .faq-section h2 { font-size: 24px !important; margin-bottom: 16px !important; }
  .faq-q { padding: 18px 20px !important; font-size: 15px !important; }
  .faq-a-inner { padding: 0 20px 20px !important; font-size: 14px !important; }
  .faq-help { padding: 32px !important; flex-direction: column; align-items: flex-start; gap: 20px !important; }
  .faq-help h3 { font-size: 22px !important; }
  .faq-help p { font-size: 15px; }

  /* === CONTACTO === */
  .ct-hero { padding: 32px 0 16px; }
  .ct-hero h1 { font-size: clamp(34px, 9vw, 44px) !important; }
  .ct-hero-lede { font-size: 16px; margin-top: 14px; }
  .ct-grid { grid-template-columns: 1fr !important; gap: 24px !important; margin-top: 36px !important; }
  .ct-channel { padding: 18px; border-radius: var(--r-lg); }
  .ct-channel-icon { width: 42px; height: 42px; }
  .ct-channel h4 { font-size: 15px; }
  .ct-channel-value { font-size: 13px; }
  .ct-info-card { padding: 24px; }
  .ct-info-row { font-size: 13px; }
  .ct-map { padding: 24px; aspect-ratio: 1.5; }
  .ct-form { padding: 24px !important; border-radius: 24px; }
  .ct-form h2 { font-size: 26px !important; }
  .ct-form p.lede { font-size: 14px; }
  .ct-form-row { grid-template-columns: 1fr !important; gap: 12px !important; }
  .ct-form-actions { flex-direction: column; align-items: stretch; gap: 14px; }
  .ct-form-actions .qtm-btn { width: 100%; justify-content: center; }

  /* === TASADOR (vender-moto.html) — generic mobile fallback === */
  .vm-step-grid { grid-template-columns: 1fr !important; }
  .vm-card, .vm-form-card { padding: 24px !important; border-radius: 24px !important; }
}

@media (max-width: 480px) {
  .qtm-eyebrow { font-size: 10px; }
  .home-hero h1 { font-size: 32px !important; }
  .como-hero h1, .faq-hero h1, .ct-hero h1 { font-size: 30px !important; }
  .tasar-result-amount { font-size: 38px; }
  .como-stat-num { font-size: 28px !important; }
}
