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

:root {
  --amber:   #f59e0b;
  --amber2:  #fbbf24;
  --amber3:  #fde68a;
  --green:   #10b981;
  --blue:    #3b82f6;
  --purple:  #8b5cf6;
  --red:     #ef4444;
  --bg0:     #0a0a0f;
  --bg1:     #111118;
  --bg2:     #16161f;
  --bg3:     #1e1e2a;
  --bg4:     #252533;
  --border:  rgba(255,255,255,.07);
  --border2: rgba(245,158,11,.25);
  --text1:   #f5f5f5;
  --text2:   #a8a8b8;
  --text3:   #6b6b80;
  --shadow:  0 20px 60px rgba(0,0,0,.5);
  --r:       14px;
  --r2:      24px;
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg0);
  color: var(--text1);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── Scrollbar ─────────────────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg1); }
::-webkit-scrollbar-thumb { background: var(--bg4); border-radius: 99px; }

/* ── Typography ────────────────────────────────────────────────────────── */
h1,h2,h3,h4 { line-height: 1.2; font-weight: 700; }
a { color: inherit; text-decoration: none; }

.gradient-text {
  background: linear-gradient(135deg, var(--amber) 0%, var(--amber2) 50%, #fff8e1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Layout ────────────────────────────────────────────────────────────── */
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
section { padding: 100px 0; }

/* ── Buttons ───────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 10px;
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all .2s ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--amber) 0%, #e08a00 100%);
  color: #000;
  box-shadow: 0 4px 20px rgba(245,158,11,.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(245,158,11,.5);
}
.btn-ghost {
  background: transparent;
  color: var(--text1);
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  background: var(--bg3);
  border-color: var(--border2);
  color: var(--amber);
}
.btn-lg { padding: 18px 36px; font-size: 1.05rem; border-radius: 12px; }

/* ── Badge ─────────────────────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(245,158,11,.12);
  border: 1px solid rgba(245,158,11,.3);
  color: var(--amber);
  border-radius: 99px;
  padding: 5px 14px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
}

/* ═══════════════════════════════════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: all .3s ease;
}
#navbar.scrolled {
  background: rgba(10,10,15,.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.25rem;
  font-weight: 800;
}
.nav-logo .logo-icon {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--amber), #e08a00);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: .88rem;
  color: var(--text2);
  transition: color .2s;
}
.nav-links a:hover { color: var(--text1); }
.nav-cta { display: flex; gap: 10px; }

/* ═══════════════════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════════════════ */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% -20%, rgba(245,158,11,.18) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 80% 60%, rgba(16,185,129,.08) 0%, transparent 50%);
  pointer-events: none;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}
.hero-badge { margin-bottom: 24px; }
.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.2rem);
  font-weight: 800;
  letter-spacing: -.02em;
  margin-bottom: 24px;
  line-height: 1.1;
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text2);
  max-width: 600px;
  margin: 0 auto 40px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 64px;
}
.hero-stats {
  display: flex;
  gap: 48px;
  justify-content: center;
  flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--amber);
  line-height: 1;
}
.stat-label { font-size: .8rem; color: var(--text3); margin-top: 4px; }

