/* =============================================================
   FLOWMATIK — styles.css
   Design: Premium dark, vibrant purple/cyan accents
   Mobile-first responsive
   ============================================================= */

/* ── CSS VARIABLES ── */
:root {
  --bg-base:        #07090F;
  --bg-surface:     #0D1117;
  --bg-card:        #131B2E;
  --bg-card-hover:  #172036;
  --border:         rgba(255,255,255,0.07);
  --border-hover:   rgba(108,59,250,0.4);

  --primary:        #6C3BFA;
  --primary-light:  #8B63FB;
  --secondary:      #00D4FF;
  --accent-grad:    linear-gradient(135deg, #6C3BFA 0%, #00D4FF 100%);
  --accent-grad-r:  linear-gradient(135deg, #00D4FF 0%, #6C3BFA 100%);

  --text-primary:   #F0F4FF;
  --text-secondary: #94A3B8;
  --text-muted:     #4B5670;
  --white:          #FFFFFF;

  --success:        #22C55E;
  --warning:        #F59E0B;
  --danger:         #EF4444;

  --radius-sm:      8px;
  --radius-md:      14px;
  --radius-lg:      20px;
  --radius-xl:      28px;
  --radius-full:    9999px;

  --shadow-sm:      0 2px 8px rgba(0,0,0,0.4);
  --shadow-md:      0 8px 32px rgba(0,0,0,0.5);
  --shadow-lg:      0 20px 60px rgba(0,0,0,0.6);
  --shadow-glow:    0 0 40px rgba(108,59,250,0.25);
  --shadow-glow-2:  0 0 60px rgba(0,212,255,0.15);

  --transition:     all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast:all 0.15s ease;

  --container:      1200px;
  --nav-height:     72px;
  --urgency-height: 44px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-base);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
ul { list-style: none; }
input, select, textarea { font: inherit; }

/* ── UTILITY ── */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 20px;
}

.gradient-text {
  background: var(--accent-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section {
  padding-block: 96px;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-tag {
  display: inline-block;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  background: rgba(108,59,250,0.15);
  border: 1px solid rgba(108,59,250,0.3);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--primary-light);
  margin-bottom: 20px;
}

.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  color: var(--white);
}

.section-sub {
  font-size: clamp(15px, 1.5vw, 18px);
  color: var(--text-secondary);
  max-width: 600px;
  margin-inline: auto;
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  font-size: 15px;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: white;
  opacity: 0;
  transition: opacity 0.2s;
  border-radius: inherit;
}
.btn:hover::after { opacity: 0.06; }
.btn:active::after { opacity: 0.1; }

.btn--primary {
  background: var(--accent-grad);
  color: white;
  box-shadow: 0 4px 20px rgba(108,59,250,0.4);
}
.btn--primary:hover {
  box-shadow: 0 6px 30px rgba(108,59,250,0.6);
  transform: translateY(-1px);
}

.btn--ghost {
  background: rgba(255,255,255,0.06);
  color: var(--text-primary);
  border: 1px solid var(--border);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(108,59,250,0.4);
}

.btn--outline {
  background: transparent;
  color: var(--primary-light);
  border: 1.5px solid var(--primary);
}
.btn--outline:hover {
  background: rgba(108,59,250,0.1);
}

.btn--sm  { padding: 8px 18px; font-size: 14px; }
.btn--lg  { padding: 16px 32px; font-size: 16px; }
.btn--xl  { padding: 18px 36px; font-size: 17px; }
.btn--full { width: 100%; }

/* ── URGENCY BAR ── */
.urgency-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--urgency-height);
  background: linear-gradient(90deg, #6C3BFA, #00D4FF);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: 16px;
}

.urgency-bar__inner {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: white;
  text-align: center;
  flex-wrap: wrap;
}

.urgency-bar__fire { font-size: 16px; }
.urgency-bar__slots { font-weight: 700; }

.urgency-bar__cta {
  background: rgba(0,0,0,0.25);
  color: white;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,0.3);
  transition: var(--transition-fast);
  white-space: nowrap;
}
.urgency-bar__cta:hover { background: rgba(0,0,0,0.4); }

