/* =========================================================
   LicitaPro - LYRA AI | Landing Page
   Paleta: violeta #7C3AED / cian #06B6D4
   ========================================================= */

:root {
  --violet: #7C3AED;
  --violet-dark: #5B21B6;
  --cyan: #06B6D4;
  --bg: #0B0F1A;
  --bg-soft: #0F1626;
  --surface: #131B2E;
  --surface-light: #1B2740;
  --text: #E8ECF6;
  --text-muted: #A3ADC2;
  --border: rgba(255,255,255,.08);
  --radius: 16px;
  --shadow: 0 10px 40px rgba(124,58,237,.15);
  --container: 1180px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, Segoe UI, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.text-gradient {
  background: linear-gradient(90deg, var(--violet) 0%, var(--cyan) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.eyebrow {
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 12px;
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  font-size: .95rem;
  padding: 12px 22px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  transition: transform .35s cubic-bezier(.16,1,.3,1), box-shadow .35s cubic-bezier(.16,1,.3,1), background .3s ease, color .3s ease;
  white-space: nowrap;
}
.btn .icon { width: 18px; height: 18px; flex-shrink: 0; transition: transform .3s cubic-bezier(.16,1,.3,1); }
.btn:hover .icon { transform: translateX(3px); }

.btn--primary {
  background: linear-gradient(90deg, var(--violet), var(--cyan));
  color: #fff;
  box-shadow: 0 8px 24px rgba(124,58,237,.35);
}
.btn--primary:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 14px 34px rgba(124,58,237,.5); }
.btn--primary:active { transform: translateY(-1px) scale(.99); }

.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn--ghost:hover { background: var(--surface-light); transform: translateY(-2px); border-color: rgba(255,255,255,.18); }

.btn--outline {
  background: transparent;
  color: var(--cyan);
  border: 1px solid rgba(6,182,212,.4);
  width: 100%;
}
.btn--outline:hover { background: rgba(6,182,212,.08); border-color: rgba(6,182,212,.7); transform: translateY(-2px); }

.btn--lg { padding: 16px 32px; font-size: 1rem; }

/* =========================================================
   NAVBAR
   ========================================================= */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 0;
  background: rgba(11,15,26,.55);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: background .4s cubic-bezier(.16,1,.3,1), border-color .4s ease, padding .4s cubic-bezier(.16,1,.3,1), box-shadow .4s ease;
}
.navbar.is-scrolled {
  padding: 10px 0;
  background: rgba(11,15,26,.85);
  border-bottom-color: var(--border);
  box-shadow: 0 8px 30px rgba(0,0,0,.25);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.navbar__logo { height: 36px; width: auto; transition: transform .3s cubic-bezier(.16,1,.3,1); }
.navbar__brand:hover .navbar__logo { transform: scale(1.05); }

.navbar__nav {
  display: flex;
  gap: 28px;
  font-size: .92rem;
  font-weight: 600;
  color: var(--text-muted);
}
.navbar__nav a {
  position: relative;
  transition: color .25s ease;
  padding-bottom: 4px;
}
.navbar__nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: linear-gradient(90deg, var(--violet), var(--cyan));
  border-radius: 2px;
  transition: width .3s cubic-bezier(.16,1,.3,1);
}
.navbar__nav a:hover { color: var(--text); }
.navbar__nav a:hover::after { width: 100%; }

.navbar__cta { flex-shrink: 0; }

.navbar__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.navbar__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease;
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  padding: 160px 0 100px;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .35;
  animation: float 18s ease-in-out infinite;
}
.blob--1 {
  width: 480px; height: 480px;
  background: var(--violet);
  top: -180px; left: -120px;
  animation-duration: 22s;
}
.blob--2 {
  width: 420px; height: 420px;
  background: var(--cyan);
  top: 120px; right: -160px;
  animation-duration: 26s;
  animation-delay: -6s;
}
.blob--3 {
  width: 360px; height: 360px;
  background: var(--violet-dark);
  bottom: -160px; left: 30%;
  animation-duration: 30s;
  animation-delay: -12s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: .35; }
  33% { transform: translate(40px, 60px) scale(1.1); opacity: .45; }
  66% { transform: translate(-30px, 20px) scale(.95); opacity: .3; }
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at 50% 30%, rgba(0,0,0,.6), transparent 70%);
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 56px;
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--cyan);
  background: rgba(6,182,212,.08);
  border: 1px solid rgba(6,182,212,.25);
  border-radius: 999px;
  padding: 6px 14px;
  margin-bottom: 24px;
}
.badge__icon { width: 18px; height: 18px; border-radius: 4px; }

