/* ============================================================
   POTENCIA IA — styles.css
   Paleta: Midnight Neon
   Fuentes: Bebas Neue / Sora / IBM Plex Sans / Fira Code
   ============================================================ */

/* ── RESET ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
img, svg { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ── DESIGN TOKENS ──────────────────────────────────────────── */
:root {
  /* Colors */
  --bg-base:      #080B12;
  --bg-layer2:    #0E1420;
  --bg-card:      #111A28;
  --bg-card2:     #0D1520;
  --accent:       #00E5CC;
  --accent2:      #AAFF00;
  --accent-glow:  rgba(0, 229, 204, 0.18);
  --accent2-glow: rgba(170, 255, 0, 0.12);
  --text-1:       #E8F0F0;
  --text-2:       #6B8FA8;
  --text-3:       #3D5A6E;
  --border:       #1A2A3A;
  --border-light: #1E3040;
  --whatsapp:     #25D366;
  --whatsapp-dark:#1DA851;

  /* Typography */
  --font-display: 'Bebas Neue', sans-serif;
  --font-heading: 'Sora', sans-serif;
  --font-body:    'IBM Plex Sans', sans-serif;
  --font-mono:    'Fira Code', monospace;

  /* Scale */
  --text-xs:   0.75rem;
  --text-sm:   0.875rem;
  --text-base: 1rem;
  --text-lg:   1.125rem;
  --text-xl:   1.25rem;
  --text-2xl:  1.5rem;
  --text-3xl:  2rem;
  --text-4xl:  2.75rem;
  --text-5xl:  4rem;
  --text-6xl:  6rem;
  --text-7xl:  8rem;

  /* Spacing */
  --sp-1: 0.25rem; --sp-2: 0.5rem;  --sp-3: 0.75rem; --sp-4: 1rem;
  --sp-6: 1.5rem;  --sp-8: 2rem;    --sp-12: 3rem;   --sp-16: 4rem;
  --sp-20: 5rem;   --sp-24: 6rem;   --sp-32: 8rem;

  /* Easing */
  --ease-out:    cubic-bezier(0.0, 0.0, 0.2, 1);
  --ease-in:     cubic-bezier(0.4, 0.0, 1, 1);
  --ease-std:    cubic-bezier(0.4, 0.0, 0.2, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Border radius */
  --r-sm: 0.375rem; --r-md: 0.75rem; --r-lg: 1.25rem; --r-xl: 2rem; --r-full: 9999px;

  /* Shadows */
  --shadow-card: 0 1px 3px rgba(0,0,0,0.4), 0 4px 16px rgba(0,0,0,0.3);
  --shadow-glow: 0 0 32px rgba(0, 229, 204, 0.2);
  --shadow-glow2: 0 0 32px rgba(170, 255, 0, 0.15);
}

/* ── BASE ───────────────────────────────────────────────────── */
body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--text-1);
  background-color: var(--bg-base);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Tech grid background pattern — applied to body */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      60deg,
      transparent,
      transparent 80px,
      rgba(0, 229, 204, 0.018) 80px,
      rgba(0, 229, 204, 0.018) 81px
    ),
    repeating-linear-gradient(
      -60deg,
      transparent,
      transparent 80px,
      rgba(0, 229, 204, 0.012) 80px,
      rgba(0, 229, 204, 0.012) 81px
    );
  pointer-events: none;
  z-index: 0;
}

/* ── LAYOUT UTILITIES ───────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1160px;
  margin-inline: auto;
  padding-inline: var(--sp-6);
}
.container--narrow { max-width: 720px; }

section { position: relative; z-index: 1; }

/* ── TYPOGRAPHY ─────────────────────────────────────────────── */
h1, h2, h3 { line-height: 1.1; }
h1 { font-family: var(--font-display); letter-spacing: 0.04em; }
h2, h3, h4 { font-family: var(--font-heading); }

.label {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
}

.highlight-accent { color: var(--accent); }
.highlight-lime   { color: var(--accent2); }

