/* ═══════════════════════════════════════════════════════
   SISTEMA DE DISEÑO — RF-FUSION LANDING PAGE
   Estilo: Premium Dark Mode, Glassmorphism, Gradientes Fluidos
   ═══════════════════════════════════════════════════════ */

:root {
  /* HSL Color System */
  --bg-color-raw: 240, 10%, 4%;     /* #0a0a0c - Fondo ultra oscuro */
  --bg-color: hsl(var(--bg-color-raw));
  --bg-card-raw: 240, 16%, 7%;     /* #0f0f12 - Fondo tarjetas */
  --bg-card: hsl(var(--bg-card-raw));
  --bg-input: rgba(255, 255, 255, 0.03);

  /* Acentos y Temas */
  --primary-color: #FC5200;        /* Color principal marca */
  --neon-purple: #AF52DE;          /* Morado Neón */
  --primary-glow: rgba(175, 82, 222, 0.4); /* Resplandor morado/naranja */
  --primary-gradient: linear-gradient(135deg, #AF52DE 0%, #FC5200 100%);
  
  --secondary-glow: rgba(255, 255, 255, 0.05);
  --border-color: rgba(255, 255, 255, 0.08);
  --border-bright: rgba(255, 255, 255, 0.15);

  /* Categorías de Novedades (Colores Semánticos) */
  --color-orange: #FC5200;
  --color-red: #FF3B30;
  --color-purple: #AF52DE;
  --color-green: #34C759;
  --color-yellow: #FFD700;

  /* Tipografía */
  --font-family-title: 'Outfit', sans-serif;
  --font-family-body: 'Inter', sans-serif;

  /* Transiciones */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.8s cubic-bezier(0.16, 1, 0.3, 1);

  /* Tamaños */
  --header-height: 76px;
  --container-max-w: 1200px;
}

/* ───────────────── Reset e Inicialización ───────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-color);
  color: #ffffff;
  overflow-x: hidden;
}

body {
  font-family: var(--font-family-body);
  line-height: 1.6;
  background-color: var(--bg-color);
  color: rgba(255, 255, 255, 0.85);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button, input, textarea {
  font-family: inherit;
  background: none;
  border: none;
  color: inherit;
  outline: none;
}

ul {
  list-style: none;
}

/* ───────────────── Utilidades de Contenedores y Botones ───────────────── */
.container {
  width: 100%;
  max-width: var(--container-max-w);
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* Títulos de Sección */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px auto;
}

.section-title {
  font-family: var(--font-family-title);
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #ffffff;
  text-shadow: 0 0 15px rgba(175, 82, 222, 0.4), 0 0 30px rgba(252, 82, 0, 0.2);
}

.section-subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
  line-height: 1.6;
}

/* Botones Premium */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-image: var(--primary-gradient);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 12px 24px;
  border-radius: 12px;
  box-shadow: 0 4px 15px var(--primary-glow);
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary ion-icon {
  margin-right: 8px;
  font-size: 1.15rem;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(252, 82, 0, 0.4);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.04);
  color: #ffffff;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 24px;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  cursor: pointer;
  transition: var(--transition-fast);
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: var(--border-bright);
  transform: translateY(-2px);
}

.btn-large {
  padding: 16px 32px;
  font-size: 1.05rem;
  border-radius: 14px;
}

.btn-full {
  width: 100%;
  display: flex;
}

/* Gradiente de Texto */
.text-gradient {
  background: linear-gradient(135deg, #AF52DE 0%, #FC5200 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 20px rgba(175, 82, 222, 0.3);
}

/* ───────────────── 1. Header (Glassmorphic) ───────────────── */
#main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  display: flex;
  align-items: center;
  transition: var(--transition-normal);
  border-bottom: 1px solid transparent;
}

.header-glass {
  background-color: rgba(10, 10, 12, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-color) !important;
}

