/* ═══════════════════════════════════════════════════════════════
   SELLIA — Enterprise Dark Design System v2.0
   Ultra-premium dark violet landing page + Isotipo animations
   ═══════════════════════════════════════════════════════════════ */

/* ─── DESIGN TOKENS ─── */
:root {
  --color-bg: #06060F;
  --color-bg-2: #0A0A18;
  --color-bg-card: rgba(10, 10, 26, 0.75);
  --color-surface: rgba(255, 255, 255, 0.03);
  --color-border: rgba(124, 58, 237, 0.22);
  --color-border-hover: rgba(168, 85, 247, 0.6);

  --violet-600: #6D28D9;
  --violet-500: #7C3AED;
  --violet-400: #A855F7;
  --violet-300: #C084FC;
  --violet-200: #DDD6FE;
  --cyan-400: #22D3EE;
  --cyan-300: #67E8F9;

  --color-white: #FFFFFF;
  --color-gray-100: #F4F4F5;
  --color-gray-300: #D4D4D8;
  --color-gray-400: #A1A1AA;
  --color-gray-500: #71717A;
  --color-gray-800: #1C1C2E;

  --gradient-violet: linear-gradient(135deg, var(--violet-500) 0%, var(--violet-400) 100%);
  --gradient-violet-cyan: linear-gradient(135deg, var(--violet-500) 0%, #A855F7 50%, var(--cyan-400) 100%);
  --gradient-text: linear-gradient(135deg, var(--violet-400) 0%, #E879F9 40%, var(--cyan-300) 100%);
  --gradient-hero-bg: radial-gradient(ellipse 80% 60% at 50% -10%, rgba(124, 58, 237, 0.35) 0%, transparent 70%);

  --shadow-violet: 0 0 40px rgba(124, 58, 237, 0.3), 0 0 80px rgba(124, 58, 237, 0.12);
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(124, 58, 237, 0.18);
  --shadow-btn: 0 4px 20px rgba(124, 58, 237, 0.5);
  --shadow-btn-hover: 0 8px 40px rgba(124, 58, 237, 0.75);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  --font-sans: 'Plus Jakarta Sans', 'Inter', system-ui, -apple-system, sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── RESET & BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  font-family: var(--font-sans);
  background-color: var(--color-bg);
  color: var(--color-white);
  line-height: 1.6;
  overflow-x: hidden;
  max-width: 100vw;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ─── CONTAINER ─── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ═══════════════════════════════════════
   CURSOR GLOW (desktop only)
   ═══════════════════════════════════════ */
.cursor-glow {
  position: fixed;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(124, 58, 237, 0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
  opacity: 0;
}

@media (hover: hover) {
  .cursor-glow { opacity: 1; }
}

/* ═══════════════════════════════════════
   TYPOGRAPHY
   ═══════════════════════════════════════ */
.gradient-text {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.highlight-text { color: var(--violet-400); }

.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--violet-400);
  padding: 6px 16px;
  background: rgba(124, 58, 237, 0.1);
  border: 1px solid rgba(124, 58, 237, 0.35);
  border-radius: var(--radius-full);
  margin-bottom: 22px;
}

.section-title {
  font-size: clamp(28px, 4vw, 50px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: var(--color-white);
  margin-bottom: 20px;
}

.section-body {
  font-size: 17px;
  color: var(--color-gray-400);
  line-height: 1.78;
  max-width: 680px;
  margin-bottom: 48px;
}

/* ═══════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 15px;
  border-radius: var(--radius-full);
  padding: 13px 28px;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  border: none;
  white-space: normal;
  position: relative;
  overflow: hidden;
}

.btn-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 30%, rgba(255,255,255,0.15) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
  pointer-events: none;
}

.btn:hover .btn-shine { transform: translateX(100%); }

.btn-primary {
  background: var(--gradient-violet);
  color: var(--color-white);
  box-shadow: var(--shadow-btn);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-btn-hover);
  filter: brightness(1.1);
}

.btn-hero {
  padding: 16px 36px;
  font-size: 16px;
}

.btn-ghost {
  background: rgba(255,255,255,0.06);
  color: var(--color-gray-300);
  border: 1px solid rgba(255,255,255,0.12);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.22);
  color: var(--color-white);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--violet-400);
  border: 1px solid rgba(124, 58, 237, 0.5);
}
.btn-outline:hover {
  background: rgba(124, 58, 237, 0.1);
  border-color: var(--violet-400);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(124, 58, 237, 0.2);
}

.btn-sm { padding: 9px 20px; font-size: 13px; }
.btn-full { width: 100%; justify-content: center; }

.btn-giant {
  padding: 20px 52px;
  font-size: 18px;
  border-radius: var(--radius-full);
  box-shadow: 0 0 60px rgba(124, 58, 237, 0.65);
  letter-spacing: -0.01em;
}
.btn-giant:hover {
  box-shadow: 0 0 100px rgba(124, 58, 237, 0.9);
  transform: translateY(-3px) scale(1.02);
}

.play-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: rgba(124, 58, 237, 0.3);
  border-radius: 50%;
  font-size: 10px;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════
   GLASS CARDS
   ═══════════════════════════════════════ */
.card-glass {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}
.card-glass:hover {
  border-color: var(--color-border-hover);
  box-shadow: 0 10px 50px rgba(0,0,0,0.55), 0 0 0 1px rgba(168,85,247,0.4), 0 0 40px rgba(124,58,237,0.18);
  transform: translateY(-5px);
}

/* ═══════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0;
  background: rgba(6, 6, 15, 0.75);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(124, 58, 237, 0.12);
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(6, 6, 15, 0.96);
  border-bottom-color: rgba(124, 58, 237, 0.28);
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 120px;
  gap: 32px;
}

/* Logo real como imagen */
.logo { display: flex; align-items: center; flex-shrink: 0; }

.logo-img {
  height: 110px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(168, 85, 247, 0.4));
  transition: var(--transition);
}
.logo-img:hover {
  filter: drop-shadow(0 0 16px rgba(168, 85, 247, 0.7));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  margin: 0 auto;
}

.nav-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-gray-400);
  transition: var(--transition);
  position: relative;
  padding: 4px 0;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gradient-violet);
  transform: scaleX(0);
  transition: var(--transition);
  border-radius: 1px;
}
.nav-link:hover { color: var(--color-white); }
.nav-link:hover::after { transform: scaleX(1); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
}
.hamburger span {
  width: 22px;
  height: 2px;
  background: var(--color-gray-300);
  border-radius: 2px;
  transition: var(--transition);
  display: block;
}