.hero__title {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.02em;
  margin-bottom: 20px;
}

.hero__subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 560px;
  margin-bottom: 32px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero__stats {
  display: flex;
  gap: 40px;
  list-style: none;
  flex-wrap: wrap;
}
.hero__stats li {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero__stats strong {
  font-size: 1.8rem;
  font-weight: 800;
  background: linear-gradient(90deg, var(--violet), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__stats span {
  font-size: .85rem;
  color: var(--text-muted);
}

/* Mockup visual */
.hero__visual { perspective: 1200px; }

.mockup {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transform: rotateY(-6deg) rotateX(2deg);
  animation: mockupFloat 8s cubic-bezier(.45,.05,.55,.95) infinite;
  transition: box-shadow .4s ease;
}

@keyframes mockupFloat {
  0%, 100% { transform: rotateY(-6deg) rotateX(2deg) translateY(0); }
  50% { transform: rotateY(-4deg) rotateX(1deg) translateY(-14px); }
}

.mockup__bar {
  display: flex;
  gap: 6px;
  padding: 14px 16px;
  background: var(--surface-light);
  border-bottom: 1px solid var(--border);
}
.mockup__bar span {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--border);
}
.mockup__bar span:nth-child(1) { background: #F87171; }
.mockup__bar span:nth-child(2) { background: #FBBF24; }
.mockup__bar span:nth-child(3) { background: #34D399; }

.mockup__body { padding: 22px; display: flex; flex-direction: column; gap: 16px; }

.mockup__row--lyra {
  display: flex;
  gap: 12px;
  background: rgba(124,58,237,.08);
  border: 1px solid rgba(124,58,237,.2);
  border-radius: 12px;
  padding: 14px;
}
.mockup__avatar {
  width: 32px; height: 32px;
  border-radius: 8px;
  flex-shrink: 0;
}
.mockup__title { font-size: .85rem; font-weight: 700; margin-bottom: 4px; color: var(--cyan); }
.mockup__text { font-size: .85rem; color: var(--text-muted); }

.mockup__card {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px;
  background: var(--surface-light);
}
.mockup__card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.mockup__card-title { font-size: .9rem; font-weight: 700; margin-bottom: 4px; }
.mockup__card-meta { font-size: .8rem; color: var(--text-muted); }
.mockup__date { font-size: .75rem; color: var(--text-muted); }

.tag {
  font-size: .7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
}
.tag--green { background: rgba(52,211,153,.12); color: #34D399; }
.tag--cyan { background: rgba(6,182,212,.12); color: var(--cyan); }

/* =========================================================
   TRUST STRIP
   ========================================================= */
.trust {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-soft);
  padding: 28px 0;
}
.trust__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
}
.trust__label {
  font-size: .85rem;
  color: var(--text-muted);
  font-weight: 600;
}
.trust__logos {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}
.trust__item {
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--text-muted);
  text-transform: uppercase;
  opacity: .8;
}

/* =========================================================
   SECTIONS GENERAL
   ========================================================= */
.section { padding: 100px 0; }
.section--alt { background: var(--bg-soft); }

.section__head {
  max-width: 680px;
  margin: 0 auto 56px;
  text-align: center;
}
.section__head h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -.02em;
  margin-bottom: 16px;
}
.section__head p { color: var(--text-muted); font-size: 1.05rem; }

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

/* Cards */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: transform .4s cubic-bezier(.16,1,.3,1), border-color .4s ease, box-shadow .4s cubic-bezier(.16,1,.3,1);
}
.card:hover {
  transform: translateY(-8px);
  border-color: rgba(124,58,237,.4);
  box-shadow: var(--shadow);
}
.card__icon {
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(124,58,237,.18), rgba(6,182,212,.18));
  margin-bottom: 20px;
  color: var(--cyan);
  transition: transform .4s cubic-bezier(.16,1,.3,1), background .4s ease;
}
.card:hover .card__icon {
  transform: scale(1.08) rotate(-4deg);
  background: linear-gradient(135deg, rgba(124,58,237,.3), rgba(6,182,212,.3));
}
.card__icon svg { width: 24px; height: 24px; stroke-width: 1.5; }
.card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; }
.card p { color: var(--text-muted); font-size: .95rem; }

