/* ============================================================
   Doorly — estilos de la landing comercial (v3)
   Complementa styles.css. Tono ejecutivo: sin iconografía densa.
   ============================================================ */

/* ── Logos clickeables (llevan al hero) ── */
a.logo,
a.footer-logo {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

/* ── Hero: botones y ajustes ── */
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem 0 2.5rem;
}

.hero-actions .btn-primary,
.hero-actions .btn-outline {
  font-size: 1rem;
}

.hero-offer {
  display: inline-block;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.4);
  color: #6ee7b7;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 1.25rem;
}

/* ── Barra de confianza ── */
.trust-bar {
  background: var(--primary);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.75rem 2rem;
}

.trust-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  text-align: center;
}

.trust-item .trust-value {
  color: #ffffff;
  font-size: 1.15rem;
  font-weight: 800;
}

.trust-item .trust-label {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.85rem;
  margin-top: 0.15rem;
}

/* ── Headers centrados (consistente con el resto del sitio) ── */
.modules .section-inner,
.billing .section-inner,
.process .section-inner,
.faq .section-inner,
.ecosystem .section-inner {
  text-align: center;
}

/* El subtítulo tiene max-width en styles.css pero sin centrado automático:
   en secciones centradas quedaba anclado a la izquierda. */
.modules .section-subtitle,
.billing .section-subtitle,
.process .section-subtitle,
.faq .section-subtitle,
.ecosystem .section-subtitle,
.equipment .section-subtitle {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  text-wrap: balance;
}

.modules .modules-grid,
.billing .billing-grid,
.billing .billing-highlight,
.process .process-steps,
.faq .faq-list,
.ecosystem .ecosystem-grid {
  text-align: left;
}

/* Label visible sobre fondos claros */
.modules .section-label,
.process .section-label {
  background: #ffffff;
  border: 1px solid var(--border);
}

/* ── Módulos (grid ejecutivo, sin iconos) ── */
.modules {
  padding: 6rem 2rem;
  background: var(--light);
}

.modules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(255px, 1fr));
  gap: 1rem;
  margin-top: 3rem;
}

.module-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.5rem 1.5rem 1.35rem;
  transition: all 0.25s ease;
  border-top: 3px solid transparent;
}

.module-card:hover {
  border-top-color: var(--accent);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
  transform: translateY(-3px);
}

.module-card h3 {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 0.4rem;
  color: var(--primary);
}

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

.module-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-dark);
  background: rgba(33, 150, 243, 0.1);
  border-radius: 6px;
  padding: 0.15rem 0.5rem;
  margin-bottom: 0.6rem;
}

/* ── Sección biométrico (bloque oscuro) ── */
.biometric {
  background: linear-gradient(160deg, var(--primary) 0%, #12233f 100%);
  color: #ffffff;
  padding: 6.5rem 2rem;
}

.biometric-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.biometric .section-label {
  background: rgba(33, 150, 243, 0.15);
  color: var(--accent-bright);
}

.biometric h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.2;
  margin: 1rem 0 1.25rem;
}

.biometric p.lead {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

.biometric-points {
  list-style: none;
  display: grid;
  gap: 0.9rem;
}

.biometric-points li {
  padding-left: 1.6rem;
  position: relative;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
}

.biometric-points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 9px;
  height: 9px;
  border-radius: 3px;
  background: var(--accent);
}

.biometric-points li strong {
  color: #ffffff;
}

.biometric-panel {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 2rem;
}

.biometric-panel h3 {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1.25rem;
}

.biometric-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.92rem;
}

.biometric-row:last-child {
  border-bottom: none;
}

.biometric-row span:first-child {
  color: rgba(255, 255, 255, 0.65);
}

.biometric-row span:last-child {
  font-weight: 700;
  color: #ffffff;
  text-align: right;
}

/* ── Cobranza ── */
.billing {
  padding: 6rem 2rem;
  background: #ffffff;
}

.billing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.25rem;
  margin-top: 3rem;
}

.billing-card {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.75rem;
  background: var(--light);
}