/* ═══════════════════════════════════════
   HERO
   ═══════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 150px 0 120px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

/* Aurora blobs */
.aurora {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.aurora-1 {
  width: 800px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(124, 58, 237, 0.32) 0%, transparent 70%);
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  animation: driftAurora1 9s ease-in-out infinite alternate;
}

.aurora-2 {
  width: 500px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(168, 85, 247, 0.2) 0%, transparent 70%);
  top: 30%;
  left: 65%;
  animation: driftAurora2 11s ease-in-out infinite alternate-reverse;
}

.aurora-3 {
  width: 350px;
  height: 350px;
  background: radial-gradient(ellipse, rgba(34, 211, 238, 0.1) 0%, transparent 70%);
  bottom: 10%;
  left: 10%;
  animation: driftAurora3 13s ease-in-out infinite alternate;
}

@keyframes driftAurora1 {
  from { transform: translateX(-50%) translateY(0px) scale(1); opacity: 0.5; }
  to   { transform: translateX(-50%) translateY(-40px) scale(1.05); opacity: 0.7; }
}
@keyframes driftAurora2 {
  from { transform: translate(0, 0); opacity: 0.3; }
  to   { transform: translate(-30px, 30px); opacity: 0.5; }
}
@keyframes driftAurora3 {
  from { transform: translate(0, 0); opacity: 0.2; }
  to   { transform: translate(40px, -20px); opacity: 0.35; }
}

/* Grid overlay */
.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(124, 58, 237, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124, 58, 237, 0.055) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 85% 80% at 50% 40%, black 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 85% 80% at 50% 40%, black 20%, transparent 75%);
}

/* Floating particles */
.particle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  animation: floatParticle linear infinite;
}

.p1 { width: 4px; height: 4px; background: var(--violet-400); left: 20%; top: 60%; animation-duration: 14s; animation-delay: 0s; }
.p2 { width: 3px; height: 3px; background: var(--cyan-400); left: 75%; top: 40%; animation-duration: 18s; animation-delay: 3s; }
.p3 { width: 5px; height: 5px; background: var(--violet-300); left: 45%; top: 80%; animation-duration: 11s; animation-delay: 6s; }
.p4 { width: 3px; height: 3px; background: var(--violet-400); left: 85%; top: 70%; animation-duration: 16s; animation-delay: 1s; }
.p5 { width: 4px; height: 4px; background: var(--cyan-300); left: 10%; top: 30%; animation-duration: 20s; animation-delay: 8s; }

