/* Optinex v2 — Fusión consultora + tech futurista */
:root {
  --bg-deep: #070b12;
  --bg-card: #0f1623;
  --bg-elevated: #151d2e;
  --border: rgba(124, 58, 237, 0.22);
  --border-hover: rgba(124, 58, 237, 0.55);
  --accent: #7c3aed;
  --accent-soft: #a78bfa;
  --accent-glow: rgba(124, 58, 237, 0.35);
  --cyan: #22d3ee;
  --green: #10b981;
  --text: #e2e8f0;
  --text-muted: #94a3b8;
  --gradient-brand: linear-gradient(120deg, #7c3aed 0%, #a855f7 35%, #ec4899 70%, #f59e0b 100%);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body.optinex-v2 {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg-deep);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* Fondo ambiental sutil */
.optinex-v2 .ambient-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(124, 58, 237, 0.18), transparent),
    radial-gradient(ellipse 60% 40% at 100% 50%, rgba(34, 211, 238, 0.06), transparent),
    radial-gradient(ellipse 50% 30% at 0% 80%, rgba(236, 72, 153, 0.05), transparent);
}

.optinex-v2 .grid-lines {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.04;
  background-image:
    linear-gradient(rgba(124, 58, 237, 0.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124, 58, 237, 0.5) 1px, transparent 1px);
  background-size: 64px 64px;
}

.optinex-v2 main { position: relative; z-index: 1; }

/* Tipografía */
.optinex-v2 .text-gradient {
  background: var(--gradient-brand);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.optinex-v2 .text-glow {
  text-shadow: 0 0 40px rgba(124, 58, 237, 0.25);
}

.optinex-v2 .lead {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .optinex-v2 .lead { font-size: 1.25rem; }
}

/* Navbar */
.optinex-v2 .nav-shell {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7, 11, 18, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.optinex-v2 .nav-shell::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gradient-brand);
  opacity: 0.7;
}

.optinex-v2 .nav-link {
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.9rem;
  transition: color 0.2s;
  position: relative;
}

.optinex-v2 .nav-link:hover,
.optinex-v2 .nav-link.active { color: #fff; }

.optinex-v2 .nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.25s;
}

.optinex-v2 .nav-link:hover::after { transform: scaleX(1); }

/* Botones */
.optinex-v2 .btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #7c3aed, #6d28d9);
  color: #fff;
  font-weight: 600;
  padding: 0.875rem 1.75rem;
  border-radius: 0.625rem;
  border: 1px solid rgba(167, 139, 250, 0.4);
  box-shadow: 0 4px 24px var(--accent-glow);
  transition: transform 0.2s, box-shadow 0.2s;
}

.optinex-v2 .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(124, 58, 237, 0.45);
}

.optinex-v2 .btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--accent-soft);
  font-weight: 600;
  padding: 0.875rem 1.75rem;
  border-radius: 0.625rem;
  border: 1px solid var(--border-hover);
  transition: background 0.2s, color 0.2s;
}

.optinex-v2 .btn-secondary:hover {
  background: rgba(124, 58, 237, 0.12);
  color: #fff;
}

.optinex-v2 .btn-ghost {
  color: var(--text-muted);
  font-size: 0.875rem;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(148, 163, 184, 0.2);
  transition: all 0.2s;
}

.optinex-v2 .btn-ghost:hover {
  border-color: var(--border-hover);
  color: #fff;
}

/* Cards */
.optinex-v2 .card {
  background: linear-gradient(145deg, rgba(15, 22, 35, 0.95), rgba(10, 14, 22, 0.98));
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.5rem;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}

.optinex-v2 .card:hover {
  border-color: var(--border-hover);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(124, 58, 237, 0.1);
}

.optinex-v2 .card-featured {
  border-color: rgba(124, 58, 237, 0.45);
  box-shadow: 0 0 0 1px rgba(124, 58, 237, 0.15), 0 8px 32px rgba(124, 58, 237, 0.12);
}

.optinex-v2 .card-glow::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: var(--gradient-brand);
  opacity: 0.08;
  z-index: -1;
}

/* Secciones */
.optinex-v2 .section {
  padding: 5rem 0;
}

.optinex-v2 .section-alt {
  background: rgba(15, 22, 35, 0.5);
  border-top: 1px solid rgba(124, 58, 237, 0.08);
  border-bottom: 1px solid rgba(124, 58, 237, 0.08);
}

.optinex-v2 .section-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-soft);
  margin-bottom: 0.75rem;
}

.optinex-v2 .section-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1rem;
}

/* OOS Timeline */
.optinex-v2 .oos-steps {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .optinex-v2 .oos-steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .optinex-v2 .oos-steps {
    grid-template-columns: repeat(6, 1fr);
  }
  .optinex-v2 .oos-steps-10 {
    grid-template-columns: repeat(5, 1fr);
  }
}

.optinex-v2 .operation-example {
  border-left: 3px solid rgba(124, 58, 237, 0.5);
}

.ai-router-diagram {
  background: rgba(8, 12, 20, 0.6);
}
.ai-router-flow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.ai-router-node {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1rem;
  border-radius: 10px;
  background: rgba(124, 58, 237, 0.12);
  border: 1px solid rgba(124, 58, 237, 0.3);
  font-size: 0.8125rem;
  color: #e2e8f0;
  width: 100%;
  max-width: 280px;
  justify-content: center;
}
.ai-router-node i {
  color: #a78bfa;
}
.ai-router-node-core {
  background: rgba(124, 58, 237, 0.22);
  border-color: rgba(124, 58, 237, 0.55);
  font-weight: 600;
}
.ai-router-node-sm {
  max-width: none;
  flex: 1;
  font-size: 0.6875rem;
  padding: 0.5rem 0.4rem;
  text-align: center;
}
.ai-router-arrow {
  color: #64748b;
  font-size: 0.75rem;
}
.ai-router-branches {
  display: flex;
  gap: 0.35rem;
  width: 100%;
}

.optinex-v2 .oos-step {
  text-align: center;
  padding: 1.25rem 0.75rem;
  position: relative;
}

.optinex-v2 .oos-num {
  width: 2.5rem;
  height: 2.5rem;
  margin: 0 auto 0.75rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #ec4899);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.875rem;
  box-shadow: 0 0 20px var(--accent-glow);
}

.optinex-v2 .oos-step h4 {
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.35rem;
}

.optinex-v2 .oos-step p {
  font-size: 0.7rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Integraciones */
.optinex-v2 .tool-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.85rem;
  background: rgba(124, 58, 237, 0.08);
  border: 1px solid rgba(124, 58, 237, 0.2);
  border-radius: 999px;
  font-size: 0.8rem;
  color: var(--text);
  transition: all 0.2s;
}

.optinex-v2 .tool-pill:hover {
  border-color: var(--border-hover);
  background: rgba(124, 58, 237, 0.15);
}

/* Video slots */
.optinex-v2 .video-slot {
  aspect-ratio: 16 / 9;
  border-radius: 0.875rem;
  overflow: hidden;
  border: 2px dashed rgba(124, 58, 237, 0.35);
  background: rgba(15, 22, 35, 0.8);
  position: relative;
}

.optinex-v2 .video-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.5rem;
  text-align: center;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.06), rgba(34, 211, 238, 0.04));
}

.optinex-v2 .video-placeholder i {
  font-size: 2.5rem;
  color: var(--accent-soft);
  opacity: 0.7;
}

.optinex-v2 .video-placeholder .slot-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-soft);
}

.optinex-v2 .video-placeholder .slot-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
}

.optinex-v2 .video-placeholder .slot-hint {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.optinex-v2 .video-slot iframe,
.optinex-v2 .video-slot video {
  width: 100%;
  height: 100%;
  border: none;
  object-fit: cover;
}

/* Videos estratégicos — reels verticales + hero marca */
.optinex-v2 .video-reel-slot {
  aspect-ratio: 9 / 16;
  max-height: 520px;
  margin: 0 auto;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(124, 58, 237, 0.35);
  background: #000;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
}
.optinex-v2 .video-reel-slot video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.optinex-v2 .video-hero-brand {
  aspect-ratio: 16 / 9;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(124, 58, 237, 0.3);
  background: #000;
  box-shadow: 0 16px 48px rgba(124, 58, 237, 0.12);
}
.optinex-v2 .video-hero-brand video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.optinex-v2 .video-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  height: 100%;
}
.optinex-v2 .video-card-copy h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.35rem;
}
.optinex-v2 .video-card-copy p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.55;
}
.optinex-v2 .video-card-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-soft);
  margin-bottom: 0.35rem;
}
.optinex-v2 .video-featured-grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .optinex-v2 .video-featured-grid {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
  }
}
.optinex-v2 .video-inline-embed {
  max-width: 280px;
  margin: 0 auto;
}

/* Testimonios */
.optinex-v2 .testimonial {
  border-left: 3px solid var(--accent);
  padding-left: 1.25rem;
}