/* ── BUTTONS ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 0.75rem 1.75rem;
  border-radius: var(--r-full);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--text-sm);
  letter-spacing: 0.02em;
  transition:
    transform 0.2s var(--ease-bounce),
    box-shadow 0.25s var(--ease-std),
    background-color 0.2s var(--ease-std),
    border-color 0.2s var(--ease-std);
  white-space: nowrap;
}
.btn:hover  { transform: translate3d(0, -2px, 0); }
.btn:active { transform: translate3d(0, 1px, 0); }

.btn--primary {
  background: var(--accent);
  color: var(--bg-base);
  box-shadow: 0 4px 20px rgba(0, 229, 204, 0.25);
}
.btn--primary:hover { box-shadow: 0 8px 32px rgba(0, 229, 204, 0.45); }

.btn--ghost {
  background: transparent;
  color: var(--text-1);
  border: 1px solid var(--border-light);
}
.btn--ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: 0 4px 20px rgba(0, 229, 204, 0.12);
}

.btn--whatsapp {
  background: var(--whatsapp);
  color: #fff;
  font-size: var(--text-base);
  padding: 1rem 2.25rem;
  box-shadow: 0 4px 24px rgba(37, 211, 102, 0.3);
}
.btn--whatsapp:hover {
  background: var(--whatsapp-dark);
  box-shadow: 0 8px 36px rgba(37, 211, 102, 0.5);
}

.btn svg { flex-shrink: 0; }

/* ── NAVIGATION ─────────────────────────────────────────────── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: var(--sp-4) 0;
  transition: background 0.3s var(--ease-std), backdrop-filter 0.3s, padding 0.3s;
}
.site-nav.scrolled {
  background: rgba(8, 11, 18, 0.85);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  padding: var(--sp-3) 0;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.06em;
  color: var(--text-1);
}
.nav-logo span { color: var(--accent); }

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--sp-8);
}
.nav-links a {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-2);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--accent); }

.nav-cta { display: flex; align-items: center; }

/* hamburger */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--sp-2);
  cursor: pointer;
}
.nav-burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text-1);
  border-radius: var(--r-full);
  transition: transform 0.3s, opacity 0.3s;
}

/* ── HERO ───────────────────────────────────────────────────── */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: calc(var(--sp-32) + var(--sp-8)) 0 var(--sp-24);
  background-image:
    radial-gradient(ellipse 70% 60% at 15% 50%, rgba(0, 229, 204, 0.07) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 85% 20%, rgba(170, 255, 0, 0.04) 0%, transparent 60%);
}
.hero-content { max-width: 820px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-2) var(--sp-4);
  background: rgba(0, 229, 204, 0.08);
  border: 1px solid rgba(0, 229, 204, 0.25);
  border-radius: var(--r-full);
  margin-bottom: var(--sp-6);
  animation: fadeDown 0.6s var(--ease-out) 0.1s both;
}
.hero-badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero h1 {
  font-size: clamp(var(--text-5xl), 10vw, var(--text-7xl));
  line-height: 0.95;
  color: var(--text-1);
  margin-bottom: var(--sp-6);
  animation: fadeUp 0.8s var(--ease-out) 0.25s both;
}
.hero h1 em {
  font-style: normal;
  color: var(--accent);
  text-shadow: 0 0 40px rgba(0, 229, 204, 0.4);
}

.hero-sub {
  font-size: var(--text-lg);
  color: var(--text-2);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: var(--sp-8);
  animation: fadeUp 0.8s var(--ease-out) 0.45s both;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  margin-bottom: var(--sp-16);
  animation: fadeUp 0.8s var(--ease-out) 0.6s both;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: var(--sp-8);
  border-top: 1px solid var(--border);
  padding-top: var(--sp-8);
  animation: fadeUp 0.8s var(--ease-out) 0.75s both;
}
.stat { text-align: left; }
.stat-num {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  color: var(--accent);
  line-height: 1;
  display: block;
  letter-spacing: 0.02em;
}
.stat-label {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--text-2);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: var(--sp-1);
  display: block;
}

/* ── SECTIONS SHARED ────────────────────────────────────────── */
.section-pad { padding: var(--sp-24) 0; }
.section-pad-sm { padding: var(--sp-16) 0; }

.section-header {
  text-align: center;
  margin-bottom: var(--sp-12);
}
.section-header .label { margin-bottom: var(--sp-3); display: block; }
.section-header h2 {
  font-size: clamp(var(--text-3xl), 4vw, var(--text-4xl));
  color: var(--text-1);
  margin-bottom: var(--sp-4);
}
.section-header p {
  font-size: var(--text-lg);
  color: var(--text-2);
  max-width: 560px;
  margin-inline: auto;
}