.urgency-bar__close {
  color: white;
  font-size: 20px;
  opacity: 0.7;
  padding: 4px 8px;
  line-height: 1;
}
.urgency-bar__close:hover { opacity: 1; }

/* ── NAVIGATION ── */
.nav {
  position: fixed;
  top: var(--urgency-height);
  left: 0;
  right: 0;
  z-index: 999;
  height: var(--nav-height);
  background: rgba(7,9,15,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.nav.scrolled {
  background: rgba(7,9,15,0.97);
  box-shadow: 0 4px 24px rgba(0,0,0,0.5);
}

.nav.urgency-hidden {
  top: 0;
}

.nav__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav__logo-text {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--white);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition-fast);
}
.nav__link:hover { color: var(--white); }

.nav__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Language toggle */
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  transition: var(--transition-fast);
}
.lang-toggle:hover { border-color: var(--primary); color: var(--white); }
.lang-toggle__divider { opacity: 0.4; }
.lang-toggle__option.active { color: var(--primary-light); }

/* Mobile hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px;
}
.nav__hamburger span {
  display: block;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition-fast);
}

/* ── HERO SECTION ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--urgency-height) + var(--nav-height) + 60px);
  padding-bottom: 80px;
  overflow: hidden;
}

.hero__bg-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 30%, rgba(108,59,250,0.15) 0%, transparent 70%),
    radial-gradient(ellipse 60% 50% at 80% 70%, rgba(0,212,255,0.1) 0%, transparent 60%);
  pointer-events: none;
}

.hero__particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Badge */
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.25);
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  color: #86efac;
  margin-bottom: 24px;
}

.hero__badge-dot {
  width: 8px;
  height: 8px;
  background: var(--success);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
  flex-shrink: 0;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34,197,94,0.4); }
  50% { box-shadow: 0 0 0 6px rgba(34,197,94,0); }
}

.hero__headline {
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  color: var(--white);
}

.hero__headline--accent {
  color: var(--primary-light);
}

.hero__sub {
  font-size: clamp(15px, 1.5vw, 18px);
  color: var(--text-secondary);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 36px;
}

.hero__ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

/* Hero metrics */
.hero__metrics {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  gap: 4px;
}

.hero__metric {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px 20px;
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}

.hero__metric-value {
  font-size: 22px;
  font-weight: 800;
  background: var(--accent-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.hero__metric-label {
  font-size: 11px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 2px;
}

.hero__metric-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  flex-shrink: 0;
}

/* Phone mockup */
.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.phone-mockup {
  width: 280px;
  background: #1A1F2E;
  border-radius: 36px;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  overflow: hidden;
}

.phone-mockup__screen {
  display: flex;
  flex-direction: column;
  height: 520px;
}

.phone-mockup__header {
  background: #075E54;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.phone-mockup__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent-grad);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 18px;
  color: white;
  flex-shrink: 0;
}

.phone-mockup__info {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.phone-mockup__name {
  font-size: 14px;
  font-weight: 700;
  color: white;
  line-height: 1.2;
}
.phone-mockup__status {
  font-size: 11px;
  color: rgba(255,255,255,0.75);
}
.phone-mockup__whatsapp-icon { margin-left: auto; }

.phone-mockup__chat {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  background: #ECE5DD;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Chat messages in hero mockup */
.chat-msg {
  max-width: 80%;
  padding: 8px 12px;
  border-radius: 12px;
  font-size: 12px;
  line-height: 1.5;
  color: #111827;
  animation: fadeInUp 0.4s ease forwards;
}

.chat-msg--bot {
  background: white;
  align-self: flex-start;
  border-radius: 2px 12px 12px 12px;
}

.chat-msg--user {
  background: #DCF8C6;
  align-self: flex-end;
  border-radius: 12px 2px 12px 12px;
}

.chat-msg--time {
  font-size: 10px;
  color: rgba(17,24,39,0.45);
  text-align: right;
  margin-top: 2px;
}

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

/* Typing indicator */
.typing-indicator {
  background: white;
  padding: 10px 14px;
  border-radius: 2px 12px 12px 12px;
  align-self: flex-start;
  display: flex;
  gap: 4px;
  align-items: center;
  max-width: 60px;
}

.typing-indicator span {
  width: 6px;
  height: 6px;
  background: #94A3B8;
  border-radius: 50%;
  animation: bounce 1.2s infinite;
}
.typing-indicator span:nth-child(2) { animation-delay: 0.2s; }
.typing-indicator span:nth-child(3) { animation-delay: 0.4s; }

@keyframes bounce {
  0%, 60%, 100% { transform: translateY(0); }
  30% { transform: translateY(-6px); }
}

/* Floating cards */
.hero__floating-card {
  position: absolute;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-md);
  animation: float 4s ease-in-out infinite;
}

.hero__floating-card--top {
  top: -20px;
  right: -30px;
  animation-delay: 0s;
}

.hero__floating-card--bottom {
  bottom: 20px;
  left: -40px;
  animation-delay: 2s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.hero__floating-card-icon { font-size: 20px; }
.hero__floating-card-title {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
}
.hero__floating-card-sub {
  display: block;
  font-size: 11px;
  color: var(--text-secondary);
}

/* ── TRUST STRIP ── */
.trust-strip {
  padding-block: 40px;
  border-block: 1px solid var(--border);
  background: var(--bg-surface);
}

.trust-strip .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.trust-strip__label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.trust-strip__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.trust-strip__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0.5;
  filter: grayscale(100%);
  transition: var(--transition-fast);
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 700;
}
.trust-strip__logo:hover { opacity: 0.8; filter: grayscale(0%); }
.trust-strip__logo img { width: 24px; height: 24px; object-fit: contain; }

/* ── PROBLEMA SECTION ── */
.problema {
  background: var(--bg-surface);
}

.problema__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}

.problema__card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
}