.nav-container {
  width: 100%;
  max-width: var(--container-max-w);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon-bg {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background-image: var(--primary-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.25rem;
  box-shadow: 0 4px 10px rgba(252, 82, 0, 0.3);
}

.logo-text {
  font-family: var(--font-family-title);
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #ffffff;
}

.logo-text .highlight {
  background: linear-gradient(135deg, #AF52DE 0%, #FC5200 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 550;
  color: rgba(255, 255, 255, 0.7);
}

.nav-link:hover, .nav-link.active {
  color: #ffffff;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.mobile-toggle {
  display: none;
  font-size: 1.8rem;
  color: #fff;
  cursor: pointer;
}

/* Menú Móvil Desplegable */
.mobile-menu-dropdown {
  position: fixed;
  top: var(--header-height);
  left: 0;
  width: 100%;
  background-color: rgba(10, 10, 12, 0.98);
  border-bottom: 1px solid var(--border-color);
  z-index: 999;
  display: none;
  padding: 24px 20px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.mobile-menu-dropdown.active {
  display: block;
  animation: slideDown 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-nav-link {
  font-size: 1.1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  padding: 6px 0;
}

.mobile-nav-link:hover {
  color: #fff;
}

.mobile-demo-btn {
  margin-top: 10px;
  text-align: center;
}

/* ───────────────── 2. Hero Section ───────────────── */
.hero-section {
  position: relative;
  padding-top: calc(var(--header-height) + 60px);
  padding-bottom: 80px;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-background-glow {
  position: absolute;
  top: -10%;
  right: -10%;
  width: 60%;
  height: 70%;
  background: radial-gradient(circle, rgba(175, 82, 222, 0.2) 0%, rgba(252, 82, 0, 0.1) 40%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 2;
}

.hero-text-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.badge-new-release {
  display: inline-flex;
  align-items: center;
  background-color: rgba(175, 82, 222, 0.1);
  border: 1px solid rgba(175, 82, 222, 0.25);
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 24px;
  box-shadow: 0 0 15px rgba(175, 82, 222, 0.15);
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #AF52DE;
  margin-right: 8px;
  box-shadow: 0 0 8px #AF52DE;
  animation: pulse 1.5s infinite;
}

.badge-text {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #D3A4F9;
}

.hero-title {
  font-family: var(--font-family-title);
  font-size: 4rem;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.04em;
  margin-bottom: 20px;
  color: #ffffff;
  text-shadow: 0 0 20px rgba(175, 82, 222, 0.3);
}

.hero-subtitle {
  font-size: 1.15rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 36px;
}

.hero-subtitle strong {
  color: #ffffff;
  font-weight: 600;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  margin-bottom: 48px;
}

.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 16px;
}

.avatar-group {
  display: flex;
}

.proof-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  border: 2px solid var(--bg-color);
  margin-left: -12px;
}

.proof-avatar:first-child {
  margin-left: 0;
}

.proof-text {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
}

.proof-text strong {
  color: #ffffff;
}

/* Teléfono Hero */
.hero-image-content {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding-left: 40px;
}

.hero-glow-under-phone {
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(175, 82, 222, 0.4) 0%, rgba(252, 82, 0, 0.2) 60%, transparent 100%);
  filter: blur(60px);
  z-index: 1;
  left: 10%;
}

.hero-avatar-bg {
  position: absolute;
  height: 125%;
  max-height: 850px;
  top: 50%;
  left: 85%;
  transform: translate(-50%, -50%);
  z-index: 0;
  opacity: 1;
  pointer-events: none;
  animation: float-slow 8s ease-in-out infinite;
  filter: drop-shadow(0 0 30px rgba(175, 82, 222, 0.4));
}

@keyframes float-slow {
  0% { transform: translate(-50%, -50%); }
  50% { transform: translate(-50%, -52%); }
  100% { transform: translate(-50%, -50%); }
}

.phone-mockup-wrapper {
  position: relative;
  z-index: 2;
  animation: float 6s ease-in-out infinite;
}

.hero-phone-frame {
  position: relative;
  width: 300px;
  max-width: 78vw;
  aspect-ratio: 1320 / 2868;
  margin: 0 auto;
  border: 12px solid #16161c;
  border-radius: 44px;
  overflow: hidden;
  background-color: #000;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), inset 0 0 12px rgba(255, 255, 255, 0.12);
}

.hero-phone-frame::before {
  content: '';
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 92px;
  height: 24px;
  background-color: #000;
  border-radius: 12px;
  z-index: 10;
}

.hero-mockup-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ───────────────── 3. Stats / Benefits Section ───────────────── */
.stats-section {
  padding: 80px 0;
  position: relative;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.stat-card {
  background-color: rgba(20, 20, 26, 0.45);
  border: 1px solid var(--border-color);
  padding: 40px 32px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform 0.3s, border-color 0.3s;
}

.stat-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-bright);
}

.stat-icon-wrapper {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 24px;
}

.stat-icon-wrapper.color-orange {
  background-color: rgba(252, 82, 0, 0.1);
  color: var(--color-orange);
}

.stat-icon-wrapper.color-green {
  background-color: rgba(52, 201, 89, 0.1);
  color: var(--color-green);
}

.stat-icon-wrapper.color-purple {
  background-color: rgba(175, 82, 222, 0.1);
  color: var(--color-purple);
}

.stat-number {
  font-family: var(--font-family-title);
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  background: linear-gradient(135deg, #ffffff 0%, rgba(255,255,255,0.7) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-label {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}

.stat-description {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
}

/* ───────────────── 4. Interactive Features Section ───────────────── */
.features-section {
  padding: 100px 0;
  position: relative;
  background-color: rgba(10, 10, 12, 0.3);
}

.features-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

.features-tabs-control {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-tab-btn {
  display: flex;
  align-items: flex-start;
  padding: 24px;
  border-radius: 16px;
  border: 1px solid transparent;
  background-color: transparent;
  text-align: left;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.tab-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background-color: rgba(255,255,255,0.03);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-right: 20px;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all var(--transition-fast);
}

.tab-text-area h3 {
  font-family: var(--font-family-title);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.65);
  transition: color var(--transition-fast);
}

.tab-text-area p {
  font-size: 0.925rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.5;
  transition: color var(--transition-fast);
}

/* Estados Activos del Selector */
.feature-tab-btn:hover {
  background-color: rgba(255, 255, 255, 0.02);
}

.feature-tab-btn.active {
  background-color: rgba(20, 20, 26, 0.6);
  border-color: var(--border-color);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.feature-tab-btn.active .tab-text-area h3 {
  color: #ffffff;
}

.feature-tab-btn.active .tab-text-area p {
  color: rgba(255, 255, 255, 0.7);
}

/* Colores específicos activos */
.feature-tab-btn.active[data-target="comunidad"] {
  border-left: 3px solid var(--color-orange);
}
.feature-tab-btn.active[data-target="comunidad"] .tab-icon {
  background-color: rgba(252, 82, 0, 0.12);
  color: var(--color-orange);
  border-color: rgba(252, 82, 0, 0.25);
}

.feature-tab-btn.active[data-target="lobby"] {
  border-left: 3px solid var(--color-yellow);
}
.feature-tab-btn.active[data-target="lobby"] .tab-icon {
  background-color: rgba(255, 215, 0, 0.12);
  color: var(--color-yellow);
  border-color: rgba(255, 215, 0, 0.25);
}

.feature-tab-btn.active[data-target="reservas"] {
  border-left: 3px solid var(--color-green);
}
.feature-tab-btn.active[data-target="reservas"] .tab-icon {
  background-color: rgba(52, 201, 89, 0.12);
  color: var(--color-green);
  border-color: rgba(52, 201, 89, 0.25);
}

.feature-tab-btn.active[data-target="admin"] {
  border-left: 3px solid var(--color-purple);
}
.feature-tab-btn.active[data-target="admin"] .tab-icon {
  background-color: rgba(175, 82, 222, 0.12);
  color: var(--color-purple);
  border-color: rgba(175, 82, 222, 0.25);
}

/* Showcase Contenedor de Pantallas */
.features-showcase {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.showcase-glow {
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(175, 82, 222, 0.15) 0%, rgba(252, 82, 0, 0.1) 40%, transparent 70%);
  filter: blur(40px);
  z-index: 1;
}

.showcase-frame {
  z-index: 2;
  overflow: hidden;
  position: relative;
  background-color: #000;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.7), inset 0 0 12px rgba(255, 255, 255, 0.15);
  transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1), height 0.6s cubic-bezier(0.16, 1, 0.3, 1), border-radius 0.6s cubic-bezier(0.16, 1, 0.3, 1), border 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Teléfono Vertical (Comunidad, Lobby, Reservas) */
.showcase-frame.phone-layout {
  width: 280px;
  height: 570px;
  border: 10px solid #1a1a1f;
  border-radius: 40px;
}

.showcase-frame.phone-layout::before {
  content: '';
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 76px;
  height: 20px;
  background-color: #000;
  border-radius: 10px;
  z-index: 10;
}

/* Tablet Horizontal (Admin) */
.showcase-frame.tablet-layout {
  width: 100%;
  max-width: 530px;
  height: 355px;
  border: 12px solid #1a1a1f;
  border-radius: 28px;
}

.showcase-frame.tablet-layout::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 4px;
  transform: translateY(-50%);
  width: 3px;
  height: 28px;
  background-color: #333;
  border-radius: 2px;
  z-index: 10;
}

.showcase-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: scale(0.97);
  transition: opacity 0.5s ease, transform 0.5s ease;
  pointer-events: none;
}

.showcase-slide.active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.showcase-img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* ajusta las capturas reales perfectamente */
}

/* ── Grilla de beneficios (dentro de Pricing) ── */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 56px;
}

.benefit-card {
  background-color: rgba(20, 20, 26, 0.45);
  border: 1px solid var(--border-color);
  border-radius: 18px;
  padding: 28px 24px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform 0.3s, border-color 0.3s;
}

.benefit-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-bright);
}

