/* ============================================
   GOGNYX Landing — styles.css
   Design: Dark Hero + Light Body | MOTION=5
   Tokens: void/cyan/gold/mint/star/surface
   ============================================ */

/* ---------- Tokens ---------- */
:root {
  --void:    #0A0E1A;
  --void2:   #0F172A;
  --cyan:    #22D3EE;
  --gold:    #F59E0B;
  --mint:    #00F5A0;
  --star:    #E0E7FF;
  --surface: #F8FAFC;
  --border:  #E2E8F0;
  --muted:   #64748B;
  --text:    #0F172A;
  --red:     #EF4444;

  --card-dark:        #111827;
  --card-dark-border: #1E2D45;
  --muted-dim:        #94A3B8;

  --radius-card:   12px;
  --radius-btn:    8px;
  --radius-input:  8px;
  --radius-badge:  6px;

  --transition: 200ms ease-out;
  --font: 'Geist', system-ui, -apple-system, sans-serif;
}

/* ---------- Visually hidden (sr-only) ---------- */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ---------- Skip link (a11y) ---------- */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 16px;
  z-index: 9999;
  background: var(--cyan);
  color: var(--void);
  padding: 10px 20px;
  border-radius: var(--radius-btn);
  font-weight: 700;
  font-size: 14px;
}
.skip-link:focus { left: 16px; }

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--surface);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---------- Utilities ---------- */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (max-width: 768px) { .container { padding: 0 16px; } }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font);
  font-weight: 700;
  font-size: 15px;
  padding: 12px 24px;
  border-radius: var(--radius-btn);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  white-space: nowrap;
  text-decoration: none;
}
.btn:active { transform: scale(0.98); }
.btn:focus-visible { outline: 2px solid var(--cyan); outline-offset: 3px; }
a:focus-visible { outline: 2px solid var(--cyan); outline-offset: 2px; border-radius: 2px; }
.btn-primary {
  background: var(--cyan);
  color: var(--void);
  border-color: var(--cyan);
}
.btn-primary:hover { background: #1bc8e5; box-shadow: 0 0 24px rgba(34,211,238,0.35); }
.btn-ghost {
  background: transparent;
  color: var(--star);
  border-color: rgba(255,255,255,0.2);
}
.btn-ghost:hover { border-color: var(--cyan); color: var(--cyan); }
.btn-outline-dark {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.btn-outline-dark:hover { border-color: var(--cyan); color: var(--cyan); }
.btn-sm { font-size: 13px; padding: 10px 18px; min-height: 44px; }

/* ---------- S1: Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10,14,26,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-logo-mark {
  width: 40px;
  height: 40px;
  background: var(--cyan);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 15px;
  color: var(--void);
  flex-shrink: 0;
  box-shadow: 0 0 16px rgba(34,211,238,0.35);
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav-logo-name {
  font-weight: 900;
  font-size: 19px;
  letter-spacing: 1.5px;
  color: #fff;
}
.nav-logo-phonetic {
  font-size: 9px;
  color: var(--muted);
  letter-spacing: 0.5px;
  margin-top: 2px;
}

/* ---------- S2: Hero ---------- */
.hero {
  background: var(--void);
  padding: 80px 0 100px;
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(34,211,238,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: 64px;
  align-items: center;
}
.hero-brand-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.5s ease-out 0.1s forwards;
}
.hero-brand-mark {
  width: 44px;
  height: 44px;
  background: var(--cyan);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 16px;
  color: var(--void);
  flex-shrink: 0;
  box-shadow: 0 0 20px rgba(34,211,238,0.45);
}
.hero-brand-name {
  font-weight: 900;
  font-size: 26px;
  letter-spacing: 2.5px;
  color: var(--cyan);
}
.hero-h1 {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1.5px;
  color: var(--star);
  margin-bottom: 20px;
  text-wrap: balance;
  opacity: 0;
  animation: fadeUp 0.5s ease-out 0.2s forwards;
}
.hero-subhead {
  font-size: 17px;
  line-height: 1.65;
  color: var(--muted);
  margin-bottom: 12px;
  max-width: 480px;
  opacity: 0;
  animation: fadeUp 0.5s ease-out 0.3s forwards;
}
.hero-tagline {
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 0.5s ease-out 0.35s forwards;
}
.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
  opacity: 0;
  animation: fadeUp 0.5s ease-out 0.4s forwards;
}

/* Hero asset */
.hero-asset {
  opacity: 0;
  animation: fadeUp 0.6s ease-out 0.5s forwards;
}
.comparison-card {
  background: var(--card-dark);
  border: 1px solid var(--card-dark-border);
  border-radius: var(--radius-card);
  padding: 24px;
  box-shadow: 0 0 60px rgba(34,211,238,0.1);
  max-width: 340px;
  margin-left: auto;
}
.comparison-card-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--muted);
  margin-bottom: 16px;
}
.comparison-rows { display: flex; flex-direction: column; gap: 8px; }
.comparison-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  border-radius: 8px;
}
.comparison-row.red   { background: rgba(239,68,68,0.08); border: 1px solid rgba(239,68,68,0.2); }
.comparison-row.cyan  { background: rgba(34,211,238,0.08); border: 1px solid rgba(34,211,238,0.2); }
.comparison-row.mint  { background: rgba(0,245,160,0.08); }
.comparison-row-label { font-size: 13px; color: var(--muted-dim); }
.comparison-row-value { font-size: 15px; font-weight: 800; }
.comparison-row.red  .comparison-row-value { color: var(--red); }
.comparison-row.cyan .comparison-row-value { color: var(--cyan); }
.comparison-row.mint .comparison-row-value { color: var(--mint); font-size: 17px; }
.comparison-note {
  font-size: 10px;
  color: var(--muted);
  text-align: center;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--card-dark-border);
}

