/* ============================================
   closr · Value Data palette (Indigo + Blue)
   ============================================ */

:root {
  /* Brand — Value Data */
  --indigo:        #6366F1;
  --indigo-dark:   #4F46E5;
  --indigo-light:  #E0E7FF;
  --indigo-50:     #EEF2FF;
  --blue:          #3B82F6;
  --blue-dark:     #2563EB;

  /* Neutrals (slate scale) */
  --navy:          #0F172A;
  --slate-800:     #1E293B;
  --slate-600:     #475569;
  --slate-500:     #64748B;
  --slate-400:     #94A3B8;
  --slate-200:     #E2E8F0;
  --slate-100:     #F1F5F9;
  --slate-50:      #F8FAFC;
  --white:         #FFFFFF;

  /* Semantic */
  --bg:            var(--white);
  --surface:       var(--slate-50);
  --text:          var(--navy);
  --text-soft:     var(--slate-500);
  --border:        var(--slate-200);

  /* Type */
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Layout */
  --container: 1200px;
  --radius-sm: 8px;
  --radius:    12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  /* Shadows */
  --shadow-soft: 0 4px 6px -1px rgba(99, 102, 241, .10), 0 2px 4px -1px rgba(99, 102, 241, .06);
  --shadow:      0 10px 25px -5px rgba(15, 23, 42, .08), 0 4px 8px -2px rgba(15, 23, 42, .04);
  --shadow-lg:   0 25px 50px -12px rgba(15, 23, 42, .15);
  --shadow-indigo: 0 10px 40px -10px rgba(99, 102, 241, .35);

  /* Gradient */
  --gradient-indigo: linear-gradient(135deg, #6366F1 0%, #3B82F6 100%);
  --gradient-indigo-soft: linear-gradient(135deg, #EEF2FF 0%, #DBEAFE 100%);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4 { margin: 0; line-height: 1.2; letter-spacing: -0.025em; color: var(--text); }
p { margin: 0; }

/* Selection + Focus + Scrollbar (Value Data style) */
::selection { background: var(--indigo-light); color: var(--navy); }
:focus-visible { outline: 2px solid var(--indigo); outline-offset: 4px; border-radius: 8px; }
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--slate-100); }
::-webkit-scrollbar-thumb { background: var(--indigo); border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: var(--indigo-dark); }

/* ---------- Layout ---------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: 10px;
  border: 1px solid transparent;
  font-family: inherit;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.01em;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
  white-space: nowrap;
  cursor: pointer;
}
.btn-sm  { padding: 9px 16px;  font-size: 14px; }
.btn-xs  { padding: 7px 12px;  font-size: 13px; border-radius: 8px; }

.btn-primary {
  background: var(--indigo);
  color: var(--white);
  box-shadow: var(--shadow-indigo);
}
.btn-primary:hover {
  background: var(--indigo-dark);
  transform: translateY(-2px);
  box-shadow: 0 16px 50px -10px rgba(99, 102, 241, .50);
}

.btn-secondary {
  background: var(--gradient-indigo);
  color: var(--white);
  background-size: 200% 200%;
  animation: gradient-shift 6s ease infinite;
}
.btn-secondary:hover { transform: translateY(-1px); }

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.btn-ghost:hover {
  background: var(--white);
  border-color: var(--indigo);
  color: var(--indigo);
}

/* ---------- Scroll progress bar (Value Data pattern) ---------- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: var(--gradient-indigo);
  z-index: 9999;
  transition: width 0.1s linear;
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 3px;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(5, 8, 19, 0.50);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: box-shadow .3s ease, background .3s ease, border-color .3s ease, color .3s ease;
  color: rgba(255, 255, 255, 0.85);
}
.site-header .brand-word { color: var(--white); }
.site-header .brand-by { color: rgba(255, 255, 255, 0.45); border-left-color: rgba(255, 255, 255, 0.18); }
.site-header .brand-by strong { color: var(--indigo-light); }
.site-header .site-nav a {
  color: rgba(255, 255, 255, 0.7);
}
.site-header .site-nav a:hover {
  color: var(--white);
  background: rgba(99, 102, 241, 0.18);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 20px rgba(15, 23, 42, .06);
  border-bottom-color: var(--slate-100);
  color: var(--text);
}
.site-header.scrolled .brand-word { color: var(--navy); }
.site-header.scrolled .brand-by { color: var(--slate-400); border-left-color: var(--slate-200); }
.site-header.scrolled .brand-by strong { color: var(--indigo); }
.site-header.scrolled .site-nav a { color: var(--slate-600); }
.site-header.scrolled .site-nav a:hover { color: var(--indigo); background: var(--indigo-50); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}
.brand-mark { display: inline-flex; }
.brand-word {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--navy);
}
.brand-by {
  font-size: 11px;
  color: var(--slate-400);
  letter-spacing: 0.02em;
  font-weight: 500;
  margin-left: 4px;
  padding-left: 10px;
  border-left: 1px solid var(--slate-200);
}
.brand-by strong { color: var(--indigo); font-weight: 700; }

.site-nav {
  display: flex;
  gap: 4px;
  font-size: 14px;
  font-weight: 500;
}
.site-nav a {
  padding: 8px 14px;
  border-radius: 8px;
  color: var(--slate-600);
  transition: color .2s, background .2s;
}
.site-nav a:hover { color: var(--indigo); background: var(--indigo-50); }

@media (max-width: 920px) {
  .site-nav { display: none; }
  .brand-by { display: none; }
}

/* ---------- Hero ---------- */
/* ============================================
   HERO — Cosmic editorial (vambe-style)
   ============================================ */
.hero {
  padding: 0;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.hero-cosmic {
  background: #050813;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* Cosmic background image */
.cosmic-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.cosmic-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.85) saturate(1.15);
  animation: cosmic-drift 30s ease-in-out infinite alternate;
}
@keyframes cosmic-drift {
  0%   { transform: scale(1.05) translate(0, 0); }
  100% { transform: scale(1.1)  translate(-1%, -1%); }
}

/* Dark gradient on top for legibility */
.cosmic-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 30%, transparent 0%, rgba(5, 8, 19, 0.4) 60%, rgba(5, 8, 19, 0.85) 100%),
    linear-gradient(180deg, rgba(5, 8, 19, 0.3) 0%, transparent 30%, transparent 70%, rgba(5, 8, 19, 0.9) 100%);
  z-index: 1;
}