/* ── Floating mockup ─────────────────────────────────────────────────── */
.hero-mockup {
  margin-top: 64px;
  position: relative;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.mockup-frame {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow), 0 0 0 1px rgba(245,158,11,.1);
}
.mockup-bar {
  background: var(--bg3);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--border);
}
.mockup-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.mockup-dot:nth-child(1) { background: #ef4444; }
.mockup-dot:nth-child(2) { background: #f59e0b; }
.mockup-dot:nth-child(3) { background: #10b981; }
.mockup-url {
  flex: 1;
  background: var(--bg4);
  border-radius: 6px;
  padding: 4px 12px;
  font-size: .72rem;
  color: var(--text3);
  margin: 0 12px;
}
.mockup-body {
  padding: 20px;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 16px;
  min-height: 280px;
}
.mockup-sidebar {
  background: var(--bg3);
  border-radius: 10px;
  padding: 14px 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.sidebar-item {
  padding: 8px 12px;
  border-radius: 7px;
  font-size: .72rem;
  color: var(--text3);
  display: flex;
  align-items: center;
  gap: 8px;
}
.sidebar-item.active {
  background: rgba(245,158,11,.15);
  color: var(--amber);
}
.sidebar-item .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
}
.mockup-main { display: flex; flex-direction: column; gap: 12px; }
.mockup-kpis {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.kpi-card {
  background: var(--bg3);
  border-radius: 8px;
  padding: 12px;
  border: 1px solid var(--border);
}
.kpi-val {
  font-size: 1rem;
  font-weight: 700;
  color: var(--amber);
  margin-bottom: 3px;
}
.kpi-lbl { font-size: .62rem; color: var(--text3); }
.mockup-table {
  background: var(--bg3);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
  flex: 1;
}
.table-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 80px;
  padding: 8px 14px;
  font-size: .68rem;
  color: var(--text2);
  border-bottom: 1px solid var(--border);
  align-items: center;
}
.table-row.head { color: var(--text3); font-size: .62rem; text-transform: uppercase; letter-spacing: .05em; }
.table-row:last-child { border-bottom: none; }
.stock-ok { color: var(--green); }
.stock-low { color: var(--amber); }
.stock-out { color: var(--red); }

/* ═══════════════════════════════════════════════════════════════════════
   LOGOS BAND
═══════════════════════════════════════════════════════════════════════ */
#logos {
  padding: 48px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg1);
}
.logos-label {
  text-align: center;
  font-size: .78rem;
  color: var(--text3);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 28px;
}
.logos-track {
  display: flex;
  gap: 48px;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}
.logo-item {
  font-size: .85rem;
  font-weight: 700;
  color: var(--text3);
  opacity: .5;
  transition: opacity .2s;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.logo-item:hover { opacity: .9; }

/* ═══════════════════════════════════════════════════════════════════════
   FEATURES
═══════════════════════════════════════════════════════════════════════ */
#features { background: var(--bg0); }
.section-label {
  text-align: center;
  margin-bottom: 16px;
}
.section-title {
  text-align: center;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 16px;
}
.section-sub {
  text-align: center;
  color: var(--text2);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto 64px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}
.feature-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--r2);
  padding: 32px;
  transition: all .3s ease;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--amber), transparent);
  opacity: 0;
  transition: opacity .3s;
}
.feature-card:hover {
  border-color: var(--border2);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,.4), 0 0 0 1px rgba(245,158,11,.1);
}
.feature-card:hover::before { opacity: 1; }
.feature-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}
.icon-amber { background: rgba(245,158,11,.15); }
.icon-green { background: rgba(16,185,129,.15); }
.icon-blue  { background: rgba(59,130,246,.15); }
.icon-purple{ background: rgba(139,92,246,.15); }
.icon-red   { background: rgba(239,68,68,.15); }
.icon-teal  { background: rgba(20,184,166,.15); }
.feature-title { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.feature-desc { font-size: .88rem; color: var(--text2); line-height: 1.65; }

/* ── Big feature ────────────────────────────────────────────────────── */
.big-feature {
  margin-top: 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.big-feature.reverse { direction: rtl; }
.big-feature.reverse > * { direction: ltr; }
.big-feature-content { }
.big-feature-tag { font-size: .78rem; color: var(--amber); font-weight: 600; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 12px; }
.big-feature-title { font-size: clamp(1.5rem, 3vw, 2.2rem); margin-bottom: 16px; }
.big-feature-desc { color: var(--text2); margin-bottom: 28px; line-height: 1.7; }
.checklist { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .9rem;
  color: var(--text2);
}
.checklist li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.big-feature-visual {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--r2);
  padding: 32px;
  box-shadow: var(--shadow);
}

/* ═══════════════════════════════════════════════════════════════════════
   HOW IT WORKS
═══════════════════════════════════════════════════════════════════════ */
#how { background: var(--bg1); }
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 15%;
  right: 15%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--amber), transparent);
  opacity: .3;
}
.step {
  text-align: center;
  padding: 24px 20px;
  position: relative;
}
.step-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--bg2);
  border: 2px solid var(--border2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--amber);
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
}
.step-title { font-size: .95rem; font-weight: 700; margin-bottom: 8px; }
.step-desc { font-size: .82rem; color: var(--text2); }

/* ═══════════════════════════════════════════════════════════════════════
   PRICING
═══════════════════════════════════════════════════════════════════════ */
#pricing { background: var(--bg0); }