@keyframes floatParticle {
  0%   { opacity: 0; transform: translateY(0px) scale(0.5); }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { opacity: 0; transform: translateY(-120px) scale(1.2); }
}

/* ── Isotipo Hero (elemento visual dominante) ── */
.hero-isotipo-container {
  position: absolute;
  right: calc(max(4%, (100vw - 1200px) / 2 - 20px));
  top: 50%;
  transform: translateY(-50%);
  width: 320px;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 1;
}

.hero-isotipo-img {
  width: 220px;
  height: 220px;
  object-fit: contain;
  filter: drop-shadow(0 0 30px rgba(124, 58, 237, 0.6)) drop-shadow(0 0 60px rgba(168, 85, 247, 0.3));
  animation: isotipoFloat 6s ease-in-out infinite alternate, isotipoGlow 3s ease-in-out infinite alternate;
  position: relative;
  z-index: 2;
}

@keyframes isotipoFloat {
  from { transform: translateY(0px) rotate(0deg); }
  to   { transform: translateY(-20px) rotate(2deg); }
}

@keyframes isotipoGlow {
  from { filter: drop-shadow(0 0 20px rgba(124, 58, 237, 0.5)) drop-shadow(0 0 40px rgba(168, 85, 247, 0.25)); }
  to   { filter: drop-shadow(0 0 40px rgba(124, 58, 237, 0.85)) drop-shadow(0 0 80px rgba(168, 85, 247, 0.5)) drop-shadow(0 0 120px rgba(34, 211, 238, 0.2)); }
}

/* Rings pulsantes alrededor del isotipo */
.isotipo-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid;
  opacity: 0;
  animation: ringPulse 3s ease-out infinite;
}

.ring-1 {
  width: 240px;
  height: 240px;
  border-color: rgba(124, 58, 237, 0.5);
  animation-delay: 0s;
}
.ring-2 {
  width: 290px;
  height: 290px;
  border-color: rgba(168, 85, 247, 0.3);
  animation-delay: 1s;
}
.ring-3 {
  width: 340px;
  height: 340px;
  border-color: rgba(168, 85, 247, 0.15);
  animation-delay: 2s;
}

@keyframes ringPulse {
  0%   { transform: scale(0.8); opacity: 0.8; }
  100% { transform: scale(1.15); opacity: 0; }
}

.isotipo-glow {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(124, 58, 237, 0.2) 0%, transparent 65%);
  animation: glowPulse 3s ease-in-out infinite alternate;
}

@keyframes glowPulse {
  from { opacity: 0.5; transform: scale(0.9); }
  to   { opacity: 1; transform: scale(1.1); }
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  max-width: 760px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 20px;
  background: rgba(124, 58, 237, 0.14);
  border: 1px solid rgba(124, 58, 237, 0.42);
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  color: var(--violet-300);
  animation: fadeInDown 0.9s ease both;
}

.badge-pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--violet-400);
  box-shadow: 0 0 10px rgba(168, 85, 247, 0.9);
  animation: badgePulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes badgePulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.7; }
}

.hero-title {
  font-size: clamp(42px, 6.5vw, 82px);
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: -0.035em;
  color: var(--color-white);
  animation: fadeInUp 0.9s 0.1s ease both;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--color-gray-400);
  max-width: 660px;
  line-height: 1.78;
  animation: fadeInUp 0.9s 0.2s ease both;
}

.hero-subtitle strong { color: #E4E4E7; }

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeInUp 0.9s 0.3s ease both;
}

.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--color-gray-500);
  animation: fadeInUp 0.9s 0.4s ease both;
}

.proof-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--violet-400);
  box-shadow: 0 0 10px rgba(168, 85, 247, 0.9);
  flex-shrink: 0;
  animation: badgePulse 2s ease-in-out infinite;
}

/* Scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.scroll-mouse {
  width: 24px;
  height: 38px;
  border: 2px solid rgba(124, 58, 237, 0.5);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.scroll-wheel {
  width: 3px;
  height: 8px;
  background: var(--violet-400);
  border-radius: 2px;
  animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(14px); opacity: 0; }
}

/* ═══════════════════════════════════════
   SECTIONS COMMON
   ═══════════════════════════════════════ */