/* ── PROBLEMS SECTION ───────────────────────────────────────── */
.problems { background: var(--bg-layer2); }
.problems-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-6);
}

.problem-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: var(--r-lg);
  padding: var(--sp-6);
  transition: transform 0.3s var(--ease-std), border-color 0.3s, box-shadow 0.3s;
  box-shadow: var(--shadow-card);
}
.problem-card:hover {
  transform: translate3d(0, -4px, 0);
  border-color: var(--accent);
  box-shadow: var(--shadow-card), 0 0 20px rgba(0, 229, 204, 0.08);
}

.problem-icon {
  width: 44px; height: 44px;
  background: rgba(0, 229, 204, 0.08);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-4);
  color: var(--accent);
}
.problem-card h3 {
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--text-1);
  margin-bottom: var(--sp-3);
  line-height: 1.3;
}
.problem-card p {
  font-size: var(--text-sm);
  color: var(--text-2);
  line-height: 1.65;
}

/* ── FEATURES SECTION ───────────────────────────────────────── */
.features-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-20);
}
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-12);
  align-items: center;
}
.feature-row.reverse { direction: rtl; }
.feature-row.reverse > * { direction: ltr; }

.feature-badge {
  display: inline-block;
  padding: var(--sp-1) var(--sp-3);
  background: rgba(170, 255, 0, 0.08);
  border: 1px solid rgba(170, 255, 0, 0.2);
  border-radius: var(--r-full);
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.12em;
  color: var(--accent2);
  text-transform: uppercase;
  margin-bottom: var(--sp-4);
}
.feature-copy h3 {
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--text-1);
  margin-bottom: var(--sp-4);
  line-height: 1.25;
}
.feature-copy p {
  color: var(--text-2);
  line-height: 1.7;
  font-size: var(--text-base);
}

/* Feature visual card */
.feature-visual {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--sp-8);
  min-height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.feature-visual::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 160px; height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 229, 204, 0.07) 0%, transparent 70%);
}

/* Chat mockup */
.chat-mock { width: 100%; max-width: 280px; }
.chat-msg {
  display: flex;
  gap: var(--sp-3);
  margin-bottom: var(--sp-3);
  align-items: flex-end;
}
.chat-msg.out { flex-direction: row-reverse; }
.chat-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-size: 10px; color: var(--bg-base);
  font-weight: 600; flex-shrink: 0;
}
.chat-bubble {
  background: var(--bg-layer2);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: var(--sp-2) var(--sp-3);
  font-size: var(--text-xs);
  color: var(--text-1);
  max-width: 200px;
  line-height: 1.5;
}
.chat-msg.out .chat-bubble {
  background: rgba(0, 229, 204, 0.12);
  border-color: rgba(0, 229, 204, 0.2);
}
.chat-time {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-3);
  display: block;
  margin-top: var(--sp-1);
}

/* CRM flow diagram */
.flow-diagram {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  width: 100%;
  max-width: 280px;
}
.flow-step {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-3) var(--sp-4);
  background: var(--bg-layer2);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--text-2);
}
.flow-step-icon { color: var(--accent); flex-shrink: 0; }
.flow-arrow {
  text-align: center;
  color: var(--accent);
  font-size: var(--text-sm);
  opacity: 0.5;
}

/* Stats mini cards */
.stats-mini {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-3);
  width: 100%;
  max-width: 280px;
}
.stat-mini {
  background: var(--bg-layer2);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: var(--sp-4);
  text-align: center;
}
.stat-mini-num {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  color: var(--accent);
  display: block;
  letter-spacing: 0.04em;
}
.stat-mini-label {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-2);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
  margin-top: var(--sp-1);
}

/* ── HOW IT WORKS ───────────────────────────────────────────── */
.how { background: var(--bg-layer2); }
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 38px;
  left: calc(16.66% + 24px);
  right: calc(16.66% + 24px);
  height: 1px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent2) 100%);
  opacity: 0.25;
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--sp-6);
  text-align: center;
  transition: transform 0.3s var(--ease-std), box-shadow 0.3s;
  position: relative;
}
.step-card:hover {
  transform: translate3d(0, -4px, 0);
  box-shadow: var(--shadow-card), 0 0 24px rgba(0, 229, 204, 0.08);
}