.optinex-v2 .testimonial-quote {
  font-style: italic;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.optinex-v2 .testimonial-meta {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.optinex-v2 .testimonial-kpi {
  color: var(--accent-soft);
  font-weight: 600;
}

/* Muestra compacta de capturas (casos) */
.optinex-v2 .cases-sample {
  margin-top: 0.5rem;
}
.optinex-v2 .cases-sample-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
  max-width: 36rem;
  margin: 0 auto 1rem;
  line-height: 1.5;
}
.optinex-v2 .cases-thumb-track {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 0.25rem 0 0.5rem;
}
.optinex-v2 .cases-thumb-track::-webkit-scrollbar {
  height: 4px;
}
.optinex-v2 .cases-thumb-track::-webkit-scrollbar-thumb {
  background: rgba(124, 58, 237, 0.35);
  border-radius: 4px;
}
.optinex-v2 .cases-thumb {
  flex: 0 0 auto;
  scroll-snap-align: start;
  margin: 0;
  width: 4.5rem;
  text-align: center;
}
.optinex-v2 .cases-thumb img {
  width: 4.5rem;
  height: 7.5rem;
  object-fit: cover;
  object-position: top center;
  border-radius: 0.5rem;
  border: 1px solid var(--border);
  display: block;
}
.optinex-v2 .cases-thumb figcaption {
  font-size: 0.58rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
  line-height: 1.2;
}
.optinex-v2 .cases-industry-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 0.75rem;
}
.optinex-v2 .cases-tag {
  font-size: 0.7rem;
  color: var(--text-muted);
  background: rgba(124, 58, 237, 0.08);
  border: 1px solid rgba(124, 58, 237, 0.2);
  border-radius: 9999px;
  padding: 0.2rem 0.65rem;
}
.optinex-v2 .cases-tag em {
  font-style: normal;
  color: var(--accent-soft);
  font-weight: 600;
}

/* Bloque referencias / clientes activos */
.optinex-v2 .client-proof-card {
  text-align: center;
  padding: 2rem 1.5rem;
  border: 1px solid rgba(124, 58, 237, 0.45);
  background: linear-gradient(145deg, rgba(124, 58, 237, 0.12) 0%, rgba(15, 22, 35, 0.95) 55%);
  box-shadow: 0 0 40px rgba(124, 58, 237, 0.12);
  border-radius: var(--radius, 0.75rem);
}
.optinex-v2 .client-proof-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ec4899;
  margin-bottom: 0.75rem;
}
.optinex-v2 .client-proof-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}
.optinex-v2 .client-proof-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 32rem;
  margin: 0 auto 0.65rem;
}
.optinex-v2 .client-proof-cta {
  margin-top: 1.25rem;
  display: inline-flex;
}

/* Comparación DIY */
.optinex-v2 .compare-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .optinex-v2 .compare-grid { grid-template-columns: 1fr 1fr; }
}

.optinex-v2 .compare-bad {
  border-color: rgba(239, 68, 68, 0.25);
}

.optinex-v2 .compare-good {
  border-color: rgba(16, 185, 129, 0.35);
}

.optinex-v2 .compare-list li {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  margin-bottom: 0.65rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.optinex-v2 .compare-list .icon-x { color: #f87171; flex-shrink: 0; margin-top: 0.15rem; }
.optinex-v2 .compare-list .icon-check { color: var(--green); flex-shrink: 0; margin-top: 0.15rem; }

/* Precios */
.optinex-v2 .price-highlight {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.12), rgba(34, 211, 238, 0.06));
  border: 1px solid var(--border-hover);
  border-radius: 1rem;
  padding: 1.5rem 2rem;
  text-align: center;
}

.optinex-v2 .price-tag {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: #fff;
}

.optinex-v2 .price-note {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.optinex-v2 .pricing-toggler {
  cursor: pointer;
  user-select: none;
}

.optinex-v2 .pricing-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s ease;
}

.optinex-v2 .pricing-content.open {
  max-height: 8000px;
}

.optinex-v2 .plan-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.optinex-v2 .plan-card.recommended {
  border-color: rgba(124, 58, 237, 0.6);
  position: relative;
}

.optinex-v2 .plan-badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-brand);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
}

/* Formulario */
.optinex-v2 .form-input {
  width: 100%;
  background: var(--bg-deep);
  border: 1px solid rgba(148, 163, 184, 0.2);
  color: var(--text);
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.optinex-v2 .form-input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.2);
}

.optinex-v2 .form-input::placeholder { color: #64748b; }

.optinex-v2 .iti { width: 100%; }

/* Animaciones scroll */
.optinex-v2 .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.optinex-v2 .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Hero pulse ring — futurista sutil */
.optinex-v2 .hero-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(124, 58, 237, 0.15);
  animation: heroRingPulse 8s ease-in-out infinite;
}

@keyframes heroRingPulse {
  0%, 100% { transform: scale(1); opacity: 0.3; }
  50% { transform: scale(1.05); opacity: 0.6; }
}

/* WhatsApp flotante */
.optinex-v2 .wa-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 90;
  width: 3.5rem;
  height: 3.5rem;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: transform 0.2s;
}

.optinex-v2 .wa-float:hover { transform: scale(1.08); }

/* Footer */
.optinex-v2 .footer-shell {
  border-top: 1px solid var(--border);
  background: rgba(7, 11, 18, 0.95);
  padding: 3rem 0 2rem;
}

/* Métricas */
.optinex-v2 .metric-value {
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--gradient-brand);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Caso screenshot */
.optinex-v2 .case-img {
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* Stagger delays */
.optinex-v2 .reveal-delay-1 { transition-delay: 0.1s; }
.optinex-v2 .reveal-delay-2 { transition-delay: 0.2s; }
.optinex-v2 .reveal-delay-3 { transition-delay: 0.3s; }

/* Mobile menu */
.optinex-v2 .mobile-menu {
  display: none;
  background: rgba(7, 11, 18, 0.98);
  border-top: 1px solid var(--border);
}

.optinex-v2 .mobile-menu.open { display: block; }

@media (max-width: 767px) {
  .optinex-v2 .section { padding: 3.5rem 0; }
}

/* Badge LinkedIn en navbar */
.optinex-v2 .linkedin-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.75rem;
  border-radius: 9999px;
  border: 1px solid rgba(10, 102, 194, 0.35);
  background: rgba(10, 102, 194, 0.12);
  color: #e2e8f0;
  font-size: 0.75rem;
  font-weight: 600;
  transition: all 0.2s;
  text-decoration: none;
  white-space: nowrap;
}
.optinex-v2 .linkedin-badge:hover {
  background: rgba(10, 102, 194, 0.22);
  border-color: rgba(10, 102, 194, 0.55);
  color: #fff;
}
.optinex-v2 .linkedin-badge i { color: #0a66c2; font-size: 1rem; }

/* Director / founder */
.optinex-v2 .director-card {
  border: 1px solid var(--border);
  background: linear-gradient(145deg, rgba(15, 22, 35, 0.95), rgba(7, 11, 18, 0.9));
  border-radius: 1rem;
  padding: 1.75rem;
  position: relative;
  overflow: hidden;
}
.optinex-v2 .director-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #0a66c2, #7c3aed, #ec4899);
}
.optinex-v2 .director-avatar {
  width: 5rem;
  height: 5rem;
  border-radius: 9999px;
  background: linear-gradient(135deg, #0a66c2, #7c3aed);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.75rem;
  color: #fff;
}
.optinex-v2 .competency-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 500;
  border: 1px solid rgba(124, 58, 237, 0.25);
  background: rgba(124, 58, 237, 0.08);
  color: var(--text-muted);
}
.optinex-v2 .competency-chip i { color: var(--accent-soft); font-size: 0.65rem; }
.optinex-v2 .founder-quote {
  border-left: 3px solid var(--accent);
  padding: 1.5rem 1.75rem;
  background: rgba(124, 58, 237, 0.06);
  border-radius: 0 0.75rem 0.75rem 0;
  margin-top: 2rem;
}
.optinex-v2 .experience-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(124, 58, 237, 0.1);
}
.optinex-v2 .experience-item:last-child { border-bottom: none; }
.optinex-v2 .experience-item i {
  color: var(--accent-soft);
  margin-top: 0.2rem;
  flex-shrink: 0;
}