/* Flying WhatsApp icons — drift up across the cosmic backdrop */
.floating-wa {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}
.wa-fly {
  position: absolute;
  display: inline-flex;
  opacity: 0;
  will-change: transform, opacity;
  animation: wa-fly-up var(--dur, 18s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
  filter: drop-shadow(0 0 14px var(--glow, rgba(99, 102, 241, 0.55)));
}
.wa-fly svg {
  width: var(--size, 36px);
  height: var(--size, 36px);
  color: var(--c, rgba(99, 102, 241, 0.55));
}

/* Drift trajectory: from below-the-fold up + slight horizontal sway + slow rotate */
@keyframes wa-fly-up {
  0%   { transform: translate(0, 110vh) rotate(-12deg) scale(0.9);  opacity: 0; }
  8%   { opacity: 0.85; }
  35%  { transform: translate(-30px, 50vh)  rotate(8deg)  scale(1); }
  60%  { transform: translate(20px, 10vh)   rotate(-6deg) scale(1); }
  88%  { opacity: 0.65; }
  100% { transform: translate(-10px, -30vh) rotate(14deg) scale(0.85); opacity: 0; }
}

/* Individual variations: position, color, size, duration, delay */
.wa-fly.wa-1 { left:  6%;  --size: 38px; --dur: 16s; --delay:  0s; --c: rgba(74, 222, 128, 0.45);   --glow: rgba(34, 197, 94, 0.40); }
.wa-fly.wa-2 { left: 18%;  --size: 26px; --dur: 22s; --delay: -4s; --c: rgba(255, 255, 255, 0.35);  --glow: rgba(255, 255, 255, 0.25); }
.wa-fly.wa-3 { left: 32%;  --size: 32px; --dur: 19s; --delay: -8s; --c: rgba(99, 102, 241, 0.55);   --glow: rgba(99, 102, 241, 0.55); }
.wa-fly.wa-4 { left: 48%;  --size: 42px; --dur: 24s; --delay: -2s; --c: rgba(74, 222, 128, 0.50);   --glow: rgba(34, 197, 94, 0.45); }
.wa-fly.wa-5 { left: 62%;  --size: 28px; --dur: 17s; --delay:-12s; --c: rgba(96, 165, 250, 0.55);   --glow: rgba(59, 130, 246, 0.55); }
.wa-fly.wa-6 { left: 76%;  --size: 36px; --dur: 21s; --delay: -6s; --c: rgba(255, 255, 255, 0.40);  --glow: rgba(199, 210, 254, 0.45); }
.wa-fly.wa-7 { left: 88%;  --size: 30px; --dur: 18s; --delay:-10s; --c: rgba(99, 102, 241, 0.50);   --glow: rgba(99, 102, 241, 0.55); }
.wa-fly.wa-8 { left: 12%;  --size: 22px; --dur: 26s; --delay:-15s; --c: rgba(74, 222, 128, 0.40);   --glow: rgba(34, 197, 94, 0.35); }

/* Floating particles */
.cosmic-particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}
.cosmic-particles span {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--indigo-light);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--indigo);
  opacity: 0;
  animation: particle-float 8s ease-in-out infinite;
}
.cosmic-particles span:nth-child(1) { left: 12%; top: 22%; animation-delay: 0s;   }
.cosmic-particles span:nth-child(2) { left: 87%; top: 35%; animation-delay: 1.6s; }
.cosmic-particles span:nth-child(3) { left: 28%; top: 78%; animation-delay: 3.2s; }
.cosmic-particles span:nth-child(4) { left: 65%; top: 18%; animation-delay: 4.8s; }
.cosmic-particles span:nth-child(5) { left: 50%; top: 65%; animation-delay: 2.4s; }
.cosmic-particles span:nth-child(6) { left: 8%;  top: 55%; animation-delay: 5.6s; }
@keyframes particle-float {
  0%, 100% { opacity: 0;   transform: translate(0, 0);     }
  10%      { opacity: 0.9; transform: translate(0, 0);     }
  90%      { opacity: 0.9; transform: translate(20px, -30px); }
  100%     { opacity: 0;   transform: translate(40px, -50px); }
}

/* Content layer */
.hero-cosmic-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 140px 24px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

/* Kicker on the dark background */
.hero-cosmic-content .hero-kicker-overlay {
  position: relative;
  top: 0;
  left: 0;
  transform: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(99, 102, 241, 0.12);
  border: 1px solid rgba(99, 102, 241, 0.35);
  color: var(--indigo-light);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* Echo headline — repeated 3 times with decreasing opacity */
.hero-echo {
  position: relative;
  font-size: clamp(40px, 7vw, 96px);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 0.98;
  color: var(--white);
  text-transform: none;
  margin: 8px 0 4px;
  max-width: 1080px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-echo .echo-line {
  display: block;
  position: relative;
}
.hero-echo .echo-1 {
  color: var(--white);
  text-shadow:
    0 0 60px rgba(99, 102, 241, 0.6),
    0 4px 30px rgba(0, 0, 0, 0.5);
}
.hero-echo .echo-2 {
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.18);
  filter: blur(1px);
  z-index: -1;
  white-space: nowrap;
}
.hero-echo .echo-3 {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(99, 102, 241, 0.10);
  filter: blur(2px);
  z-index: -2;
  white-space: nowrap;
}
.echo-accent {
  background: linear-gradient(135deg, #818CF8 0%, #60A5FA 50%, #34D399 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  background-size: 200% 200%;
  animation: gradient-shift 5s ease infinite;
  display: inline-block;
}

/* Cosmic lede */
.hero-cosmic-lede {
  max-width: 720px;
  font-size: 19px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
  margin: 12px auto 6px;
}
.hero-cosmic-lede strong {
  color: var(--white);
  font-weight: 600;
}

/* CTAs over dark */
.btn-lg { padding: 16px 28px; font-size: 16px; }
.btn-cosmic-ghost {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  backdrop-filter: blur(10px);
}
.btn-cosmic-ghost:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: var(--indigo-light);
  color: var(--white);
  transform: translateY(-2px);
}

/* Trust on dark */
.hero-cosmic-trust {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 8px;
}
.check-cosmic {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  background: rgba(34, 197, 94, 0.2);
  color: #4ADE80;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 800;
  margin-right: 5px;
}

/* Cosmic stats — glass row */
.hero-cosmic-stats {
  margin-top: 36px;
  display: flex;
  gap: 28px;
  align-items: center;
  padding: 22px 36px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--radius-lg);
  flex-wrap: wrap;
  justify-content: center;
}
.cosmic-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  min-width: 100px;
}
.cosmic-stat-value {
  font-size: 36px;
  font-weight: 800;
  background: linear-gradient(135deg, #FFFFFF 0%, #C7D2FE 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.03em;
  line-height: 1;
}
.cosmic-stat-suffix {
  font-size: 18px;
  font-weight: 700;
  color: var(--indigo-light);
  margin-left: 1px;
}
.cosmic-stat-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
}
.cosmic-stat-divider {
  width: 1px;
  height: 32px;
  background: rgba(255, 255, 255, 0.12);
}

@media (max-width: 800px) {
  .hero-cosmic-stats { gap: 16px; padding: 18px 22px; }
  .cosmic-stat-value { font-size: 26px; }
  .cosmic-stat-divider { display: none; }
}

/* Scroll hint */
.hero-scroll-hint {
  margin-top: 24px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 600;
  animation: scroll-bob 2.2s ease-in-out infinite;
}
.hero-scroll-hint:hover { color: var(--indigo-light); }
@keyframes scroll-bob {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(6px); }
}

/* Hide legacy banner styles */
.hero-banner { display: none; }
.hero-banner-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 21 / 9;
  max-height: 520px;
  min-height: 360px;
  overflow: hidden;
  background: linear-gradient(90deg, #FEF2F2 0%, #F8FAFC 50%, #ECFDF5 100%);
}
.hero-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: contrast(1.05) saturate(1.05);
  animation: hero-zoom 18s ease-in-out infinite alternate;
}
@keyframes hero-zoom {
  0%   { transform: scale(1); }
  100% { transform: scale(1.04); }
}

/* Kicker overlay top-center of banner */
.hero-kicker-overlay {
  position: absolute;
  top: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--indigo-dark);
  border: 1px solid var(--indigo-light);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border-radius: 999px;
  z-index: 4;
  box-shadow: var(--shadow);
}