/* ---------- S3: Cómo funciona ---------- */
.como-funciona {
  background: var(--surface);
  padding: 96px 0;
}
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-title {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 900;
  letter-spacing: -0.5px;
  color: var(--text);
  margin-bottom: 12px;
  text-wrap: balance;
}
.section-subtitle {
  font-size: 16px;
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(16.67% + 16px);
  right: calc(16.67% + 16px);
  height: 1px;
  background: linear-gradient(90deg, var(--border), var(--cyan), var(--border));
  opacity: 0.5;
}
.step-card {
  text-align: center;
  padding: 24px 16px;
  position: relative;
  z-index: 1;
}
.step-number {
  width: 56px;
  height: 56px;
  background: var(--void);
  border: 2px solid var(--cyan);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 900;
  color: var(--cyan);
  margin: 0 auto 20px;
}
.step-title {
  font-size: 17px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 8px;
}
.step-desc { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* ---------- S4: Pricing ---------- */
.pricing {
  background: #fff;
  padding: 96px 0;
  border-top: 1px solid var(--border);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: start;
}
.tier-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}
.tier-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.08); }
.tier-card.featured {
  background: var(--void);
  border-color: var(--cyan);
  box-shadow: 0 0 32px rgba(34,211,238,0.15);
  transform: scale(1.02);
}
.tier-card.featured:hover { transform: scale(1.02) translateY(-4px); }
.tier-card.premium { border-color: rgba(245,158,11,0.4); }
.tier-header { margin-bottom: 20px; }
.tier-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: var(--radius-badge);
  background: var(--cyan);
  color: var(--void);
  margin-bottom: 8px;
}
.tier-name {
  font-size: 16px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 4px;
}
.tier-card.featured .tier-name { color: var(--star); }
.tier-price {
  font-size: 36px;
  font-weight: 900;
  letter-spacing: -1px;
  color: var(--text);
  line-height: 1;
  margin-bottom: 4px;
}
.tier-card.featured .tier-price { color: var(--cyan); }
.tier-card.premium .tier-price { color: var(--gold); }
.tier-price-label { font-size: 12px; color: var(--muted); }
.tier-card.featured .tier-price-label { color: var(--muted); }
.tier-desc { font-size: 13px; color: var(--muted); margin-bottom: 20px; line-height: 1.5; }
.tier-card.featured .tier-desc { color: var(--muted); }
.tier-bullets { flex: 1; margin-bottom: 24px; }
.tier-bullet {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.4;
}
.tier-card.featured .tier-bullet { color: var(--star); }
.tier-bullet-dot {
  width: 6px;
  height: 6px;
  background: var(--cyan);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 5px;
}
.tier-card.premium .tier-bullet-dot { background: var(--gold); }
.tier-cta { width: 100%; }
.tier-cta.featured-cta {
  background: var(--cyan);
  color: var(--void);
  border-color: var(--cyan);
}
.tier-cta.featured-cta:hover { background: #1bc8e5; }
.pricing-note {
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  margin-top: 32px;
  padding: 16px;
  background: var(--surface);
  border-radius: var(--radius-card);
  border: 1px solid var(--border);
}

/* ---------- S5: Banda B2B ---------- */
.banda-b2b {
  background: var(--void2);
  padding: 80px 0;
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.b2b-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.b2b-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.b2b-headline {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 900;
  letter-spacing: -0.5px;
  color: var(--star);
  margin-bottom: 16px;
  line-height: 1.2;
  text-wrap: balance;
}
.b2b-subhead { font-size: 15px; color: var(--muted); line-height: 1.65; margin-bottom: 28px; }
.b2b-bullets { display: flex; flex-direction: column; gap: 16px; }
.b2b-bullet { display: flex; align-items: flex-start; gap: 12px; }
.b2b-bullet-icon {
  width: 20px;
  height: 20px;
  background: rgba(34,211,238,0.1);
  border: 1px solid rgba(34,211,238,0.3);
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.b2b-bullet-dot {
  width: 6px; height: 6px;
  background: var(--cyan);
  border-radius: 50%;
}
.b2b-bullet-text { font-size: 14px; color: var(--star); line-height: 1.5; }
.b2b-cta-wrap { margin-top: 32px; }
.btn-b2b {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
  font-weight: 700;
}
.btn-b2b:hover { background: rgba(245,158,11,0.1); }
.b2b-types-label {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}
.b2b-types { display: flex; flex-direction: column; gap: 12px; }
.b2b-type-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-card);
  padding: 16px 20px;
  cursor: pointer;
  width: 100%;
  text-align: left;
  font-family: var(--font);
  transition: border-color var(--transition), background var(--transition);
}
.b2b-type-item:hover {
  border-color: rgba(34, 211, 238, 0.35);
  background: rgba(34, 211, 238, 0.04);
}
.b2b-type-item:focus-visible { outline: 2px solid var(--cyan); outline-offset: 2px; border-radius: var(--radius-card); }
.b2b-type-arrow {
  font-size: 13px;
  color: var(--muted);
  opacity: 0.5;
  display: inline-block;
  transition: transform var(--transition), opacity var(--transition), color var(--transition);
}
.b2b-type-item:hover .b2b-type-arrow {
  transform: translateX(4px);
  opacity: 1;
  color: var(--cyan);
}
.b2b-type-name { font-size: 14px; font-weight: 700; color: var(--star); margin-bottom: 4px; }
.b2b-type-desc { font-size: 12px; color: var(--muted); }

/* ---------- S6: Credibilidad ---------- */
.credibilidad {
  background: var(--surface);
  padding: 96px 0;
  border-top: 1px solid var(--border);
}
.credibilidad-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.credibilidad-stat {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.stat-block {
  padding: 28px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
}
.stat-number {
  font-size: 48px;
  font-weight: 900;
  letter-spacing: -1.5px;
  color: var(--cyan);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label { font-size: 14px; color: var(--muted); line-height: 1.5; }
.stat-source { font-size: 11px; color: #475569; margin-top: 8px; }
.credibilidad-copy { padding-top: 8px; }
.credibilidad-copy p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 20px;
  text-wrap: pretty;
}
.credibilidad-copy p:last-child { margin-bottom: 0; }

/* ---------- S7: Trust strip ---------- */
.trust-strip {
  background: var(--void);
  padding: 40px 0;
}
.trust-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.trust-item { display: flex; align-items: center; gap: 10px; }
.trust-dot {
  width: 8px; height: 8px;
  background: var(--cyan);
  border-radius: 50%;
  flex-shrink: 0;
}
.trust-label { font-size: 14px; font-weight: 600; color: var(--star); letter-spacing: 0.3px; }

/* ---------- S8: CTA final ---------- */
.cta-final {
  background: var(--void);
  padding: 96px 0;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.cta-final-h2 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900;
  letter-spacing: -1px;
  color: var(--star);
  margin-bottom: 16px;
  line-height: 1.1;
}
.cta-final-sub { font-size: 17px; color: var(--muted); margin-bottom: 36px; }

/* ---------- S9: Footer ---------- */
.footer {
  background: #060A14;
  padding: 48px 0 32px;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.footer-brand {}
.footer-brand-name { font-size: 18px; font-weight: 900; letter-spacing: 1.5px; color: #fff; }
.footer-descriptor { font-size: 12px; color: var(--muted); margin-top: 2px; }
.footer-phonetic { font-size: 11px; color: var(--muted); margin-top: 2px; }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-link { font-size: 13px; color: var(--muted); transition: color var(--transition); }
.footer-link:hover { color: var(--cyan); }
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.04);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-copyright { font-size: 12px; color: var(--muted); }
.footer-rnpdp { font-size: 11px; color: var(--muted); }

/* ---------- B2B Modal ---------- */
.b2b-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.b2b-modal[hidden] { display: none; }
.b2b-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.78);
  opacity: 0;
  transition: opacity 0.2s ease-out;
}
.b2b-modal.is-open .b2b-modal-backdrop { opacity: 1; }
.b2b-modal-panel {
  position: relative;
  z-index: 1;
  background: var(--void2);
  border: 1px solid rgba(245,158,11,0.25);
  border-radius: 16px;
  padding: 36px 32px;
  width: 100%;
  max-width: 680px;
  max-height: 90vh;
  overflow-y: auto;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.22s ease-out, transform 0.22s ease-out;
}
.b2b-modal.is-open .b2b-modal-panel { opacity: 1; transform: translateY(0); }
.b2b-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--muted);
  font-family: var(--font);
  transition: background var(--transition), color var(--transition);
}
.b2b-modal-close:hover { background: rgba(255,255,255,0.12); color: var(--star); }
.b2b-modal-close:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.b2b-modal-title {
  font-size: 22px;
  font-weight: 900;
  color: var(--star);
  margin-bottom: 8px;
  padding-right: 40px;
}
.b2b-modal-subtitle { font-size: 14px; color: var(--muted); line-height: 1.55; }
.b2b-pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 24px;
}
.b2b-pkg-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(245,158,11,0.15);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: border-color var(--transition);
}
.b2b-pkg-card:hover { border-color: rgba(245,158,11,0.45); }
.b2b-pkg-icon {
  width: 28px;
  height: 28px;
  background: rgba(245,158,11,0.1);
  border: 1px solid rgba(245,158,11,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.b2b-pkg-dot { width: 8px; height: 8px; background: var(--gold); border-radius: 50%; }
.b2b-pkg-name { font-size: 14px; font-weight: 800; color: var(--star); }
.b2b-pkg-desc { font-size: 13px; color: var(--muted); line-height: 1.5; flex: 1; }
.btn-b2b-pkg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font);
  font-weight: 700;
  font-size: 13px;
  padding: 10px 16px;
  border-radius: var(--radius-btn);
  border: 1.5px solid rgba(245,158,11,0.5);
  color: var(--gold);
  background: transparent;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition);
  text-decoration: none;
  margin-top: 4px;
  white-space: nowrap;
}
.btn-b2b-pkg:hover { background: rgba(245,158,11,0.1); border-color: var(--gold); }
.btn-b2b-pkg:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.b2b-pkg-steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 12px;
  border-top: 1px solid rgba(245,158,11,0.12);
  counter-reset: step-counter;
  flex: 0 0 auto;
}
.b2b-pkg-steps li {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.4;
  display: flex;
  gap: 8px;
  align-items: flex-start;
  counter-increment: step-counter;
}
.b2b-pkg-steps li::before {
  content: counter(step-counter);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 16px;
  width: 16px;
  height: 16px;
  background: rgba(245,158,11,0.15);
  color: var(--gold);
  border-radius: 50%;
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ========== Ramos strip ========== */
.ramos-strip {
  background: rgba(10, 14, 26, 0.85);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 14px 0;
}
.ramos-strip-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.ramos-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  flex-shrink: 0;
}
.ramos-chips {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
}
.ramo-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--muted);
  white-space: nowrap;
  transition: border-color var(--transition), color var(--transition);
}
.ramo-chip.is-active {
  color: var(--mint);
  border-color: rgba(0, 245, 160, 0.4);
  background: rgba(0, 245, 160, 0.08);
  font-weight: 700;
}
.ramo-chip-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 6px rgba(0, 245, 160, 0.7);
}
.ramo-chip.is-soon { opacity: 0.55; }
.ramo-chip-tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--muted);
  opacity: 0.8;
}