.benefit-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 18px;
}

.benefit-icon.color-orange { background-color: rgba(252, 82, 0, 0.12); color: var(--color-orange); }
.benefit-icon.color-green  { background-color: rgba(52, 201, 89, 0.12); color: var(--color-green); }
.benefit-icon.color-purple { background-color: rgba(175, 82, 222, 0.12); color: var(--color-purple); }
.benefit-icon.color-yellow { background-color: rgba(255, 215, 0, 0.12); color: var(--color-yellow); }

.benefit-card h4 {
  font-family: var(--font-family-title);
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

.benefit-card p {
  font-size: 0.92rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.55);
}

/* Tarjetas de guía (clickeables): heredan .benefit-card + CTA al pie */
.guide-card {
  text-decoration: none;
  display: flex;
  flex-direction: column;
}

.guide-card-cta {
  margin-top: auto;
  padding-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--color-orange);
  font-weight: 700;
  font-size: 0.9rem;
  transition: gap 0.3s;
}

.guide-card:hover .guide-card-cta { gap: 11px; }

@media (max-width: 900px) {
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .benefits-grid { grid-template-columns: 1fr; }
}

/* ───────────────── 5. Pricing Section ───────────────── */
.pricing-section {
  padding: 100px 0;
  position: relative;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  gap: 24px;
}