/* Compact text below the banner */
.hero-text {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
}
.hero-text h1 {
  margin: 0 0 18px;
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: var(--navy);
}
.hero-text .lede {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-soft);
  max-width: 720px;
  margin: 0 auto;
}
.hero-text .lede strong { color: var(--navy); font-weight: 600; }
.hero-text .hero-ctas {
  margin-top: 26px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.hero-text .hero-trust {
  margin-top: 20px;
  justify-content: center;
}

/* Banner overlay labels */
.banner-label {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 14px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 20px 50px -15px rgba(15, 23, 42, .25);
  max-width: 280px;
  z-index: 3;
}
.banner-label strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 2px;
  color: var(--navy);
}
.banner-label span:not(.banner-icon) {
  font-size: 12px;
  color: var(--text-soft);
  line-height: 1.4;
}
.banner-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  flex-shrink: 0;
}
.banner-label-bad {
  top: 32px;
  left: 32px;
  border: 1px solid #FCA5A5;
  animation: label-float-1 5s ease-in-out infinite;
}
.banner-label-bad .banner-icon {
  background: #FEE2E2;
  color: #991B1B;
}
.banner-label-bad strong { color: #991B1B; }
.banner-label-good {
  bottom: 32px;
  right: 32px;
  border: 1px solid #86EFAC;
  animation: label-float-2 6s ease-in-out infinite;
}
.banner-label-good .banner-icon {
  background: #22C55E;
  color: #FFFFFF;
}
.banner-label-good strong { color: #166534; }

@keyframes label-float-1 {
  0%, 100% { transform: translate(0, 0); }
  50%      { transform: translate(-3px, -6px); }
}
@keyframes label-float-2 {
  0%, 100% { transform: translate(0, 0); }
  50%      { transform: translate(4px, -8px); }
}

@media (max-width: 720px) {
  .banner-label { max-width: 200px; padding: 10px 12px; gap: 8px; }
  .banner-label strong { font-size: 13px; }
  .banner-label span:not(.banner-icon) { font-size: 11px; }
  .banner-icon { width: 32px; height: 32px; font-size: 15px; }
  .banner-label-bad { top: 16px; left: 16px; }
  .banner-label-good { bottom: 16px; right: 16px; }
  .hero-banner-frame { aspect-ratio: 4 / 3; max-height: none; }
}

/* Stats row below text */
.hero-text .hero-stats {
  margin: 44px auto 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  box-shadow: var(--shadow);
  max-width: 900px;
}
.hero-text .stat {
  text-align: center;
  padding: 0 8px;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero-text .stat:last-child { border-right: none; }
.hero-text .stat-value { font-size: 34px; }

@media (max-width: 800px) {
  .hero-text .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    padding: 18px 20px;
  }
  .hero-text .stat { border-right: none; }
  .hero-text .stat:nth-child(odd) { border-right: 1px solid var(--border); }
  .hero-text .stat-value { font-size: 26px; }
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 500px at 80% 0%, rgba(99, 102, 241, .10), transparent 60%),
    radial-gradient(800px 500px at 0% 80%, rgba(59, 130, 246, .08), transparent 60%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
  align-items: center;
  min-height: 780px;
  z-index: 1;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  background: var(--indigo-50);
  color: var(--indigo-dark);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  border-radius: 999px;
  border: 1px solid var(--indigo-light);
}
.kicker.indigo { background: var(--indigo-50); color: var(--indigo-dark); border-color: var(--indigo-light); }

.dot-live {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22C55E;
  display: inline-block;
  position: relative;
  flex-shrink: 0;
}
.dot-live::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: #22C55E;
  opacity: .3;
  animation: pulse-live 2s ease-out infinite;
}
@keyframes pulse-live {
  0% { transform: scale(0.8); opacity: .5; }
  100% { transform: scale(2); opacity: 0; }
}

.hero h1 {
  margin: 22px 0 22px;
  font-size: clamp(38px, 5vw, 62px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: var(--navy);
}
.gradient-text {
  background: var(--gradient-indigo);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  background-size: 200% 200%;
  animation: gradient-shift 6s ease infinite;
}

.lede {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-soft);
  max-width: 580px;
}
.hero-ctas {
  margin-top: 28px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-trust {
  margin-top: 24px;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 14px;
  color: var(--text-soft);
}
.hero-trust .check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px; height: 16px;
  background: var(--indigo-50);
  color: var(--indigo);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
  margin-right: 4px;
}

/* Hero stats (Value Data style) */
.hero-stats {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.stat { display: flex; flex-direction: column; gap: 2px; }
.stat-value {
  font-size: 32px;
  font-weight: 800;
  background: var(--gradient-indigo);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.03em;
  line-height: 1;
  display: inline-block;
}
.stat-suffix {
  font-size: 18px;
  font-weight: 700;
  color: var(--indigo);
  margin-left: 1px;
}
.stat-label {
  font-size: 12px;
  color: var(--text-soft);
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 600;
}

/* Legacy carousel styles — superseded by hero-banner full-width */
.hero-visual { display: none; }
.hero-carousel { display: none; }

.hero-carousel .slide {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 70px; /* espacio para los controls */
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.88) translateY(30px) rotateY(10deg);
  transition: opacity .9s cubic-bezier(0.4, 0, 0.2, 1),
              transform .9s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  z-index: 1;
}
.hero-carousel .slide.active {
  opacity: 1;
  transform: scale(1) translateY(0) rotateY(0);
  pointer-events: auto;
  z-index: 3;
}
.hero-carousel .slide img {
  width: auto;
  max-width: 100%;
  max-height: 720px;
  height: 100%;
  display: block;
  border-radius: 42px;
  object-fit: contain;
  box-shadow:
    0 40px 100px -20px rgba(15, 23, 42, .45),
    0 80px 120px -40px rgba(99, 102, 241, .42),
    0 0 0 1px rgba(255, 255, 255, 0.04);
  animation: float-phone 7s ease-in-out infinite;
}
@keyframes float-phone {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-14px); }
}

/* Big aura glow filling the hero right side */
.hero-carousel::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 780px;
  height: 780px;
  transform: translate(-50%, -50%);
  background:
    radial-gradient(circle at 35% 30%, rgba(99, 102, 241, .42), transparent 55%),
    radial-gradient(circle at 70% 70%, rgba(59, 130, 246, .35), transparent 55%),
    radial-gradient(circle at 50% 50%, rgba(249, 115, 22, .18), transparent 60%);
  filter: blur(60px);
  z-index: 0;
  animation: hero-glow 8s ease-in-out infinite;
  pointer-events: none;
}
@keyframes hero-glow {
  0%, 100% { transform: translate(-50%, -50%) scale(1);    opacity: .9; }
  50%      { transform: translate(-50%, -50%) scale(1.12); opacity: 1; }
}

/* Carousel controls */
.carousel-controls {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.slide-tag {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  box-shadow: var(--shadow);
  letter-spacing: -0.01em;
  transition: all .3s ease;
  white-space: nowrap;
}
.carousel-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}
.carousel-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: var(--slate-200);
  cursor: pointer;
  transition: all .35s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0;
}
.carousel-dots .dot:hover {
  background: var(--slate-400);
  transform: scale(1.2);
}
.carousel-dots .dot.active {
  background: var(--indigo);
  width: 32px;
  border-radius: 999px;
}

/* Floating cards reposicionadas para el carousel */
.hero-carousel .float-card {
  z-index: 4;
}

/* Section images (generated) */
.section-img {
  width: 100%;
  max-width: 520px;
  height: auto;
  border-radius: 24px;
  box-shadow:
    var(--shadow-lg),
    0 24px 48px -12px rgba(99, 102, 241, .22);
  display: block;
  margin: 0 auto;
  transition: transform .4s ease, box-shadow .4s ease;
}
.section-img:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow:
    var(--shadow-lg),
    0 32px 60px -12px rgba(99, 102, 241, .32);
}
.section-img-dark {
  box-shadow:
    var(--shadow-lg),
    0 30px 60px -12px rgba(15, 23, 42, .35);
}