/* WhatsApp verde en navbar */
.optinex-v2 .navbar-whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
  border: 2px solid #25d366;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 0 15px rgba(37, 211, 102, 0.35);
}
.optinex-v2 .navbar-whatsapp:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 0 25px rgba(37, 211, 102, 0.55);
  color: #fff;
}
.optinex-v2 .navbar-whatsapp-mobile {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  font-weight: 600;
  text-align: center;
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

/* Footer futurista (fusión v1 + v2) */
.optinex-v2 .futuristic-footer {
  background: linear-gradient(145deg, #070b12 0%, #0f1623 50%, #070b12 100%);
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border);
  padding: 4rem 0;
}
.optinex-v2 .futuristic-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #3b82f6, #8b5cf6, #ec4899, transparent);
  animation: footerGradientShift 3s ease-in-out infinite;
}
@keyframes footerGradientShift {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}
.optinex-v2 .footer-logo-wrap {
  position: relative;
  display: inline-block;
  margin-bottom: 2rem;
}
.optinex-v2 .logo-spectacular {
  position: relative;
  display: inline-block;
  filter: drop-shadow(0 0 24px rgba(139, 92, 246, 0.65));
  animation: logoFloat 4s ease-in-out infinite;
}
.optinex-v2 .logo-spectacular::before {
  content: '';
  position: absolute;
  inset: -24px;
  background: conic-gradient(from 0deg, #8b5cf6, #ec4899, #f59e0b, #10b981, #3b82f6, #8b5cf6);
  border-radius: 50%;
  animation: logoOrbit 8s linear infinite;
  opacity: 0.45;
  z-index: -1;
}
.optinex-v2 .logo-spectacular::after {
  content: '';
  position: absolute;
  inset: -16px;
  background: conic-gradient(from 180deg, #3b82f6, #8b5cf6, #ec4899, #f59e0b, #10b981, #3b82f6);
  border-radius: 50%;
  animation: logoOrbit 12s linear infinite reverse;
  opacity: 0.3;
  z-index: -1;
}
@keyframes logoFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-10px) scale(1.03); }
}
@keyframes logoOrbit {
  to { transform: rotate(360deg); }
}
.optinex-v2 .logo-energy {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 140px;
  height: 140px;
  margin: -70px 0 0 -70px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.22) 0%, transparent 70%);
  border-radius: 50%;
  animation: energyPulse 3s ease-in-out infinite;
  z-index: -2;
}
@keyframes energyPulse {
  0%, 100% { transform: scale(0.85); opacity: 0.35; }
  50% { transform: scale(1.2); opacity: 0.75; }
}
.optinex-v2 .logo-particles {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 180px;
  height: 180px;
  margin: -90px 0 0 -90px;
  pointer-events: none;
}
.optinex-v2 .logo-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: #a78bfa;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  animation: particleOrbit 6s linear infinite;
}
.optinex-v2 .logo-particle:nth-child(1) { animation-delay: 0s; }
.optinex-v2 .logo-particle:nth-child(2) { animation-delay: 1s; }
.optinex-v2 .logo-particle:nth-child(3) { animation-delay: 2s; }
.optinex-v2 .logo-particle:nth-child(4) { animation-delay: 3s; }
.optinex-v2 .logo-particle:nth-child(5) { animation-delay: 4s; }
.optinex-v2 .logo-particle:nth-child(6) { animation-delay: 5s; }
@keyframes particleOrbit {
  0% { transform: rotate(0deg) translateX(72px) rotate(0deg); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: rotate(360deg) translateX(72px) rotate(-360deg); opacity: 0; }
}
.optinex-v2 .footer-info-card {
  text-align: left;
  height: 100%;
}
.optinex-v2 .footer-status-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 9999px;
  animation: pulse 2s ease-in-out infinite;
}
.optinex-v2 .text-gradient-brand {
  background: var(--gradient-brand);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Ecosistema — 3 líneas compactas */
.optinex-v2 .solutions-compact-section {
  padding: 2rem 0 2.5rem;
  border-top: 1px solid rgba(124, 58, 237, 0.12);
}
.optinex-v2 .solutions-compact-track {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 0.25rem;
}
.optinex-v2 .solutions-compact-track::-webkit-scrollbar {
  height: 4px;
}
.optinex-v2 .solutions-compact-track::-webkit-scrollbar-thumb {
  background: rgba(124, 58, 237, 0.35);
  border-radius: 4px;
}
@media (min-width: 768px) {
  .optinex-v2 .solutions-compact-track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    overflow: visible;
  }
}
.optinex-v2 .solution-mini {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  min-width: min(100%, 280px);
  flex: 1 0 auto;
  scroll-snap-align: start;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, background 0.2s;
}
@media (min-width: 768px) {
  .optinex-v2 .solution-mini {
    min-width: 0;
  }
}
.optinex-v2 a.solution-mini:hover {
  border-color: var(--border-hover);
  background: rgba(124, 58, 237, 0.08);
}
.optinex-v2 .solution-mini-icon {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.5rem;
  background: rgba(124, 58, 237, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent-soft);
  font-size: 0.95rem;
}
.optinex-v2 .solution-mini-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
  flex: 1;
  text-align: left;
}
.optinex-v2 .solution-mini-text strong {
  font-size: 0.85rem;
  color: #fff;
  font-weight: 600;
  line-height: 1.25;
}
.optinex-v2 .solution-mini-text small {
  font-size: 0.72rem;
  color: var(--text-muted);
  line-height: 1.3;
}
.optinex-v2 .solution-mini-arrow {
  font-size: 0.65rem;
  color: var(--text-muted);
  flex-shrink: 0;
}
.optinex-v2 .solution-mini--star {
  border-color: rgba(124, 58, 237, 0.45);
}
.optinex-v2 .solution-mini-badge {
  position: absolute;
  top: 0.35rem;
  right: 0.5rem;
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #ec4899;
}

/* ── OOS Agent Console™ ── */
.optinex-v2 .oos-launch {
  position: fixed;
  bottom: 6.5rem;
  right: 1.25rem;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1rem 0.65rem 0.85rem;
  border-radius: 9999px;
  border: 1px solid rgba(124, 58, 237, 0.55);
  background: linear-gradient(135deg, rgba(15, 22, 35, 0.95), rgba(124, 58, 237, 0.25));
  backdrop-filter: blur(12px);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 8px 32px rgba(124, 58, 237, 0.35);
  transition: transform 0.2s, box-shadow 0.2s;
  animation: oos-pulse 3s ease-in-out infinite;
}
.optinex-v2 .oos-launch:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 40px rgba(124, 58, 237, 0.5);
}
.optinex-v2 .oos-launch-icon {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--gradient-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
}
@keyframes oos-pulse {
  0%, 100% { box-shadow: 0 8px 32px rgba(124, 58, 237, 0.35); }
  50% { box-shadow: 0 8px 40px rgba(236, 72, 153, 0.45); }
}

.optinex-v2 .oos-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: rgba(2, 4, 10, 0.88);
  backdrop-filter: blur(14px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s;
}
.optinex-v2 .oos-overlay.open { opacity: 1; visibility: visible; }

.optinex-v2 .oos-panel.oos-console {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: 100vh;
  height: 100dvh;
  margin: 0;
  display: flex;
  flex-direction: column;
  background: #080c14;
  border: none;
  border-radius: 0;
  box-shadow: none;
  transform: translateY(24px) scale(0.98);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.35s ease;
  overflow: hidden;
}
@media (min-width: 768px) {
  .optinex-v2 .oos-panel.oos-console {
    max-width: 860px;
    height: min(92vh, 820px);
    border-radius: 1.35rem;
    border: 1px solid rgba(124, 58, 237, 0.35);
    box-shadow: 0 0 0 1px rgba(34, 211, 238, 0.06), 0 40px 120px rgba(0, 0, 0, 0.65), 0 0 80px rgba(124, 58, 237, 0.12);
  }
}
.optinex-v2 .oos-overlay.open .oos-panel.oos-console {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.optinex-v2 .oos-console-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.035;
  background-image:
    linear-gradient(rgba(124, 58, 237, 0.6) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124, 58, 237, 0.6) 1px, transparent 1px);
  background-size: 32px 32px;
}

.optinex-v2 .oos-header {
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  padding: 0.85rem 1.1rem;
  border-bottom: 1px solid rgba(124, 58, 237, 0.18);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: rgba(8, 12, 20, 0.85);
  backdrop-filter: blur(8px);
}
.optinex-v2 .oos-brand { display: flex; align-items: center; gap: 0.7rem; }
.optinex-v2 .oos-brand-mark {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 0.75rem;
  background: var(--gradient-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  color: #fff;
  box-shadow: 0 0 20px rgba(124, 58, 237, 0.45);
}
.optinex-v2 .oos-brand-text { line-height: 1.25; }
.optinex-v2 .oos-brand-text strong {
  display: block;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
}
.optinex-v2 .oos-live {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.68rem;
  color: var(--text-muted);
}
.optinex-v2 .oos-live i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  animation: oos-live-pulse 2s ease-in-out infinite;
}
@keyframes oos-live-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.45; }
}
.optinex-v2 .oos-close {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.55rem;
  border: 1px solid rgba(148, 163, 184, 0.15);
  background: rgba(15, 22, 35, 0.6);
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.15s;
}
.optinex-v2 .oos-close:hover { color: #fff; border-color: rgba(124, 58, 237, 0.5); }

/* Phase strip */
.optinex-v2 .oos-phase-strip {
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 0.5rem 0.75rem;
  background: rgba(7, 11, 18, 0.6);
  border-bottom: 1px solid rgba(124, 58, 237, 0.1);
}
.optinex-v2 .oos-phase {
  text-align: center;
  font-size: 0.62rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(148, 163, 184, 0.45);
  padding: 0.35rem 0.15rem;
  transition: color 0.25s;
}
.optinex-v2 .oos-phase span {
  display: block;
  font-size: 0.55rem;
  opacity: 0.6;
  margin-bottom: 0.1rem;
}
.optinex-v2 .oos-phase.active { color: var(--accent-soft); }
.optinex-v2 .oos-phase.done { color: var(--cyan); }

/* Body views */
.optinex-v2 .oos-body {
  flex: 1;
  position: relative;
  z-index: 1;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 0;
}
.optinex-v2 .oos-body.oos-view-problem,
.optinex-v2 .oos-body.oos-view-chat {
  padding: 0;
}
.optinex-v2 .oos-body.oos-view-results,
.optinex-v2 .oos-body.oos-view-calendar,
.optinex-v2 .oos-body.oos-view-analyzing,
.optinex-v2 .oos-body.oos-view-success {
  overflow-y: auto;
  padding: 1rem 1.1rem 1.25rem;
  -webkit-overflow-scrolling: touch;
}

/* Thread / bubbles */
.optinex-v2 .oos-thread {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 1.1rem 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.optinex-v2 .oos-msg-row {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  animation: oos-msg-in 0.35s ease;
}
.optinex-v2 .oos-msg-row.user { justify-content: flex-end; }
@keyframes oos-msg-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.optinex-v2 .oos-avatar {
  position: relative;
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 0.65rem;
  background: linear-gradient(135deg, #7c3aed, #22d3ee);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.75rem;
  color: #fff;
}
.optinex-v2 .oos-avatar-lg { width: 3.5rem; height: 3.5rem; font-size: 1.1rem; border-radius: 1rem; }
.optinex-v2 .oos-avatar-pulse {
  position: absolute;
  inset: -3px;
  border-radius: inherit;
  border: 2px solid rgba(124, 58, 237, 0.4);
  animation: oos-avatar-ring 2s ease-out infinite;
}
@keyframes oos-avatar-ring {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.35); opacity: 0; }
}
.optinex-v2 .oos-bubble {
  max-width: 88%;
  padding: 0.75rem 0.95rem;
  border-radius: 1rem;
  font-size: 0.875rem;
  line-height: 1.5;
}
.optinex-v2 .oos-bubble-agent {
  background: rgba(15, 22, 35, 0.92);
  border: 1px solid rgba(124, 58, 237, 0.22);
  color: var(--text);
  border-top-left-radius: 0.25rem;
}
.optinex-v2 .oos-bubble-user {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.45), rgba(168, 85, 247, 0.3));
  border: 1px solid rgba(124, 58, 237, 0.35);
  color: #fff;
  border-bottom-right-radius: 0.25rem;
}
.optinex-v2 .oos-bubble-hint {
  margin-top: 0.5rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  font-style: italic;
}
.optinex-v2 .oos-bubble-think { min-width: 3rem; }