/* ========== B2B modal — wider + new content ========== */
.b2b-modal-panel { max-width: 760px; }
.b2b-modal-head {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  padding-right: 40px;
  margin-bottom: 8px;
}
.b2b-modal-head .b2b-modal-title { margin-bottom: 0; padding-right: 0; }
.b2b-phase-badge {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 4px 10px;
  border-radius: 999px;
  color: var(--mint);
  background: rgba(0, 245, 160, 0.1);
  border: 1px solid rgba(0, 245, 160, 0.3);
  white-space: nowrap;
}
.b2b-section-label {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}
/* ----- Pricing ----- */
.b2b-pricing-section { margin-top: 28px; }
.b2b-pricing-table {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.b2b-pricing-col {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 16px 14px;
  text-align: center;
  transition: border-color var(--transition), transform var(--transition);
}
.b2b-pricing-col:hover { transform: translateY(-2px); }
.b2b-pricing-col.featured {
  border-color: rgba(245, 158, 11, 0.5);
  background: rgba(245, 158, 11, 0.06);
}
.b2b-pricing-flag {
  position: absolute;
  top: -9px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--void);
  background: var(--gold);
  padding: 3px 8px;
  border-radius: 999px;
  white-space: nowrap;
}
.b2b-pricing-tier {
  font-size: 14px;
  font-weight: 800;
  color: var(--star);
  margin-bottom: 4px;
}
.b2b-pricing-vol {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 10px;
}
.b2b-pricing-amount {
  font-size: 20px;
  font-weight: 900;
  color: var(--star);
  line-height: 1;
}
.b2b-pricing-per {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
}
.b2b-pricing-note {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.5;
  margin-top: 10px;
}
.b2b-flota-callout {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 14px;
  padding: 12px 16px;
  border-radius: 12px;
  background: rgba(34, 211, 238, 0.06);
  border: 1px solid rgba(34, 211, 238, 0.25);
}
.b2b-flota-icon {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  flex-shrink: 0;
  box-shadow: 0 0 6px rgba(34, 211, 238, 0.6);
}
.b2b-flota-text {
  font-size: 13px;
  color: var(--star);
  line-height: 1.5;
  flex: 1;
  min-width: 200px;
}
.b2b-flota-text strong { color: var(--cyan); font-weight: 800; }
.b2b-flota-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--cyan);
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 1px solid rgba(34, 211, 238, 0.4);
  transition: border-color var(--transition);
}
.b2b-flota-link:hover { border-color: var(--cyan); }
.b2b-flota-link:focus-visible { outline: 2px solid var(--cyan); outline-offset: 3px; }
/* ----- Flotas table ----- */
.b2b-flotas-section {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.b2b-flotas-subtitle {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 14px;
}
.b2b-flotas-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 10px;
  border: 1px solid rgba(34, 211, 238, 0.18);
}
.b2b-flotas-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  min-width: 360px;
}
.b2b-flotas-table thead tr {
  background: rgba(34, 211, 238, 0.06);
  border-bottom: 1px solid rgba(34, 211, 238, 0.18);
}
.b2b-flotas-table th {
  padding: 10px 14px;
  text-align: left;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}