.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 56px;
}
.toggle-lbl { font-size: .9rem; color: var(--text2); }
.toggle-switch {
  width: 52px; height: 28px;
  background: var(--bg4);
  border-radius: 99px;
  position: relative;
  cursor: pointer;
  border: 1px solid var(--border);
  transition: background .2s;
}
.toggle-switch.annual { background: var(--amber); }
.toggle-knob {
  position: absolute;
  top: 3px; left: 3px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: #fff;
  transition: transform .2s ease;
}
.toggle-switch.annual .toggle-knob { transform: translateX(24px); }
.discount-pill {
  background: rgba(16,185,129,.15);
  border: 1px solid rgba(16,185,129,.3);
  color: var(--green);
  font-size: .72rem;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 99px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.plan-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--r2);
  padding: 36px 32px;
  position: relative;
  transition: all .3s ease;
}
.plan-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,.4);
}
.plan-card.popular {
  background: var(--bg3);
  border-color: var(--amber);
  box-shadow: 0 0 0 1px rgba(245,158,11,.3), 0 20px 60px rgba(245,158,11,.12);
  transform: scale(1.03);
}
.plan-card.popular:hover {
  transform: scale(1.03) translateY(-4px);
}
.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--amber), #e08a00);
  color: #000;
  font-size: .72rem;
  font-weight: 800;
  padding: 4px 16px;
  border-radius: 99px;
  white-space: nowrap;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.plan-name {
  font-size: .82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--text3);
  margin-bottom: 12px;
}
.plan-name.popular { color: var(--amber); }
.plan-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  display: block;
}
.plan-price {
  display: flex;
  align-items: flex-start;
  gap: 4px;
  margin-bottom: 6px;
}
.plan-currency { font-size: 1.1rem; font-weight: 700; margin-top: 6px; color: var(--text2); }
.plan-amount {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  color: var(--text1);
}
.plan-period { font-size: .78rem; color: var(--text3); margin-bottom: 4px; }
.plan-annual-note { font-size: .75rem; color: var(--green); margin-bottom: 24px; min-height: 18px; }
.plan-desc { font-size: .85rem; color: var(--text2); margin-bottom: 28px; line-height: 1.6; }
.plan-divider { border: none; border-top: 1px solid var(--border); margin-bottom: 24px; }

.plan-features { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .85rem;
  color: var(--text2);
}
.feat-check { color: var(--green); font-weight: 700; flex-shrink: 0; }
.feat-x { color: var(--text3); flex-shrink: 0; }
.feat-disabled { color: var(--text3); }
.plan-cta { width: 100%; text-align: center; justify-content: center; }

/* ── Plan add-on (setup service) ─────────────────────────────────── */
.plan-addon {
  margin-top: 20px;
  border: 1px dashed rgba(245,158,11,.35);
  border-radius: 12px;
  overflow: hidden;
}
.plan-addon-header {
  background: rgba(245,158,11,.08);
  padding: 7px 14px;
  border-bottom: 1px dashed rgba(245,158,11,.2);
}
.plan-addon-tag {
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--amber);
}
.plan-addon-body { padding: 14px; }
.plan-addon-title {
  font-size: .88rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text1);
}
.plan-addon-desc {
  font-size: .78rem;
  color: var(--text3);
  line-height: 1.55;
  margin-bottom: 10px;
}
.plan-addon-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 4px;
}
.plan-addon-amount {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--amber);
}
.plan-addon-period {
  font-size: .72rem;
  color: var(--text3);
}

/* ═══════════════════════════════════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════════════════════════════════ */
#testimonials { background: var(--bg1); }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}
.testi-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--r2);
  padding: 28px;
  transition: all .3s ease;
}
.testi-card:hover {
  border-color: var(--border2);
  transform: translateY(-3px);
}
.stars { color: var(--amber); margin-bottom: 16px; font-size: .9rem; letter-spacing: 2px; }
.testi-text { font-size: .9rem; color: var(--text2); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  flex-shrink: 0;
}
.author-name { font-size: .88rem; font-weight: 600; }
.author-role { font-size: .75rem; color: var(--text3); }

/* ═══════════════════════════════════════════════════════════════════════
   FAQ
═══════════════════════════════════════════════════════════════════════ */
#faq { background: var(--bg0); }
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  transition: border-color .2s;
}
.faq-item.open { border-color: var(--border2); }
.faq-q {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  font-weight: 600;
  font-size: .95rem;
  user-select: none;
}
.faq-arrow {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--bg4);
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem;
  flex-shrink: 0;
  transition: all .3s;
  color: var(--text3);
}
.faq-item.open .faq-arrow {
  background: rgba(245,158,11,.15);
  color: var(--amber);
  transform: rotate(180deg);
}
.faq-a {
  display: none;
  padding: 0 24px 20px;
  font-size: .88rem;
  color: var(--text2);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════════════════
   CTA FINAL
═══════════════════════════════════════════════════════════════════════ */
#cta-final {
  padding: 100px 0;
  background: var(--bg1);
  position: relative;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(245,158,11,.1) 0%, transparent 65%);
  pointer-events: none;
}
.cta-box {
  position: relative;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}