.billing-card h3 {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

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

.billing-highlight {
  margin-top: 2.5rem;
  background: var(--primary);
  color: #ffffff;
  border-radius: 16px;
  padding: 2rem 2.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.billing-highlight p {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.98rem;
}

.billing-highlight strong {
  color: #ffffff;
}

/* ── Comparativa simple (sin iconos) ── */
.plain-list {
  list-style: none;
  margin-top: 1.25rem;
  display: grid;
  gap: 0.6rem;
  text-align: left;
}

.plain-list li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.92rem;
}

.plain-list.bad li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--danger);
  font-weight: 800;
}

.plain-list.good li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 800;
}

/* ── Equipamiento ── */
.equipment {
  padding: 6rem 2rem;
  background: #ffffff;
  border-top: 1px solid var(--border);
}

.equipment .section-inner {
  text-align: center;
}

.equipment .equipment-grid,
.equipment .equipment-highlight {
  text-align: left;
}

.equipment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(255px, 1fr));
  gap: 1rem;
  margin-top: 3rem;
}

.equipment-card {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.5rem 1.5rem 1.35rem;
  transition: all 0.25s ease;
  border-top: 3px solid transparent;
}

.equipment-card:hover {
  border-top-color: var(--accent);
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
  transform: translateY(-3px);
}

.equipment-card h3 {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 0.4rem;
  color: var(--primary);
}

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

.equipment-highlight {
  margin-top: 2.5rem;
  background: var(--primary);
  color: #ffffff;
  border-radius: 16px;
  padding: 2rem 2.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.equipment-highlight p {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.98rem;
}

.equipment-highlight strong {
  color: #ffffff;
}

/* ── Compatibilidad de marcas ── */
.brands-block {
  margin-top: 3rem;
  text-align: center;
}

.brands-block h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--primary);
}

.brands-block > p {
  max-width: 640px;
  margin: 0.5rem auto 1.5rem;
  font-size: 0.9rem;
  color: var(--muted);
  text-wrap: balance;
}

.brands-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem 0.75rem;
}

.brands-row span {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.45rem 1.1rem;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--muted);
  background: var(--light);
  transition: all 0.25s ease;
  cursor: default;
}

.brands-row span:hover {
  color: var(--primary);
  border-color: var(--accent);
  background: #ffffff;
  transform: translateY(-2px);
}

.brands-note {
  margin-top: 1.25rem;
  font-size: 0.78rem;
  color: var(--muted);
  opacity: 0.8;
}

/* ── Proceso de implementación ── */
.process {
  padding: 6rem 2rem;
  background: var(--light);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.25rem;
  margin-top: 3rem;
  counter-reset: paso;
}

.process-step {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.75rem;
  counter-increment: paso;
}

.process-step::before {
  content: '0' counter(paso);
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.process-step h3 {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 0.4rem;
}

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

/* ── FAQ ── */
.faq {
  padding: 6rem 2rem;
  background: #ffffff;
}

.faq-list {
  max-width: 820px;
  margin: 3rem auto 0;
  display: grid;
  gap: 0.75rem;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--light);
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1.15rem 1.5rem;
  font-weight: 700;
  font-size: 0.98rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--accent);
  transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item .faq-answer {
  padding: 0 1.5rem 1.25rem;
  color: var(--muted);
  font-size: 0.92rem;
}

/* ── Formulario de contacto ── */
.cta-form {
  max-width: 560px;
  margin: 2.5rem auto 0;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 2rem;
  text-align: left;
}

.cta-form label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  margin: 1rem 0 0.35rem;
}

.cta-form label:first-of-type {
  margin-top: 0;
}

.cta-form input,
.cta-form textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  color: #ffffff;
  font-family: inherit;
  font-size: 0.95rem;
}

.cta-form input::placeholder,
.cta-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.cta-form input:focus,
.cta-form textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.cta-form button {
  width: 100%;
  margin-top: 1.5rem;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 1rem;
  justify-content: center;
}

.form-note {
  margin-top: 0.9rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
  text-align: center;
}