.b2b-flotas-table tbody tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background var(--transition);
}
.b2b-flotas-table tbody tr:last-child { border-bottom: none; }
.b2b-flotas-table tbody tr:hover { background: rgba(255, 255, 255, 0.03); }
.b2b-flotas-table td {
  padding: 12px 14px;
  color: var(--star);
  vertical-align: middle;
}
.b2b-flotas-table td:first-child { font-weight: 700; color: var(--muted-dim); }
.b2b-flotas-price {
  font-size: 15px;
  font-weight: 900;
  color: var(--cyan) !important;
  white-space: nowrap;
}
.b2b-flotas-price small { font-size: 11px; font-weight: 600; color: var(--muted); }
.b2b-flotas-price-enterprise { font-size: 13px; }
.b2b-flotas-discount { font-size: 12px; font-weight: 700; color: var(--muted); }
.b2b-flotas-discount-val { color: var(--mint) !important; }
.b2b-flotas-row-enterprise { background: rgba(34, 211, 238, 0.04); }
.b2b-piloto-callout {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 12px;
  padding: 12px 16px;
  border-radius: 10px;
  background: rgba(245, 158, 11, 0.06);
  border: 1px solid rgba(245, 158, 11, 0.25);
}
.b2b-piloto-badge {
  display: inline-flex;
  align-items: center;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--void);
  white-space: nowrap;
  flex-shrink: 0;
  margin-top: 2px;
}
.b2b-piloto-text {
  font-size: 12px;
  color: var(--star);
  line-height: 1.6;
}
.b2b-piloto-text strong { font-weight: 800; }
.b2b-piloto-text span { color: var(--muted); }
.b2b-flotas-cta-link {
  display: inline-block;
  margin-top: 12px;
  font-size: 13px;
  font-weight: 700;
  color: var(--cyan);
  border-bottom: 1px solid rgba(34, 211, 238, 0.4);
  transition: border-color var(--transition);
  padding-bottom: 1px;
}
.b2b-flotas-cta-link:hover { border-color: var(--cyan); }
.b2b-flotas-cta-link:focus-visible { outline: 2px solid var(--cyan); outline-offset: 3px; }
/* ----- Segments ----- */
.b2b-segments { margin-top: 28px; }
.b2b-segments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.b2b-segment-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(245, 158, 11, 0.15);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: border-color var(--transition);
}
.b2b-segment-card:hover { border-color: rgba(245, 158, 11, 0.45); }
/* ----- Lead form ----- */
.b2b-lead-section {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.b2b-lead-head { margin-bottom: 18px; }
.b2b-lead-title {
  font-size: 18px;
  font-weight: 900;
  color: var(--star);
  margin-bottom: 4px;
}
.b2b-lead-subtitle {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}
.b2b-lead-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.b2b-field { display: flex; flex-direction: column; gap: 6px; }
.b2b-field-full { grid-column: 1 / -1; }
.b2b-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--star);
}
.b2b-req { color: var(--gold); }
.b2b-input {
  font-family: var(--font);
  font-size: 14px;
  color: var(--star);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-btn);
  padding: 10px 12px;
  width: 100%;
  transition: border-color var(--transition), background var(--transition);
}
.b2b-input::placeholder { color: var(--muted); opacity: 0.7; }
.b2b-input:focus {
  outline: none;
  border-color: rgba(245, 158, 11, 0.6);
  background: rgba(255, 255, 255, 0.06);
}
.b2b-input:focus-visible { outline: 2px solid var(--gold); outline-offset: 1px; }
.b2b-input[aria-invalid="true"] { border-color: var(--red); }
.b2b-select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%2364748B' d='M6 8 0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 34px;
}
.b2b-select option { background: var(--void2); color: var(--star); }
.b2b-textarea { resize: vertical; min-height: 72px; line-height: 1.5; }
.b2b-consent { gap: 0; }
.b2b-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
  cursor: pointer;
}
.b2b-checkbox input {
  margin-top: 2px;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  accent-color: var(--gold);
  cursor: pointer;
}
.b2b-checkbox a { color: var(--cyan); text-decoration: underline; }
.btn-b2b-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  font-family: var(--font);
  font-weight: 800;
  font-size: 15px;
  padding: 13px 16px;
  border-radius: var(--radius-btn);
  border: 1.5px solid var(--gold);
  color: var(--gold);
  background: rgba(245, 158, 11, 0.08);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}