.pricing-card {
  position: relative;
  border-radius: 24px;
  background-color: rgba(20, 20, 26, 0.45);
  border: 1px solid var(--border-color);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-bright);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
}

.card-inner {
  padding: 40px 32px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.plan-name {
  font-family: var(--font-family-title);
  font-size: 1.45rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 8px;
}

.plan-subtitle {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.4;
  margin-bottom: 28px;
  min-height: 40px;
}

.price-box {
  display: flex;
  align-items: baseline;
  margin-bottom: 28px;
}

.price-currency {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-right: 4px;
}

.price-amount {
  font-family: var(--font-family-title);
  font-size: 3rem;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.price-period {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.5);
  margin-left: 6px;
}

.card-divider {
  height: 1px;
  background-color: var(--border-color);
  margin-bottom: 28px;
}

.plan-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
  flex-grow: 1;
}

.plan-features li {
  display: flex;
  align-items: center;
  font-size: 0.925rem;
  color: rgba(255, 255, 255, 0.7);
}

.plan-features ion-icon {
  font-size: 1.2rem;
  margin-right: 12px;
  flex-shrink: 0;
}

.plan-features .check {
  color: var(--color-green);
}

.plan-features .close {
  color: rgba(255, 255, 255, 0.2);
}

.plan-features li.disabled {
  color: rgba(255, 255, 255, 0.35);
}