/* =========================================================
   STEPS (Cómo funciona)
   ========================================================= */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
  transition: transform .4s cubic-bezier(.16,1,.3,1), border-color .4s ease, box-shadow .4s ease;
}
.step:hover {
  transform: translateY(-6px);
  border-color: rgba(124,58,237,.4);
  box-shadow: var(--shadow);
}
.step__number {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--violet), var(--cyan));
  color: #fff;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  font-size: 1.05rem;
  transition: transform .4s cubic-bezier(.16,1,.3,1);
}
.step:hover .step__number { transform: scale(1.12); }
.step h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.step p { color: var(--text-muted); font-size: .9rem; }

/* =========================================================
   MODULES
   ========================================================= */
.modules .module {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  text-align: left;
  transition: transform .4s cubic-bezier(.16,1,.3,1), border-color .4s ease, box-shadow .4s ease;
}
.modules .module:hover {
  transform: translateY(-6px);
  border-color: rgba(6,182,212,.4);
  box-shadow: var(--shadow);
}
.module__icon {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border-radius: 11px;
  background: linear-gradient(135deg, rgba(124,58,237,.18), rgba(6,182,212,.18));
  color: var(--violet);
  margin-bottom: 14px;
  transition: transform .4s cubic-bezier(.16,1,.3,1), background .4s ease;
}
.modules .module:hover .module__icon {
  transform: scale(1.1) rotate(-4deg);
  background: linear-gradient(135deg, rgba(124,58,237,.3), rgba(6,182,212,.3));
}
.module__icon svg { width: 19px; height: 19px; stroke-width: 1.5; }
.module h4 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.module p { font-size: .88rem; color: var(--text-muted); }

/* =========================================================
   PLANS
   ========================================================= */
.plans .plan {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  transition: transform .4s cubic-bezier(.16,1,.3,1), border-color .4s ease, box-shadow .4s ease;
}
.plans .plan:hover { transform: translateY(-6px); box-shadow: var(--shadow); }

.plan h3 { font-size: 1.2rem; font-weight: 800; }
.plan__desc { color: var(--text-muted); font-size: .88rem; min-height: 60px; }
.plan__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: .88rem;
  color: var(--text-muted);
  flex: 1;
}
.plan__list li { padding-left: 22px; position: relative; }
.plan__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--cyan);
  font-weight: 800;
}

.plan--featured {
  border-color: var(--violet);
  background: linear-gradient(160deg, rgba(124,58,237,.12), rgba(6,182,212,.08));
  box-shadow: var(--shadow);
}
.plan__tag {
  position: absolute;
  top: -12px; right: 24px;
  background: linear-gradient(90deg, var(--violet), var(--cyan));
  color: #fff;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
}

/* =========================================================
   CTA FINAL
   ========================================================= */