/* Legacy iPhone mockup hidden via <template> wrap */
template { display: none; }

/* Old phone mockup - keep CSS for legacy reference */
.iphone {
  width: 300px;
  height: 612px;
  position: relative;
  margin: 0 auto;
  animation: float-phone 6s ease-in-out infinite;
}
@keyframes float-phone {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

/* Titanium body */
.iphone-frame {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #3A3A3C 0%, #1C1C1E 50%, #3A3A3C 100%);
  border-radius: 48px;
  padding: 8px;
  box-shadow:
    0 0 0 2px #4A4A4C,
    inset 0 0 0 1px rgba(255, 255, 255, 0.08),
    var(--shadow-lg),
    0 30px 60px -15px rgba(99, 102, 241, .30);
  overflow: hidden;
}
.iphone-frame::before {
  content: '';
  position: absolute;
  inset: 4px;
  border-radius: 44px;
  background: #000;
  z-index: 0;
}

/* Side buttons (Action + Volume left, Power right) */
.iphone-side-buttons {
  position: absolute;
  left: -2px;
  top: 90px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 5;
}
.action-btn {
  display: block;
  width: 4px;
  height: 30px;
  background: linear-gradient(90deg, #2A2A2C, #4A4A4C);
  border-radius: 2px 0 0 2px;
}
.vol-up, .vol-down {
  display: block;
  width: 4px;
  height: 50px;
  background: linear-gradient(90deg, #2A2A2C, #4A4A4C);
  border-radius: 2px 0 0 2px;
}
.power-btn {
  position: absolute;
  right: -2px;
  top: 150px;
  width: 4px;
  height: 80px;
  background: linear-gradient(270deg, #2A2A2C, #4A4A4C);
  border-radius: 0 2px 2px 0;
  z-index: 5;
}

/* Dynamic Island */
.dynamic-island {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
  height: 32px;
  background: #000;
  border-radius: 20px;
  z-index: 10;
}
.dynamic-island::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #1a1a2e, #000);
  box-shadow: 0 0 4px rgba(99, 102, 241, .35);
}

/* Screen */
.iphone-screen {
  position: absolute;
  inset: 12px;
  border-radius: 38px;
  background: #ECE5DD;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  z-index: 1;
}

/* iOS Status bar */
.ios-status {
  background: #075E54;
  color: #FFFFFF;
  height: 44px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 0 22px 6px;
  font-size: 13px;
  font-weight: 600;
  z-index: 2;
}
.ios-time { font-variant-numeric: tabular-nums; letter-spacing: 0.02em; }
.ios-icons { display: flex; align-items: center; gap: 5px; color: #FFFFFF; }

/* WhatsApp header */
.wa-header {
  background: #075E54;
  color: #FFFFFF;
  padding: 6px 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  height: 50px;
}
.wa-back { color: #FFFFFF; flex-shrink: 0; }
.wa-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.wa-info { flex: 1; min-width: 0; }
.wa-name {
  font-size: 13px;
  font-weight: 600;
  color: #FFFFFF;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.wa-status {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.85);
}
.wa-status .dot-live { background: #4ADE80; }
.wa-status .dot-live::before { background: #4ADE80; }
.wa-icon { color: #FFFFFF; opacity: 0.9; flex-shrink: 0; margin-left: 4px; }

/* WhatsApp chat body */
.wa-body {
  flex: 1;
  background-color: #ECE5DD;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180' opacity='0.05'><path d='M40 40 l8 -4 l8 4 l-4 8 l4 8 l-8 -4 l-8 4 l4 -8 z' fill='%23000'/><circle cx='120' cy='80' r='3' fill='%23000'/><circle cx='60' cy='130' r='2' fill='%23000'/><path d='M100 150 q5 -5 10 0' stroke='%23000' fill='none' stroke-width='1'/></svg>");
  padding: 12px 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  overflow: hidden;
}
.wa-date {
  align-self: center;
  background: #E1F2F9;
  color: #54656F;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 4px 9px;
  border-radius: 6px;
  margin: 4px 0 6px;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
}
.wa-typing {
  font-size: 10px;
  color: #54656F;
  align-self: flex-start;
  background: #FFFFFF;
  padding: 6px 10px;
  border-radius: 8px;
  border-bottom-left-radius: 2px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.06);
  margin-top: 4px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.wa-typing .dots { display: inline-flex; gap: 2px; }
.wa-typing .dots span {
  width: 4px;
  height: 4px;
  background: var(--indigo);
  border-radius: 50%;
  animation: typing-pulse 1.4s infinite;
}
.wa-typing .dots span:nth-child(2) { animation-delay: 0.2s; }
.wa-typing .dots span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typing-pulse {
  0%, 60%, 100% { opacity: 0.3; transform: translateY(0); }
  30%           { opacity: 1;   transform: translateY(-2px); }
}

/* WhatsApp input bar */
.wa-input {
  background: #F0F0F0;
  padding: 7px 8px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-top: 1px solid #DDD;
}
.wa-icon-mute { font-size: 14px; opacity: 0.5; }
.wa-placeholder {
  flex: 1;
  background: #FFFFFF;
  padding: 6px 12px;
  border-radius: 18px;
  font-size: 11px;
  color: #999;
}
.wa-mic {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.chat-row {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  max-width: 88%;
  margin-top: 2px;
}
.chat-row span:not(.badge-ia) {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 8px;
  font-size: 12px;
  line-height: 1.35;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.08);
  position: relative;
}
.chat-row.mine {
  align-self: flex-end;
  flex-direction: row-reverse;
}
.chat-row.mine span {
  background: #DCF8C6;
  color: #111B21;
  border-bottom-right-radius: 2px;
}
.chat-row.theirs {
  align-self: flex-start;
}
.chat-row.theirs span:not(.badge-ia) {
  background: #FFFFFF;
  color: #111B21;
  border-bottom-left-radius: 2px;
}
.badge-ia {
  display: inline-flex;
  align-items: center;
  padding: 3px 7px;
  background: var(--indigo);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  border-radius: 6px;
  flex-shrink: 0;
  margin-top: 2px;
}
.chat-time {
  margin-top: auto;
  text-align: center;
  color: var(--slate-400);
  font-size: 11px;
  padding-top: 8px;
  border-top: 1px dashed var(--border);
}

.float-card {
  position: absolute;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 14px;
  box-shadow: var(--shadow);
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.float-1 {
  top: 120px;
  right: 0;
  animation: float-card-1 5s ease-in-out infinite;
}
@keyframes float-card-1 {
  0%, 100% { transform: translate(0, 0); }
  50%      { transform: translate(-4px, -6px); }
}
.float-mini-icon {
  font-size: 22px;
  line-height: 1;
}
.float-1 strong {
  font-size: 20px;
  background: var(--gradient-indigo);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 800;
  letter-spacing: -0.02em;
  display: block;
}
.float-1 span:not(.dot-live) {
  color: var(--text-soft);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-weight: 600;
}
.float-2 {
  bottom: 200px;
  left: 0;
  max-width: 240px;
  animation: float-card-2 6s ease-in-out infinite;
  z-index: 4;
}
@keyframes float-card-2 {
  0%, 100% { transform: translate(0, 0); }
  50%      { transform: translate(6px, -4px); }
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { margin-top: 60px; }
  .float-1 { right: 20px; }
  .float-2 { left: 20px; }
  .hero-stats { gap: 18px; }
  .stat-value { font-size: 26px; }
}

/* ---------- Animated grid bg (Value Data utility) ---------- */
.animated-grid-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(99, 102, 241, 0.18) 1px, transparent 1px);
  background-size: 40px 40px;
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
  animation: dot-pulse 4s ease-in-out infinite;
  pointer-events: none;
}
@keyframes dot-pulse {
  0%, 100% { opacity: .35; transform: scale(0.95); }
  50%      { opacity: .7;  transform: scale(1.05); }
}

/* ---------- Strip ---------- */
.strip {
  background: var(--slate-50);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
.strip-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 13px;
  color: var(--text-soft);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 600;
}
.strip-inner ul {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0;
  text-transform: none;
  font-size: 14px;
}

/* ---------- Section heads ---------- */
.section-head {
  text-align: center;
  margin-bottom: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.section-title {
  font-size: clamp(30px, 3.6vw, 44px);
  font-weight: 800;
  letter-spacing: -0.03em;
  max-width: 720px;
}
.section-sub {
  color: var(--text-soft);
  font-size: 18px;
  max-width: 600px;
}

/* ---------- Feature sections ---------- */
.feature-section {
  padding: 100px 0;
}
.feature-section.alt {
  background: var(--slate-50);
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.split.reverse .split-visual { order: 2; }
.split.reverse .split-copy   { order: 1; }
.split-copy h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800;
  margin: 16px 0 18px;
  letter-spacing: -0.03em;
}
.split-copy p {
  color: var(--text-soft);
  font-size: 17px;
  line-height: 1.65;
}
.split-copy strong { color: var(--navy); font-weight: 600; }

.check-list {
  margin-top: 22px;
  display: grid;
  gap: 12px;
}
.check-list li {
  position: relative;
  padding-left: 30px;
  color: var(--navy);
  font-size: 15px;
  line-height: 1.5;
}
.check-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  width: 18px;
  height: 18px;
  background: var(--gradient-indigo);
  border-radius: 50%;
  background-image:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M3.5 8 L6.5 11 L12.5 5' stroke='white' stroke-width='2.4' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>"),
    var(--gradient-indigo);
  background-repeat: no-repeat;
  background-position: center;
}

@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split.reverse .split-visual { order: 1; }
  .split.reverse .split-copy { order: 2; }
}

/* ---- Visual: store at night ---- */
.split-visual { position: relative; }
.store-card {
  position: relative;
  background: linear-gradient(180deg, var(--navy) 0%, var(--slate-800) 100%);
  border-radius: var(--radius-xl);
  padding: 36px;
  min-height: 420px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.store-shutter {
  background: linear-gradient(180deg, var(--slate-800) 0%, var(--slate-800) 65%, var(--navy) 65%);
  border-radius: 10px;
  padding: 30px 16px 80px;
  text-align: center;
  position: relative;
  border: 1px solid #334155;
}
.store-shutter::before {
  content: '';
  position: absolute;
  inset: 12px 12px auto 12px;
  height: 4px;
  background: repeating-linear-gradient(90deg, #334155 0 6px, #1e293b 6px 12px);
  border-radius: 2px;
}
.store-sign {
  display: inline-block;
  background: var(--gradient-indigo);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.05em;
}
.store-bubbles {
  position: absolute;
  bottom: 24px;
  right: 24px;
  left: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.bubble {
  display: inline-flex;
  align-items: flex-start;
  gap: 6px;
  padding: 9px 13px;
  border-radius: 14px;
  font-size: 13px;
  max-width: 88%;
  box-shadow: var(--shadow);
}
.bubble.in {
  background: var(--white);
  color: var(--navy);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}
.bubble.out {
  background: var(--gradient-indigo);
  color: var(--white);
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}
.bubble.out .badge-ia { background: rgba(255, 255, 255, 0.25); }
.moon {
  position: absolute;
  top: 24px;
  right: 30px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--indigo-light);
  box-shadow: 0 0 40px rgba(224, 231, 255, .5);
  animation: glow-moon 3s ease-in-out infinite;
}
@keyframes glow-moon {
  0%, 100% { box-shadow: 0 0 30px rgba(224, 231, 255, .35); }
  50%      { box-shadow: 0 0 60px rgba(224, 231, 255, .60); }
}
.stars {
  position: absolute;
  inset: 20px 24px auto auto;
  width: 80px;
  height: 60px;
}
.stars span {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--white);
  border-radius: 50%;
  opacity: 0.6;
  animation: twinkle 3s ease-in-out infinite;
}
.stars span:nth-child(1) { top: 12px; left: 5px; animation-delay: 0s; }
.stars span:nth-child(2) { top: 30px; left: 25px; animation-delay: .8s; }
.stars span:nth-child(3) { top: 5px;  left: 50px; animation-delay: 1.4s; }
.stars span:nth-child(4) { top: 35px; left: 65px; animation-delay: 2.1s; }
@keyframes twinkle {
  0%, 100% { opacity: .3; transform: scale(0.8); }
  50%      { opacity: 1;  transform: scale(1.2); }
}

/* ---- Visual: notification card ---- */
.notif-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px;
  box-shadow: var(--shadow-lg), 0 20px 50px -20px rgba(99, 102, 241, .15);
  max-width: 420px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.notif-head {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-soft);
  font-weight: 500;
}
.notif-head .emoji { font-size: 18px; }
.notif-body {
  margin: 14px 0 18px;
  color: var(--navy);
  font-size: 15px;
  line-height: 1.55;
}
.notif-body strong {
  background: var(--gradient-indigo);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.notif-actions {
  display: flex;
  gap: 8px;
}
.bg-coffee {
  position: absolute;
  font-size: 100px;
  top: 50%;
  right: -30px;
  transform: translateY(-50%);
  opacity: 0.05;
  z-index: 0;
}

/* ---- Visual: kanban ---- */
.kanban {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  background: var(--slate-100);
  padding: 16px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.col {
  background: var(--white);
  border-radius: 10px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 200px;
}
.col-head {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--indigo-dark);
  padding-bottom: 8px;
  border-bottom: 2px solid var(--indigo);
}
.col-head.closed-head { color: #15803D; border-color: #22C55E; }
.card {
  background: var(--slate-50);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px;
  font-size: 12px;
  color: var(--navy);
  font-weight: 500;
  position: relative;
  transition: transform .2s, box-shadow .2s;
}
.card.ghost { opacity: .35; }
.card.highlight {
  background: var(--indigo-50);
  border-color: var(--indigo);
  box-shadow: 0 8px 20px -4px rgba(99, 102, 241, .25);
  transform: translateY(-2px);
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 4px;
  animation: highlight-pulse 3s ease-in-out infinite;
}
@keyframes highlight-pulse {
  0%, 100% { box-shadow: 0 8px 20px -4px rgba(99, 102, 241, .25); }
  50%      { box-shadow: 0 12px 30px -4px rgba(99, 102, 241, .45); }
}
.card.closed {
  background: #DCFCE7;
  border-color: #86EFAC;
  color: #15803D;
}
.sparkle { font-size: 10px; }
.ia-suggest {
  margin-top: 14px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--navy);
  box-shadow: var(--shadow);
  flex-wrap: wrap;
}
.ia-suggest .btn { margin-left: auto; }

@media (max-width: 600px) {
  .kanban { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Differentiators ---------- */
.differentiators {
  padding: 100px 0;
  background: var(--slate-50);
  position: relative;
}
.diff-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.diff-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  transition: border-color .3s, box-shadow .3s;
}
.diff-card:hover {
  border-color: var(--indigo);
  box-shadow: var(--shadow-indigo);
}
.diff-icon {
  font-size: 32px;
  margin-bottom: 16px;
  display: inline-block;
}
.diff-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}
.diff-card p {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.55;
  margin-bottom: 14px;
}
.diff-metric {
  display: inline-block;
  padding: 4px 10px;
  background: var(--indigo-50);
  color: var(--indigo-dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 999px;
}

@media (max-width: 1000px) { .diff-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px)  { .diff-grid { grid-template-columns: 1fr; } }

/* ---------- Hover lift utility ---------- */
.hover-lift { transition: transform .3s ease, box-shadow .3s ease; }
.hover-lift:hover { transform: translateY(-4px); }

/* ---------- Shimmer card (Value Data pattern) ---------- */
.shimmer-card { position: relative; overflow: hidden; }
.shimmer-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(99, 102, 241, 0.10) 40%,
    rgba(99, 102, 241, 0.18) 50%,
    rgba(99, 102, 241, 0.10) 60%,
    transparent 100%
  );
  transform: translateX(-100%);
  pointer-events: none;
}
.shimmer-card:hover::after { animation: shimmer-sweep 1s ease-in-out; }
@keyframes shimmer-sweep {
  to { transform: translateX(100%); }
}

/* ---------- Features row ---------- */
.features-row {
  padding: 100px 0;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.feat {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.feat:hover {
  border-color: var(--indigo);
  box-shadow: var(--shadow-indigo);
}
.feat-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.feat-icon.indigo-bg { background: var(--indigo-50); }
.feat-icon.blue-bg   { background: #DBEAFE; }
.feat h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 6px;
}
.feat p {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.5;
}

@media (max-width: 1000px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px)  { .features-grid { grid-template-columns: 1fr; } }

/* ---------- Audience ---------- */
.audience { padding: 100px 0; background: var(--slate-50); }
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.aud-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: border-color .3s, box-shadow .3s;
}
.aud-card:hover {
  border-color: var(--indigo);
  box-shadow: var(--shadow-indigo);
}
.aud-card.featured-aud {
  background: var(--gradient-indigo);
  color: var(--white);
  border-color: transparent;
}
.aud-card.featured-aud h3 { color: var(--white); }
.aud-card.featured-aud p  { color: rgba(255, 255, 255, .85); }
.aud-icon {
  font-size: 38px;
  display: inline-block;
  margin-bottom: 14px;
}
.aud-card h3 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 10px;
}
.aud-card p {
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.55;
}

@media (max-width: 800px) { .audience-grid { grid-template-columns: 1fr; } }

/* ---------- Pricing ---------- */
.pricing { padding: 100px 0; }
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.price-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.price-card:hover { border-color: var(--indigo); }
.price-card.featured {
  background: linear-gradient(180deg, var(--white) 0%, var(--indigo-50) 100%);
  border-color: var(--indigo);
  box-shadow: var(--shadow-indigo);
  transform: scale(1.03);
}
.ribbon {
  position: absolute;
  top: -12px;
  right: 24px;
  background: var(--gradient-indigo);
  color: var(--white);
  padding: 5px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: var(--shadow-indigo);
}
.price-card h3 {
  font-size: 16px;
  font-weight: 700;
  text-transform: lowercase;
  color: var(--text-soft);
}
.price {
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.amount {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.03em;
  background: var(--gradient-indigo);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.per { color: var(--text-soft); font-size: 14px; }
.price-card ul {
  display: grid;
  gap: 8px;
  margin-bottom: 8px;
}
.price-card li {
  position: relative;
  padding-left: 22px;
  font-size: 14px;
  color: var(--navy);
}
.price-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--indigo);
  font-weight: 700;
}
.price-card .btn { margin-top: auto; }

@media (max-width: 900px) {
  .price-grid { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; }
}

/* ---------- FAQ ---------- */
.faq { padding: 100px 0; background: var(--slate-50); }
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .3s;
}
.faq-item[open] { border-color: var(--indigo); }
.faq-item summary {
  padding: 18px 22px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  color: var(--navy);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 24px;
  color: var(--indigo);
  font-weight: 400;
  transition: transform .3s;
  flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  padding: 0 22px 20px;
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.6;
}

/* ---------- CTA Final ---------- */
.cta-final {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--slate-800) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(700px 350px at 20% 20%, rgba(99, 102, 241, .25), transparent 60%),
    radial-gradient(700px 350px at 80% 80%, rgba(59, 130, 246, .20), transparent 60%);
  pointer-events: none;
}
.cta-final::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
}
.cta-inner {
  position: relative;
  text-align: center;
  z-index: 1;
}
.cta-inner h2 {
  color: var(--white);
  font-size: clamp(32px, 4.2vw, 50px);
  font-weight: 800;
  letter-spacing: -0.03em;
  max-width: 760px;
  margin: 0 auto;
  line-height: 1.15;
}
.cta-inner p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  margin: 18px auto 32px;
  max-width: 600px;
  line-height: 1.6;
}
.cta-form {
  display: flex;
  gap: 8px;
  max-width: 480px;
  margin: 0 auto 18px;
  flex-wrap: wrap;
  justify-content: center;
}
.cta-form input {
  flex: 1;
  min-width: 240px;
  padding: 14px 18px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-size: 15px;
  font-family: inherit;
  outline: none;
  transition: border-color .15s, background .15s, box-shadow .15s;
}
.cta-form input::placeholder { color: rgba(255, 255, 255, 0.45); }
.cta-form input:focus {
  border-color: var(--indigo);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, .25);
}
.cta-inner small {
  display: block;
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
  margin-top: 8px;
}
.cta-inner small.trust { color: rgba(255, 255, 255, 0.55); }
#ctaSuccess, .cta-error {
  display: block;
  font-weight: 600;
  height: 0;
  opacity: 0;
  overflow: hidden;
  transition: opacity .3s, height .3s, margin .3s;
  margin: 0;
}
#ctaSuccess.show, .cta-error.show {
  height: auto;
  opacity: 1;
  margin-top: 12px;
}
#ctaSuccess { color: #4ADE80; }
.cta-error { color: #FCA5A5; }
.cta-error a { color: var(--white); text-decoration: underline; }

/* Honeypot — hidden from humans, visible to bots */
.hp-field {
  position: absolute !important;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Loading spinner on submit button */
#ctaSubmitBtn .btn-spinner {
  display: none;
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: btn-spin .7s linear infinite;
}
#ctaSubmitBtn.loading .btn-text   { opacity: 0.5; }
#ctaSubmitBtn.loading .btn-spinner { display: inline-block; }
#ctaSubmitBtn.loading { cursor: wait; }
@keyframes btn-spin { to { transform: rotate(360deg); } }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.6);
  padding: 64px 0 24px;
  font-size: 14px;
}
.site-footer .brand-word { color: var(--white); }
.footer-tag {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
  line-height: 1.5;
}
.footer-by {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 13px;
}
.footer-by a {
  background: var(--gradient-indigo);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 700;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-grid h4 {
  color: var(--white);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  margin-bottom: 14px;
}
.footer-grid ul { display: grid; gap: 8px; }
.footer-grid a:hover { color: var(--indigo-light); }
.footer-bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom a { color: var(--indigo-light); font-weight: 600; }

@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { justify-content: center; }
}

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- Animations ---------- */
@keyframes gradient-shift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ============================================
   PAIN — Sin closr vs Con closr
   ============================================ */
