/*
  ╔══════════════════════════════════════════════════════════════════════╗
  ║          HYPERION TRADE — SISTEMA DE DISEÑO VISUAL                  ║
  ║          Archivo: css/igloo-styles.css                               ║
  ║          Última edición: Abril 2026                                  ║
  ╚══════════════════════════════════════════════════════════════════════╝

  DESCRIPCIÓN:
  Este archivo controla TODA la apariencia visual del sitio.
  Estética: "Dark Crystal Tech" — fondos oscuros, glassmorphism (efecto
  vidrio esmerilado), acentos cian neón, y tipografía "Inter" moderna.

  PALETA DE COLORES PRINCIPALES:
  ┌────────────────────────────────────────────────────────────────────┐
  │  --bg         #040a12    → Fondo principal (casi negro)           │
  │  --cyan       #00d4f0    → Acento principal (cian neón)           │
  │  --green      #22d3a0    → Señales positivas / éxito             │
  │  --red        #f06080    → Señales negativas / alerta             │
  │  --gold       #f0b840    → Estrellas / destacados                 │
  │  --white      #eef5fc    → Texto principal                        │
  │  --silver     #8ba8c4    → Texto secundario                       │
  └────────────────────────────────────────────────────────────────────┘

  CÓMO PERSONALIZAR:
    • Para cambiar un color en TODO el sitio: modifica la variable
      correspondiente dentro de :root { } (líneas de abajo)
    • Para cambiar la fuente: edita --font
    • Para cambiar el tamaño de los dots de navegación: edita --nav-dot-size

  ESTRUCTURA DE ESTE ARCHIVO:
    1. Variables y Reset         → Colores base, tipografía, reset global
    2. Cursor personalizado      → El punto que sigue al mouse
    3. WebGL Container           → Contenedor del cristal 3D
    4. Navegación lateral        → Puntos estilo Igloo (derecha)
    5. Barra superior            → Logo + botón CTA
    6. Secciones narrativas      → Layout full-screen por sección
    7. Hero                      → Título principal + tarjetas
    8. Botones                   → btn-primary, btn-outline
    9. Tarjetas glassmorphism    → Glass cards del hero
    10. Títulos de sección       → Eyebrow + gradients
    11. Split sections           → Texto + visual lado a lado
    12. Bot Terminal             → Estilos de la terminal de trading
    13. Copy Conditions          → Tarjeta de condiciones
    14. Monthly Gain Chart       → Gráfico de barras mensual
    15. Steps                    → Pasos "Cómo funciona"
    16. Pricing                  → Tarjetas de servicios/precios
    17. Testimonials             → Testimonios de usuarios
    18. FAQ                      → Preguntas frecuentes
    19. CTA Final                → Llamado a la acción
    20. Contact                  → Formulario y canales
    21. Reveal Animations        → Animación al hacer scroll
    22. Footer                   → Pie de página
    23. Hamburger + Mobile Nav   → Menú para celulares
    24. Chatbot Widget           → Botón flotante de redes sociales
    25. Responsive               → Adaptación a diferentes pantallas

  NOTAS PARA NO-PROGRAMADORES:
    • No borres las llaves { } ni los punto y coma ;
    • Los valores en px son píxeles (tamaño)
    • Los valores en rem son relativos al tamaño base de fuente
    • rgba() define colores con transparencia (el cuarto número)
    • var(--nombre) referencia una variable definida en :root
*/
:root {
  --bg:           #040a12;
  --bg-mid:       #060e18;
  --surface:      rgba(10, 22, 40, 0.55);
  --glass:        rgba(10, 22, 40, 0.45);
  --glass-border: rgba(0, 212, 240, 0.12);
  --glass-hover:  rgba(0, 212, 240, 0.08);
  --cyan:         #00d4f0;
  --cyan-mid:     #00aec8;
  --cyan-dark:    #007fa0;
  --cyan-glow:    rgba(0, 212, 240, 0.15);
  --green:        #22d3a0;
  --red:          #f06080;
  --gold:         #f0b840;
  --white:        #eef5fc;
  --silver:       #8ba8c4;
  --silver-light: #c5d8ea;
  --font:         'Inter', -apple-system, sans-serif;
  --mono:         ui-monospace, 'Cascadia Mono', 'Consolas', monospace;
  --ease:         cubic-bezier(0.22, 1, 0.36, 1);
  --nav-dot-size: 10px;
}

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; scroll-padding-top: 0; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--white);
  overflow-x: hidden;
  cursor: none;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; transition-duration: 0.01ms !important; }
  #webgl-container { display: none !important; }
}

/* ── CURSOR ── */
*, *::before, *::after { cursor: none !important; }

.cursor {
  position: fixed;
  width: 6px; height: 6px;
  background: var(--cyan);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: width 0.2s, height 0.2s, opacity 0.15s, background 0.2s;
  mix-blend-mode: screen;
}
.cursor-ring {
  position: fixed;
  width: 36px; height: 36px;
  border: 1px solid rgba(0, 212, 240, 0.35);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.3s var(--ease), height 0.3s var(--ease), border-color 0.25s;
}
.cursor.is-hover {
  width: 10px; height: 10px;
  background: var(--green);
}
.cursor-ring.is-hover {
  width: 52px; height: 52px;
  border-color: rgba(34, 211, 160, 0.45);
}
body:hover .cursor { opacity: 1; }

/* ── WEBGL CONTAINER ── */
#webgl-container {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  z-index: 0;
  pointer-events: none;
  opacity: 0.55;
}
#webgl-container canvas {
  pointer-events: none;
}