/* ── Franja de socios estratégicos ── */
.partner-strip {
  background: linear-gradient(135deg, #f8fafc 0%, #eef4fb 100%);
  border-top: 1px solid var(--border);
  padding: 3.5rem 2rem;
}

.partner-strip .strip-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.partner-strip h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary);
}

.partner-strip p {
  font-size: 0.95rem;
  color: var(--muted);
  max-width: 620px;
  margin-top: 0.35rem;
}

/* ── Página de socios: hero compacto ── */
.subpage-hero {
  background: linear-gradient(160deg, var(--primary) 0%, #12233f 100%);
  color: #ffffff;
  padding: 9rem 2rem 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.subpage-hero .section-label {
  background: rgba(33, 150, 243, 0.15);
  color: var(--accent-bright);
}

.subpage-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.15;
  max-width: 820px;
  margin: 1rem auto;
}

.subpage-hero h1 span {
  background: linear-gradient(90deg, #2196f3, #64b5f6, #1565c0, #2196f3);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientShift 6s linear infinite;
}

.subpage-hero p.lead {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 2.25rem;
  text-wrap: balance;
}

.subpage-hero .hero-actions {
  justify-content: center;
  margin: 0;
}

/* ── Página de socios: modelo en dos columnas ── */
.model-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.25rem;
  margin-top: 3rem;
  text-align: left;
}

.model-card {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  background: var(--light);
}

.model-card h3 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.model-card ul {
  list-style: none;
  display: grid;
  gap: 0.7rem;
}

.model-card ul li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.92rem;
  color: var(--muted);
}

.model-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--accent);
}

.model-card ul li strong {
  color: var(--primary);
}

/* ── Página de socios: tabla de soporte ── */
.support-table {
  width: 100%;
  max-width: 860px;
  margin: 3rem auto 0;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.92rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.support-table th {
  background: var(--primary);
  color: #ffffff;
  padding: 0.85rem 1.25rem;
  font-weight: 700;
}

.support-table td {
  padding: 0.85rem 1.25rem;
  border-top: 1px solid var(--border);
  color: var(--muted);
}

.support-table td:first-child {
  font-weight: 700;
  color: var(--primary);
  white-space: nowrap;
}

/* ── Página de socios: notas del programa ── */
.program-notes {
  max-width: 860px;
  margin: 3rem auto 0;
  text-align: left;
  display: grid;
  gap: 0.75rem;
}

.program-note {
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: 10px;
  background: #ffffff;
  padding: 1rem 1.25rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.program-note strong {
  color: var(--primary);
}

/* ── Franja Master Creativa (compacta) ── */
.master-strip {
  background: var(--light);
  border-top: 1px solid var(--border);
  padding: 2.5rem 2rem;
}

.master-strip .strip-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.master-strip h3 {
  font-size: 1rem;
  font-weight: 800;
}

.master-strip p {
  font-size: 0.88rem;
  color: var(--muted);
  max-width: 640px;
}

.master-strip a {
  color: var(--accent-dark);
  font-weight: 700;
  text-decoration: none;
  font-size: 0.9rem;
  white-space: nowrap;
}

.master-strip a:hover {
  text-decoration: underline;
}

/* ============================================================
   ANIMACIONES Y EFECTOS MODERNOS
   ============================================================ */

/* ── Orbes flotantes del hero (fondo vivo) ── */
.hero {
  position: relative;
  overflow: hidden;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
}

.hero-orb.orb-a {
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, #2196f3 0%, transparent 70%);
  top: -120px;
  right: -80px;
  animation: orbFloatA 14s ease-in-out infinite;
}

.hero-orb.orb-b {
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, #1565c0 0%, transparent 70%);
  bottom: -140px;
  left: -100px;
  animation: orbFloatB 18s ease-in-out infinite;
}

@keyframes orbFloatA {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-60px, 50px) scale(1.15); }
}

@keyframes orbFloatB {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(70px, -40px) scale(1.1); }
}

.hero-inner {
  position: relative;
  z-index: 1;
}