/* Estilos de Tarjeta Pro Recomendada */
.pricing-card.recommended {
  background-color: rgba(252, 82, 0, 0.03);
  border: 1px solid rgba(252, 82, 0, 0.35);
  box-shadow: 0 10px 30px rgba(252, 82, 0, 0.08);
}

.pricing-card.recommended:hover {
  border-color: rgba(252, 82, 0, 0.6);
  box-shadow: 0 15px 40px rgba(252, 82, 0, 0.18);
}

.recommended-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background-image: var(--primary-gradient);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 900;
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 10px rgba(252, 82, 0, 0.3);
}

.pricing-card.recommended .plan-name {
  color: #ffffff;
}

/* ───────────────── 6. Contact & Demo Section ───────────────── */
.contact-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.contact-glow-left {
  position: absolute;
  top: 20%;
  left: -20%;
  width: 50%;
  height: 60%;
  background: radial-gradient(circle, rgba(252, 82, 0, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.contact-glow-right {
  position: absolute;
  bottom: 0%;
  right: -20%;
  width: 50%;
  height: 60%;
  background: radial-gradient(circle, rgba(175, 82, 222, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.contact-container {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 60px;
}

.contact-text h2 {
  font-family: var(--font-family-title);
  font-size: 3rem;
  font-weight: 900;
  line-spacing: -0.03em;
  margin-bottom: 20px;
  color: #ffffff;
}

.contact-text p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 40px;
}

.contact-bullet-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.bullet-item {
  display: flex;
  align-items: flex-start;
}

.bullet-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-right: 18px;
  flex-shrink: 0;
}

.bullet-icon.color-orange {
  background-color: rgba(252, 82, 0, 0.1);
  color: var(--color-orange);
}

.bullet-icon.color-green {
  background-color: rgba(52, 201, 89, 0.1);
  color: var(--color-green);
}

.bullet-item h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
}

.bullet-item p {
  font-size: 0.925rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0;
}

/* Glassmorphic Form Card */
.contact-form-wrapper {
  position: relative;
  z-index: 5;
}

.glass-form-card {
  background-color: rgba(20, 20, 26, 0.55);
  border: 1px solid var(--border-color);
  padding: 40px 36px;
  border-radius: 24px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.45);
}

.form-card-title {
  font-family: var(--font-family-title);
  font-size: 1.5rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 32px;
}

/* Interactive Float Inputs */
.form-group {
  position: relative;
  margin-bottom: 24px;
  width: 100%;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group input, .form-group textarea {
  width: 100%;
  background-color: var(--bg-input);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 16px;
  font-size: 0.95rem;
  color: #ffffff;
  transition: all var(--transition-fast);
}

.form-group textarea {
  resize: none;
}

.form-group input:focus, .form-group textarea:focus {
  border-color: var(--primary-color);
  background-color: rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 10px rgba(252, 82, 0, 0.15);
}

/* Floating Label Animation */
.floating-label {
  position: absolute;
  top: 16px;
  left: 16px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.95rem;
  pointer-events: none;
  transition: all 0.25s ease;
}

/* Cuando el input tiene foco o está lleno (not placeholder-shown) */
.form-group input:focus ~ .floating-label,
.form-group input:not(:placeholder-shown) ~ .floating-label,
.form-group textarea:focus ~ .floating-label,
.form-group textarea:not(:placeholder-shown) ~ .floating-label {
  top: -8px;
  left: 12px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--primary-color);
  background-color: #0d0d10;
  padding: 2px 8px;
  border-radius: 4px;
}

/* Validación / Mensajes de Error */
.form-group.has-error input {
  border-color: var(--color-red) !important;
}

.error-msg {
  display: none;
  font-size: 0.75rem;
  color: var(--color-red);
  font-weight: 600;
  margin-top: 4px;
  margin-left: 8px;
  position: absolute;
  bottom: -18px;
}

.form-group.has-error .error-msg {
  display: block;
}

.btn-submit {
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.3s;
}

.btn-submit:hover ion-icon {
  transform: translateX(4px);
}

.btn-icon-arrow {
  margin-right: 0 !important;
  margin-left: 8px;
  transition: transform 0.3s;
  order: 2;
}

.form-disclaimer {
  margin-top: 14px;
  text-align: center;
  font-size: 0.8rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.4);
}

/* ───────────────── 7. Footer ───────────────── */
.main-footer {
  background-color: #060608;
  border-top: 1px solid var(--border-color);
  padding: 80px 0 0 0;
  position: relative;
}

.footer-container {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 0.75fr);
  gap: 40px;
  margin-bottom: 60px;
}