/* Typing dots */
.optinex-v2 .oos-typing {
  display: inline-flex;
  gap: 4px;
  padding: 0.15rem 0;
}
.optinex-v2 .oos-typing i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-soft);
  animation: oos-dot 1.2s ease-in-out infinite;
}
.optinex-v2 .oos-typing i:nth-child(2) { animation-delay: 0.15s; }
.optinex-v2 .oos-typing i:nth-child(3) { animation-delay: 0.3s; }
@keyframes oos-dot {
  0%, 80%, 100% { transform: scale(0.6); opacity: 0.4; }
  40% { transform: scale(1); opacity: 1; }
}

/* Context pills */
.optinex-v2 .oos-context-bar {
  flex-shrink: 0;
  padding: 0.5rem 1.1rem 0.65rem;
  border-top: 1px solid rgba(124, 58, 237, 0.08);
}
.optinex-v2 .oos-context-label {
  display: block;
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}
.optinex-v2 .oos-context-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}
.optinex-v2 .oos-context-pill {
  padding: 0.3rem 0.6rem;
  border-radius: 9999px;
  border: 1px solid rgba(124, 58, 237, 0.2);
  background: rgba(12, 18, 28, 0.8);
  color: var(--text-muted);
  font-size: 0.72rem;
  cursor: pointer;
  transition: all 0.15s;
  font-family: inherit;
}
.optinex-v2 .oos-context-pill:hover,
.optinex-v2 .oos-context-pill.active {
  border-color: var(--accent);
  color: #fff;
  background: rgba(124, 58, 237, 0.2);
}

/* Composer */
.optinex-v2 .oos-composer {
  flex-shrink: 0;
  display: flex;
  align-items: flex-end;
  gap: 0.5rem;
  padding: 0.65rem 1.1rem 0.85rem;
  background: rgba(8, 12, 20, 0.95);
  border-top: 1px solid rgba(124, 58, 237, 0.15);
}
.optinex-v2 .oos-composer textarea,
.optinex-v2 .oos-composer input {
  flex: 1;
  padding: 0.7rem 1rem;
  border-radius: 1.25rem;
  border: 1px solid rgba(124, 58, 237, 0.25);
  background: rgba(7, 11, 18, 0.9);
  color: #fff;
  font-size: 0.9rem;
  font-family: inherit;
  line-height: 1.4;
  resize: none;
  max-height: 120px;
}
.optinex-v2 .oos-composer textarea:focus,
.optinex-v2 .oos-composer input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.12);
}
.optinex-v2 .oos-composer-send {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: none;
  background: var(--gradient-brand);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: transform 0.15s, box-shadow 0.15s;
}
.optinex-v2 .oos-composer-send:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 20px rgba(124, 58, 237, 0.45);
}
.optinex-v2 .oos-shake { animation: oos-shake 0.45s ease; }
@keyframes oos-shake {
  0%, 100% { transform: translateX(0); }
  20%, 60% { transform: translateX(-6px); }
  40%, 80% { transform: translateX(6px); }
}

.optinex-v2 .oos-problem-hint {
  margin: 0;
  padding: 0 1.1rem 0.35rem;
  font-size: 0.72rem;
  color: #f87171;
  text-align: center;
}

