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

:root {
  --blue-50:  #eff6ff;
  --blue-100: #dbeafe;
  --blue-200: #bfdbfe;
  --blue-500: #3b82f6;
  --blue-600: #2563eb;
  --blue-700: #1d4ed8;
  --blue-800: #1e40af;
  --blue-900: #1e3a8a;
  --blue-950: #172554;

  --gray-50:  #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;

  --green-500: #10B981;
  --amber-500: #F59E0B;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.05);
  --shadow-md: 0 4px 12px rgba(0,0,0,.1);
  --shadow-lg: 0 10px 32px rgba(0,0,0,.12);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-900);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { text-decoration: none; color: inherit; }

/* ===== UTILITIES ===== */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.bg-light { background: var(--gray-50); }

.text-accent { color: var(--blue-600); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: inherit;
  font-weight: 600;
  font-size: .9rem;
  border-radius: var(--radius-sm);
  padding: .55rem 1.25rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background .18s, border-color .18s, color .18s, box-shadow .18s;
  white-space: nowrap;
}

.btn-primary {
  background: var(--blue-600);
  color: #fff;
  border-color: var(--blue-600);
}
.btn-primary:hover { background: var(--blue-700); border-color: var(--blue-700); }
.btn-primary:focus-visible { outline: 3px solid var(--blue-300); outline-offset: 2px; }

.btn-ghost {
  background: transparent;
  color: var(--gray-700);
  border-color: transparent;
}
.btn-ghost:hover { background: var(--gray-100); }

.btn-outline {
  background: #fff;
  color: var(--blue-700);
  border-color: var(--gray-300);
}
.btn-outline:hover { border-color: var(--blue-600); background: var(--blue-50); }

.btn-white {
  background: #fff;
  color: var(--blue-700);
  border-color: #fff;
}
.btn-white:hover { background: var(--blue-50); }

.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.5);
}
.btn-outline-white:hover { border-color: #fff; background: rgba(255,255,255,.1); }

.btn-lg { padding: .75rem 1.75rem; font-size: 1rem; border-radius: var(--radius-md); }
.btn-block { width: 100%; margin-top: 1.5rem; }

/* ===== NAVBAR ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gray-200);
  transition: box-shadow .2s;
}
.navbar.scrolled { box-shadow: var(--shadow-md); }

.nav-inner {
  display: flex;
  align-items: center;
  height: 64px;
  gap: 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--gray-900);
  flex-shrink: 0;
}
.logo-white { color: #fff; }

.nav-links {
  display: flex;
  list-style: none;
  gap: 1.75rem;
  flex: 1;
}
.nav-links a {
  font-size: .9rem;
  font-weight: 500;
  color: var(--gray-600);
  transition: color .15s;
}
.nav-links a:hover { color: var(--blue-600); }

.nav-ctas {
  display: flex;
  gap: .5rem;
  margin-left: auto;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gray-700);
  border-radius: 2px;
  transition: transform .2s, opacity .2s;
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(145deg, #0a0f1e 0%, var(--blue-950) 40%, #0d1f4a 70%, #0a1628 100%);
  color: #fff;
  padding: 5rem 0 0;
  position: relative;
  /* Sin overflow aquí — los chips necesitan salir del container */
}

/* Capa decorativa con su propio clip para no afectar a los chips */
.hero-bg-layer {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

/* Dots grid */
.hero-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse 80% 80% at 60% 40%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 60% 40%, black 30%, transparent 80%);
}

/* Glow orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}
.hero-orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(37,99,235,.4) 0%, transparent 70%);
  top: -100px; right: -50px;
}
.hero-orb-2 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(99,102,241,.25) 0%, transparent 70%);
  bottom: 50px; left: 5%;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: center;
  padding-bottom: 3rem;
  position: relative;
  z-index: 1;
}

.hero-content { position: relative; z-index: 1; }

/* Badge */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  padding: .3rem .85rem;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .02em;
  text-decoration: none;
}
.badge-new {
  background: rgba(37,99,235,.2);
  border: 1px solid rgba(147,197,253,.3);
  color: var(--blue-200);
  margin-bottom: 1.5rem;
  transition: background .2s;
}
.badge-new:hover { background: rgba(37,99,235,.35); }

.badge-pulse {
  width: 7px; height: 7px;
  background: #60a5fa;
  border-radius: 50%;
  animation: pulse-ring 1.8s infinite;
  flex-shrink: 0;
}
@keyframes pulse-ring {
  0%   { box-shadow: 0 0 0 0 rgba(96,165,250,.6); }
  70%  { box-shadow: 0 0 0 6px rgba(96,165,250,0); }
  100% { box-shadow: 0 0 0 0 rgba(96,165,250,0); }
}