.cta-title { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 20px; }
.cta-sub { color: var(--text2); font-size: 1.05rem; margin-bottom: 40px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-note { margin-top: 20px; font-size: .8rem; color: var(--text3); }

/* ═══════════════════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════════════════ */
footer {
  background: var(--bg0);
  border-top: 1px solid var(--border);
  padding: 60px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand { }
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 14px;
}
.footer-logo .logo-icon {
  width: 32px; height: 32px;
  background: linear-gradient(135deg, var(--amber), #e08a00);
  border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem;
}
.footer-tagline { font-size: .85rem; color: var(--text3); max-width: 260px; line-height: 1.6; }
.footer-col h4 { font-size: .82rem; font-weight: 700; color: var(--text1); margin-bottom: 16px; text-transform: uppercase; letter-spacing: .06em; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: .85rem; color: var(--text3); transition: color .2s; }
.footer-links a:hover { color: var(--amber); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy { font-size: .8rem; color: var(--text3); }

/* ═══════════════════════════════════════════════════════════════════════
   LIFETIME PROMO
═══════════════════════════════════════════════════════════════════════ */
.lifetime-wrapper {
  background: var(--bg2);
  border: 1px solid rgba(245,158,11,.35);
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  box-shadow:
    0 0 0 1px rgba(245,158,11,.12),
    0 30px 80px rgba(0,0,0,.5),
    0 0 60px rgba(245,158,11,.08);
}
.lifetime-wrapper::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(245,158,11,.1) 0%, transparent 60%),
    radial-gradient(ellipse 30% 40% at 100% 100%, rgba(16,185,129,.06) 0%, transparent 50%);
  pointer-events: none;
}

.lifetime-flames {
  background: linear-gradient(135deg, #b45309, #d97706, #f59e0b, #fbbf24);
  color: #000;
  text-align: center;
  padding: 10px 24px;
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  animation: flicker 2.5s ease-in-out infinite;
}
@keyframes flicker {
  0%,100% { opacity: 1; }
  50% { opacity: .88; }
}

.lifetime-inner {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 48px;
  padding: 52px 52px 52px 52px;
  position: relative;
  align-items: center;
}
.lifetime-tag {
  font-size: .78rem;
  color: var(--amber);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 14px;
}
.lifetime-title {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 18px;
  line-height: 1.1;
}
.lifetime-desc {
  color: var(--text2);
  font-size: .95rem;
  line-height: 1.7;
  margin-bottom: 24px;
}
.lifetime-desc strong { color: var(--amber); }

/* Urgency bar */
.lifetime-urgency { margin-top: 28px; }
.urgency-bar {
  height: 8px;
  background: var(--bg4);
  border-radius: 99px;
  overflow: hidden;
  margin-bottom: 8px;
}
.urgency-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--amber), #fbbf24);
  border-radius: 99px;
  transition: width 1.2s ease;
}
.urgency-label {
  font-size: .8rem;
  color: var(--text2);
}
#licencias-restantes { color: var(--amber); font-weight: 800; font-size: 1rem; }

/* Lifetime card */
.lifetime-card {
  background: var(--bg3);
  border: 1px solid rgba(245,158,11,.3);
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 0 40px rgba(245,158,11,.1);
}
.lc-tag {
  font-size: .7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--amber);
  background: rgba(245,158,11,.12);
  border: 1px solid rgba(245,158,11,.2);
  border-radius: 99px;
  padding: 4px 12px;
  display: inline-block;
  margin-bottom: 12px;
}
.lc-plan {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--text1);
}
.lc-price-wrap { margin-bottom: 16px; }
.lc-tachado {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
  flex-wrap: wrap;
}
.lc-old {
  font-size: 1rem;
  color: var(--text3);
  text-decoration: line-through;
}
.lc-price {
  display: flex;
  align-items: flex-start;
  gap: 4px;
  margin-bottom: 4px;
}
.lc-currency {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--amber);
  margin-top: 6px;
}
.lc-amount {
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--amber);
  line-height: 1;
}
.lc-period {
  font-size: .75rem;
  color: var(--text3);
  margin-bottom: 14px;
}
.lc-saving {
  background: rgba(16,185,129,.1);
  border: 1px solid rgba(16,185,129,.25);
  color: var(--green);
  border-radius: 8px;
  padding: 8px 14px;
  font-size: .82rem;
  font-weight: 600;
  margin-bottom: 20px;
}
.lc-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 16px;
  font-size: .72rem;
  color: var(--text3);
}