.footer-about {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.6;
  margin-top: 20px;
  margin-bottom: 24px;
  max-width: 360px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.6);
}

.social-links a:hover {
  background-color: var(--primary-color);
  color: #fff;
  border-color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px var(--primary-glow);
}

.footer-links-column {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links-column h4 {
  font-family: var(--font-family-title);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 8px;
}

.footer-links-column a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
}

.footer-links-column a:hover {
  color: #ffffff;
  transform: translateX(4px);
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding: 30px 0;
  background-color: #040405;
}

.footer-bottom-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.copyright-text {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
}

.author-credits {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.35);
}

/* ───────────────── TOAST NOTIFICATION ───────────────── */
.toast-notification {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background-color: rgba(20, 20, 26, 0.98);
  border: 1px solid var(--color-green);
  border-radius: 16px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 2000;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 15px rgba(52, 201, 89, 0.15);
  transform: translateY(120px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.toast-notification.active {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.toast-icon-bg {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background-color: rgba(52, 201, 89, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-green);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.toast-text-area h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}

.toast-text-area p {
  font-size: 0.825rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.3;
}

/* ───────────────── ANIMACIONES & REVEALS ───────────────── */
@keyframes pulse {
  0% { transform: scale(1); opacity: 0.9; box-shadow: 0 0 4px var(--primary-color); }
  50% { transform: scale(1.15); opacity: 1; box-shadow: 0 0 12px var(--primary-color); }
  100% { transform: scale(1); opacity: 0.9; box-shadow: 0 0 4px var(--primary-color); }
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

@keyframes slideDown {
  from { transform: translateY(-20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* Scroll Reveal States */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ───────────────── MEDIA QUERIES (RESPONSIVE) ───────────────── */

/* Tablets / Ipads (Max-width: 992px) */
@media (max-width: 992px) {
  html {
    font-size: 15px;
  }
  
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  
  .hero-text-content {
    align-items: center;
  }
  
  .hero-cta-group {
    justify-content: center;
  }
  
  .features-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .features-showcase {
    order: -1; /* Muestra el teléfono arriba en tablets */
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 440px;
    margin: 0 auto;
  }
  
  .contact-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

/* Mobile Screens (Max-width: 768px) */
@media (max-width: 768px) {
  .nav-menu {
    display: none; /* Esconde menú desktop */
  }
  
  #btn-header-demo {
    display: none; /* Esconde botón demo en header */
  }
  
  .mobile-toggle {
    display: block; /* Muestra hamburguesa */
  }
  
  .hero-title {
    font-size: 2.8rem;
  }
  
  .hero-cta-group {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }
  
  .hero-cta-group .btn-primary,
  .hero-cta-group .btn-secondary {
    width: 100%;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* =========================================================================
   WEB APP MOCKUP STYLES
   ========================================================================= */
.webapp-showcase {
  display: flex;
  justify-content: center;
}

.footer-bottom-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.laptop-mockup-wrapper {
  position: relative;
  width: 100%;
  max-width: 900px;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.8));
  margin: 0 auto;
}

.laptop-frame {
  background: #000;
  border: 12px solid #1a1a1c;
  border-radius: 16px 16px 0 0;
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  border-bottom: 2px solid #2a2a2c;
  box-shadow: inset 0 0 0 2px rgba(255,255,255,0.05);
}

.laptop-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.laptop-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  animation: fadeSlider 10s infinite;
}

.laptop-img.slide-1 {
  animation-delay: 0s;
}

.laptop-img.slide-2 {
  animation-delay: 5s;
}

@keyframes fadeSlider {
  0% { opacity: 0; }
  10% { opacity: 1; }
  40% { opacity: 1; }
  50% { opacity: 0; }
  100% { opacity: 0; }
}

.laptop-base {
  height: 24px;
  background: linear-gradient(to bottom, #3a3a3d, #1a1a1c);
  border-radius: 0 0 16px 16px;
  position: relative;
  width: 104%;
  left: -2%;
  box-shadow: inset 0 2px 4px rgba(255,255,255,0.1), 0 10px 20px rgba(0,0,0,0.6);
  z-index: 2;
}

.laptop-base::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 15%;
  height: 6px;
  background: #111;
  border-radius: 0 0 6px 6px;
}

@media (max-width: 768px) {
  .laptop-frame { border-width: 6px; border-radius: 8px 8px 0 0; }
  .laptop-base { height: 12px; border-radius: 0 0 8px 8px; width: 106%; left: -3%; }
  .laptop-base::before { height: 4px; }
}

/* ═══════════════════════════════════════════════════════
   GROWTH UPDATE JUL-2026 — Pilot chip, Pain, Coach, FAQ, Sticky CTA
   ═══════════════════════════════════════════════════════ */

/* ── Pilot chip (hero social proof honesto) ── */
.pilot-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border-radius: 50px;
  background: rgba(252, 82, 0, 0.08);
  border: 1px solid rgba(252, 82, 0, 0.25);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.85rem;
  font-weight: 500;
}

.pilot-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-green);
  box-shadow: 0 0 8px rgba(52, 199, 89, 0.8);
  animation: pilotPulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes pilotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-social-proof .pilot-chip { margin-bottom: 12px; }

/* ── Pain section (Un martes cualquiera) ── */
.pain-section {
  padding: 80px 0 40px 0;
  position: relative;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.pain-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 2rem;
}

.pain-before { border-color: rgba(255, 59, 48, 0.25); }
.pain-after {
  border-color: rgba(52, 199, 89, 0.3);
  background: linear-gradient(180deg, rgba(52, 199, 89, 0.05) 0%, var(--bg-card) 60%);
}

.pain-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1.25rem;
}

.pain-card-header h3 {
  font-family: var(--font-family-title);
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
}

.pain-card-header ion-icon { font-size: 1.5rem; }
.pain-before .pain-card-header ion-icon { color: var(--color-red); }
.pain-after .pain-card-header ion-icon { color: var(--color-green); }

.pain-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pain-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.98rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.75);
}

.pain-list li ion-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.4);
}