.section { padding: 110px 0; }

.section::before {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(124,58,237,0.35), transparent);
  margin-bottom: 110px;
}

/* ═══════════════════════════════════════
   PAIN SECTION
   ═══════════════════════════════════════ */
.pain-section {
  background: radial-gradient(ellipse 60% 50% at 50% 100%, rgba(124,58,237,0.07) 0%, transparent 70%);
}

.pain-section .section-title { max-width: 740px; }

.pain-emphasis {
  font-size: 21px;
  line-height: 1.5;
  color: var(--color-gray-300);
  margin-bottom: 56px;
}

.pain-emphasis strong { color: var(--color-white); font-weight: 800; }

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

.pain-card {
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
}

.pain-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-violet-cyan);
  opacity: 0.8;
}

.pain-icon-wrap {
  width: 60px;
  height: 60px;
  background: rgba(124, 58, 237, 0.1);
  border: 1px solid rgba(124, 58, 237, 0.2);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.pain-icon { font-size: 28px; }

.pain-card-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.pain-card-body {
  font-size: 15px;
  color: var(--color-gray-400);
  line-height: 1.7;
}

.pain-card-body strong { color: var(--violet-300); }

/* ═══════════════════════════════════════
   SOLUTION / FEATURES
   ═══════════════════════════════════════ */
.solution-section { text-align: center; }

.solution-section .section-body {
  margin-left: auto;
  margin-right: auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  text-align: left;
}

.feature-card { padding: 38px 36px; }

.feature-icon-wrap {
  width: 64px;
  height: 64px;
  background: rgba(124, 58, 237, 0.12);
  border: 1px solid rgba(124, 58, 237, 0.25);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition: var(--transition);
}

.feature-card:hover .feature-icon-wrap {
  background: rgba(124, 58, 237, 0.2);
  border-color: rgba(168, 85, 247, 0.5);
  box-shadow: 0 0 20px rgba(124, 58, 237, 0.2);
}

.feature-icon { font-size: 34px; }

.feature-title {
  font-size: 19px;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 12px;
  letter-spacing: -0.015em;
}

.feature-body {
  font-size: 15px;
  color: var(--color-gray-400);
  line-height: 1.72;
}

/* ═══════════════════════════════════════
   SHOWCASE / PRODUCT
   ═══════════════════════════════════════ */
.showcase-section { overflow: visible; }

.showcase-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.showcase-text .section-body { margin-bottom: 28px; }

.showcase-link {
  font-size: 15px;
  font-weight: 700;
  color: var(--violet-400);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.showcase-link:hover {
  color: var(--violet-300);
}

.link-arrow {
  transition: transform var(--transition);
  display: inline-block;
}
.showcase-link:hover .link-arrow { transform: translateX(6px); }

/* Dashboard mock */
.showcase-visual { position: relative; }

.dashboard-mockup {
  background: rgba(10, 10, 24, 0.97);
  border: 1px solid rgba(124, 58, 237, 0.38);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(124,58,237,0.18),
    0 25px 90px rgba(0, 0, 0, 0.65),
    0 0 60px rgba(124, 58, 237, 0.15);
  transform: perspective(1200px) rotateY(-7deg) rotateX(3deg);
  transition: var(--transition-slow);
}

.dashboard-mockup:hover {
  transform: perspective(1200px) rotateY(-2deg) rotateX(1deg);
}

.dashboard-glow {
  position: absolute;
  inset: -40px;
  background: radial-gradient(ellipse at center, rgba(124,58,237,0.2) 0%, transparent 65%);
  pointer-events: none;
  z-index: -1;
}

/* Showcase isotipo small decoration */
.showcase-isotipo {
  position: absolute;
  top: -30px;
  right: -30px;
  width: 90px;
  height: 90px;
  z-index: 10;
  pointer-events: none;
}

.showcase-isotipo-img {
  width: 90px;
  height: 90px;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(124, 58, 237, 0.7));
  animation: isotipoFloat 5s ease-in-out infinite alternate;
}

.dashboard-topbar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 20px;
  background: rgba(124, 58, 237, 0.08);
  border-bottom: 1px solid rgba(124,58,237,0.18);
}