.pain {
  padding: 100px 0;
  background:
    radial-gradient(900px 500px at 0% 0%, rgba(99, 102, 241, .06), transparent 60%),
    radial-gradient(900px 500px at 100% 100%, rgba(220, 38, 38, .04), transparent 60%),
    var(--white);
}
.pain-kicker {
  background: #FEE2E2;
  color: #991B1B;
  border-color: #FCA5A5;
}

/* Pain stats row */
.pain-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 64px;
}
.pain-stat {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: border-color .3s, box-shadow .3s, transform .3s;
}
.pain-stat::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, #DC2626, #F97316);
  opacity: 0.7;
}
.pain-stat:hover {
  border-color: #FCA5A5;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px -8px rgba(220, 38, 38, .15);
}
.pain-stat-prefix {
  font-size: 28px;
  font-weight: 800;
  color: #DC2626;
  vertical-align: top;
  margin-right: 2px;
}
.pain-stat-value {
  font-size: 56px;
  font-weight: 900;
  color: #DC2626;
  letter-spacing: -0.04em;
  line-height: 1;
  display: inline-block;
}
.pain-stat-suffix {
  font-size: 28px;
  font-weight: 800;
  color: #DC2626;
  margin-left: 2px;
}
.pain-stat-label {
  display: block;
  margin-top: 12px;
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.5;
}