.pain-after .pain-list li ion-icon { color: var(--color-green); }
.pain-before .pain-list li ion-icon { color: rgba(255, 59, 48, 0.7); }

/* ── Coach section ── */
.coach-cta-line {
  text-align: center;
  margin-top: 2.5rem;
  color: rgba(255, 255, 255, 0.6);
}

.coach-cta-line a {
  color: var(--primary-color);
  font-weight: 600;
}

.coach-cta-line a:hover { text-decoration: underline; }

/* ── FAQ section ── */
.faq-section { padding: 80px 0; }

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color var(--transition-fast);
}

.faq-item[open] { border-color: rgba(252, 82, 0, 0.35); }

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  font-family: var(--font-family-title);
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
  list-style: none;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary ion-icon {
  font-size: 1.3rem;
  color: var(--primary-color);
  transition: transform var(--transition-normal);
  flex-shrink: 0;
}

.faq-item[open] summary ion-icon { transform: rotate(180deg); }

.faq-answer {
  padding: 0 1.5rem 1.4rem 1.5rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.65;
}

.faq-answer strong { color: rgba(255, 255, 255, 0.95); }

/* ── Sticky CTA mobile ── */
.sticky-cta-mobile {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 900;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: linear-gradient(to top, rgba(10, 10, 12, 0.95) 60%, transparent);
  transform: translateY(110%);
  transition: transform var(--transition-normal);
}