.db-dot { width: 10px; height: 10px; border-radius: 50%; }
.db-dot-r { background: #FF5F56; }
.db-dot-y { background: #FFBD2E; }
.db-dot-g { background: #27C93F; }

.db-title {
  margin-left: 8px;
  font-size: 12px;
  color: var(--color-gray-500);
  font-weight: 500;
  flex: 1;
}

.db-status {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: #34D399;
  font-weight: 600;
}

.db-live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #34D399;
  animation: badgePulse 1.5s ease-in-out infinite;
  box-shadow: 0 0 6px rgba(52, 211, 153, 0.8);
}

.dashboard-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.kpi-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.kpi-card {
  background: rgba(124, 58, 237, 0.07);
  border: 1px solid rgba(124,58,237,0.18);
  border-radius: var(--radius-md);
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.kpi-label {
  font-size: 10px;
  color: var(--color-gray-500);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.kpi-value {
  font-size: 24px;
  font-weight: 900;
  color: var(--color-white);
  letter-spacing: -0.025em;
  line-height: 1;
}

.kpi-violet { color: var(--violet-400); }

.kpi-delta {
  font-size: 11px;
  font-weight: 700;
}
.kpi-delta.positive { color: #34D399; }

.chart-area {
  background: rgba(124, 58, 237, 0.04);
  border: 1px solid rgba(124,58,237,0.14);
  border-radius: var(--radius-md);
  padding: 16px;
}

.chart-label {
  font-size: 11px;
  color: var(--color-gray-500);
  margin-bottom: 14px;
  font-weight: 500;
}

.chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 80px;
}

.bar-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  height: 100%;
  justify-content: flex-end;
}

.bar {
  width: 100%;
  border-radius: 4px 4px 0 0;
  transition: var(--transition);
}

.bar-violet { background: rgba(124,58,237,0.55); }
.bar-violet:hover { background: rgba(168,85,247,0.8); }
.bar-glow { background: var(--gradient-violet); box-shadow: 0 0 14px rgba(168,85,247,0.75); }
.bar-day { font-size: 10px; color: var(--color-gray-500); }

.lead-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.lead-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  background: rgba(255,255,255,0.02);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.05);
  transition: var(--transition);
}
.lead-item:hover { background: rgba(124,58,237,0.06); border-color: rgba(124,58,237,0.2); }

.lead-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}