@media (max-width: 800px) {
  .pain-stats { grid-template-columns: 1fr; }
}

/* Before / After comparison */
.pain-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 80px;
  position: relative;
}
.pain-compare::before {
  content: 'VS';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: var(--white);
  border: 2px solid var(--navy);
  color: var(--navy);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.04em;
  z-index: 4;
  box-shadow: var(--shadow);
}
.pain-side {
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  overflow: hidden;
}
.pain-side.pain-lost {
  background: linear-gradient(180deg, #FEF2F2 0%, var(--white) 100%);
  border: 1px solid #FCA5A5;
}
.pain-side.pain-won {
  background: linear-gradient(180deg, #ECFDF5 0%, var(--white) 100%);
  border: 1px solid #86EFAC;
}
.pain-side-head {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pain-side-tag {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  width: fit-content;
}
.pain-side-tag.bad  { background: #FEE2E2; color: #991B1B; }
.pain-side-tag.good { background: #DCFCE7; color: #166534; }
.pain-side-head h3 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.3;
}
.pain-img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: block;
}
.pain-bullets {
  display: grid;
  gap: 8px;
  margin-top: auto;
}
.pain-bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--navy);
}
.bullet-x, .bullet-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  font-weight: 800;
  font-size: 11px;
  flex-shrink: 0;
}
.bullet-x     { background: #FEE2E2; color: #991B1B; }
.bullet-check { background: #DCFCE7; color: #166534; }

@media (max-width: 900px) {
  .pain-compare { grid-template-columns: 1fr; }
  .pain-compare::before { display: none; }
}

/* ============================================
   LIVE animated chat demo
   ============================================ */
.demo-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 56px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--slate-800) 100%);
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
}
.demo-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(700px 350px at 0% 0%, rgba(99, 102, 241, .25), transparent 60%),
    radial-gradient(700px 350px at 100% 100%, rgba(59, 130, 246, .20), transparent 60%);
  pointer-events: none;
}
.demo-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
}
.demo-meta {
  position: relative;
  z-index: 1;
  color: var(--white);
}
.demo-meta .kicker {
  background: rgba(99, 102, 241, .22);
  color: var(--indigo-light);
  border-color: rgba(99, 102, 241, .35);
}
.demo-meta h3 {
  color: var(--white);
  font-size: clamp(26px, 3.2vw, 36px);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 14px 0 12px;
}
.demo-meta > p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 16px;
  margin-bottom: 22px;
}
.demo-features {
  display: grid;
  gap: 10px;
  margin-bottom: 28px;
}
.demo-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
}
.demo-features svg { color: var(--indigo-light); flex-shrink: 0; }
#replayDemo {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.15);
  color: var(--white);
}
#replayDemo:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--indigo-light);
  color: var(--white);
}