/* ── Entrada del hero (carga de la página) ── */
.hero-content > * {
  animation: heroRise 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-content > *:nth-child(1) { animation-delay: 0.05s; }
.hero-content > *:nth-child(2) { animation-delay: 0.15s; }
.hero-content > *:nth-child(3) { animation-delay: 0.25s; }
.hero-content > *:nth-child(4) { animation-delay: 0.35s; }
.hero-content > *:nth-child(5) { animation-delay: 0.45s; }

.hero-visual {
  animation: heroRise 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.3s both;
}

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

/* ── Badge de oferta con pulso sutil ── */
.hero-offer {
  animation: heroRise 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.05s both,
    offerPulse 3s ease-in-out 1.5s infinite;
}

@keyframes offerPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.35); }
  50% { box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
}

/* ── Tilt 3D (se activa por JS en tarjetas clave) ── */
.tilt-3d {
  position: relative;
  transition: transform 0.25s ease-out;
  will-change: transform;
  transform-style: preserve-3d;
}

.tilt-3d:hover {
  transition: transform 0.08s linear;
}

/* Brillo que sigue al cursor dentro de la tarjeta con tilt */
.tilt-3d .tilt-glare {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    420px circle at var(--mx, 50%) var(--my, 50%),
    rgba(255, 255, 255, 0.16),
    transparent 45%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 3;
}

.tilt-3d:hover .tilt-glare {
  opacity: 1;
}

/* ── Barrido de luz en botones primarios ── */
.btn-primary {
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -80%;
  width: 50%;
  height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: skewX(-20deg);
  transition: left 0.6s ease;
}

.btn-primary:hover::after {
  left: 130%;
}

/* ── Nav con blur al hacer scroll ── */
.nav.scrolled {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 8px 30px rgba(15, 23, 42, 0.08);
}

/* ── Título del hero con gradiente animado ── */
.hero h1 span {
  background: linear-gradient(90deg, #2196f3, #64b5f6, #1565c0, #2196f3);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientShift 6s linear infinite;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  100% { background-position: 300% 50%; }
}

/* ── Panel biométrico: filas que "escanean" ── */
.biometric-panel {
  position: relative;
  overflow: hidden;
}

.biometric-panel::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: -40%;
  height: 34%;
  background: linear-gradient(180deg, transparent, rgba(33, 150, 243, 0.08), transparent);
  animation: scanline 4.5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes scanline {
  0%, 100% { top: -40%; }
  50% { top: 110%; }
}

/* ── Módulos y equipo: borde superior que se "enciende" ── */
.module-card,
.equipment-card {
  position: relative;
}

.module-card::after,
.equipment-card::after {
  content: '';
  position: absolute;
  top: -3px;
  left: 50%;
  width: 0;
  height: 3px;
  background: var(--accent-gradient);
  border-radius: 3px;
  transition: all 0.35s ease;
  transform: translateX(-50%);
}

.module-card:hover::after,
.equipment-card:hover::after {
  width: 100%;
}

/* ── Marcadores ✓ que aparecen en cascada al entrar en vista ── */
.plain-list.good li::before {
  animation: checkPop 0.4s ease both;
}

@keyframes checkPop {
  from { transform: scale(0); }
  to { transform: scale(1); }
}

/* ── Log de accesos del hero: entrada escalonada ── */
.access-log .log-item {
  animation: heroRise 0.6s ease both;
}

.access-log .log-item:nth-child(1) { animation-delay: 0.9s; }
.access-log .log-item:nth-child(2) { animation-delay: 1.15s; }

.log-status.success {
  animation: statusBlink 0.5s ease 1.4s both;
}

@keyframes statusBlink {
  from { opacity: 0; transform: scale(0.6); }
  to { opacity: 1; transform: scale(1); }
}

/* ── Accesibilidad: sin animaciones si el usuario las desactivó ── */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .biometric-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .billing-highlight,
  .equipment-highlight {
    padding: 1.75rem;
  }

  .hero-orb {
    display: none;
  }
}