.av-1 { background: rgba(124,58,237,0.3); color: var(--violet-300); }
.av-2 { background: rgba(59,130,246,0.3); color: #93C5FD; }
.av-3 { background: rgba(236,72,153,0.3); color: #F9A8D4; }

.lead-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.lead-name { font-size: 12px; font-weight: 600; color: var(--color-white); }

.lead-status {
  font-size: 10px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  display: inline-block;
  width: fit-content;
}

.status-closed { background: rgba(52,211,153,0.15); color: #34D399; }
.status-followup { background: rgba(251,191,36,0.15); color: #FBB724; }
.status-hot { background: rgba(239,68,68,0.15); color: #F87171; }

.lead-value {
  font-size: 13px;
  font-weight: 700;
  color: var(--violet-400);
}

/* ═══════════════════════════════════════
   COMPARISON TABLE
   ═══════════════════════════════════════ */
.comparison-section { text-align: center; }

.comparison-table {
  margin-top: 16px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(124,58,237,0.28);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.table-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.table-col {
  padding: 22px 36px;
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}

.col-bad {
  background: rgba(239,68,68,0.05);
  color: var(--color-gray-300);
  border-right: 1px solid rgba(124,58,237,0.2);
}

.col-good {
  background: rgba(124,58,237,0.14);
  color: var(--violet-300);
}

.col-icon { font-size: 18px; }

.col-isotipo {
  width: 28px;
  height: 28px;
  object-fit: contain;
  filter: drop-shadow(0 0 6px rgba(168, 85, 247, 0.6));
}

.table-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(124,58,237,0.12);
}

.table-row-alt .cell-bad { background: rgba(255,255,255,0.01); }
.table-row-alt .cell-good { background: rgba(124,58,237,0.06); }

.table-cell {
  padding: 22px 36px;
  font-size: 15px;
  line-height: 1.65;
  text-align: left;
}

.cell-bad {
  color: var(--color-gray-500);
  background: transparent;
  border-right: 1px solid rgba(124,58,237,0.14);
}

.cell-good {
  color: var(--color-gray-300);
  background: rgba(124,58,237,0.04);
}

.cell-good strong { color: var(--color-white); }

/* ═══════════════════════════════════════
   PRICING — 3 planes (Pyme Pro / Pro / Empresa)
   ═══════════════════════════════════════ */
.pricing-section { text-align: center; }
.pricing-section .section-body { margin-left: auto; margin-right: auto; }

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-card {
  padding: 44px 38px;
  text-align: left;
  position: relative;
}

.pricing-featured {
  border-color: rgba(168,85,247,0.55);
  box-shadow:
    0 0 0 1px rgba(168,85,247,0.35),
    0 25px 70px rgba(124,58,237,0.25),
    0 0 40px rgba(124,58,237,0.12);
  transform: translateY(-10px);
}

.pricing-featured:hover { transform: translateY(-16px); }

.popular-badge {
  display: inline-block;
  padding: 6px 16px;
  background: var(--gradient-violet);
  color: white;
  font-size: 12px;
  font-weight: 700;
  border-radius: var(--radius-full);
  margin-bottom: 22px;
  box-shadow: 0 4px 16px rgba(124, 58, 237, 0.4);
}

.plan-tier {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gray-400);
  margin-bottom: 4px;
}

.plan-tier-featured { color: var(--violet-400); }

.plan-subtitle {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}

.plan-tagline {
  font-size: 13px;
  color: var(--color-gray-500);
  margin-bottom: 28px;
  font-style: italic;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.price-currency {
  font-size: 22px;
  font-weight: 600;
  color: var(--color-gray-400);
}

.price-amount {
  font-size: clamp(36px, 10vw, 48px);
  font-weight: 900;
  color: var(--color-white);
  letter-spacing: -0.045em;
  line-height: 1;
}

.price-period {
  font-size: 14px;
  color: var(--color-gray-500);
  font-weight: 500;
}

.plan-pitch {
  font-size: 14px;
  color: var(--color-gray-400);
  line-height: 1.65;
  margin-bottom: 28px;
  padding: 16px;
  background: rgba(124, 58, 237, 0.06);
  border-radius: var(--radius-md);
  border-left: 2px solid var(--violet-500);
}

.plan-pitch strong { color: var(--color-gray-200, #E4E4E7); }

.plan-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}

.feature-item {
  font-size: 14px;
  color: var(--color-gray-400);
  line-height: 1.5;
  padding-left: 4px;
}

.feature-item strong { color: var(--color-gray-200, #E4E4E7); }

/* ═══════════════════════════════════════
   FINAL CTA
   ═══════════════════════════════════════ */
.final-cta {
  position: relative;
  text-align: center;
  padding: 120px 0 140px;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(124,58,237,0.45), transparent);
  margin-bottom: 120px;
}

.cta-aurora {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cta-glow-1 {
  position: absolute;
  width: 700px;
  height: 700px;
  background: radial-gradient(ellipse, rgba(124,58,237,0.28) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  filter: blur(70px);
}

.cta-glow-2 {
  position: absolute;
  width: 400px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(34, 211, 238, 0.1) 0%, transparent 70%);
  top: 30%;
  left: 38%;
  border-radius: 50%;
  filter: blur(80px);
}

/* Isotipo CTA decoration */
.cta-isotipo-wrap {
  position: absolute;
  right: 6%;
  top: 50%;
  transform: translateY(-50%);
  width: 180px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0.4;
}

.cta-isotipo-img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  filter: drop-shadow(0 0 20px rgba(124, 58, 237, 0.5));
  animation: isotipoFloat 7s ease-in-out infinite alternate;
}

.cta-isotipo-ring {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(124, 58, 237, 0.3);
  border-radius: 50%;
  animation: ringPulse 4s ease-out infinite;
}

.cta-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
}

.cta-badge {
  display: inline-block;
  padding: 7px 20px;
  background: rgba(124, 58, 237, 0.14);
  border: 1px solid rgba(124, 58, 237, 0.42);
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  color: var(--violet-400);
  letter-spacing: 0.04em;
}

.cta-title {
  font-size: clamp(34px, 5.5vw, 64px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--color-white);
  max-width: 820px;
}

.cta-body {
  font-size: 18px;
  color: var(--color-gray-400);
  max-width: 580px;
  line-height: 1.72;
}

.cta-sub {
  font-size: 14px;
  color: var(--color-gray-500);
}

/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */
.footer {
  border-top: 1px solid transparent;
  border-image: linear-gradient(90deg, transparent, rgba(124,58,237,0.4), transparent) 1;
  background: rgba(4, 4, 10, 0.98);
  padding: 64px 0 0;
}

.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 44px;
  flex-wrap: wrap;
}

.footer-logo-link { display: inline-block; }

.footer-logo-img {
  height: 110px;
  width: auto;
  object-fit: contain;
  margin-bottom: 12px;
  filter: drop-shadow(0 0 6px rgba(168, 85, 247, 0.3));
}

.footer-tagline {
  font-size: 13px;
  color: var(--color-gray-500);
  font-style: italic;
}

.footer-nav {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.footer-link {
  font-size: 14px;
  color: var(--color-gray-500);
  transition: var(--transition);
  font-weight: 500;
}
.footer-link:hover { color: var(--violet-400); }

.footer-social { display: flex; gap: 12px; }

.social-icon {
  color: var(--color-gray-500);
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}
.social-icon:hover {
  color: var(--violet-400);
  background: rgba(124,58,237,0.1);
  border-color: rgba(124,58,237,0.3);
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 20px 28px;
  text-align: center;
  font-size: 12px;
  color: var(--color-gray-500);
  max-width: 1200px;
  margin: 0 auto;
}

.footer-legal-link {
  color: var(--violet-400);
  transition: var(--transition);
}
.footer-legal-link:hover { color: var(--violet-300); }

/* ═══════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════ */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-24px); }
  to   { opacity: 1; transform: translateY(0); }
}

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

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.75s cubic-bezier(0.4, 0, 0.2, 1), transform 0.75s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* ═══════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════ */
@media (max-width: 1100px) {
  .hero-isotipo-container {
    width: 240px;
    height: 240px;
    right: 1%;
  }
  .hero-isotipo-img { width: 155px; height: 155px; }
  .ring-1 { width: 170px; height: 170px; }
  .ring-2 { width: 205px; height: 205px; }
  .ring-3 { width: 245px; height: 245px; }
}

@media (max-width: 1024px) {
  .showcase-inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .dashboard-mockup {
    transform: none;
    max-width: 560px;
    margin: 0 auto;
  }

  .dashboard-mockup:hover {
    transform: translateY(-4px);
  }
}

@media (max-width: 900px) {
  .hero-isotipo-container {
    opacity: 0.5;
    right: 1%;
    width: 200px;
    height: 200px;
  }
  .hero-isotipo-img { width: 130px; height: 130px; }
  .ring-1 { width: 140px; height: 140px; }
  .ring-2 { width: 175px; height: 175px; }
  .ring-3 { width: 210px; height: 210px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(6,6,15,0.98);
    padding: 28px;
    gap: 28px;
    border-bottom: 1px solid rgba(124,58,237,0.2);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
  }

  .nav-inner .btn-sm { display: none; }

  /* Isotipo hero se oculta en mobile para no solaparse con texto */
  .hero-isotipo-container { display: none; }

  .pain-cards { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .pricing-cards { grid-template-columns: 1fr; max-width: 520px; }

  .pricing-featured { transform: none; }
  .pricing-featured:hover { transform: translateY(-4px); }

  .hero-ctas { flex-direction: column; width: 100%; }
  .hero-ctas .btn { width: 100%; justify-content: center; }

  .table-header, .table-row { grid-template-columns: 1fr; }
  .cell-bad, .col-bad {
    border-right: none;
    border-bottom: 1px solid rgba(124,58,237,0.12);
  }
  .table-col { padding: 14px 20px; }
  .table-cell { padding: 14px 20px; }

  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-brand { align-items: center; display: flex; flex-direction: column; }

  .section::before { margin-bottom: 70px; }
  .cta-isotipo-wrap { display: none; }
  .showcase-isotipo { display: none; }
}

@media (max-width: 500px) {
  .container { padding: 0 16px; overflow: hidden; }
  .logo-img { height: 72px; }
  .hero-title { font-size: clamp(32px, 8vw, 42px); }
  .cta-title { font-size: clamp(28px, 7vw, 36px); }
  .kpi-row { grid-template-columns: 1fr; gap: 8px; }
  .section { padding: 60px 0; }
  .pricing-card { padding: 32px 18px; }
  .btn-giant { padding: 16px 20px; font-size: 16px; width: 100%; white-space: normal; }
  .table-cell, .table-col { padding: 14px 16px; font-size: 14px; }
  .hero-subtitle { font-size: 16px; }
  .pain-card { padding: 28px 20px; }
  .feature-card { padding: 28px 20px; }
}

/* ═══════════════════════════════════════
   DEMO FORM (CTA section)
   ═══════════════════════════════════════ */
.demo-form {
  width: 100%;
  max-width: 680px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
}

.form-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-gray-400);
  letter-spacing: 0.02em;
}

.form-input {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(124, 58, 237, 0.3);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  font-size: 15px;
  font-family: var(--font-sans);
  color: var(--color-white);
  outline: none;
  transition: var(--transition);
  -webkit-appearance: none;
}

.form-input::placeholder { color: var(--color-gray-500); }

.form-input:focus {
  border-color: var(--violet-400);
  background: rgba(124, 58, 237, 0.08);
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.15);
}

.form-input.error {
  border-color: #F87171;
  box-shadow: 0 0 0 3px rgba(248, 113, 113, 0.15);
}

.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 40px;
  background: rgba(52, 211, 153, 0.07);
  border: 1px solid rgba(52, 211, 153, 0.3);
  border-radius: var(--radius-xl);
  max-width: 560px;
  text-align: center;
}