/* OOS — flujo rápido 3 pasos (paso 1) */
.optinex-v2 .oos-problem-fast {
  padding: 0.25rem 0 0.5rem;
}
.optinex-v2 .oos-problem-steps-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0 1rem 0.75rem;
  padding: 0.35rem 0.75rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--cyan);
  background: rgba(34, 211, 238, 0.08);
  border: 1px solid rgba(34, 211, 238, 0.22);
  border-radius: 999px;
}
.optinex-v2 .oos-problem-choices {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: 0 1rem 0.85rem;
}
.optinex-v2 .oos-problem-choice {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  padding: 0.85rem 1rem;
  text-align: left;
  background: rgba(15, 23, 42, 0.65);
  border: 1px solid rgba(124, 58, 237, 0.28);
  border-radius: 1rem;
  color: #e2e8f0;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
}
.optinex-v2 .oos-problem-choice:hover,
.optinex-v2 .oos-problem-choice.active {
  border-color: rgba(124, 58, 237, 0.65);
  background: rgba(124, 58, 237, 0.12);
  transform: translateY(-1px);
}
.optinex-v2 .oos-problem-choice-emoji {
  font-size: 1.35rem;
  line-height: 1;
  flex-shrink: 0;
}
.optinex-v2 .oos-problem-choice-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}
.optinex-v2 .oos-problem-choice-text strong {
  font-size: 0.88rem;
  color: #fff;
  line-height: 1.3;
}
.optinex-v2 .oos-problem-choice-text small {
  font-size: 0.68rem;
  color: var(--text-muted);
}
.optinex-v2 .oos-problem-choice-arrow {
  color: var(--accent-soft);
  font-size: 0.75rem;
  opacity: 0.7;
}
.optinex-v2 .oos-composer-oneline {
  margin: 0 1rem;
}
.optinex-v2 .oos-composer-label {
  display: block;
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}
.optinex-v2 .oos-problem-footnote {
  margin: 0.85rem 1rem 0;
  font-size: 0.72rem;
  line-height: 1.45;
  color: var(--text-muted);
  text-align: center;
}
.optinex-v2 .oos-phase-strip-3 .oos-phase {
  flex: 1;
  font-size: 0.68rem;
}
.optinex-v2 .oos-phase-strip-2 .oos-phase {
  flex: 1;
  font-size: 0.72rem;
}
.optinex-v2 .oos-phone-input-lg {
  font-size: 1.05rem !important;
  padding: 0.95rem 1rem !important;
  min-height: 3.1rem;
}
.optinex-v2 .oos-phone-hero {
  margin: 0.25rem 0 0.5rem;
  padding: 0.85rem 0.9rem 1rem;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(37, 211, 102, 0.08), rgba(15, 23, 42, 0.35));
  border: 1px solid rgba(37, 211, 102, 0.28);
}
.optinex-v2 .oos-phone-hero-title {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.65rem !important;
  font-size: 1rem !important;
}
.optinex-v2 .oos-phone-hero-title i {
  color: #25d366;
}
.optinex-v2 .oos-phone-input-hero {
  font-size: 1.2rem !important;
  padding: 1.05rem 1.1rem !important;
  min-height: 3.4rem;
  border-color: rgba(37, 211, 102, 0.45) !important;
  letter-spacing: 0.02em;
}
.optinex-v2 .oos-btn-phone-hero {
  width: 100%;
  margin-top: 0.75rem;
  justify-content: center;
  min-height: 3rem;
  font-size: 1rem;
}
.optinex-v2 .oos-phone-micro {
  margin: 0.55rem 0 0;
  text-align: center;
  font-size: 0.72rem;
  color: #94a3b8;
  line-height: 1.35;
}
.optinex-v2 .oos-after-phone.is-hidden {
  display: none;
}
.optinex-v2 .oos-after-phone.is-ready {
  display: block;
  animation: oos-fade-up 0.35s ease;
  margin-top: 0.85rem;
}
.optinex-v2 .oos-field-name-optional {
  margin-bottom: 0.75rem;
}
.optinex-v2 .oos-booking-phone-first {
  order: -1;
}
.optinex-v2 .oos-booking-phone-first .oos-field-phone {
  margin-bottom: 0.35rem;
}
.optinex-v2 .oos-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.optinex-v2 .oos-trust-list {
  list-style: none;
  margin: 0.75rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.optinex-v2 .oos-trust-list li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.78rem;
  color: #94a3b8;
  line-height: 1.35;
}
.optinex-v2 .oos-trust-list li i {
  color: var(--cyan);
  width: 1rem;
  text-align: center;
  flex-shrink: 0;
}
.optinex-v2 .oos-slots-locked .oos-slots-scroll {
  opacity: 0.38;
  pointer-events: none;
  filter: grayscale(0.2);
}
.optinex-v2 .oos-slots-gate {
  margin: 0 0 0.65rem;
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.4;
}
.optinex-v2 .oos-slots-unlocked {
  animation: oos-fade-up 0.35s ease;
}
@keyframes oos-fade-up {
  from { opacity: 0.4; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Analyzing stage */
.optinex-v2 .oos-analyze-stage {
  text-align: center;
  padding: 2rem 1rem 3rem;
}
.optinex-v2 .oos-analyze-core {
  position: relative;
  width: 5rem;
  height: 5rem;
  margin: 0 auto 1.5rem;
}
.optinex-v2 .oos-analyze-orbit {
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 1px dashed rgba(124, 58, 237, 0.3);
  animation: spin 8s linear infinite;
}
.optinex-v2 .oos-analyze-orbit-inner {
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  border: 1px solid rgba(34, 211, 238, 0.2);
  animation: spin 5s linear infinite reverse;
}
.optinex-v2 .oos-analyze-core .oos-avatar-lg {
  position: absolute;
  inset: 0;
  margin: auto;
}
.optinex-v2 .oos-analyze-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.35rem;
}
.optinex-v2 .oos-analyze-sub {
  font-size: 0.78rem;
  color: var(--text-muted);
  max-width: 22rem;
  margin: 0 auto 1rem;
  line-height: 1.45;
}
.optinex-v2 .oos-analyze-log {
  min-height: 1.5rem;
  margin-bottom: 1.25rem;
}
.optinex-v2 .oos-log-line {
  font-size: 0.8rem;
  color: var(--cyan);
  font-family: ui-monospace, monospace;
}
.optinex-v2 .oos-analyze-bars {
  display: flex;
  justify-content: center;
  gap: 4px;
  height: 24px;
  align-items: flex-end;
}
.optinex-v2 .oos-analyze-bars span {
  width: 4px;
  background: var(--gradient-brand);
  border-radius: 2px;
  animation: oos-bar 0.8s ease-in-out infinite;
}
.optinex-v2 .oos-analyze-bars span:nth-child(1) { animation-delay: 0s; }
.optinex-v2 .oos-analyze-bars span:nth-child(2) { animation-delay: 0.1s; }
.optinex-v2 .oos-analyze-bars span:nth-child(3) { animation-delay: 0.2s; }
.optinex-v2 .oos-analyze-bars span:nth-child(4) { animation-delay: 0.3s; }
.optinex-v2 .oos-analyze-bars span:nth-child(5) { animation-delay: 0.4s; }
@keyframes oos-bar {
  0%, 100% { height: 8px; opacity: 0.4; }
  50% { height: 22px; opacity: 1; }
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Results HUD */
.optinex-v2 .oos-form-invite {
  padding: 0.5rem 0 1rem;
}
.optinex-v2 .oos-hud {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(124, 58, 237, 0.25);
  background: rgba(12, 18, 28, 0.7);
}
@media (max-width: 480px) {
  .optinex-v2 .oos-hud { grid-template-columns: 1fr; text-align: center; }
}
.optinex-v2 .oos-hud-score { position: relative; width: 130px; height: 130px; margin: 0 auto; }
.optinex-v2 .oos-hud-score svg { transform: rotate(-90deg); }
.optinex-v2 .oos-hud-score-center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.optinex-v2 .oos-hud-num {
  font-size: 2.1rem;
  font-weight: 800;
  background: var(--gradient-brand);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}
.optinex-v2 .oos-hud-sub {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}
.optinex-v2 .oos-hud-insight h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.35rem;
  line-height: 1.3;
}
.optinex-v2 .oos-hud-insight p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.45;
  margin-bottom: 0.5rem;
}
.optinex-v2 .oos-hud-tag {
  font-size: 0.65rem;
  color: var(--cyan);
  background: rgba(34, 211, 238, 0.08);
  border-radius: 9999px;
  padding: 0.15rem 0.5rem;
}
.optinex-v2 .oos-hud-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.45rem;
}
@media (max-width: 400px) {
  .optinex-v2 .oos-hud-grid { grid-template-columns: repeat(2, 1fr); }
}
.optinex-v2 .oos-hud-tile {
  padding: 0.55rem 0.6rem;
  border-radius: 0.65rem;
  background: rgba(7, 11, 18, 0.7);
  border: 1px solid rgba(124, 58, 237, 0.12);
  text-align: center;
}
.optinex-v2 .oos-hud-tile-val {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
}
.optinex-v2 .oos-hud-tile-label {
  font-size: 0.6rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.optinex-v2 .oos-hud-tile-bar {
  height: 3px;
  border-radius: 9999px;
  background: rgba(124, 58, 237, 0.12);
  margin-top: 0.35rem;
  overflow: hidden;
}
.optinex-v2 .oos-hud-tile-bar i {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, #7c3aed, #22d3ee);
  border-radius: inherit;
}

.optinex-v2 .oos-wins-row {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.optinex-v2 .oos-win-card {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  padding: 0.65rem 0.75rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(34, 211, 238, 0.15);
  background: rgba(34, 211, 238, 0.04);
}
.optinex-v2 .oos-win-num {
  flex-shrink: 0;
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--cyan);
  opacity: 0.7;
}
.optinex-v2 .oos-win-card p {
  margin: 0;
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.optinex-v2 .oos-quick-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}
@media (max-width: 640px) {
  .optinex-v2 .oos-quick-actions { grid-template-columns: 1fr; }
}
.optinex-v2 .oos-quick-btn {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.15rem;
  padding: 0.85rem 1rem;
  border-radius: 0.85rem;
  border: 1px solid rgba(124, 58, 237, 0.3);
  background: rgba(15, 22, 35, 0.8);
  color: #fff;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  transition: all 0.2s;
}
.optinex-v2 .oos-quick-btn:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(124, 58, 237, 0.2);
}
.optinex-v2 .oos-quick-btn i { font-size: 1.1rem; color: var(--accent-soft); margin-bottom: 0.25rem; }
.optinex-v2 .oos-quick-btn span { font-weight: 600; font-size: 0.85rem; }
.optinex-v2 .oos-quick-btn small { font-size: 0.68rem; color: var(--text-muted); }
.optinex-v2 .oos-quick-btn-accent {
  border-color: rgba(34, 211, 238, 0.35);
  background: rgba(34, 211, 238, 0.06);
}
.optinex-v2 .oos-quick-btn-accent i { color: var(--cyan); }

/* Chat workspace */
.optinex-v2 .oos-chat-workspace {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
}
.optinex-v2 .oos-chat-topbar {
  flex-shrink: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 1.1rem;
  border-bottom: 1px solid rgba(124, 58, 237, 0.1);
  background: rgba(8, 12, 20, 0.6);
}
.optinex-v2 .oos-chat-score-pill {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--accent-soft);
  background: rgba(124, 58, 237, 0.12);
  border-radius: 9999px;
  padding: 0.2rem 0.55rem;
}
.optinex-v2 .oos-chat-live {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.65rem;
  color: var(--text-muted);
}
.optinex-v2 .oos-chat-live i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green);
}
.optinex-v2 .oos-chat-msgs {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.optinex-v2 .oos-composer-chat { border-top: 1px solid rgba(124, 58, 237, 0.12); }

.optinex-v2 .oos-chat-action {
  margin-top: 0.75rem;
  padding-top: 0.65rem;
  border-top: 1px solid rgba(124, 58, 237, 0.15);
}
.optinex-v2 .oos-chat-cal-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  width: 100%;
  justify-content: center;
  padding: 0.75rem 1rem;
  border: none;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, #7c3aed, #22d3ee);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
}
.optinex-v2 .oos-chat-cal-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(124, 58, 237, 0.4);
}
.optinex-v2 .oos-footer-highlight-cal {
  box-shadow: 0 -4px 24px rgba(34, 211, 238, 0.15);
  border-top-color: rgba(34, 211, 238, 0.35);
}
.optinex-v2 .oos-cmd-pulse {
  animation: oos-cal-pulse 1.5s ease-in-out infinite;
}
@keyframes oos-cal-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34, 211, 238, 0.45); }
  50% { box-shadow: 0 0 0 8px rgba(34, 211, 238, 0); }
}

/* Booking */
.optinex-v2 .oos-booking-stage { display: flex; flex-direction: column; gap: 1.1rem; }
.optinex-v2 .oos-booking-section {
  padding: 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(124, 58, 237, 0.2);
  background: rgba(8, 12, 20, 0.75);
}
.optinex-v2 .oos-booking-contact {
  border-color: rgba(34, 211, 238, 0.28);
  background: rgba(8, 14, 22, 0.9);
  box-shadow: 0 0 0 1px rgba(34, 211, 238, 0.06);
}
.optinex-v2 .oos-booking-heading {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 0.75rem;
  font-size: 0.92rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.01em;
}
.optinex-v2 .oos-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 0.45rem;
  background: var(--gradient-brand);
  font-size: 0.72rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}