/* ══════════════════════════════════════
   SIDE NAVIGATION (Igloo-style dots)
══════════════════════════════════════ */
.side-nav {
  position: fixed;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 600;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.side-nav-dot {
  position: relative;
  width: var(--nav-dot-size);
  height: var(--nav-dot-size);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-decoration: none;
  transition: all 0.4s var(--ease);
}
.side-nav-dot::before {
  content: attr(data-label);
  position: absolute;
  right: calc(100% + 14px);
  top: 50%;
  transform: translateY(-50%) translateX(8px);
  white-space: nowrap;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0);
  background: rgba(6, 14, 24, 0.9);
  padding: 4px 10px;
  border-radius: 6px;
  border: 1px solid transparent;
  pointer-events: none;
  transition: all 0.3s var(--ease);
  backdrop-filter: blur(10px);
}
.side-nav-dot:hover::before {
  color: var(--white);
  transform: translateY(-50%) translateX(0);
  border-color: var(--glass-border);
}
.side-nav-dot:hover {
  background: rgba(0, 212, 240, 0.3);
  border-color: var(--cyan);
  transform: scale(1.3);
}
.side-nav-dot.active {
  background: var(--cyan);
  border-color: var(--cyan);
  box-shadow: 0 0 12px rgba(0, 212, 240, 0.5);
  transform: scale(1.4);
}
.side-nav-dot.active::after {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 1px solid rgba(0, 212, 240, 0.3);
  animation: dot-ping 2s ease-out infinite;
}
@keyframes dot-ping {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(2); opacity: 0; }
}

/* ══════════════════════════════════════
   TOP BAR (minimal)
══════════════════════════════════════ */
.top-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  transition: all 0.5s var(--ease);
}
.top-bar.solid {
  background: rgba(4, 10, 18, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--glass-border);
}
.top-logo { text-decoration: none; display: flex; align-items: center; }
.top-logo-img {
  width: 150px;
  max-height: 40px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 14px rgba(0, 212, 240, 0.16));
  transition: transform 0.2s, filter 0.2s;
}
.top-logo:hover .top-logo-img {
  transform: translateY(-1px);
  filter: drop-shadow(0 6px 20px rgba(0, 212, 240, 0.3));
}
.top-cta {
  padding: 10px 24px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--cyan), var(--cyan-dark));
  color: var(--bg);
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 7px;
  box-shadow: 0 4px 24px rgba(0, 212, 240, 0.3);
  transition: all 0.3s var(--ease);
}
.top-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 36px rgba(0, 212, 240, 0.5);
}

/* ══════════════════════════════════════
   SECTIONS (Igloo narrative scroll)
══════════════════════════════════════ */
.igloo-section {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 5%;
}
.igloo-section:nth-child(even) {
  background: linear-gradient(180deg, rgba(4,10,18,0), rgba(10,22,40,0.3) 50%, rgba(4,10,18,0));
}
.section-inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-content { max-width: 620px; }

.hero-eyebrow {
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.9s 0.2s var(--ease) forwards;
}
.eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 212, 240, 0.06);
  border: 1px solid rgba(0, 212, 240, 0.2);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--cyan);
  letter-spacing: 2.5px;
  text-transform: uppercase;
}
.dot-live {
  width: 6px; height: 6px;
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--cyan);
  animation: blink 2s infinite;
}
@keyframes blink { 0%,100%{opacity:1;} 50%{opacity:0.3;} }

.hero-headline {
  font-size: clamp(2.8rem, 5.5vw, 5.2rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -2.5px;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 1s 0.35s var(--ease) forwards;
}
.hero-headline em {
  font-style: normal;
  background: linear-gradient(90deg, var(--cyan) 0%, #80f0ff 50%, var(--cyan) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shine 4s linear infinite;
}
@keyframes shine { to { background-position: 200% center; } }

.hero-sub {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--silver-light);
  font-weight: 300;
  max-width: 520px;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 1s 0.5s var(--ease) forwards;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 14px;
  opacity: 0;
  animation: fadeUp 1s 0.65s var(--ease) forwards;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── BUTTONS ── */
.btn-primary {
  padding: 14px 32px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--cyan), var(--cyan-mid));
  color: var(--bg);
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 700;
  border: none;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 6px 32px rgba(0, 212, 240, 0.35);
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 48px rgba(0, 212, 240, 0.5);
}
.btn-primary:hover::after { opacity: 1; }
.btn-primary.full-width { width: 100%; justify-content: center; }

.btn-outline {
  padding: 14px 32px;
  border-radius: 12px;
  border: 1.5px solid rgba(0, 212, 240, 0.25);
  color: var(--silver-light);
  background: transparent;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s var(--ease);
}
.btn-outline:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  background: var(--cyan-glow);
  transform: translateY(-3px);
}
.btn-lg { padding: 18px 42px; font-size: 1.05rem; }

/* ══════════════════════════════════════
   GLASS CARDS (Hero services)
══════════════════════════════════════ */
.hero-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
  opacity: 0;
  animation: fadeUp 1.1s 0.6s var(--ease) forwards;
}
.glass-card {
  position: relative;
  padding: 22px 24px;
  border-radius: 18px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all 0.4s var(--ease);
  overflow: hidden;
}
.glass-card-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 30%, rgba(0,212,240,0.08), transparent 60%);
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
}
.glass-card:hover {
  border-color: rgba(0,212,240,0.3);
  background: rgba(10, 22, 40, 0.65);
  transform: translateX(8px);
}
.glass-card:hover .glass-card-glow { opacity: 1; }
.glass-card:hover .card-arrow {
  color: var(--cyan);
  transform: translateX(4px);
}