.problema__card:hover {
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.problema__icon {
  font-size: 32px;
  display: block;
  margin-bottom: 16px;
}

.problema__card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.problema__card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Cost calculator */
.problema__transition {
  text-align: center;
  padding: 48px;
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
}

.problema__transition-text {
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 32px;
}

.problema__cost-calc {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.cost-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 20px 24px;
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  min-width: 150px;
}

.cost-item--result {
  background: rgba(108,59,250,0.15);
  border-color: rgba(108,59,250,0.4);
}

.cost-label { font-size: 12px; color: var(--text-muted); text-align: center; }
.cost-value { font-size: 20px; font-weight: 800; color: var(--white); }
.cost-value--big {
  font-size: 26px;
  background: var(--accent-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cost-multiply, .cost-equals {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-muted);
}

.problema__transition-sub {
  font-size: 16px;
  color: var(--text-secondary);
}

/* ── SOLUCIÓN SECTION ── */
.solucion { background: var(--bg-base); }

/* Comparison table */
.comparison-table {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-bottom: 64px;
  box-shadow: var(--shadow-md);
}

.comparison-col {
  padding: 36px;
  background: var(--bg-card);
}

.comparison-col--after {
  background: linear-gradient(135deg, rgba(108,59,250,0.12) 0%, rgba(0,212,255,0.06) 100%);
  border-left: 2px solid rgba(108,59,250,0.3);
}

.comparison-col__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.comparison-col__icon { font-size: 28px; }
.comparison-col__header h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
}

.comparison-list { display: flex; flex-direction: column; gap: 14px; }

.comparison-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.5;
}