/* Demo phone */
.demo-phone-wrap {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.demo-phone {
  width: 280px;
  height: 540px;
  background: linear-gradient(135deg, #3A3A3C 0%, #1C1C1E 50%, #3A3A3C 100%);
  border-radius: 44px;
  padding: 8px;
  position: relative;
  box-shadow:
    0 0 0 2px #4A4A4C,
    0 30px 80px -20px rgba(0, 0, 0, .5),
    0 60px 80px -30px rgba(99, 102, 241, .4);
  animation: float-phone 6s ease-in-out infinite;
}
.demo-island {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 28px;
  background: #000;
  border-radius: 20px;
  z-index: 10;
}
.demo-screen {
  position: relative;
  height: 100%;
  background: #ECE5DD;
  border-radius: 36px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.demo-status {
  background: #075E54;
  color: #FFF;
  height: 44px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 0 22px 6px;
  font-size: 12px;
  font-weight: 600;
}
.demo-status-icons { font-size: 10px; letter-spacing: 1px; opacity: 0.8; }

.demo-header {
  background: #075E54;
  color: #FFF;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  height: 50px;
}
.demo-back { font-size: 22px; line-height: 1; opacity: 0.9; }
.demo-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.demo-info { flex: 1; }
.demo-name { font-size: 13px; font-weight: 600; }
.demo-substatus {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.85);
}
.demo-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4ADE80;
  animation: pulse-live 2s ease-out infinite;
}

.demo-body {
  flex: 1;
  background-color: #ECE5DD;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180' opacity='0.05'><path d='M40 40 l8 -4 l8 4 l-4 8 l4 8 l-8 -4 l-8 4 l4 -8 z' fill='%23000'/><circle cx='120' cy='80' r='3' fill='%23000'/><circle cx='60' cy='130' r='2' fill='%23000'/></svg>");
  padding: 12px 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.demo-date-pill {
  align-self: center;
  background: #E1F2F9;
  color: #54656F;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 4px 9px;
  border-radius: 6px;
  margin: 6px 0 8px;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
}

/* Demo bubbles — animated arrival */
.demo-msg {
  display: flex;
  align-items: flex-start;
  gap: 4px;
  margin-top: 3px;
  max-width: 85%;
  opacity: 0;
  transform: translateY(10px) scale(0.92);
  transition: opacity .3s ease-out, transform .3s ease-out;
}
.demo-msg.show { opacity: 1; transform: none; }
.demo-msg.in   { align-self: flex-start; }
.demo-msg.out  { align-self: flex-end; flex-direction: row-reverse; }

.demo-msg .demo-bubble {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 8px;
  font-size: 12px;
  line-height: 1.35;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.08);
  position: relative;
  color: #111B21;
}
.demo-msg.in  .demo-bubble { background: #FFFFFF; border-bottom-left-radius: 2px; }
.demo-msg.out .demo-bubble { background: #DCF8C6; border-bottom-right-radius: 2px; }
.demo-time {
  font-size: 9px;
  color: #54656F;
  opacity: 0.8;
  margin-top: 2px;
  display: inline-block;
}
.demo-msg.out .demo-bubble::after {
  content: ' ✓✓';
  font-size: 10px;
  color: #4FC3F7;
  margin-left: 4px;
}
.demo-msg .demo-ia-tag {
  display: inline-block;
  padding: 1px 5px;
  background: var(--indigo);
  color: #FFFFFF;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: 4px;
  margin-right: 4px;
  vertical-align: 1px;
}

/* Typing indicator */
.demo-typing {
  align-self: flex-start;
  background: #FFFFFF;
  padding: 8px 12px;
  border-radius: 8px;
  border-bottom-left-radius: 2px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.08);
  display: inline-flex;
  align-items: center;
  gap: 3px;
  margin-top: 4px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .25s, transform .25s;
}
.demo-typing.show { opacity: 1; transform: none; }
.demo-typing span {
  width: 5px; height: 5px;
  background: var(--indigo);
  border-radius: 50%;
  animation: typing-pulse 1.4s infinite;
}
.demo-typing span:nth-child(2) { animation-delay: 0.2s; }
.demo-typing span:nth-child(3) { animation-delay: 0.4s; }

.demo-input-bar {
  background: #F0F0F0;
  padding: 7px 8px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-top: 1px solid #DDD;
}
.demo-input-pill {
  flex: 1;
  background: #FFFFFF;
  padding: 6px 12px;
  border-radius: 18px;
  font-size: 11px;
  color: #999;
}
.demo-mic {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Sticker that appears at the end */
.demo-sticker {
  position: absolute;
  bottom: 30px;
  right: -18px;
  background: var(--white);
  border: 1px solid #86EFAC;
  border-radius: 14px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 12px 30px rgba(34, 197, 94, .35);
  font-size: 13px;
  color: var(--navy);
  opacity: 0;
  transform: translateY(20px) scale(0.85);
  transition: opacity .4s, transform .4s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 3;
}
.demo-sticker.show { opacity: 1; transform: none; }
.demo-sticker-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #22C55E;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
  flex-shrink: 0;
}
.demo-sticker strong {
  display: block;
  color: #166534;
  font-weight: 700;
  font-size: 14px;
}
.demo-sticker span {
  font-size: 11px;
  color: var(--text-soft);
}

@media (max-width: 900px) {
  .demo-wrap { grid-template-columns: 1fr; padding: 36px 24px; gap: 40px; }
  .demo-sticker { right: 10px; bottom: 0; }
}

/* ---------- Casos section ---------- */
.cases {
  padding: 100px 0;
  background: var(--white);
}
.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.case-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: border-color .3s, box-shadow .3s, transform .3s;
}
.case-card:hover {
  border-color: var(--indigo);
  box-shadow: var(--shadow-indigo);
}
.case-card.featured-case {
  background: linear-gradient(180deg, var(--white) 0%, var(--indigo-50) 100%);
  border-color: var(--indigo);
  box-shadow: var(--shadow-indigo);
}
.case-head {
  display: flex;
  align-items: center;
  gap: 12px;
}
.case-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--white);
  flex-shrink: 0;
}
.case-avatar.gradient-bg { background: var(--gradient-indigo); }
.case-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
}
.case-role {
  font-size: 12px;
  color: var(--text-soft);
}
.case-industry {
  margin-left: auto;
  background: var(--indigo-50);
  color: var(--indigo-dark);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
}
.case-metric {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 16px;
  background: var(--slate-50);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.metric { display: flex; flex-direction: column; gap: 2px; }
.metric-value {
  font-size: 26px;
  font-weight: 800;
  background: var(--gradient-indigo);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.03em;
  line-height: 1;
}
.metric-unit {
  font-size: 14px;
  font-weight: 700;
}
.metric-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-soft);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-top: 4px;
}
.metric-prev {
  font-size: 11px;
  color: var(--slate-400);
  font-style: italic;
}
.case-quote {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--slate-600);
  border-left: 3px solid var(--indigo);
  padding-left: 14px;
  font-style: italic;
}
.case-quote strong {
  color: var(--navy);
  font-weight: 600;
  font-style: normal;
}
.case-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px dashed var(--border);
}
.case-tag {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 9px;
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--text-soft);
  border-radius: 6px;
}
.cases-cta {
  margin-top: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 24px 28px;
  background: var(--slate-50);
  border-radius: var(--radius-lg);
  border: 1px dashed var(--indigo-light);
  flex-wrap: wrap;
}
.cases-cta p {
  font-size: 15px;
  color: var(--navy);
  font-weight: 500;
  margin: 0;
}