/* Title */
.hero-title {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -.03em;
  margin-bottom: 1.1rem;
  color: #fff;
}
.hero-title-accent {
  background: linear-gradient(90deg, #60a5fa 0%, #a78bfa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.65);
  margin-bottom: 1.75rem;
  max-width: 460px;
  line-height: 1.65;
}

.hero-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .6rem;
  margin-bottom: 2rem;
}
.hero-bullets li {
  display: flex;
  align-items: center;
  gap: .65rem;
  font-size: .93rem;
  color: rgba(255,255,255,.8);
}
.check-icon { width: 20px; height: 20px; flex-shrink: 0; }

/* CTAs */
.hero-ctas {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  margin-bottom: .85rem;
}

.btn-hero-primary {
  background: var(--blue-600);
  color: #fff;
  border: 2px solid var(--blue-600);
  box-shadow: 0 0 0 0 rgba(37,99,235,.5);
  transition: background .18s, box-shadow .18s, transform .15s;
}
.btn-hero-primary:hover {
  background: var(--blue-500);
  border-color: var(--blue-500);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(37,99,235,.45);
}

.btn-hero-ghost {
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.9);
  border: 2px solid rgba(255,255,255,.18);
  backdrop-filter: blur(8px);
  transition: background .18s, border-color .18s;
}
.btn-hero-ghost:hover { background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.35); }

.hero-disclaimer {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: .79rem;
  color: rgba(255,255,255,.38);
  margin-bottom: 2rem;
}