.card-icon {
  font-size: 28px;
  flex-shrink: 0;
}
.card-copy .card-icon { color: var(--cyan); }
.card-bot .card-icon { color: var(--green); }
.card-academy .card-icon { color: var(--gold); }

.glass-card h3 {
  flex: 1;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.3px;
}
.card-badge {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
}
.card-badge.active {
  background: rgba(0,212,240,0.12);
  border: 1px solid rgba(0,212,240,0.35);
  color: var(--cyan);
}
.card-badge.soon {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--silver);
}
.card-arrow {
  font-size: 18px;
  color: rgba(255,255,255,0.25);
  transition: all 0.3s;
}

/* ══════════════════════════════════════
   SECTION EYEBROW & TITLES
══════════════════════════════════════ */
.section-eyebrow-line {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.section-eyebrow-line.center { justify-content: center; }
.eyebrow-line-bar {
  width: 32px;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), transparent);
}
.eyebrow-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--cyan);
}

h2 {
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -1.5px;
  margin-bottom: 16px;
}
.text-gradient {
  background: linear-gradient(90deg, var(--cyan), #80f0ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-gradient-blue {
  background: linear-gradient(90deg, #4080ff, #80b0ff, #4080ff);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shine 4s linear infinite;
}
.text-gradient-wide {
  background: linear-gradient(90deg, var(--cyan), #80f0ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-desc {
  color: var(--silver);
  font-size: 1rem;
  line-height: 1.8;
  max-width: 540px;
  font-weight: 300;
}
.section-desc.center { margin: 8px auto 0; text-align: center; }
.section-center { text-align: center; max-width: 640px; margin: 0 auto; }

/* ══════════════════════════════════════
   SPLIT SECTIONS (Text + Visual)
══════════════════════════════════════ */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.split-section.split-reverse {
  direction: rtl;
}
.split-section.split-reverse > * {
  direction: ltr;
}


/* ── Feature list (glassmorphism) ── */
.feature-list-glass {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 24px 0 28px;
}
.feature-glass {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 16px;
  background: var(--glass);
  border: 1px solid rgba(0,212,240,0.08);
  border-radius: 14px;
  backdrop-filter: blur(10px);
  transition: all 0.3s var(--ease);
}
.feature-glass:hover {
  background: rgba(0,212,240,0.06);
  border-color: rgba(0,212,240,0.2);
  transform: translateX(6px);
}
.fg-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(0,212,240,0.08);
  border: 1px solid rgba(0,212,240,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--cyan);
  font-size: 18px;
}
.feature-glass strong {
  font-size: 0.9rem;
  font-weight: 700;
  display: block;
  margin-bottom: 2px;
}
.feature-glass span {
  font-size: 0.82rem;
  color: var(--silver);
  font-weight: 300;
  line-height: 1.4;
}
.feature-glass br {
  display: none;
}

/* ══════════════════════════════════════
   BOT TERMINAL (preserved from original)
══════════════════════════════════════ */
.bot-screen {
  width: 100%;
  max-width: 460px;
  background: rgba(10, 15, 22, 0.95);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 32px 100px rgba(0,0,0,0.65), 0 0 80px rgba(0,212,240,0.07);
  backdrop-filter: blur(10px);
}
.bot-topbar {
  background: rgba(18, 26, 38, 0.95);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.bot-dots { display: flex; gap: 6px; }
.bot-dot { width: 10px; height: 10px; border-radius: 50%; }
.bot-dot.r { background: #ff5f57; }
.bot-dot.y { background: #ffbd2e; }
.bot-dot.g { background: var(--green); }
.bot-status {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.65rem; font-weight: 700; color: #3ee09a;
  letter-spacing: 1.2px;
}
.pulse-live {
  width: 7px; height: 7px;
  background: var(--green);
  border-radius: 50%;
  animation: blink 1.2s infinite;
  box-shadow: 0 0 8px var(--green);
}
.ht-top-ver { font-size: 0.68rem; color: rgba(139,168,196,0.75); font-family: var(--mono); }

.ht-body {
  padding: 14px 16px 16px;
  font-family: var(--mono);
  font-size: 0.68rem;
  line-height: 1.35;
  color: #c8d4e4;
}
.ht-head-panel {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.ht-brand-title { font-size: 1rem; font-weight: 800; color: #eef5fc; letter-spacing: 0.5px; }
.ht-brand-ver { font-size: 0.72rem; font-weight: 600; color: var(--cyan); }
.ht-subline { margin-top: 4px; color: #9eb4cc; font-size: 0.7rem; }
.ht-sep { opacity: 0.45; margin: 0 4px; }
.ht-atr { margin-top: 3px; color: #7a93ad; font-size: 0.65rem; }
.ht-head-right { text-align: right; flex-shrink: 0; }
.ht-account { color: #9eb4cc; font-size: 0.65rem; margin-bottom: 6px; }
.ht-txt-warn { color: #e8c547; font-weight: 700; }
.ht-clock { font-size: 1.05rem; font-weight: 700; color: #7fd7ff; letter-spacing: 2px; font-variant-numeric: tabular-nums; }

.ht-strategy-row { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 8px; margin-bottom: 10px; }
.ht-strat {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  padding: 8px 8px 10px;
  text-align: center;
}
.ht-strat-label { display: block; font-size: 0.62rem; color: #8ba8c4; margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.8px; }
.ht-strat-status { display: inline-flex; align-items: center; justify-content: center; gap: 5px; font-size: 0.62rem; font-weight: 700; color: #f06080; }
.ht-strat-status.ht-strat--muted { color: #6b7c90; font-weight: 600; }
.ht-strat-status.ht-strat-status--ok { color: #3ee09a !important; }
.ht-led { width: 7px; height: 7px; border-radius: 50%; background: #f06080; box-shadow: 0 0 8px rgba(240,96,128,0.65); animation: ht-led-pulse 1.4s ease-in-out infinite; }
.ht-led--off { background: #4a5568; box-shadow: none; animation: none; }
.ht-led--ok { background: #22d3a0; box-shadow: 0 0 8px rgba(34,211,160,0.55); animation: ht-led-pulse 1.2s ease-in-out infinite; }
@keyframes ht-led-pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.65; transform: scale(0.92); } }

.ht-info-bar { display: flex; align-items: center; gap: 8px; padding: 8px 10px; border-radius: 6px; margin-bottom: 6px; font-size: 0.62rem; }
.ht-info-bar--ok { background: rgba(30,58,95,0.55); border: 1px solid rgba(100,160,220,0.2); color: #b8d4f0; }
.ht-info-bar--alert { background: rgba(90,24,32,0.65); border: 1px solid rgba(240,96,128,0.35); color: #ffb8c3; }
.ht-info-bar--alert[data-state="clear"] { background: rgba(12,60,48,0.55); border-color: rgba(34,211,160,0.35); color: #9cf0d0; }
.ht-info-icon { flex-shrink: 0; width: 16px; height: 16px; display: flex; align-items: center; justify-content: center; font-size: 0.55rem; }

.ht-data-grid { margin-top: 4px; border: 1px solid rgba(255,255,255,0.08); border-radius: 8px; overflow: hidden; }
.ht-grid-row { display: grid; grid-template-columns: 72px 1fr 1fr 1fr; border-bottom: 1px solid rgba(255,255,255,0.05); }
.ht-grid-row:last-child { border-bottom: none; }
.ht-grid-row--head { background: rgba(0,212,240,0.06); font-size: 0.58rem; font-weight: 700; color: #8ba8c4; text-transform: uppercase; letter-spacing: 0.5px; }
.ht-grid-row--head span { padding: 8px 6px; text-align: center; border-right: 1px solid rgba(255,255,255,0.05); }
.ht-grid-row--head span:last-child { border-right: none; }
.ht-grid-corner { border-right: 1px solid rgba(255,255,255,0.05) !important; }
.ht-grid-label { padding: 7px 8px; color: #7a93ad; font-size: 0.58rem; text-align: left; border-right: 1px solid rgba(255,255,255,0.05); display: flex; align-items: center; }
.ht-grid-cell { padding: 7px 6px; text-align: center; font-weight: 700; font-size: 0.64rem; border-right: 1px solid rgba(255,255,255,0.05); }
.ht-grid-cell:last-child { border-right: none; }
.ht-dim { color: #5c6b7e !important; font-weight: 600 !important; }
.ht-txt-sell { color: #f06080 !important; }
.ht-txt-buy { color: #5eb8ff !important; }
.ht-txt-neg { color: #f08090 !important; }
.ht-txt-pos { color: #7fd7ff !important; }
.ht-grid-cell.ht-flash { animation: ht-cell-flash 0.55s ease; }
@keyframes ht-cell-flash { 0%, 100% { background: transparent; } 40% { background: rgba(0,212,240,0.2); } }

.ht-activity-line { display: flex; align-items: center; gap: 8px; margin-top: 10px; padding-top: 8px; border-top: 1px dashed rgba(255,255,255,0.08); font-size: 0.6rem; color: #6b8299; }
.ht-activity-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--cyan); animation: blink 1s infinite; }

/* ══════════════════════════════════════
   COPY CONDITIONS (glass variant)
══════════════════════════════════════ */
.copy-conditions-glass {
  width: 100%;
  max-width: 420px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 22px;
  padding: 24px;
  backdrop-filter: blur(8px);
  box-shadow: 0 32px 100px rgba(0,0,0,0.5), 0 0 60px rgba(0,212,240,0.05);
}
.copy-cond-header {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--glass-border);
}
.copy-cond-items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.copy-cond-items li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.85rem;
  color: var(--silver-light);
  font-weight: 300;
}
.copy-cond-items li > div {
  flex: 1;
  min-width: 0;
}
.copy-cond-items li strong { color: var(--white); font-weight: 600; }
.cond-bullet {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  margin-top: 7px;
  flex-shrink: 0;
  box-shadow: 0 0 10px rgba(0,212,240,0.45);
}
.cond-title { display: block; color: var(--white); font-weight: 600; font-size: 0.85rem; }
.cond-detail { display: block; font-size: 0.82rem; color: var(--silver-light); margin-top: 3px; }

/* Monthly Gain Chart */
.mgc-card { background: rgba(6,14,24,0.85); border: 1px solid rgba(0,212,240,0.18); border-radius: 14px; padding: 14px; max-width: 100%; margin-top: 8px; }
.mgc-chart-area { position: relative; height: 110px; padding-left: 28px; }
.mgc-grid { position: absolute; inset: 0; pointer-events: none; }
.mgc-grid-line { position: absolute; left: 28px; right: 0; height: 1px; background: rgba(255,255,255,0.06); transform: translateY(50%); }
.mgc-grid-line:last-child { background: rgba(255,255,255,0.12); }
.mgc-grid-label { position: absolute; left: -28px; top: -7px; font-size: 0.52rem; color: rgba(139,168,196,0.6); font-variant-numeric: tabular-nums; white-space: nowrap; }
.mgc-bars { position: absolute; inset: 0; left: 28px; display: flex; align-items: flex-end; gap: 5px; padding-bottom: 1px; }
.mgc-bar-col { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: flex-end; height: 100%; gap: 3px; }
.mgc-bar-pct { font-size: 0.5rem; font-weight: 700; color: var(--white); opacity: 0.9; line-height: 1; white-space: nowrap; }
.mgc-bar { width: 100%; border-radius: 4px 4px 2px 2px; min-height: 3px; transform-origin: bottom; animation: mgc-grow 0.7s cubic-bezier(0.34,1.56,0.64,1) both; }
@keyframes mgc-grow { from { transform: scaleY(0); opacity: 0; } to { transform: scaleY(1); opacity: 1; } }
.mgc-bar-month { font-size: 0.48rem; color: rgba(139,168,196,0.65); text-align: center; }
.mgc-bar--0 { background: linear-gradient(180deg, #a78bfa, #7c5cbf); }
.mgc-bar--1 { background: linear-gradient(180deg, #f87171, #c45252); }
.mgc-bar--2 { background: linear-gradient(180deg, #22d3a0, #159e77); }
.mgc-bar--3 { background: linear-gradient(180deg, #fb923c, #c4662a); }
.mgc-bar--4 { background: linear-gradient(180deg, #a3e635, #76b021); }
.mgc-bar--5 { background: linear-gradient(180deg, #fbbf24, #c9931b); }

/* ══════════════════════════════════════
   STEPS (3 columns, glass)
══════════════════════════════════════ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
.step-glass {
  text-align: center;
  padding: 32px 24px;
  border-radius: 20px;
  background: var(--glass);
  border: 1px solid rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
  transition: all 0.35s var(--ease);
}
.step-glass:hover {
  border-color: var(--glass-border);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.step-number {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--cyan);
  box-shadow: 0 0 0 6px rgba(0,212,240,0.06);
  transition: all 0.35s;
}
.step-glass:hover .step-number {
  border-color: var(--cyan);
  box-shadow: 0 0 0 8px rgba(0,212,240,0.1), 0 0 30px rgba(0,212,240,0.25);
}
.step-glass h3 { font-size: 1.02rem; font-weight: 700; margin-bottom: 10px; }
.step-glass p { font-size: 0.84rem; color: var(--silver); font-weight: 300; line-height: 1.6; }

.step-highlight {
  max-width: 540px;
  margin: 44px auto 0;
  padding: 22px 32px;
  text-align: center;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(0,212,240,0.1), rgba(0,212,240,0.03));
  border: 1px solid rgba(0,212,240,0.3);
  box-shadow: 0 16px 48px rgba(0,0,0,0.3), 0 0 60px rgba(0,212,240,0.08);
}
.step-highlight p { margin: 0; font-size: 1rem; font-weight: 700; color: var(--silver-light); }

/* ══════════════════════════════════════
   PRICING (glass variant)
══════════════════════════════════════ */
.pricing-grid-glass {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 56px auto 0;
}
.price-glass {
  background: var(--glass);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 22px;
  padding: 36px 28px;
  position: relative;
  transition: all 0.35s var(--ease);
  overflow: hidden;
  backdrop-filter: blur(10px);
}
.price-glass::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: rgba(255,255,255,0.04);
  transition: background 0.35s;
}
.price-glass:hover {
  transform: translateY(-6px);
  border-color: rgba(0,212,240,0.15);
  box-shadow: 0 24px 80px rgba(0,0,0,0.4);
}

.price-glass--featured {
  background: linear-gradient(145deg, rgba(0,40,70,0.6), rgba(0,30,55,0.6));
  border-color: var(--glass-border);
  box-shadow: 0 0 0 1px rgba(0,212,240,0.08), 0 32px 80px rgba(0,0,0,0.5), 0 0 60px rgba(0,212,240,0.06);
}
.price-glass--featured::before {
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
}
.price-glass--soon {
  opacity: 0.45;
  pointer-events: none;
  filter: saturate(0.7) brightness(0.9);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  gap: 20px;
}
.price-watermark {
  font-size: clamp(1.4rem, 4vw, 2.4rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(238,245,252,0.12);
  text-align: center;
  line-height: 1.1;
  word-break: break-word;
  hyphens: auto;
}
.price-soon-badge {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(139,168,196,0.7);
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(0,0,0,0.2);
}

.featured-badge {
  position: absolute;
  top: -1px; left: 50%;
  transform: translateX(-50%);
  background: var(--cyan);
  color: var(--bg);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: 0 0 10px 10px;
}
.plan-icon-glass {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: rgba(0,212,240,0.08);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--cyan);
  margin-bottom: 20px;
}
.plan-name { font-size: 0.78rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--silver); margin-bottom: 8px; }
.plan-desc { font-size: 0.84rem; color: var(--silver); line-height: 1.55; margin-bottom: 22px; font-weight: 300; }
.plan-divider { height: 1px; background: rgba(255,255,255,0.06); margin-bottom: 22px; }
.plan-features-glass { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.plan-features-glass li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.84rem;
  color: var(--silver-light);
  font-weight: 400;
}
.plan-features-glass .check { color: var(--green); font-size: 18px; }

/* ══════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.test-glass {
  background: var(--glass);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 18px;
  padding: 28px 24px;
  backdrop-filter: blur(10px);
  transition: all 0.3s var(--ease);
  position: relative;
}
.test-glass::before {
  content: '"';
  position: absolute;
  top: 16px; right: 20px;
  font-size: 4rem;
  line-height: 1;
  color: rgba(0,212,240,0.08);
  pointer-events: none;
}
.test-glass:hover {
  border-color: var(--glass-border);
  transform: translateY(-4px);
}
.test-stars { color: var(--gold); font-size: 0.85rem; letter-spacing: 2px; margin-bottom: 14px; }
.test-glass p { font-size: 0.88rem; color: var(--silver-light); line-height: 1.7; font-weight: 300; font-style: italic; margin-bottom: 18px; }
.test-author { display: flex; align-items: center; gap: 12px; }
.test-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0,212,240,0.15), rgba(0,212,240,0.05));
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.test-author strong { font-size: 0.88rem; display: block; margin-bottom: 2px; }
.test-author span { font-size: 0.72rem; color: var(--silver); }
.test-author br { display: none; }

/* ══════════════════════════════════════
   FAQ
══════════════════════════════════════ */
.faq-inner { max-width: 760px; }
.faq-item { border-bottom: 1px solid rgba(255,255,255,0.06); overflow: hidden; }
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  font-size: 1rem;
  font-weight: 600;
  transition: color 0.2s;
  user-select: none;
}
.faq-question:hover { color: var(--cyan); }
.faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(0,212,240,0.08);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s;
  font-size: 18px;
  color: var(--cyan);
}
.faq-item.open .faq-icon { background: var(--cyan); color: var(--bg); transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  font-size: 0.9rem;
  color: var(--silver);
  line-height: 1.75;
  font-weight: 300;
}
.faq-item.open .faq-answer { max-height: 200px; padding-bottom: 20px; }
.faq-reminder { display: block; margin-top: 10px; color: var(--cyan); font-size: 0.82rem; font-weight: 500; }

/* ══════════════════════════════════════
   CTA FINAL
══════════════════════════════════════ */
.igloo-section--cta { min-height: 70vh; }
.cta-inner {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.cta-inner h2 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  letter-spacing: -2px;
  margin-bottom: 20px;
}
.cta-inner p {
  font-size: 1.05rem;
  color: var(--silver);
  max-width: 520px;
  margin: 0 auto 44px;
  line-height: 1.7;
  font-weight: 300;
}
.final-note {
  margin-top: 20px;
  font-size: 0.8rem;
  color: rgba(139,168,196,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* ══════════════════════════════════════
   CONTACT
══════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 26px;
  align-items: start;
}
.contact-card-glass {
  background: var(--glass);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 18px;
  padding: 26px;
  backdrop-filter: blur(10px);
}
.cc-title { display: flex; align-items: center; gap: 10px; font-size: 1.05rem; font-weight: 800; letter-spacing: 0.5px; }
.cc-title .material-symbols-outlined { color: var(--cyan); }
.cc-desc { margin-top: 10px; color: var(--silver); line-height: 1.7; font-weight: 300; }
.cc-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 18px; }
.cc-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 14px; border-radius: 12px;
  border: 1px solid rgba(0,212,240,0.2); background: rgba(0,212,240,0.05);
  color: var(--silver-light); text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
  font-weight: 700;
}
.cc-btn.primary {
  background: linear-gradient(135deg, var(--cyan), var(--cyan-mid));
  border-color: transparent; color: var(--bg);
  box-shadow: 0 10px 40px rgba(0,212,240,0.25);
}
.cc-btn:hover { transform: translateY(-2px); border-color: rgba(0,212,240,0.45); }
.cc-meta { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 16px; }
.cc-pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 10px; border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.08); color: rgba(197,216,234,0.78);
  font-size: 0.78rem; background: rgba(255,255,255,0.03);
}
.cc-pill .material-symbols-outlined { font-size: 18px; color: var(--green); }

.contact-note-glass {
  margin-top: 14px;
  background: rgba(34,211,160,0.05);
  border: 1px solid rgba(34,211,160,0.15);
  border-radius: 18px;
  padding: 18px 20px;
  backdrop-filter: blur(10px);
}
.cn-title { font-weight: 800; letter-spacing: 1px; }
.cn-text { margin-top: 8px; color: var(--silver); line-height: 1.7; font-weight: 300; font-size: 0.9rem; }

.contact-form-glass {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 18px;
  padding: 26px;
  backdrop-filter: blur(8px);
  box-shadow: 0 24px 80px rgba(0,0,0,0.4);
}
.cf-row { display: flex; flex-direction: column; gap: 8px; margin-bottom: 14px; }
.cf-label { font-size: 0.82rem; color: rgba(197,216,234,0.85); letter-spacing: 0.4px; }
.cf-input {
  width: 100%; border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  color: var(--white); padding: 12px 14px;
  outline: none;
  font-family: var(--font);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}
.cf-input:focus { border-color: rgba(0,212,240,0.5); box-shadow: 0 0 0 4px rgba(0,212,240,0.1); }
.cf-textarea { resize: vertical; min-height: 100px; }
.cf-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 8px; }
.cf-btn {
  border: 1px solid rgba(0,212,240,0.2); background: rgba(0,212,240,0.05);
  color: var(--silver-light); border-radius: 12px; padding: 13px 14px;
  font-weight: 800; cursor: pointer; font-family: var(--font);
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  transition: transform 180ms ease, border-color 180ms ease;
}
.cf-btn.primary { background: linear-gradient(135deg, var(--cyan), var(--cyan-mid)); border-color: transparent; color: var(--bg); box-shadow: 0 10px 40px rgba(0,212,240,0.25); }
.cf-btn:hover { transform: translateY(-2px); border-color: rgba(0,212,240,0.45); }
.cf-small { margin-top: 12px; font-size: 0.78rem; color: rgba(139,168,196,0.6); line-height: 1.6; }

/* ══════════════════════════════════════
   REVEAL ANIMATIONS
══════════════════════════════════════ */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
footer {
  background: var(--bg);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 70px 5% 30px;
  position: relative;
  z-index: 2;
}
.footer-grid { display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr; gap: 60px; margin-bottom: 56px; }
.footer-brand p { font-size: 0.86rem; color: var(--silver); line-height: 1.75; max-width: 300px; margin: 18px 0; font-weight: 300; }
.brand-logo-footer { width: 180px; max-height: 60px; height: auto; object-fit: contain; filter: drop-shadow(0 6px 18px rgba(0,212,240,0.12)); }
.footer-col h4 { font-size: 0.7rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--silver-light); margin-bottom: 20px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 0.86rem; color: var(--silver); text-decoration: none; font-weight: 300; transition: color 0.2s; }
.footer-col a:hover { color: var(--cyan); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-copy { font-size: 0.8rem; color: rgba(139,168,196,0.5); }
.footer-copy span { color: var(--cyan); }

/* ══════════════════════════════════════
   HAMBURGER & MOBILE NAV
══════════════════════════════════════ */
.hamburger {
  display: none;
  flex-direction: column; justify-content: center; gap: 5px;
  width: 42px; height: 42px; padding: 8px;
  background: rgba(0,212,240,0.06);
  border: 1px solid var(--glass-border);
  border-radius: 10px; cursor: pointer;
  transition: all 0.2s;
}
.hamburger span { display: block; width: 100%; height: 2px; background: var(--cyan); border-radius: 2px; transition: all 0.3s; transform-origin: center; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  position: fixed; top: 72px; left: 0; right: 0;
  background: rgba(4,10,18,0.98);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--glass-border);
  z-index: 490;
  padding: 0;
  max-height: 0; overflow: hidden;
  transition: max-height 0.45s ease, padding 0.3s;
}
.mobile-nav.open { max-height: 100vh; padding: 20px 5% 30px; }
.mobile-nav ul { list-style: none; display: flex; flex-direction: column; gap: 4px; margin-bottom: 20px; }
.mobile-nav ul a {
  display: block; padding: 14px 16px;
  color: var(--silver-light); text-decoration: none;
  font-size: 1.05rem; font-weight: 500;
  border-radius: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: all 0.2s;
}
.mobile-nav ul a:hover { color: var(--cyan); background: var(--cyan-glow); }
.mob-cta {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; padding: 15px;
  background: linear-gradient(135deg, var(--cyan), var(--cyan-dark));
  color: var(--bg); font-weight: 700; font-size: 1rem;
  border-radius: 12px; text-decoration: none;
  box-shadow: 0 6px 24px rgba(0,212,240,0.35);
}

/* ══════════════════════════════════════
   CHATBOT (preserved from original)
══════════════════════════════════════ */
.chatbot-widget { position: fixed; right: 22px; bottom: 22px; z-index: 1200; }
.chatbot-fab {
  width: 62px; height: 62px; border: none; border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--cyan-mid));
  color: var(--bg); display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer; box-shadow: 0 14px 34px rgba(0,212,240,0.34);
  position: relative; transition: transform 180ms ease, box-shadow 180ms ease;
}
.chatbot-fab:hover { transform: translateY(-2px); box-shadow: 0 18px 42px rgba(0,212,240,0.45); }
.chatbot-fab-icon { width: 36px; height: 36px; display: inline-flex; align-items: center; justify-content: center; }
.chatbot-fab-icon svg { width: 36px; height: 36px; display: block; color: #fff; }
.chatbot-fab-ping { position: absolute; inset: -6px; border-radius: inherit; border: 2px solid rgba(0,212,240,0.32); animation: chatbotPing 2.2s ease-out infinite; pointer-events: none; }
@keyframes chatbotPing { 0% { transform: scale(1); opacity: 1; } 100% { transform: scale(1.22); opacity: 0; } }

.chatbot-panel {
  position: absolute; right: 0; bottom: 78px;
  width: min(370px, 92vw); height: min(560px, 78vh);
  background: rgba(10,22,40,0.95); border: 1px solid var(--glass-border);
  border-radius: 18px; box-shadow: 0 24px 80px rgba(0,0,0,0.5);
  backdrop-filter: blur(10px); display: flex; flex-direction: column; overflow: hidden;
  opacity: 0; transform: translate3d(0, 12px, 0) scale(0.98);
  pointer-events: none; transition: opacity 220ms ease, transform 220ms ease;
}
.chatbot-widget.open .chatbot-panel { opacity: 1; transform: translate3d(0, 0, 0) scale(1); pointer-events: auto; }
.chatbot-widget--social .chatbot-panel { width: 92px; min-width: 92px; height: auto; max-height: min(440px, 82vh); }
.chatbot-widget--social .chatbot-header { position: relative; flex-direction: row; align-items: center; justify-content: flex-end; gap: 0; padding: 8px 8px 10px; min-height: 0; }
.chatbot-widget--social .chatbot-title-wrap { display: none; }
.chatbot-body--social { display: none !important; flex: 0 0 0; padding: 0; min-height: 0; overflow: hidden; }
.chatbot-header { background: linear-gradient(135deg, rgba(0,212,240,0.14), rgba(0,212,240,0.05)); border-bottom: 1px solid var(--glass-border); padding: 14px 16px; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.chatbot-title { font-size: 1rem; font-weight: 800; letter-spacing: 0.4px; }
.chatbot-subtitle { font-size: 0.75rem; color: var(--silver); margin-top: 2px; }
.chatbot-social-actions { flex: 1 1 auto; display: flex; flex-direction: column; align-items: center; justify-content: flex-start; gap: 12px; padding: 8px 10px 20px; }

.chat-social-link {
  display: flex; align-items: center; justify-content: center;
  width: 54px; height: 54px; min-width: 54px; padding: 0;
  border: 2px solid rgba(255,255,255,0.15); border-radius: 50%;
  text-decoration: none; cursor: pointer;
  transition: transform 0.2s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.2s, border-color 0.2s;
  position: relative;
}
.chat-social-link:hover { transform: translateY(-4px) scale(1.12); border-color: rgba(255,255,255,0.35); }
.chat-social-link.is-disabled { opacity: 0.5; filter: grayscale(0.4); }
.chat-social-link--instagram { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); color: #fff; box-shadow: 0 5px 20px rgba(220,39,67,0.50); }
.chat-social-link--whatsapp { background: linear-gradient(135deg, #25d366, #128c7e); color: #fff; box-shadow: 0 5px 20px rgba(37,211,102,0.50); }
.chat-social-link--youtube { background: linear-gradient(135deg, #ff4444, #cc0000); color: #fff; box-shadow: 0 5px 20px rgba(255,0,0,0.50); }
.chat-social-link--tiktok { background: linear-gradient(135deg, #111, #2a2a2a); color: #fff; box-shadow: 0 5px 20px rgba(105,201,238,0.35); }
.chat-social-link--telegram { background: linear-gradient(135deg, #34aadf, #1e80c2); color: #fff; box-shadow: 0 5px 20px rgba(52,170,223,0.50); }

.fab-greeting {
  position: absolute; bottom: calc(100% + 12px); right: 0;
  background: rgba(10,22,40,0.95); border: 1px solid var(--glass-border);
  border-radius: 12px; padding: 10px 16px;
  white-space: nowrap; font-size: 0.82rem; font-weight: 600;
  color: var(--white); backdrop-filter: blur(6px);
  opacity: 0; transform: translateY(6px) scale(0.95);
  pointer-events: none; transition: all 0.35s var(--ease);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.fab-greeting.is-visible { opacity: 1; transform: translateY(0) scale(1); }
.fab-greeting.is-hiding { opacity: 0; transform: translateY(6px) scale(0.95); }
.fab-greeting-arrow {
  position: absolute; bottom: -6px; right: 24px;
  width: 12px; height: 12px;
  background: rgba(10,22,40,0.95); border-right: 1px solid var(--glass-border); border-bottom: 1px solid var(--glass-border);
  transform: rotate(45deg);
}

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 1100px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-content { max-width: 100%; }
  .hero-cards { flex-direction: row; flex-wrap: wrap; }
  .glass-card { flex: 1; min-width: 200px; }
  .split-section { grid-template-columns: 1fr; gap: 40px; }
  .split-section.split-reverse { direction: ltr; }
  .split-visual { display: flex; justify-content: center; }
  .pricing-grid-glass { grid-template-columns: 1fr 1fr; }
  .pricing-grid-glass .price-glass:last-child { grid-column: 1 / -1; max-width: 460px; margin: 0 auto; width: 100%; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
  .side-nav { right: 16px; gap: 14px; }
}

@media (max-width: 768px) {
  .top-cta { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: block; }
  .side-nav { display: none; }
  .igloo-section { min-height: auto; padding: 100px 5%; }
  .hero-eyebrow { margin-top: 24px; }
  .hero-headline { font-size: clamp(2.2rem, 9vw, 3.2rem); letter-spacing: -1px; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-cards { flex-direction: column; }
  .glass-card { min-width: 100%; }
  .steps-grid { grid-template-columns: 1fr; gap: 20px; }
  .pricing-grid-glass { grid-template-columns: 1fr; }
  .pricing-grid-glass .price-glass:last-child { grid-column: auto; max-width: 100%; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .cc-actions, .cf-actions { grid-template-columns: 1fr; }
  footer { padding: 44px 5% 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-grid > div:first-child { grid-column: auto; }
  .reveal-up { transform: translateY(24px); }

  .chatbot-widget { right: 14px; bottom: 14px; z-index: 1200; }
  .chatbot-fab { width: 52px; height: 52px; }
  .chatbot-fab-icon svg { width: 30px; height: 30px; }
  .chatbot-panel { bottom: 70px; right: 0; width: min(340px, 92vw); }
}

@media (max-width: 480px) {
  .igloo-section { padding: 85px 4% 60px; }
  .hero-eyebrow { margin-top: 20px; }
  .hero-headline { font-size: clamp(2rem, 8vw, 2.6rem); }
  h2 { font-size: clamp(1.75rem, 7vw, 2.3rem); }
  .step-glass { padding: 24px 18px; }
  .price-glass { padding: 28px 20px; }
  .price-glass--soon { min-height: 220px; }
  .top-logo-img { width: 110px; }
}

/* Touch devices: normal cursor */
@media (hover: none) {
  body { cursor: auto; }
  *, *::before, *::after { cursor: auto !important; }
  .cursor, .cursor-ring { display: none !important; }
}