.step-num {
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--accent);
  margin: 0 auto var(--sp-4);
  background: rgba(0, 229, 204, 0.06);
  position: relative;
  z-index: 1;
}

.step-week {
  display: inline-block;
  padding: var(--sp-1) var(--sp-3);
  background: rgba(0, 229, 204, 0.06);
  border: 1px solid rgba(0, 229, 204, 0.15);
  border-radius: var(--r-full);
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: var(--sp-4);
}
.step-card h3 {
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--text-1);
  margin-bottom: var(--sp-3);
  line-height: 1.3;
}
.step-card p {
  font-size: var(--text-sm);
  color: var(--text-2);
  line-height: 1.65;
}

/* ── BENEFITS SECTION ───────────────────────────────────────── */
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: start;
}

.big-stats { display: flex; flex-direction: column; gap: var(--sp-8); }
.big-stat {
  padding-bottom: var(--sp-8);
  border-bottom: 1px solid var(--border);
}
.big-stat:last-child { border-bottom: none; padding-bottom: 0; }
.big-stat-num {
  font-family: var(--font-display);
  font-size: clamp(var(--text-4xl), 5vw, var(--text-5xl));
  color: var(--accent);
  letter-spacing: 0.04em;
  line-height: 1;
  display: block;
  margin-bottom: var(--sp-2);
}
.big-stat p { color: var(--text-2); font-size: var(--text-base); line-height: 1.6; }

.benefit-list { display: flex; flex-direction: column; gap: var(--sp-4); }
.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  padding: var(--sp-4);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  transition: border-color 0.25s, transform 0.25s var(--ease-std);
}
.benefit-item:hover {
  border-color: rgba(0, 229, 204, 0.3);
  transform: translate3d(4px, 0, 0);
}
.benefit-diamond {
  color: var(--accent);
  font-size: var(--text-base);
  flex-shrink: 0;
  margin-top: 2px;
}
.benefit-item p {
  font-size: var(--text-sm);
  color: var(--text-1);
  line-height: 1.5;
  font-weight: 400;
}

/* ── CTA SECTION ────────────────────────────────────────────── */
.cta-section {
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(0, 229, 204, 0.06) 0%, transparent 70%),
    var(--bg-layer2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.cta-section h2 {
  font-size: clamp(var(--text-3xl), 5vw, var(--text-4xl));
  color: var(--text-1);
  margin-bottom: var(--sp-4);
}
.cta-section p {
  font-size: var(--text-lg);
  color: var(--text-2);
  max-width: 520px;
  margin-inline: auto;
  margin-bottom: var(--sp-10);
  line-height: 1.7;
}
.cta-note {
  margin-top: var(--sp-4);
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--text-3);
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
}
.cta-note::before { content: '↗'; color: var(--accent); }

/* ── FOOTER ─────────────────────────────────────────────────── */
.site-footer {
  background: #060810;
  border-top: 1px solid var(--border);
  padding: var(--sp-12) 0 var(--sp-8);
}
.footer-inner {
  display: flex;
  flex-direction: column;
  gap: var(--sp-8);
}
.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--sp-8);
}
.footer-brand .nav-logo { font-size: 1.4rem; margin-bottom: var(--sp-3); }
.footer-brand p {
  font-size: var(--text-sm);
  color: var(--text-2);
  max-width: 300px;
  line-height: 1.65;
}
.footer-links {
  display: flex;
  gap: var(--sp-6);
}
.footer-links a {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-2);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--accent); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--sp-6);
  border-top: 1px solid var(--border);
}
.footer-copy {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--text-3);
  letter-spacing: 0.05em;
}

/* ── FLOATING WHATSAPP BUTTON ───────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 200;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--whatsapp);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  animation: waPulse 3s ease-out infinite;
  transition: transform 0.2s var(--ease-bounce), box-shadow 0.2s;
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.6);
  animation: none;
}
.wa-float svg { width: 28px; height: 28px; }

/* WA tooltip */
.wa-float-wrap { position: fixed; bottom: 2rem; right: 2rem; z-index: 200; }
.wa-tooltip {
  position: absolute;
  bottom: 50%;
  right: calc(100% + 12px);
  transform: translateY(50%);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: var(--sp-2) var(--sp-3);
  white-space: nowrap;
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--text-1);
  letter-spacing: 0.05em;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s;
}
.wa-float-wrap:hover .wa-tooltip { opacity: 1; }