/* Stats row */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.08);
}
.hero-stat { display: flex; flex-direction: column; }
.h-stat-num {
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.h-stat-unit { font-size: .85rem; font-weight: 600; color: var(--blue-300); margin-left: 2px; }
.h-stat-label { font-size: .72rem; color: rgba(255,255,255,.45); margin-top: 2px; }
.h-stat-sep { width: 1px; height: 32px; background: rgba(255,255,255,.1); }

/* ===== MOCKUP ===== */
.hero-visual {
  position: relative;
  z-index: 1;
}

.mockup-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(ellipse 70% 60% at 55% 45%, rgba(37,99,235,.3) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.mockup-shell {
  background: #111827;
  border-radius: var(--radius-xl);
  box-shadow:
    0 0 0 1px rgba(255,255,255,.07),
    0 20px 60px rgba(0,0,0,.5),
    0 0 80px rgba(37,99,235,.15);
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.mockup-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #0a0f1e;
  padding: .6rem 1rem;
  border-bottom: 1px solid rgba(255,255,255,.05);
}

.mockup-dots { display: flex; gap: 5px; }
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot-red    { background: #ef4444; }
.dot-yellow { background: #f59e0b; }
.dot-green  { background: #10b981; }

.mockup-url {
  flex: 1;
  text-align: center;
  font-size: .68rem;
  color: rgba(255,255,255,.25);
  font-family: monospace;
  letter-spacing: .02em;
}

.mockup-bar-actions { display: flex; gap: 5px; }
.mba-pill {
  width: 28px; height: 10px;
  background: rgba(255,255,255,.07);
  border-radius: 999px;
}

.mockup-body {
  display: flex;
  min-height: 360px;
}

.mockup-sidebar {
  width: 100px;
  background: #0a0f1e;
  padding: .75rem .5rem;
  display: flex;
  flex-direction: column;
  gap: .2rem;
  border-right: 1px solid rgba(255,255,255,.04);
}

.sidebar-logo {
  display: flex;
  justify-content: center;
  padding: .4rem 0 .75rem;
  border-bottom: 1px solid rgba(255,255,255,.05);
  margin-bottom: .4rem;
}

.sidebar-item {
  display: flex;
  align-items: center;
  gap: .45rem;
  font-size: .68rem;
  font-weight: 500;
  color: rgba(255,255,255,.3);
  padding: .4rem .55rem;
  border-radius: 7px;
  cursor: default;
  transition: background .15s, color .15s;
}
.sidebar-item.active {
  background: rgba(37,99,235,.25);
  color: #93c5fd;
}
.sidebar-item svg { flex-shrink: 0; }

.mockup-main { flex: 1; padding: .85rem; display: flex; flex-direction: column; gap: .55rem; }

/* Search */
.mock-search {
  display: flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 7px;
  padding: .4rem .65rem;
  font-size: .65rem;
  color: rgba(255,255,255,.3);
  margin-bottom: .1rem;
}

.mockup-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.m-title { font-weight: 700; font-size: .8rem; color: rgba(255,255,255,.9); }

.m-badge {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: .62rem;
  font-weight: 600;
  background: rgba(16,185,129,.15);
  color: #6ee7b7;
  border-radius: 999px;
  padding: .15rem .55rem;
  border: 1px solid rgba(16,185,129,.2);
}

.badge-dot-live {
  width: 5px; height: 5px;
  background: #10b981;
  border-radius: 50%;
  animation: pulse-ring 1.5s infinite;
}

.mockup-product-list { display: flex; flex-direction: column; gap: .35rem; flex: 1; }

.mock-row {
  display: flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.04);
  border-radius: 8px;
  padding: .4rem .55rem;
}

.mock-thumb {
  width: 28px; height: 28px; border-radius: 6px;
  background: linear-gradient(135deg, var(--blue-800), var(--blue-600));
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mock-thumb.t2 { background: linear-gradient(135deg, #065f46, #10b981); }
.mock-thumb.t3 { background: linear-gradient(135deg, #78350f, #f59e0b); }

.mock-info { flex: 1; display: flex; flex-direction: column; }
.mock-name { font-size: .69rem; font-weight: 500; color: rgba(255,255,255,.85); white-space: nowrap; }
.mock-sku  { font-size: .59rem; color: rgba(255,255,255,.3); margin-top: 1px; }

.mock-qty-ctrl {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(255,255,255,.06);
  border-radius: 6px;
  padding: 2px 5px;
}
.qty-btn { font-size: .65rem; color: rgba(255,255,255,.5); cursor: default; line-height: 1; }
.qty-val { font-size: .68rem; font-weight: 700; color: rgba(255,255,255,.9); min-width: 10px; text-align: center; }

.mock-price { font-size: .72rem; font-weight: 700; color: rgba(255,255,255,.9); white-space: nowrap; }

.mockup-divider { height: 1px; background: rgba(255,255,255,.05); }

.mockup-subtotals { display: flex; flex-direction: column; gap: .2rem; }
.subtotal-row {
  display: flex;
  justify-content: space-between;
  font-size: .65rem;
  color: rgba(255,255,255,.4);
}
.subtotal-row.discount { color: #6ee7b7; }

.mockup-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .75rem;
  color: rgba(255,255,255,.55);
  background: rgba(255,255,255,.04);
  border-radius: 7px;
  padding: .45rem .6rem;
}
.mock-total { font-weight: 800; color: #fff; font-size: .95rem; }

.mockup-payment-chips {
  display: flex;
  gap: .35rem;
}
.pay-chip {
  font-size: .62rem;
  font-weight: 600;
  padding: .25rem .6rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.4);
  cursor: default;
}
.pay-chip.pay-active {
  background: rgba(37,99,235,.3);
  border-color: rgba(37,99,235,.5);
  color: #93c5fd;
}

.mockup-btn-row {
  display: flex;
  gap: .4rem;
}
.mock-btn-cancel {
  padding: .5rem .8rem;
  border-radius: 8px;
  font-size: .72rem;
  font-weight: 600;
  color: rgba(255,255,255,.4);
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.07);
  text-align: center;
  flex-shrink: 0;
}
.mock-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: linear-gradient(135deg, var(--blue-600), var(--blue-700));
  color: #fff;
  border-radius: 8px;
  padding: .55rem;
  font-size: .78rem;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(37,99,235,.4);
}

/* ===== CHIPS ===== */
.phone-chip, .stat-chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 9px;
  background: rgba(15,23,42,.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  padding: .55rem .85rem;
  box-shadow: 0 8px 24px rgba(0,0,0,.4);
}

.chip-icon {
  width: 28px; height: 28px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.chip-green { background: rgba(16,185,129,.2); color: #10b981; }
.chip-blue  { background: rgba(37,99,235,.25); color: #60a5fa; }
.chip-amber { background: rgba(245,158,11,.2); color: #f59e0b; }

.chip-title { font-size: .72rem; font-weight: 700; color: rgba(255,255,255,.9); }
.chip-sub   { font-size: .62rem; color: rgba(255,255,255,.45); margin-top: 1px; }

.phone-chip       { bottom: 16px; left: 8px; }
.stat-chip-right  { top: 8px; right: 8px; }
.stat-chip-bottom { bottom: 0px; right: 100px; }

/* Chip animations */
.chip-anim-1 { animation: float-1 4s ease-in-out infinite; }
.chip-anim-2 { animation: float-2 5s ease-in-out infinite; }
.chip-anim-3 { animation: float-3 3.5s ease-in-out infinite; }

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

.hero-wave {
  position: relative;
  height: 80px;
  margin-top: -1px;
}
.hero-wave svg { width: 100%; height: 100%; }

/* ===== TRUST STRIP ===== */
.trust-strip {
  background: #fff;
  border-bottom: 1px solid var(--gray-200);
  padding: 1.25rem 0;
}

.trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .85rem;
  font-weight: 500;
  color: var(--gray-700);
}

.trust-sep {
  width: 1px;
  height: 20px;
  background: var(--gray-200);
}

/* ===== SECTION BASE ===== */
.section { padding: 5rem 0; }

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-badge {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--blue-600);
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  border-radius: 999px;
  padding: .3rem .8rem;
  margin-bottom: .75rem;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--gray-900);
  margin-bottom: .6rem;
}

.section-sub {
  font-size: 1rem;
  color: var(--gray-500);
  max-width: 540px;
  margin: 0 auto;
}

/* ===== FEATURES GRID ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.feature-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: box-shadow .2s, border-color .2s, transform .2s;
}
.feature-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--blue-200);
  transform: translateY(-2px);
}

.feature-icon {
  width: 44px;
  height: 44px;
  background: var(--blue-50);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--blue-600);
}
.feature-icon svg { width: 22px; height: 22px; }

.feature-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: .4rem;
}

.feature-card p {
  font-size: .88rem;
  color: var(--gray-500);
  line-height: 1.55;
}

/* ===== STEPS ===== */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 1rem;
  align-items: start;
}

.step-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
}

.step-num {
  width: 48px; height: 48px;
  background: var(--blue-600);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.25rem;
  margin: 0 auto 1rem;
}

.step-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: .4rem;
}
.step-card p { font-size: .88rem; color: var(--gray-500); }

.step-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 3rem;
}
.step-arrow svg { width: 32px; height: 32px; }

/* ===== COMPARATIVA ===== */
.table-wrap { overflow-x: auto; }

.comp-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .9rem;
}

.comp-table th, .comp-table td {
  padding: .9rem 1.25rem;
  text-align: center;
  border-bottom: 1px solid var(--gray-200);
}

.comp-table th {
  background: var(--gray-50);
  font-weight: 700;
  color: var(--gray-700);
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.comp-table td:first-child { text-align: left; color: var(--gray-700); }

.col-pos { background: var(--blue-50); }
.comp-table th.col-pos { color: var(--blue-700); }

.comp-table tr:last-child td { border-bottom: none; }

.si { color: var(--green-500); font-size: 1.1rem; font-weight: 700; }
.no { color: var(--gray-400); font-size: 1.1rem; }

/* ===== PRECIOS ===== */
.toggle-billing {
  display: flex;
  justify-content: center;
  gap: .5rem;
  margin-bottom: 2.5rem;
}

.toggle-btn {
  font-family: inherit;
  font-size: .85rem;
  font-weight: 600;
  padding: .45rem 1.1rem;
  border-radius: 999px;
  border: 2px solid var(--gray-200);
  background: #fff;
  color: var(--gray-500);
  cursor: pointer;
  transition: all .15s;
  display: flex;
  align-items: center;
  gap: .4rem;
}
.toggle-btn.active {
  background: var(--gray-900);
  border-color: var(--gray-900);
  color: #fff;
}

.save-badge {
  background: var(--green-500);
  color: #fff;
  font-size: .7rem;
  border-radius: 999px;
  padding: .1rem .45rem;
  font-weight: 700;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  align-items: start;
}

.plan-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 2rem;
  position: relative;
  transition: box-shadow .2s;
}

.plan-card:hover { box-shadow: var(--shadow-md); }

.plan-popular {
  border-color: var(--blue-600);
  box-shadow: 0 0 0 3px rgba(37,99,235,.12);
}

.popular-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue-600);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  border-radius: 999px;
  padding: .25rem .85rem;
  white-space: nowrap;
  letter-spacing: .04em;
}

.plan-header { margin-bottom: 1.25rem; }

.plan-name {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--gray-900);
}