.comparison-list--negative li::before {
  content: '✗';
  color: var(--danger);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.comparison-list--positive li::before {
  content: '✓';
  color: var(--success);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.comparison-list--negative li { color: var(--text-secondary); }
.comparison-list--positive li { color: var(--text-primary); }

/* Features grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
}

.feature-card:hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow-glow);
  transform: translateY(-3px);
}

.feature-card__icon {
  font-size: 32px;
  margin-bottom: 16px;
}

.feature-card__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.feature-card__desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ── DEMO SECTION ── */
.demo-section {
  background: var(--bg-surface);
}

.demo-widget {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 48px;
  align-items: start;
}

/* Demo phone */
.demo-phone {
  background: #1A1F2E;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  overflow: hidden;
}

.demo-phone__header {
  background: #075E54;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.demo-phone__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent-grad);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 20px;
  color: white;
  flex-shrink: 0;
}

.demo-phone__name {
  font-size: 15px;
  font-weight: 700;
  color: white;
}

.demo-phone__status {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
}

.demo-phone__messages {
  height: 360px;
  overflow-y: auto;
  padding: 16px;
  background: #ECE5DD;
  display: flex;
  flex-direction: column;
  gap: 8px;
  scroll-behavior: smooth;
}

.demo-msg { display: flex; flex-direction: column; }

.demo-msg--bot { align-items: flex-start; }
.demo-msg--user { align-items: flex-end; }

.demo-msg__bubble {
  max-width: 85%;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 13px;
  line-height: 1.5;
  color: #111827;
}

.demo-msg--bot .demo-msg__bubble {
  background: white;
  border-radius: 2px 12px 12px 12px;
}

.demo-msg--user .demo-msg__bubble {
  background: #DCF8C6;
  border-radius: 12px 2px 12px 12px;
}

.demo-msg__time {
  font-size: 10px;
  color: rgba(17,24,39,0.4);
  margin-top: 4px;
  padding-inline: 4px;
}

.demo-phone__input-area {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  background: #F0F0F0;
  border-top: 1px solid rgba(0,0,0,0.1);
}

.demo-phone__input {
  flex: 1;
  padding: 10px 14px;
  border-radius: var(--radius-full);
  border: none;
  background: white;
  font-size: 13px;
  color: #111;
  outline: none;
}
.demo-phone__input::placeholder { color: #94A3B8; }

.demo-phone__send {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #075E54;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition-fast);
}
.demo-phone__send:hover { background: #128C7E; }

.demo-suggestions {
  padding: 8px 12px 12px;
  background: #F0F0F0;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.demo-suggestion {
  padding: 5px 10px;
  background: white;
  border: 1px solid #D1D5DB;
  border-radius: var(--radius-full);
  font-size: 11px;
  color: #374151;
  transition: var(--transition-fast);
}
.demo-suggestion:hover {
  background: #075E54;
  color: white;
  border-color: #075E54;
}

/* Demo info */
.demo-info {
  padding: 40px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
}

.demo-info h3 {
  font-size: 24px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 28px;
}

.demo-info__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.demo-info__list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  color: var(--text-primary);
}

.demo-info__icon {
  font-size: 22px;
  flex-shrink: 0;
  width: 32px;
  text-align: center;
}

/* ── CÓMO FUNCIONA ── */
.como-funciona { background: var(--bg-base); }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  margin-bottom: 48px;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
  opacity: 0.3;
  z-index: 0;
}

.step {
  position: relative;
  z-index: 1;
  text-align: center;
}

.step__number {
  font-size: 48px;
  font-weight: 900;
  background: var(--accent-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 8px;
}

.step__content {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  transition: var(--transition);
}

.step__content:hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow-glow);
  transform: translateY(-3px);
}

.step__icon { font-size: 36px; margin-bottom: 16px; }
.step__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.step__desc { font-size: 13px; color: var(--text-secondary); line-height: 1.6; }

.como-funciona__cta { text-align: center; }

/* ── RESULTADOS ── */
.resultados {
  background: var(--bg-surface);
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-bottom: 48px;
}

.metric-big {
  background: var(--bg-card);
  padding: 40px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.metric-big__value {
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 900;
  background: var(--accent-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.metric-big__label {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.4;
}

/* Case study */
.case-study {
  background: var(--bg-card);
  border: 1px solid rgba(108,59,250,0.3);
  border-radius: var(--radius-xl);
  padding: 48px;
  position: relative;
  overflow: hidden;
}

.case-study::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent-grad);
}

.case-study__badge {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(108,59,250,0.2);
  border: 1px solid rgba(108,59,250,0.4);
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--primary-light);
  margin-bottom: 24px;
}

.case-study__inner { display: flex; flex-direction: column; gap: 28px; }

.case-study__logo {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.case-study__clinic-name {
  font-size: 24px;
  font-weight: 800;
  color: var(--white);
}

.case-study__location {
  font-size: 14px;
  color: var(--text-secondary);
}

.case-study__stats {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.case-study__stat {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 14px;
}

.case-study__stat-before { color: var(--danger); opacity: 0.8; min-width: 220px; }
.case-study__arrow { color: var(--text-muted); font-size: 18px; }
.case-study__stat-after { color: var(--success); font-weight: 600; }

.case-study__quote {
  border-left: 3px solid var(--primary);
  padding-left: 24px;
}
.case-study__quote p {
  font-size: 18px;
  font-style: italic;
  color: var(--text-primary);
  line-height: 1.6;
  margin-bottom: 12px;
}
.case-study__quote cite {
  font-size: 14px;
  color: var(--text-secondary);
  font-style: normal;
}

/* ── TESTIMONIOS ── */
.testimonios { background: var(--bg-base); }

.testimonios-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}

.testimonio-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: var(--transition);
}

.testimonio-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow);
}