.btn-b2b-submit:hover { background: rgba(245, 158, 11, 0.18); }
.btn-b2b-submit:active { transform: translateY(1px); }
.btn-b2b-submit:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.btn-b2b-submit[disabled] { opacity: 0.6; cursor: progress; }
.b2b-form-status {
  grid-column: 1 / -1;
  font-size: 13px;
  line-height: 1.5;
  padding: 12px 14px;
  border-radius: var(--radius-btn);
  background: rgba(0, 245, 160, 0.08);
  border: 1px solid rgba(0, 245, 160, 0.3);
  color: var(--mint);
}
.b2b-form-status[hidden] { display: none; }
.b2b-form-status.is-error {
  background: rgba(239, 68, 68, 0.08);
  border-color: rgba(239, 68, 68, 0.35);
  color: var(--red);
}
.b2b-form-fallback {
  grid-column: 1 / -1;
  font-size: 12px;
  color: var(--muted);
  text-align: center;
}
.b2b-form-fallback a { color: var(--cyan); text-decoration: none; }
.b2b-form-fallback a:hover { text-decoration: underline; }
/* ----- Step picker (modal step 1) ----- */
.b2b-step-picker { margin-top: 20px; }
.b2b-step-picker[hidden] { display: none; }
.b2b-step-picker-label { font-size: 13px; font-weight: 600; color: var(--muted); margin-bottom: 14px; }
.b2b-step-picker-cards { display: flex; flex-direction: column; gap: 10px; }
.b2b-picker-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 18px 20px;
  cursor: pointer;
  width: 100%;
  text-align: left;
  font-family: var(--font);
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
}
.b2b-picker-card:hover { border-color: rgba(34,211,238,0.45); background: rgba(34,211,238,0.05); transform: translateX(3px); }
.b2b-picker-card:focus-visible { outline: 2px solid var(--cyan); outline-offset: 2px; }
.b2b-picker-card-body { flex: 1; }
.b2b-picker-card-name { font-size: 14px; font-weight: 700; color: var(--star); margin-bottom: 4px; }
.b2b-picker-card-desc { font-size: 12px; color: var(--muted); line-height: 1.4; }
.b2b-picker-card-arrow { font-size: 16px; color: var(--muted); flex-shrink: 0; transition: transform var(--transition), color var(--transition); }
.b2b-picker-card:hover .b2b-picker-card-arrow { transform: translateX(4px); color: var(--cyan); }
/* ----- Back button ----- */
.b2b-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font);
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px 0 16px;
  transition: color var(--transition);
}
.b2b-back-btn:hover { color: var(--star); }
.b2b-back-btn:focus-visible { outline: 2px solid var(--cyan); outline-offset: 3px; }
.b2b-back-btn[hidden] { display: none; }
/* ----- Step content wrapper ----- */
#b2b-step-content[hidden] { display: none; }
/* ----- Segment locked ----- */
select.b2b-input[disabled] {
  opacity: 1;
  cursor: not-allowed;
  border-color: rgba(34,211,238,0.4);
  color: var(--cyan);
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%2322D3EE' d='M6 8 0 0h12z'/%3E%3C/svg%3E");
}
.b2b-segment-note { font-size: 11px; color: var(--mint); line-height: 1.4; }
.b2b-segment-note[hidden] { display: none; }
/* ----- Phone group ----- */
.b2b-phone-group { display: flex; gap: 8px; }
.b2b-phone-prefix { flex: 0 0 auto; width: auto; min-width: 96px; }
.b2b-phone-group .b2b-input:last-child { flex: 1; min-width: 0; }
/* ----- B2B modal responsive ----- */
@media (max-width: 1023px) {
  .b2b-pricing-table { grid-template-columns: 1fr; gap: 8px; }
  .b2b-pricing-col {
    display: grid;
    grid-template-columns: auto auto 1fr;
    align-items: center;
    text-align: left;
    gap: 10px;
    padding: 14px 16px;
  }
  .b2b-pricing-col:hover { transform: none; }
  .b2b-pricing-flag { position: static; transform: none; justify-self: start; grid-column: 1 / -1; }
  .b2b-pricing-tier, .b2b-pricing-vol { margin-bottom: 0; }
  .b2b-pricing-amount { justify-self: end; }
  .b2b-segments-grid { grid-template-columns: 1fr; }
}
@media (max-width: 767px) {
  .b2b-lead-form { grid-template-columns: 1fr; }
  .b2b-flota-callout { flex-direction: column; align-items: flex-start; }
  .b2b-piloto-callout { flex-direction: column; gap: 8px; }
  .ramos-label { width: 100%; }
}