.sticky-cta-mobile.visible { transform: translateY(0); }

.sticky-cta-mobile .btn-primary {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

@media (max-width: 768px) {
  .sticky-cta-mobile { display: block; }
}

/* ── Feature tab auto-rotate progress ── */
.feature-tab-btn { position: relative; overflow: hidden; }

.feature-tab-btn .tab-progress {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0%;
  background: var(--primary-gradient);
  border-radius: 2px;
}

.feature-tab-btn.active .tab-progress.animating {
  animation: tabProgress var(--tab-rotate-ms, 6000ms) linear forwards;
}

@keyframes tabProgress {
  from { width: 0%; }
  to { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  .pilot-dot { animation: none; }
  .feature-tab-btn.active .tab-progress.animating { animation: none; }
  .sticky-cta-mobile { transition: none; }
}

/* ═══════════════════════════════════════════════════════
   GROWTH UPDATE JUL-2026 · Parte 2 (OPUS-1) — Hero video, Retención, Créditos compactos
   ═══════════════════════════════════════════════════════ */

/* ── Botón play sobre el mockup del hero (video-ready) ── */
.hero-phone-frame { position: relative; }

.hero-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: rgba(252, 82, 0, 0.92);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 30px rgba(252, 82, 0, 0.5);
  z-index: 5;
  transition: transform var(--transition-fast), background var(--transition-fast);
}

.hero-play-btn::before {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 2px solid rgba(252, 82, 0, 0.5);
  animation: playPulse 2.4s ease-out infinite;
}

.hero-play-btn ion-icon { font-size: 2rem; margin-left: 4px; }

.hero-play-btn:hover { transform: translate(-50%, -50%) scale(1.08); background: #FC5200; }

@keyframes playPulse {
  0% { transform: scale(1); opacity: 0.9; }
  100% { transform: scale(1.5); opacity: 0; }
}

.hero-phone-frame video.hero-mockup-img { object-fit: cover; width: 100%; height: 100%; }

/* ── Créditos: resumen compacto en 2 líneas ── */
.credits-summary {
  max-width: 820px;
  margin: 3rem auto 0;
  display: grid;
  gap: 14px;
}

.credits-summary-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 14px;
  padding: 1.1rem 1.3rem;
}

.credits-summary-item ion-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.credits-summary-item ion-icon.color-orange { color: var(--color-orange); }
.credits-summary-item ion-icon.color-green { color: var(--color-green); }

.credits-summary-item p { margin: 0; line-height: 1.55; color: rgba(255, 255, 255, 0.78); }
.credits-summary-item strong { color: #fff; }

/* ── Medios de pago: chips chicos en una fila ── */
.payment-methods-compact {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 14px;
}

.payment-methods-label {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

.pay-chips { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }

.pay-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
}

.pay-chip ion-icon { font-size: 1rem; }

.pay-chip-mp {
  background: #009EE3;
  border-color: #009EE3;
  color: #fff;
}