.cta {
  padding: 90px 0;
  background: linear-gradient(135deg, rgba(124,58,237,.18), rgba(6,182,212,.12));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.cta__inner { max-width: 640px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 18px; }
.cta__icon { width: 56px; height: 56px; animation: spin-slow 12s linear infinite; }
.cta h2 { font-size: clamp(1.6rem, 4vw, 2.2rem); font-weight: 800; }
.cta p { color: var(--text-muted); }

@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* =========================================================
   FAQ
   ========================================================= */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 6px 24px;
  transition: border-color .3s ease, box-shadow .3s ease;
}
.faq-item:hover { border-color: rgba(124,58,237,.35); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  font-weight: 700;
  font-size: 1rem;
  padding: 18px 28px 18px 0;
  position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0; top: 14px;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--cyan);
  transition: transform .3s cubic-bezier(.16,1,.3,1);
}
.faq-item[open] summary::after { content: "\2212"; }
.faq-item p {
  color: var(--text-muted);
  font-size: .92rem;
  padding-bottom: 18px;
  animation: faqFadeIn .35s ease;
}
@keyframes faqFadeIn {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

/* =========================================================
   CONTACT
   ========================================================= */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 760px;
  margin: 0 auto;
}
.contact-card {
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  transition: transform .4s cubic-bezier(.16,1,.3,1), border-color .4s ease, box-shadow .4s ease;
}
.contact-card:hover { transform: translateY(-6px); border-color: rgba(6,182,212,.4); box-shadow: var(--shadow); }
.contact-card__icon {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(124,58,237,.18), rgba(6,182,212,.18));
  color: var(--cyan);
  flex-shrink: 0;
  transition: transform .4s cubic-bezier(.16,1,.3,1), background .4s ease;
}
.contact-card:hover .contact-card__icon {
  transform: scale(1.08) rotate(-4deg);
  background: linear-gradient(135deg, rgba(124,58,237,.3), rgba(6,182,212,.3));
}
.contact-card__icon svg { width: 24px; height: 24px; }
.contact-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.contact-card p { color: var(--text-muted); font-size: .9rem; }

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  padding: 56px 0 32px;
  border-top: 1px solid var(--border);
  background: var(--bg-soft);
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.footer__logo { height: 100px; margin-bottom: 14px; }
.footer__brand p { color: var(--text-muted); font-size: .9rem; max-width: 320px; }
.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: .9rem;
  color: var(--text-muted);
}
.footer__nav a:hover { color: var(--text); }
.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__contact h4 {
  font-size: .9rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
}
.footer__contact a {
  font-size: .9rem;
  color: var(--text-muted);
  text-decoration: none;
}
.footer__contact a:hover { color: var(--text); }

.footer__legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: .82rem;
  color: var(--text-muted);
}
.footer__legal-nav { display: flex; gap: 24px; }
.footer__legal-nav a:hover { color: var(--text); }

/* =========================================================
   LEGAL PAGES (Privacidad / Términos)
   ========================================================= */
.legal {
  padding: 150px 0 100px;
  max-width: 760px;
  margin: 0 auto;
}
.legal h1 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 8px;
}
.legal .legal__updated {
  color: var(--text-muted);
  font-size: .9rem;
  margin-bottom: 40px;
}
.legal h2 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 36px 0 12px;
  color: var(--cyan);
}
.legal p, .legal li {
  color: var(--text-muted);
  font-size: .98rem;
  margin-bottom: 12px;
}
.legal ul, .legal ol { padding-left: 22px; margin-bottom: 12px; }
.legal a { color: var(--cyan); text-decoration: underline; }
.legal strong { color: var(--text); }

/* =========================================================
   WHATSAPP FLOAT
   ========================================================= */
.whatsapp-float {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,.45);
  z-index: 200;
  animation: pulse 2.4s ease-in-out infinite;
}
.whatsapp-float svg { width: 30px; height: 30px; fill: #fff; }

@keyframes pulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(37,211,102,.45); }
  50% { box-shadow: 0 8px 24px rgba(37,211,102,.45), 0 0 0 12px rgba(37,211,102,.18); }
}

/* =========================================================
   SCROLL REVEAL
   ========================================================= */
[data-reveal] {
  opacity: 0;
  transform: translateY(32px) scale(.98);
  transition: opacity .8s cubic-bezier(.16,1,.3,1), transform .8s cubic-bezier(.16,1,.3,1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { order: -1; }
  .grid--3, .grid--4, .steps, .contact-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .navbar__nav {
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    background: rgba(11,15,26,.97);
    border-bottom: 1px solid var(--border);
    padding: 20px 24px;
    gap: 16px;
    display: none;
  }
  .navbar__nav.is-open { display: flex; }
  .navbar__toggle { display: flex; }
  .navbar__cta { display: none; }

  .hero { padding: 130px 0 70px; }
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .hero__stats { gap: 28px; }

  .grid--3, .grid--4, .steps, .contact-grid { grid-template-columns: 1fr; }

  .trust__inner { flex-direction: column; align-items: flex-start; }
}

/* =========================================================
   ACCESIBILIDAD: respetar reduce-motion
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal] { transform: none; }
}