.plan-desc {
  font-size: .82rem;
  color: var(--gray-500);
  margin-top: .2rem;
}

.plan-price {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  margin-bottom: .25rem;
}

.price-currency { font-size: 1.2rem; font-weight: 700; color: var(--gray-700); margin-bottom: 5px; }
.price-amount { font-size: 2.4rem; font-weight: 800; color: var(--gray-900); line-height: 1; }
.price-period { font-size: .8rem; color: var(--gray-400); margin-bottom: 6px; margin-left: 4px; }

.price-note { font-size: .75rem; color: var(--gray-400); margin-bottom: 1.5rem; }

.feature-tag {
  display: inline-block;
  background: var(--blue-50);
  color: var(--blue-700);
  font-size: .68rem;
  font-weight: 700;
  border-radius: 999px;
  padding: .1rem .45rem;
  margin-left: 2px;
  vertical-align: middle;
  border: 1px solid var(--blue-100);
}

.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .55rem;
  margin-bottom: .25rem;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .88rem;
  color: var(--gray-700);
}

.plan-features li.dim { color: var(--gray-400); }

/* ===== TESTIMONIOS ===== */
.testimonios-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.testi-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.testi-stars { color: var(--amber-500); font-size: 1rem; letter-spacing: .05em; }

.testi-card > p {
  font-size: .9rem;
  color: var(--gray-700);
  line-height: 1.6;
  flex: 1;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.testi-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--blue-600);
  color: #fff;
  font-size: .78rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testi-author strong { display: block; font-size: .88rem; color: var(--gray-900); }