.testimonio-card__stars {
  color: #FBBF24;
  font-size: 16px;
  letter-spacing: 2px;
}

.testimonio-card__text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-primary);
  flex: 1;
  font-style: italic;
}

.testimonio-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonio-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent-grad);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 18px;
  color: white;
  flex-shrink: 0;
  overflow: hidden;
}
.testimonio-card__avatar img { width: 100%; height: 100%; object-fit: cover; }

.testimonio-card__name {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
}
.testimonio-card__clinic {
  font-size: 12px;
  color: var(--text-secondary);
}

/* Clients strip */
.clientes-strip { text-align: center; }

.clientes-strip__label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.clientes-strip__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.cliente-logo {
  padding: 12px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 700;
  color: var(--text-secondary);
  opacity: 0.6;
  transition: var(--transition-fast);
}
.cliente-logo:hover { opacity: 1; border-color: var(--primary); color: var(--white); }

.cliente-logo.coming-soon {
  background: rgba(108,59,250,0.1);
  border-color: rgba(108,59,250,0.3);
  color: var(--primary-light);
  opacity: 1;
}

/* ── PRECIOS ── */
.precios { background: var(--bg-surface); }

.scarcity-notice {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 24px;
  background: rgba(245,158,11,0.1);
  border: 1px solid rgba(245,158,11,0.25);
  border-radius: var(--radius-full);
  max-width: 700px;
  margin-inline: auto;
  margin-bottom: 48px;
  font-size: 14px;
  color: #FCD34D;
  flex-wrap: wrap;
  text-align: center;
}

.scarcity-notice__icon { font-size: 18px; }
.scarcity-notice__slots { font-weight: 700; color: var(--warning); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  transition: var(--transition);
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.pricing-card--featured {
  background: linear-gradient(135deg, rgba(108,59,250,0.15) 0%, rgba(0,212,255,0.08) 100%);
  border-color: var(--primary);
  box-shadow: var(--shadow-glow);
  transform: scale(1.02);
}
.pricing-card--featured:hover {
  transform: scale(1.02) translateY(-4px);
}

.pricing-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-grad);
  color: white;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: var(--radius-full);
  white-space: nowrap;
}

.pricing-card__name {
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}

.pricing-card__price {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  margin-bottom: 8px;
}