.optinex-v2 .oos-slot-selected-banner,
.optinex-v2 .oos-slot-hint-banner {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.65rem;
  padding: 0.55rem 0.75rem;
  border-radius: 0.65rem;
  font-size: 0.78rem;
  line-height: 1.35;
}
.optinex-v2 .oos-slot-selected-banner {
  background: rgba(34, 211, 238, 0.1);
  border: 1px solid rgba(34, 211, 238, 0.35);
  color: #e2e8f0;
}
.optinex-v2 .oos-slot-selected-banner i { color: var(--cyan); }
.optinex-v2 .oos-slot-hint-banner {
  background: rgba(124, 58, 237, 0.08);
  border: 1px dashed rgba(124, 58, 237, 0.35);
  color: var(--text-muted);
}
.optinex-v2 .oos-slots-scroll {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  max-height: 200px;
  overflow-y: auto;
  padding: 0.15rem 0;
  -webkit-overflow-scrolling: touch;
}
.optinex-v2 .oos-slot-pill {
  padding: 0.55rem 0.85rem;
  min-height: 44px;
  border-radius: 9999px;
  border: 1px solid rgba(124, 58, 237, 0.35);
  background: rgba(12, 18, 28, 0.95);
  font-size: 0.78rem;
  color: #e2e8f0;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.15s;
}
.optinex-v2 .oos-slot-pill:hover:not(.disabled) {
  border-color: var(--accent);
  color: #fff;
  background: rgba(124, 58, 237, 0.15);
}
.optinex-v2 .oos-slot-pill.selected {
  border-color: var(--cyan);
  background: rgba(34, 211, 238, 0.18);
  color: #fff;
  box-shadow: 0 0 0 2px rgba(34, 211, 238, 0.2);
}
.optinex-v2 .oos-slot-pill.disabled {
  opacity: 0.35;
  cursor: not-allowed;
  text-decoration: line-through;
}
.optinex-v2 .oos-booking-fields {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.optinex-v2 .oos-field-group { display: flex; flex-direction: column; gap: 0.35rem; }
.optinex-v2 .oos-field-label-lg {
  font-size: 0.88rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.02em;
}
.optinex-v2 .oos-field-label-lg span { color: #f87171; font-weight: 800; }
.optinex-v2 .oos-field-help {
  font-size: 0.72rem;
  color: var(--text-muted);
  line-height: 1.35;
}
.optinex-v2 .oos-inline-field {
  padding: 0.85rem 1rem;
  min-height: 48px;
  border-radius: 0.75rem;
  border: 2px solid rgba(148, 163, 184, 0.35);
  background: rgba(7, 11, 18, 0.95);
  color: #fff;
  font-size: 1rem;
  font-family: inherit;
}
.optinex-v2 .oos-inline-field::placeholder { color: rgba(148, 163, 184, 0.65); }
.optinex-v2 .oos-inline-field:focus {
  outline: none;
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.18);
}
.optinex-v2 .oos-field-invalid {
  border-color: #f87171 !important;
  box-shadow: 0 0 0 3px rgba(248, 113, 113, 0.15) !important;
}
.optinex-v2 .oos-booking-error {
  margin: 0.75rem 0 0;
  padding: 0.65rem 0.85rem;
  border-radius: 0.65rem;
  background: rgba(248, 113, 113, 0.1);
  border: 1px solid rgba(248, 113, 113, 0.35);
  color: #fecaca;
  font-size: 0.82rem;
  line-height: 1.4;
}
.optinex-v2 .oos-booking-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
  margin: 0;
}
.optinex-v2 .oos-booking-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  justify-content: center;
  margin: -0.25rem 0 0.5rem;
}
.optinex-v2 .oos-booking-trust span {
  font-size: 0.72rem;
  color: #cbd5e1;
  background: rgba(124, 58, 237, 0.12);
  border: 1px solid rgba(124, 58, 237, 0.25);
  border-radius: 999px;
  padding: 0.35rem 0.65rem;
}
.optinex-v2 .oos-booking-trust i { margin-right: 0.25rem; color: var(--cyan); }
.optinex-v2 .oos-optional { color: var(--text-muted); font-weight: 500; font-size: 0.75rem; }
.optinex-v2 .oos-slot-pill-lg {
  min-height: 48px;
  font-size: 0.85rem;
  padding: 0.65rem 1rem;
  border-radius: 12px;
  text-align: center;
}
.optinex-v2 .oos-slots-scroll-lg {
  max-height: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}