@media (max-width: 1000px) { .cases-grid { grid-template-columns: 1fr; } }

/* ---------- Nosotros / About ---------- */
.about {
  padding: 100px 0;
  background: var(--slate-50);
}
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: start;
}
.about-copy h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 16px 0 22px;
}
.about-copy p {
  color: var(--text-soft);
  font-size: 16px;
  line-height: 1.65;
  margin-bottom: 14px;
}
.about-copy strong { color: var(--navy); }
.about-lead { font-size: 18px !important; }
.about-stats {
  margin: 32px 0;
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 36px;
  padding: 24px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.about-stat { display: flex; flex-direction: column; gap: 4px; }
.about-stat .stat-value {
  font-size: 32px;
  font-weight: 800;
  background: var(--gradient-indigo);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.03em;
  line-height: 1;
}
.about-stat .stat-suffix {
  font-size: 18px;
  font-weight: 700;
  color: var(--indigo);
}
.about-stat .stat-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 600;
  color: var(--text-soft);
}
.about-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.about-visual { display: grid; gap: 16px; }
.trust-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: grid;
  gap: 18px;
  box-shadow: var(--shadow);
}
.trust-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.trust-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--indigo-50);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.trust-row strong {
  display: block;
  font-size: 14px;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 2px;
}
.trust-row span {
  font-size: 13px;
  color: var(--text-soft);
  line-height: 1.4;
}
.contact-mini {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.85);
  border-radius: var(--radius);
  padding: 18px 22px;
  display: grid;
  gap: 10px;
}
.contact-mini-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
}
.contact-mini-row svg { color: var(--indigo-light); flex-shrink: 0; }
.contact-mini-row a { color: var(--white); transition: color .2s; }
.contact-mini-row a:hover { color: var(--indigo-light); }

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-stats { gap: 18px; }
  .about-stat .stat-value { font-size: 26px; }
}

/* ---------- WhatsApp floating button ---------- */
.whatsapp-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px 14px 14px;
  background: #25D366;
  color: var(--white);
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(37, 211, 102, .35), 0 4px 12px rgba(15, 23, 42, .15);
  transition: transform .25s ease, box-shadow .25s ease;
  font-weight: 600;
  font-size: 15px;
}
.whatsapp-fab:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 32px rgba(37, 211, 102, .45), 0 6px 18px rgba(15, 23, 42, .20);
  background: #1FBA5A;
}
.whatsapp-fab svg { flex-shrink: 0; }
.wa-fab-pulse {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: #25D366;
  z-index: -1;
  animation: wa-pulse 2.4s ease-out infinite;
}
@keyframes wa-pulse {
  0%   { transform: scale(1);   opacity: .55; }
  100% { transform: scale(1.4); opacity: 0; }
}
.wa-fab-label {
  white-space: nowrap;
  letter-spacing: -0.01em;
}

@media (max-width: 600px) {
  .whatsapp-fab { padding: 14px; }
  .wa-fab-label { display: none; }
}

/* ---------- Brand strip (channel icons) ---------- */
.strip-label {
  font-size: 12px;
  color: var(--text-soft);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}
.brand-row {
  display: flex !important;
  align-items: center;
  gap: 28px !important;
  flex-wrap: wrap;
  justify-content: center;
}
.brand-row li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--slate-400);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: -0.01em;
  transition: color .25s ease, transform .25s ease;
  cursor: default;
}
.brand-row li:hover {
  color: var(--indigo);
  transform: translateY(-2px);
}
.brand-row li svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

@media (max-width: 720px) {
  .brand-row { gap: 16px !important; }
  .brand-row li { font-size: 13px; }
  .brand-row li svg { width: 18px; height: 18px; }
}

/* ---------- Pricing channel icons ---------- */
.price-channels {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: var(--white);
  border: 1px solid var(--indigo-light);
  border-radius: 10px;
  margin-bottom: 4px;
}
.ch-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: var(--indigo-50);
  border-radius: 8px;
  color: var(--indigo-dark);
  flex-shrink: 0;
  transition: transform .2s ease;
}
.ch-icon:hover { transform: scale(1.1); }
.ch-text {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-soft);
  margin-left: auto;
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