.testi-author span  { font-size: .78rem; color: var(--gray-400); }

/* ===== FAQ ===== */
.faq-container { max-width: 720px; }

.faq-list { display: flex; flex-direction: column; gap: .5rem; }

.faq-item {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color .15s;
}
.faq-item[open] { border-color: var(--blue-200); }

.faq-item summary {
  padding: 1.1rem 1.25rem;
  font-weight: 600;
  font-size: .95rem;
  color: var(--gray-900);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--blue-600);
  flex-shrink: 0;
  transition: transform .2s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }

.faq-item p {
  padding: 0 1.25rem 1.1rem;
  font-size: .88rem;
  color: var(--gray-500);
  line-height: 1.65;
}

/* ===== CTA FINAL ===== */
.cta-final {
  background: linear-gradient(135deg, var(--blue-950) 0%, var(--blue-900) 60%, var(--blue-800) 100%);
  color: #fff;
  text-align: center;
}

.cta-inner h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  margin-bottom: .75rem;
}
.cta-inner p { color: rgba(255,255,255,.7); margin-bottom: 2rem; font-size: 1rem; }

.cta-btns { display: flex; gap: .75rem; justify-content: center; flex-wrap: wrap; }

/* ===== FOOTER ===== */
.footer {
  background: var(--gray-900);
  color: rgba(255,255,255,.7);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  padding: 3.5rem 24px 2.5rem;
  max-width: 1160px;
  margin: 0 auto;
}

.footer-brand { display: flex; flex-direction: column; gap: .75rem; }
.footer-brand p { font-size: .85rem; line-height: 1.5; max-width: 280px; }

.footer-links { display: flex; gap: 2.5rem; }

.footer-col {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.footer-col h4 {
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: rgba(255,255,255,.4);
  margin-bottom: .25rem;
}

.footer-col a {
  font-size: .85rem;
  color: rgba(255,255,255,.6);
  transition: color .15s;
}
.footer-col a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 1.25rem 0;
}
.footer-bottom p {
  text-align: center;
  font-size: .8rem;
  color: rgba(255,255,255,.3);
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .45s ease, transform .45s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .plans-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links, .nav-ctas { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 64px 0 0 0;
    background: #fff;
    padding: 2rem 1.5rem;
    gap: 1.25rem;
    z-index: 99;
  }
  .nav-links.open a { font-size: 1.1rem; font-weight: 600; color: var(--gray-900); }
  .nav-links.open ~ .nav-ctas {
    display: flex;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    padding: 1rem 1.5rem;
    background: #fff;
    border-top: 1px solid var(--gray-200);
    z-index: 99;
  }

  .nav-toggle { display: flex; }

  .hero-inner { grid-template-columns: 1fr; padding-bottom: 3rem; }
  .hero-visual { display: none; }
  .hero-stats { gap: 1rem; }
  .h-stat-num { font-size: 1.1rem; }

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

  .steps-grid { grid-template-columns: 1fr; }
  .step-arrow { display: none; }

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

  .trust-sep { display: none; }
  .trust-inner { justify-content: flex-start; flex-direction: column; align-items: flex-start; padding: 0 1.5rem; }

  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-links { flex-direction: column; gap: 1.5rem; }
}

@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; }
  .cta-btns { flex-direction: column; }
  .hero-title { font-size: 1.75rem; }
}