.success-icon { font-size: 48px; }

.success-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--color-white);
}

.success-body {
  font-size: 15px;
  color: var(--color-gray-400);
  line-height: 1.7;
}

@media (max-width: 600px) {
  .form-grid { grid-template-columns: 1fr; }
  .demo-form { max-width: 100%; }
}

/* ═══════════════════════════════════════
   WHATSAPP FLOATING WIDGET
   ═══════════════════════════════════════ */
.wa-widget {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
}

.wa-fab {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(37, 211, 102, 0.5), 0 2px 8px rgba(0,0,0,0.3);
  transition: var(--transition);
  position: relative;
  flex-shrink: 0;
}

.wa-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 40px rgba(37, 211, 102, 0.7);
}

.wa-fab-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 20px;
  height: 20px;
  background: #F87171;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--color-bg);
  animation: badgePulse 2s ease-in-out infinite;
}

.wa-popup {
  width: 320px;
  background: var(--color-bg-2);
  border: 1px solid rgba(124, 58, 237, 0.35);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6), 0 0 40px rgba(124,58,237,0.12);
  transform-origin: bottom right;
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
  opacity: 0;
  transform: scale(0.85) translateY(10px);
  pointer-events: none;
}

.wa-popup.open {
  opacity: 1;
  transform: scale(1) translateY(0);
  pointer-events: all;
}