.pricing-card__currency {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-secondary);
  margin-bottom: 4px;
}
.pricing-card__amount {
  font-size: 32px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.pricing-card__period {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.pricing-card__price-custom {
  font-size: 28px;
  font-weight: 900;
  background: var(--accent-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pricing-card__ideal {
  font-size: 13px;
  color: var(--text-secondary);
}

.pricing-card__features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.pricing-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.4;
}

.pricing-card__features li.included { color: var(--text-primary); }
.pricing-card__features li.not-included { color: var(--text-muted); text-decoration: line-through; }

.pricing-card__features li.included::before {
  content: '✓';
  color: var(--success);
  font-weight: 700;
  flex-shrink: 0;
}
.pricing-card__features li.not-included::before {
  content: '–';
  color: var(--text-muted);
  flex-shrink: 0;
}
.pricing-card__features li.highlight-feature {
  background: rgba(108,59,250,0.1);
  border: 1px solid rgba(108,59,250,0.25);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  margin-top: 4px;
}
.pricing-card__features li.highlight-feature::before { display: none; }

/* Guarantee */
.garantia {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 36px 48px;
  background: rgba(34,197,94,0.06);
  border: 1px solid rgba(34,197,94,0.2);
  border-radius: var(--radius-xl);
  max-width: 800px;
  margin-inline: auto;
}

.garantia__icon { font-size: 48px; flex-shrink: 0; }
.garantia__title {
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}
.garantia__desc {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ── FAQ ── */
.faq-section { background: var(--bg-base); }

.faq-grid {
  max-width: 800px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: var(--transition-fast);
}
.faq-item:last-child { border-bottom: none; }
.faq-item:hover { background: rgba(255,255,255,0.02); }
.faq-item.open { background: rgba(108,59,250,0.05); }

.faq-item__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 28px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
}

.faq-item__arrow {
  font-size: 22px;
  color: var(--primary-light);
  flex-shrink: 0;
  transition: transform 0.3s ease;
  line-height: 1;
}

.faq-item.open .faq-item__arrow { transform: rotate(45deg); }

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.open .faq-item__answer { max-height: 300px; }

.faq-item__answer p {
  padding: 0 28px 20px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ── CTA FINAL ── */
.cta-final {
  background: linear-gradient(135deg, rgba(108,59,250,0.12) 0%, rgba(0,212,255,0.05) 100%);
  border-top: 1px solid var(--border);
}

.cta-final__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.cta-final__headline {
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-block: 20px 16px;
}

.cta-final__sub {
  font-size: clamp(14px, 1.5vw, 17px);
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 32px;
  padding-left: 16px;
  border-left: 3px solid var(--primary);
  font-style: italic;
}

/* Form */
.cta-final__form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px;
}

.form__title {
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}

.form__sub {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 28px;
}

.form__group {
  margin-bottom: 16px;
}

.form__label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 6px;
}

.form__input {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-size: 14px;
  transition: var(--transition-fast);
  outline: none;
}

.form__input:focus {
  border-color: var(--primary);
  background: rgba(108,59,250,0.08);
  box-shadow: 0 0 0 3px rgba(108,59,250,0.15);
}

.form__input::placeholder { color: var(--text-muted); }

.form__select { appearance: none; cursor: pointer; }

option { background: var(--bg-card); color: var(--text-primary); }

.form__submit { margin-top: 8px; }

.form__privacy {
  font-size: 11px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 12px;
  line-height: 1.5;
}

.form__success {
  text-align: center;
  padding: 32px;
}
.form__success-icon { font-size: 48px; display: block; margin-bottom: 16px; }
.form__success h4 { font-size: 20px; font-weight: 700; color: var(--success); margin-bottom: 8px; }
.form__success p { font-size: 14px; color: var(--text-secondary); }

/* ── FOOTER ── */
.footer {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  padding-top: 64px;
  padding-bottom: 32px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer__logo { margin-bottom: 16px; display: block; }

.footer__desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer__socials {
  display: flex;
  gap: 12px;
}

.footer__social {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  color: var(--text-secondary);
}
.footer__social:hover {
  background: rgba(108,59,250,0.2);
  border-color: var(--primary);
  color: white;
}

.footer__col-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__links a,
.footer__links span {
  font-size: 14px;
  color: var(--text-secondary);
  transition: var(--transition-fast);
}
.footer__links a:hover { color: var(--white); }

.footer__contact li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  gap: 16px;
  flex-wrap: wrap;
}

.footer__bottom p {
  font-size: 13px;
  color: var(--text-muted);
}

.footer__bottom-links {
  display: flex;
  gap: 24px;
}

.footer__bottom-links a {
  font-size: 13px;
  color: var(--text-muted);
  transition: var(--transition-fast);
}
.footer__bottom-links a:hover { color: var(--text-primary); }

/* ── FLOATING WHATSAPP ── */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 990;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: white;
  padding: 12px 20px 12px 16px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 4px 24px rgba(37,211,102,0.5);
  transition: var(--transition);
  text-decoration: none;
  animation: float-in 0.8s ease 1s both;
}

@keyframes float-in {
  from { transform: translateY(80px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}

.whatsapp-float:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 30px rgba(37,211,102,0.7);
}

.whatsapp-float__text { white-space: nowrap; }

/* ── EXIT POPUP ── */
.exit-popup {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.exit-popup__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(4px);
}

.exit-popup__card {
  position: relative;
  z-index: 1;
  background: var(--bg-card);
  border: 1px solid rgba(108,59,250,0.3);
  border-radius: var(--radius-xl);
  padding: 48px;
  max-width: 480px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  animation: popup-in 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes popup-in {
  from { transform: scale(0.7); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}

.exit-popup__close {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 24px;
  color: var(--text-muted);
  transition: var(--transition-fast);
}
.exit-popup__close:hover { color: var(--white); }

.exit-popup__icon { font-size: 52px; margin-bottom: 16px; }
.exit-popup__title {
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}
.exit-popup__desc {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 24px;
}
.exit-popup__desc strong { color: var(--white); }

.exit-popup__form { display: flex; flex-direction: column; gap: 12px; margin-bottom: 12px; }
.exit-popup__privacy { font-size: 11px; color: var(--text-muted); }

/* ── PARTICLES ── */
.particle {
  position: absolute;
  border-radius: 50%;
  background: var(--primary);
  opacity: 0.3;
  animation: particle-float linear infinite;
}

@keyframes particle-float {
  0%   { transform: translateY(0) translateX(0); opacity: 0; }
  10%  { opacity: 0.3; }
  90%  { opacity: 0.1; }
  100% { transform: translateY(-100vh) translateX(40px); opacity: 0; }
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-base); }
::-webkit-scrollbar-thumb { background: rgba(108,59,250,0.4); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary); }

/* ── RESPONSIVE — Tablet (768px) ── */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; gap: 48px; }
  .hero__visual { display: none; }
  .comparison-table { grid-template-columns: 1fr; }
  .comparison-col--after { border-left: none; border-top: 2px solid rgba(108,59,250,0.3); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .demo-widget { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid::before { display: none; }
  .metrics-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
  .pricing-card--featured { transform: none; }
  .cta-final__inner { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .testimonios-grid { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; }
  .problema__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --nav-height: 60px; --urgency-height: 52px; }
  .section { padding-block: 64px; }

  .nav__links { display: none; }
  .nav__links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: calc(var(--urgency-height) + var(--nav-height));
    left: 0;
    right: 0;
    background: rgba(7,9,15,0.98);
    backdrop-filter: blur(20px);
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid var(--border);
    z-index: 998;
  }
  .nav__link { font-size: 16px; }
  .nav__hamburger { display: flex; }

  .hero__metrics { gap: 8px; }
  .hero__metric { padding: 10px 12px; }
  .hero__metric-value { font-size: 18px; }
  .hero__ctas { flex-direction: column; }
  .hero__ctas .btn { width: 100%; }

  .problema__grid { grid-template-columns: 1fr; }
  .problema__cost-calc { flex-direction: column; align-items: center; }
  .cost-multiply, .cost-equals { transform: rotate(90deg); }

  .features-grid { grid-template-columns: 1fr; }

  .demo-widget { gap: 32px; }
  .demo-phone { max-width: 100%; }

  .steps-grid { grid-template-columns: 1fr; }

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

  .garantia { flex-direction: column; text-align: center; padding: 28px; }

  .cta-final__inner { gap: 40px; }
  .cta-final__form { padding: 28px; }

  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; text-align: center; }

  .whatsapp-float__text { display: none; }
  .whatsapp-float { padding: 14px; border-radius: 50%; }

  .urgency-bar__text { font-size: 11px; }

  .case-study { padding: 28px; }
  .case-study__stat { flex-wrap: wrap; }
  .case-study__stat-before { min-width: 0; }
}

@media (max-width: 480px) {
  .container { padding-inline: 16px; }
  .hero__headline { font-size: 28px; }
  .section-title { font-size: 24px; }

  .problem__transition { padding: 28px; }
  .faq-item__question { padding: 16px; }
  .faq-item__answer p { padding: 0 16px 16px; }

  .pricing-card { padding: 24px; }
  .exit-popup__card { padding: 32px 24px; }
}

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

/* ── PRINT ── */
@media print {
  .urgency-bar,
  .nav,
  .whatsapp-float,
  .exit-popup { display: none !important; }
  body { background: white; color: black; }
}