/* ---------- Animations ---------- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ---------- Responsive: Tablet 768–1023 ---------- */
@media (max-width: 1023px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero-asset { order: 2; }
  .comparison-card { margin: 0 auto; max-width: 420px; }
  .hero-h1 { font-size: 40px; }
  .hero-subhead { max-width: 100%; }
  .steps-grid::before { display: none; }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .tier-card.featured { transform: none; }
  .tier-card.featured:hover { transform: translateY(-4px); }
  .b2b-grid { grid-template-columns: 1fr; gap: 40px; }
  .credibilidad-grid { grid-template-columns: 1fr; gap: 40px; }
  .credibilidad-stat { flex-direction: row; flex-wrap: wrap; }
  .stat-block { flex: 1; min-width: 200px; }
}

/* ---------- Responsive: Mobile <768 ---------- */
@media (max-width: 767px) {
  .hero { padding: 56px 0 72px; }
  .hero-grid { gap: 40px; }
  .como-funciona { padding: 64px 0; }
  .steps-grid { grid-template-columns: 1fr; gap: 24px; }
  .pricing { padding: 64px 0; }
  .pricing-grid { grid-template-columns: 1fr; gap: 16px; }
  .tier-card.featured { transform: none; }
  .banda-b2b { padding: 56px 0; }
  .credibilidad { padding: 64px 0; }
  .cta-final { padding: 64px 0; }
  .trust-items { gap: 24px; flex-direction: column; }
  .footer-inner { flex-direction: column; gap: 24px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; text-align: center; }
  .credibilidad-stat { flex-direction: column; }
  .b2b-types { gap: 8px; }
  .b2b-pkg-grid { grid-template-columns: 1fr; }
  .b2b-modal-panel { padding: 24px 16px; }
  .hero-brand-eyebrow { flex-wrap: wrap; gap: 6px; }
}

@media (max-width: 479px) {
  .nav-logo-phonetic { display: none; }
}

/* ---------- Responsive: Large ≥1280 ---------- */
@media (min-width: 1280px) {
  .hero { padding: 96px 0 120px; }
}