@keyframes waPulse {
  0%   { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.55); }
  50%  { box-shadow: 0 0 0 14px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ── POLICY PAGE SPECIFIC ───────────────────────────────────── */
.policy-content {
  max-width: 720px;
  margin-inline: auto;
  padding: var(--sp-32) var(--sp-6) var(--sp-24);
}
.policy-content h1 {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--text-1);
  margin-bottom: var(--sp-2);
}
.policy-date {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--text-3);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--sp-12);
  padding-bottom: var(--sp-6);
  border-bottom: 1px solid var(--border);
  display: block;
}
.policy-content h2 {
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--accent);
  margin-top: var(--sp-10);
  margin-bottom: var(--sp-4);
  letter-spacing: 0.02em;
}
.policy-content p {
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: var(--sp-4);
}
.policy-content ul {
  list-style: none;
  margin-bottom: var(--sp-4);
}
.policy-content ul li {
  color: var(--text-2);
  padding: var(--sp-2) 0;
  padding-left: var(--sp-6);
  border-bottom: 1px solid var(--border);
  position: relative;
  font-size: var(--text-sm);
  line-height: 1.65;
}
.policy-content ul li::before {
  content: '▸';
  color: var(--accent);
  position: absolute;
  left: 0;
  font-size: var(--text-xs);
  top: 10px;
}
.policy-content strong { color: var(--text-1); font-weight: 500; }
.policy-back {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--text-2);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.2s;
  margin-bottom: var(--sp-12);
}
.policy-back:hover { color: var(--accent); }

/* ── ANIMATIONS ─────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translate3d(0, 28px, 0); }
  to   { opacity: 1; transform: translate3d(0, 0, 0); }
}
@keyframes fadeDown {
  from { opacity: 0; transform: translate3d(0, -16px, 0); }
  to   { opacity: 1; transform: translate3d(0, 0, 0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Scroll-triggered animations */
[data-animate] {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
}
[data-animate].is-visible {
  animation: fadeUp 0.65s var(--ease-out) forwards;
}
[data-delay="1"].is-visible { animation-delay: 100ms; }
[data-delay="2"].is-visible { animation-delay: 200ms; }
[data-delay="3"].is-visible { animation-delay: 300ms; }
[data-delay="4"].is-visible { animation-delay: 400ms; }
[data-delay="5"].is-visible { animation-delay: 500ms; }
[data-delay="6"].is-visible { animation-delay: 600ms; }

/* ── MOBILE MENU ────────────────────────────────────────────── */
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(8, 11, 18, 0.97);
    backdrop-filter: blur(20px);
    align-items: center;
    justify-content: center;
    gap: var(--sp-8);
    z-index: 99;
  }
  .nav-links.open a {
    font-size: var(--text-lg);
    letter-spacing: 0.15em;
  }
  .nav-cta.open {
    display: flex;
    position: fixed;
    bottom: var(--sp-12);
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
  }
  .nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-stats { grid-template-columns: repeat(2, auto); gap: var(--sp-6); }
  .feature-row { grid-template-columns: 1fr; gap: var(--sp-8); }
  .feature-row.reverse { direction: ltr; }
  .benefits-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root {
    --text-5xl: 3rem;
    --text-6xl: 4rem;
    --text-7xl: 5rem;
  }
  .problems-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .steps::before { display: none; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .footer-top { flex-direction: column; }
  .footer-bottom { flex-direction: column; gap: var(--sp-3); text-align: center; }
  .wa-float-wrap { bottom: 1.5rem; right: 1.5rem; }
  .section-pad { padding: var(--sp-16) 0; }
}

@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { justify-content: center; width: 100%; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: var(--sp-4); }
}

/* ── ACCESSIBILITY ──────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  [data-animate] { opacity: 1; transform: none; }
  .wa-float { animation: none; }
  html { scroll-behavior: auto; }
}

/* Focus styles */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: var(--r-sm);
}