@media (max-width: 900px) {
  .lifetime-inner { grid-template-columns: 1fr; padding: 32px 24px; }
}

/* ── Whatsapp float ────────────────────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 200;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25d366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  cursor: pointer;
  transition: all .2s;
  font-size: 1.4rem;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 8px 28px rgba(37,211,102,.5); }

/* ═══════════════════════════════════════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════════════════════════════════════ */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════════════════════════════
   RESPONSIVE — TABLET  (≤ 900px)
═══════════════════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .pricing-grid { 
    grid-template-columns: repeat(4, 1fr); 
    max-width: 100%;
    margin: 0 auto;
    gap: 16px; /* opcional para separación */
  }

  .plan-card.popular { transform: scale(1); }
  .plan-card.popular:hover { transform: translateY(-4px); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .big-feature { grid-template-columns: 1fr; gap: 36px; }
  .big-feature.reverse { direction: ltr; }
  .mockup-body { grid-template-columns: 1fr; }
  .mockup-sidebar { display: none; }
  .mockup-kpis { grid-template-columns: repeat(2, 1fr); }
  .lifetime-inner { grid-template-columns: 1fr; padding: 32px 24px; }
}

/* ═══════════════════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE  (≤ 480px)
═══════════════════════════════════════════════════════════════════════ */
@media (max-width: 480px) {
  /* Base */
  html { font-size: 15px; }
  .container { padding: 0 16px; }
  section { padding: 56px 0; }

  /* Navbar */
  .nav-links { display: none; }
  .nav-cta .btn-ghost { display: none; }         /* solo queda el CTA primario */
  .nav-cta .btn-primary { padding: 8px 16px; font-size: .8rem; }
  .nav-logo { font-size: 1.1rem; }
  .nav-logo .logo-icon img { width: 26px; height: 26px; }

  /* Hero */
  #hero { padding: 100px 0 56px; }
  .hero-title { font-size: 2rem; }
  .hero-sub { font-size: .92rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
  .hero-stats { gap: 24px; }
  .stat-num { font-size: 1.6rem; }

  /* Mockup — ocultar en móvil, ocupa mucho espacio */
  .hero-mockup { display: none; }

  /* Logos band */
  .logos-track { gap: 20px; }
  .logo-item { font-size: .75rem; }

  /* Features grid */
  .features-grid { grid-template-columns: 1fr; }
  .feature-card { padding: 22px 18px; }

  /* Big feature visual — simplificar */
  .big-feature-visual { padding: 20px 16px; }

  /* Steps */
  .steps { grid-template-columns: 1fr 1fr; }
  .steps::before { display: none; }

  /* Lifetime */
  .lifetime-flames { font-size: .7rem; padding: 8px 12px; }
  .lifetime-inner { padding: 24px 16px; gap: 28px; }
  .lifetime-title { font-size: 1.7rem; }
  .lifetime-card { padding: 22px 16px; }
  .lc-amount { font-size: 2.4rem; }
  .lc-tachado { flex-direction: column; gap: 2px; align-items: flex-start; }
  .urgency-label { font-size: .75rem; }

  /* Pricing */
  .pricing-grid { max-width: 100%; }
  .plan-card { padding: 24px 18px; }
  .plan-amount { font-size: 2.4rem; }
  .pricing-toggle { gap: 10px; flex-wrap: wrap; justify-content: center; }

  /* Garantías band */
  .garantias-band { flex-direction: column; gap: 16px; padding: 20px; }
  .garantias-band > div[style*="width:1px"] { display: none; }

  /* Testimonios */
  .testi-grid { grid-template-columns: 1fr; }

  /* FAQ */
  .faq-q { font-size: .88rem; padding: 16px 18px; }
  .faq-a { padding: 0 18px 16px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 6px; }

  /* WA float */
  .wa-float { bottom: 16px; right: 16px; width: 48px; height: 48px; font-size: 1.2rem; }

  /* Sección how-it-works */
  .steps { grid-template-columns: 1fr; }
}