.optinex-v2 .oos-slot-hint-urgent {
  animation: oos-slot-pulse 2s ease-in-out infinite;
}
@keyframes oos-slot-pulse {
  0%, 100% { border-color: rgba(124, 58, 237, 0.35); }
  50% { border-color: rgba(34, 211, 238, 0.55); }
}
.optinex-v2 .oos-field-phone .iti { width: 100%; }
.optinex-v2 .oos-field-phone .iti__tel-input {
  width: 100% !important;
  min-height: 48px;
  background: rgba(8, 12, 20, 0.95) !important;
  border: 1px solid rgba(124, 58, 237, 0.35) !important;
  border-radius: 0.75rem !important;
  color: #fff !important;
  font-size: 1rem !important;
  padding-left: 52px !important;
}
.optinex-v2 .oos-field-phone .iti__flag-container { border-radius: 0.75rem 0 0 0.75rem; }
.optinex-v2 .oos-inline-field.oos-field-invalid,
.optinex-v2 .oos-field-phone .iti__tel-input.oos-field-invalid {
  border-color: #f87171 !important;
  box-shadow: 0 0 0 2px rgba(248, 113, 113, 0.25);
}
.optinex-v2 .oos-footer-stack {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
}
.optinex-v2 .oos-footer-stack .oos-footer-back {
  flex: 0 0 auto;
  min-height: 40px;
  padding: 0.55rem;
  font-size: 0.75rem;
}
.optinex-v2 .oos-footer-stack .oos-btn-confirm {
  min-height: 52px;
  font-size: 0.92rem;
  font-weight: 700;
}
.optinex-v2 .oos-cmd-wa {
  background: linear-gradient(135deg, #16a34a, #22c55e);
  color: #fff;
  box-shadow: 0 4px 16px rgba(34, 197, 94, 0.35);
  min-height: 48px;
}
.optinex-v2 .oos-cmd-wa:hover { filter: brightness(1.06); }
.optinex-v2 .oos-btn-needs-data {
  opacity: 0.72;
  box-shadow: none;
}
.optinex-v2 .oos-confirm-ready {
  animation: oos-confirm-pulse 1.6s ease-in-out infinite;
  box-shadow: 0 8px 28px rgba(124, 58, 237, 0.45);
}
@keyframes oos-confirm-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.02); }
}
.optinex-v2 .oos-booking-inline-cta {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-top: 0.25rem;
}
.optinex-v2 .oos-booking-inline-cta .oos-btn-confirm-inline {
  min-height: 54px;
  font-size: 1rem;
  font-weight: 800;
}
.optinex-v2 .oos-booking-fast .oos-booking-slots-wrap {
  border-color: rgba(124, 58, 237, 0.45);
  box-shadow: 0 0 0 1px rgba(124, 58, 237, 0.12);
}
.optinex-v2 .oos-slot-empty {
  font-size: 0.85rem;
  color: var(--text-muted);
  padding: 0.75rem 0;
}
.optinex-v2 .oos-footer-fast .oos-btn-confirm {
  order: -1;
  min-height: 54px;
  font-size: 1rem;
  font-weight: 800;
}
.optinex-v2 .oos-footer-fast .oos-footer-back {
  order: 1;
}
@media (max-width: 767px) {
  .optinex-v2 .oos-panel.oos-console { max-height: 100dvh; height: 100dvh; border-radius: 0; }
  .optinex-v2 .oos-phase-strip { display: none; }
  .optinex-v2 .oos-inline-field { min-height: 48px; font-size: 1rem; }
  .optinex-v2 .oos-slot-pill-lg { flex: 1 1 calc(50% - 0.45rem); min-width: calc(50% - 0.45rem); }
}
@media (min-width: 520px) {
  .optinex-v2 .oos-booking-fields { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .optinex-v2 .oos-slots-scroll { max-height: 220px; }
  .optinex-v2 .oos-slot-pill { flex: 1 1 calc(50% - 0.45rem); text-align: center; justify-content: center; }
  .optinex-v2 .oos-booking-section { padding: 0.85rem; }
}

/* WhatsApp handoff (demo Optinex) */
.optinex-v2 .oos-wa-stage { padding: 0.25rem 0 1rem; }
.optinex-v2 .oos-wa-card {
  margin-top: 1rem;
  padding: 1.25rem;
  border-radius: 1rem;
  border: 1px solid rgba(37, 211, 102, 0.25);
  background: linear-gradient(145deg, rgba(37, 211, 102, 0.08), rgba(7, 11, 18, 0.85));
}
.optinex-v2 .oos-wa-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: #25d366;
  margin-bottom: 0.85rem;
}
.optinex-v2 .oos-field-label {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}
.optinex-v2 .oos-field-label span { opacity: 0.7; }
.optinex-v2 .oos-field-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(124, 58, 237, 0.25);
  background: rgba(7, 11, 18, 0.9);
  color: #fff;
  font-size: 0.9rem;
  font-family: inherit;
  margin-bottom: 0.65rem;
}
.optinex-v2 .oos-field-input:focus {
  outline: none;
  border-color: #25d366;
  box-shadow: 0 0 0 2px rgba(37, 211, 102, 0.15);
}
.optinex-v2 .oos-wa-note {
  font-size: 0.72rem;
  color: var(--text-muted);
  line-height: 1.45;
  margin: 0;
}
.optinex-v2 .oos-wa-hint {
  text-align: center;
  margin: 0.75rem 0 0;
  font-size: 0.72rem;
}
.optinex-v2 .oos-link-btn {
  background: none;
  border: none;
  color: var(--accent-soft);
  cursor: pointer;
  font-size: inherit;
  text-decoration: underline;
  padding: 0;
}
.optinex-v2 .oos-link-btn:hover { color: var(--cyan); }
.optinex-v2 .oos-cmd-primary .fab.fa-whatsapp { color: #fff; }

/* Success — confirmación espectacular */
.optinex-v2 .oos-body.oos-view-success {
  overflow: hidden;
}
.optinex-v2 .oos-body.oos-success-active {
  background: radial-gradient(ellipse 120% 80% at 50% 0%, rgba(16, 185, 129, 0.12), transparent 55%);
}
.optinex-v2 .oos-success-hero {
  position: relative;
  text-align: center;
  padding: 0.5rem 0.5rem 2rem;
  animation: oos-success-fade-in 0.6s ease-out;
}
@keyframes oos-success-fade-in {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
.optinex-v2 .oos-success-ship {
  position: relative;
  width: 5.5rem;
  height: 5.5rem;
  margin: 0 auto 1.25rem;
}
.optinex-v2 .oos-success-orbit-ring {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px dashed rgba(16, 185, 129, 0.35);
  animation: spin 6s linear infinite;
}
.optinex-v2 .oos-success-orbit-ring-2 {
  inset: 4px;
  border-style: solid;
  border-color: rgba(34, 211, 238, 0.2);
  animation: spin 4s linear infinite reverse;
}
.optinex-v2 .oos-success-core {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.25), rgba(34, 211, 238, 0.15));
  border: 2px solid var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  color: var(--green);
  box-shadow: 0 0 32px rgba(16, 185, 129, 0.35), 0 0 64px rgba(16, 185, 129, 0.12);
  animation: oos-success-launch 2.5s ease-in-out infinite;
}
@keyframes oos-success-launch {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-6px) scale(1.03); }
}
.optinex-v2 .oos-success-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--green);
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.35);
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  margin-bottom: 0.75rem;
}
.optinex-v2 .oos-success-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 0.5rem;
  line-height: 1.25;
}
.optinex-v2 .oos-success-lead {
  font-size: 0.88rem;
  color: var(--text-muted);
  max-width: 24rem;
  margin: 0 auto 1.25rem;
  line-height: 1.5;
}
.optinex-v2 .oos-success-card {
  text-align: left;
  max-width: 20rem;
  margin: 0 auto 1rem;
  padding: 1rem 1.1rem;
  border-radius: 1rem;
  border: 1px solid rgba(16, 185, 129, 0.3);
  background: rgba(16, 185, 129, 0.06);
  box-shadow: 0 12px 40px rgba(16, 185, 129, 0.08);
}
.optinex-v2 .oos-success-card-row {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.82rem;
  color: var(--text);
  padding: 0.35rem 0;
}
.optinex-v2 .oos-success-card-row i {
  color: var(--green);
  width: 1.1rem;
  margin-top: 0.1rem;
  flex-shrink: 0;
}
.optinex-v2 .oos-success-team {
  font-size: 0.78rem;
  color: var(--text-muted);
  max-width: 22rem;
  margin: 0 auto;
  line-height: 1.55;
}
.optinex-v2 .oos-success-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.optinex-v2 .oos-success-particles span {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--green);
  opacity: 0;
  animation: oos-particle 3s ease-out infinite;
}
.optinex-v2 .oos-success-particles span:nth-child(1) { left: 15%; top: 20%; animation-delay: 0s; }
.optinex-v2 .oos-success-particles span:nth-child(2) { left: 85%; top: 30%; animation-delay: 0.4s; }
.optinex-v2 .oos-success-particles span:nth-child(3) { left: 50%; top: 10%; animation-delay: 0.8s; }
.optinex-v2 .oos-success-particles span:nth-child(4) { left: 25%; top: 60%; animation-delay: 1.2s; }
.optinex-v2 .oos-success-particles span:nth-child(5) { left: 75%; top: 55%; animation-delay: 1.6s; }
@keyframes oos-particle {
  0% { opacity: 0; transform: translateY(0) scale(0.5); }
  20% { opacity: 0.8; }
  100% { opacity: 0; transform: translateY(-40px) scale(1.2); }
}
.optinex-v2 .oos-cmd-primary.oos-success-close {
  background: linear-gradient(135deg, #10b981, #059669);
  box-shadow: 0 8px 28px rgba(16, 185, 129, 0.35);
}
.optinex-v2 .oos-cmd-primary.oos-success-close:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

/* Footer commands */
.optinex-v2 .oos-footer-actions {
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  padding: 0.75rem 1.1rem max(0.75rem, env(safe-area-inset-bottom));
  border-top: 1px solid rgba(124, 58, 237, 0.15);
  display: flex;
  gap: 0.5rem;
  background: rgba(8, 12, 20, 0.92);
  backdrop-filter: blur(8px);
}
.optinex-v2 .oos-footer-actions.oos-footer-hidden { display: none; }
.optinex-v2 .oos-cmd {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 0.85rem;
  min-height: 48px;
  border-radius: 0.75rem;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  font-family: inherit;
  text-decoration: none;
  transition: all 0.15s;
}
.optinex-v2 .oos-cmd-ghost {
  background: rgba(15, 22, 35, 0.8);
  border: 1px solid rgba(124, 58, 237, 0.25);
  color: var(--text);
}
.optinex-v2 .oos-cmd-ghost:hover { border-color: var(--accent); color: #fff; }
.optinex-v2 .oos-cmd-primary {
  background: var(--gradient-brand);
  color: #fff;
  box-shadow: 0 4px 16px rgba(124, 58, 237, 0.35);
}
.optinex-v2 .oos-cmd-primary:hover { box-shadow: 0 6px 24px rgba(124, 58, 237, 0.5); }
.optinex-v2 .oos-cmd-primary:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  box-shadow: none;
}

/* Cookie consent (también inyectado en optinex-consent.js para landings legacy) */
.optinex-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99999;
  padding: 12px 16px max(12px, env(safe-area-inset-bottom));
  pointer-events: none;
}
.optinex-consent-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(8, 12, 20, 0.94);
  border: 1px solid rgba(124, 58, 237, 0.35);
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.45);
  pointer-events: auto;
  backdrop-filter: blur(10px);
}
.optinex-consent-text {
  margin: 0;
  flex: 1 1 220px;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: #cbd5e1;
}
.optinex-consent-link {
  color: #a78bfa;
  text-decoration: underline;
}
.optinex-consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.optinex-consent-btn {
  border: none;
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 0.8125rem;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
}
.optinex-consent-btn-ghost {
  background: rgba(15, 22, 35, 0.9);
  color: #e2e8f0;
  border: 1px solid rgba(124, 58, 237, 0.3);
}
.optinex-consent-btn-primary {
  background: var(--gradient-brand, linear-gradient(135deg, #7c3aed, #06b6d4));
  color: #fff;
}

/* ——— CRO: prueba social, banner OOS, sticky mobile ——— */
.hero-trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem 1.25rem;
  margin-top: 1.25rem;
  font-size: 0.8125rem;
  color: #94a3b8;
}
.hero-trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.hero-trust-row i {
  color: #34d399;
  font-size: 0.75rem;
}

.section-compact {
  padding-top: 0;
  padding-bottom: 1.5rem;
  margin-top: -0.5rem;
}

.hero-oos-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: stretch;
  padding: 1.25rem 1.35rem;
  border-radius: 1rem;
  border: 1px solid rgba(124, 58, 237, 0.45);
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.18), rgba(6, 182, 212, 0.08));
  box-shadow: 0 12px 40px rgba(124, 58, 237, 0.2);
}
@media (min-width: 768px) {
  .hero-oos-card {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 1.35rem 1.75rem;
  }
}
.hero-oos-eyebrow {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #a78bfa;
  margin: 0 0 0.35rem;
}
.hero-oos-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.35rem;
  line-height: 1.25;
}
.hero-oos-desc {
  font-size: 0.875rem;
  color: #94a3b8;
  margin: 0;
  max-width: 36rem;
}
.hero-oos-btn {
  flex-shrink: 0;
  white-space: nowrap;
  min-width: 11rem;
  text-align: center;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.form-oos-divider {
  text-align: center;
  font-size: 0.75rem;
  color: #64748b;
  margin: 0.75rem 0;
  position: relative;
}
.form-oos-divider::before,
.form-oos-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 38%;
  height: 1px;
  background: rgba(124, 58, 237, 0.25);
}
.form-oos-divider::before { left: 0; }
.form-oos-divider::after { right: 0; }