.wa-popup-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  background: rgba(37, 211, 102, 0.1);
  border-bottom: 1px solid rgba(37, 211, 102, 0.15);
}

.wa-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(124, 58, 237, 0.2);
  border: 2px solid rgba(37, 211, 102, 0.4);
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wa-avatar img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.wa-info { flex: 1; }

.wa-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-white);
}

.wa-status {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: #34D399;
  font-weight: 500;
}

.wa-online-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #34D399;
  animation: badgePulse 1.5s ease-in-out infinite;
}

.wa-close {
  background: none;
  border: none;
  color: var(--color-gray-500);
  cursor: pointer;
  font-size: 16px;
  padding: 4px;
  line-height: 1;
  transition: var(--transition);
}
.wa-close:hover { color: var(--color-white); }

.wa-popup-body {
  padding: 20px 18px;
}

.wa-bubble {
  background: rgba(255,255,255,0.06);
  border-radius: 4px 14px 14px 14px;
  padding: 14px 16px;
  position: relative;
}

.wa-bubble p {
  font-size: 14px;
  color: var(--color-gray-300);
  line-height: 1.6;
  margin-bottom: 6px;
}
.wa-bubble p:last-of-type { margin-bottom: 8px; }

.wa-time {
  font-size: 10px;
  color: var(--color-gray-500);
  display: block;
  text-align: right;
}

.wa-popup-footer {
  padding: 16px 18px 20px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.wa-cta-text {
  font-size: 11px;
  color: var(--color-gray-500);
  text-align: center;
  font-style: italic;
}

.wa-start-btn {
  display: block;
  text-align: center;
  padding: 12px 20px;
  background: #25D366;
  color: white;
  font-size: 14px;
  font-weight: 700;
  font-family: var(--font-sans);
  border-radius: var(--radius-full);
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
}

.wa-start-btn:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5);
}

@media (max-width: 500px) {
  .wa-widget { bottom: 18px; right: 16px; }
  .wa-popup { width: calc(100vw - 32px); }
}