.btn-oos-alt {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(52, 211, 153, 0.45);
  background: rgba(16, 185, 129, 0.12);
  color: #6ee7b7;
  font-weight: 600;
  font-size: 0.9375rem;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.15s, border-color 0.15s;
}
.btn-oos-alt:hover {
  background: rgba(16, 185, 129, 0.2);
  border-color: rgba(52, 211, 153, 0.7);
  color: #fff;
}

.optinex-sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99990;
  padding: 0 10px max(10px, env(safe-area-inset-bottom));
  pointer-events: none;
  transition: transform 0.28s ease, opacity 0.28s ease;
}
.optinex-sticky-cta.optinex-sticky-hidden {
  transform: translateY(110%);
  opacity: 0;
}
.optinex-sticky-inner {
  pointer-events: auto;
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0.85rem;
  border-radius: 14px;
  background: rgba(8, 12, 20, 0.96);
  border: 1px solid rgba(124, 58, 237, 0.45);
  box-shadow: 0 -6px 28px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(12px);
}
.optinex-sticky-copy {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.optinex-sticky-copy strong {
  font-size: 0.8125rem;
  color: #f1f5f9;
  line-height: 1.2;
}
.optinex-sticky-copy span {
  font-size: 0.6875rem;
  color: #94a3b8;
}
.optinex-sticky-btn {
  flex-shrink: 0;
  border: none;
  border-radius: 10px;
  padding: 0.65rem 1rem;
  font-size: 0.8125rem;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  background: var(--gradient-brand, linear-gradient(135deg, #7c3aed, #06b6d4));
  color: #fff;
  box-shadow: 0 4px 14px rgba(124, 58, 237, 0.4);
}
.optinex-sticky-btns {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-shrink: 0;
}
.optinex-sticky-btn-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: linear-gradient(135deg, #16a34a, #22c55e);
  color: #fff;
  font-size: 1.15rem;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(34, 197, 94, 0.35);
}
.optinex-sticky-btn-wa:hover {
  filter: brightness(1.06);
  color: #fff;
}

.hero-oos-card.optinex-hero-pulse {
  animation: optinex-hero-pulse 1.2s ease-in-out 3;
  border-color: rgba(124, 58, 237, 0.75);
  box-shadow: 0 0 0 2px rgba(124, 58, 237, 0.25), 0 12px 40px rgba(124, 58, 237, 0.2);
}
@keyframes optinex-hero-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.015); }
}

.optinex-paid-nudge {
  position: fixed;
  left: 10px;
  right: 10px;
  bottom: calc(72px + env(safe-area-inset-bottom));
  z-index: 99985;
  transform: translateY(120%);
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.35s ease;
  pointer-events: none;
}
.optinex-paid-nudge.optinex-paid-nudge-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.optinex-paid-nudge-inner {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.7rem 0.85rem;
  border-radius: 12px;
  background: rgba(8, 12, 20, 0.97);
  border: 1px solid rgba(124, 58, 237, 0.4);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}
.optinex-paid-nudge-inner p {
  flex: 1;
  margin: 0;
  font-size: 0.78rem;
  color: #94a3b8;
  line-height: 1.35;
}
.optinex-paid-nudge-inner strong {
  color: #f1f5f9;
}
.optinex-paid-nudge-actions {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex-shrink: 0;
}
.optinex-paid-nudge-btn {
  padding: 0.5rem 0.85rem;
  border-radius: 8px;
  border: none;
  font-weight: 700;
  font-size: 0.78rem;
  cursor: pointer;
  background: linear-gradient(135deg, #7c3aed, #6d28d9);
  color: #fff;
}
.optinex-paid-nudge-dismiss {
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: #94a3b8;
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
}

@media (min-width: 768px) {
  main.optinex-main-stack {
    display: flex;
    flex-direction: column;
  }
  main.optinex-main-stack .opticonnecta-hero-section {
    order: 1;
  }
  main.optinex-main-stack .optinex-booking-first {
    order: 2;
  }
}
@media (max-width: 767px) {
  .optinex-booking-first {
    padding-top: 0.5rem;
    padding-bottom: 0;
  }
  body.optinex-paid-landing .opticonnecta-hero-section {
    padding-top: 1.5rem;
  }
}

body.optinex-sticky-active {
  padding-bottom: calc(72px + env(safe-area-inset-bottom));
}
body.optinex-sticky-active .wa-float {
  bottom: calc(4.5rem + env(safe-area-inset-bottom));
  transition: bottom 0.25s ease;
}
@media (min-width: 768px) {
  .optinex-sticky-cta {
    display: none;
  }
  body.optinex-sticky-desktop .optinex-sticky-cta {
    display: block;
    max-width: 420px;
    left: auto;
    right: 1rem;
    bottom: 1rem;
    padding: 0;
  }
  body.optinex-sticky-desktop .optinex-sticky-inner {
    margin: 0;
  }
  body.optinex-sticky-active {
    padding-bottom: 0;
  }
  body.optinex-sticky-active .wa-float {
    bottom: 1.5rem;
  }
  body.optinex-sticky-desktop.optinex-sticky-active .wa-float {
    bottom: calc(5.5rem + env(safe-area-inset-bottom));
  }
}

.optinex-paid-landing .wa-float {
  opacity: 0.55;
  transform: scale(0.92);
}
.optinex-paid-landing .wa-float:hover {
  opacity: 1;
  transform: scale(1);
}

.oos-quick-problems {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding: 0 1rem 0.75rem;
}
.oos-quick-problem {
  text-align: left;
  border: 1px solid rgba(124, 58, 237, 0.35);
  background: rgba(124, 58, 237, 0.08);
  color: #e2e8f0;
  border-radius: 10px;
  padding: 0.55rem 0.75rem;
  font-size: 0.8125rem;
  cursor: pointer;
  font-family: inherit;
  line-height: 1.35;
}
.oos-quick-problem:hover,
.oos-quick-problem.active {
  border-color: rgba(34, 211, 238, 0.55);
  background: rgba(124, 58, 237, 0.18);
  color: #fff;
}

/* WhatsApp handoff — todos los CTAs pasan por modal de confirmación */
.optinex-wa-handoff {
  position: fixed;
  inset: 0;
  z-index: 100010;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, visibility 0.22s ease;
}
.optinex-wa-handoff.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
body.optinex-wa-handoff-open {
  overflow: hidden;
}
.optinex-wa-handoff__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 7, 14, 0.82);
  backdrop-filter: blur(8px);
}
.optinex-wa-handoff__panel {
  position: relative;
  width: min(100%, 26rem);
  background: linear-gradient(165deg, rgba(15, 23, 42, 0.98), rgba(7, 11, 18, 0.99));
  border: 1px solid rgba(34, 197, 94, 0.35);
  border-radius: 1.25rem;
  padding: 1.75rem 1.5rem 1.5rem;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55), 0 0 40px rgba(34, 197, 94, 0.12);
  animation: optinex-wa-pop 0.28s ease-out;
}
@keyframes optinex-wa-pop {
  from { transform: translateY(12px) scale(0.97); opacity: 0; }
  to { transform: translateY(0) scale(1); opacity: 1; }
}
.optinex-wa-handoff__close {
  position: absolute;
  top: 0.65rem;
  right: 0.75rem;
  background: transparent;
  border: none;
  color: #94a3b8;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  padding: 0.25rem;
}
.optinex-wa-handoff__close:hover { color: #fff; }
.optinex-wa-handoff__icon {
  width: 3.25rem;
  height: 3.25rem;
  margin: 0 auto 1rem;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #fff;
  font-size: 1.65rem;
  box-shadow: 0 8px 24px rgba(34, 197, 94, 0.35);
}
.optinex-wa-handoff__title {
  text-align: center;
  color: #f8fafc;
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 0 0.65rem;
  line-height: 1.35;
}
.optinex-wa-handoff__hint {
  text-align: center;
  color: #94a3b8;
  font-size: 0.875rem;
  line-height: 1.5;
  margin: 0 0 1rem;
}
.optinex-wa-handoff__hint strong { color: #e2e8f0; }
.optinex-wa-handoff__preview {
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 0.75rem;
  padding: 0.85rem 1rem;
  color: #cbd5e1;
  font-size: 0.8125rem;
  line-height: 1.45;
  margin-bottom: 1rem;
  max-height: 7rem;
  overflow-y: auto;
  white-space: pre-wrap;
}
.optinex-wa-handoff__primary {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1rem;
  border: none;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #fff;
  font-weight: 700;
  font-size: 0.9375rem;
  cursor: pointer;
  margin-bottom: 0.5rem;
  box-shadow: 0 6px 20px rgba(34, 197, 94, 0.3);
}
.optinex-wa-handoff__primary:hover { filter: brightness(1.06); }
.optinex-wa-handoff__secondary {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.65rem 1rem;
  border: 1px solid rgba(148, 163, 184, 0.25);
  border-radius: 0.75rem;
  background: transparent;
  color: #94a3b8;
  font-size: 0.8125rem;
  cursor: pointer;
  margin-bottom: 0.75rem;
}
.optinex-wa-handoff__secondary:hover {
  color: #e2e8f0;
  border-color: rgba(148, 163, 184, 0.45);
}
.optinex-wa-handoff__note {
  text-align: center;
  color: #64748b;
  font-size: 0.75rem;
  margin: 0;
}
