*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary: #3f008d;
  --primary-dark: #250059;
  --primary-mid: #5b00c5;
  --accent: #8d51fa;
  --green: #43a047;
  --green-dark: #2e7d32;
  --red: #e53935;
  --red-dark: #c62828;
  --blue: #42a5f5;
  --blue-dark: #1565c0;
  --surface-light: #fef7ff;
  --surface-mid: #f5eeff;
  --surface-dark: #15121b;
  --surface-card: #1d1a24;
  --text-dark: #e8e0ee;
  --text-light: #1d1a24;
  --muted: #888888;
  --font: 'Roboto', 'Segoe UI', Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--surface-light);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--surface-dark);
  transition: background 0.3s, backdrop-filter 0.3s;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

nav.scrolled {
  background: rgba(21, 18, 27, 0.95);
  backdrop-filter: blur(12px);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-mark {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.nav-logo span {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.3px;
}

.logo-img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: #fff;
}

.nav-cta {
  background: linear-gradient(135deg, #3f008d, #5b00c5);
  color: #fff !important;
  padding: 10px 22px;
  border-radius: 10px;
  font-weight: 500 !important;
  transition: filter 0.2s, box-shadow 0.2s !important;
}

.nav-cta:hover {
  filter: brightness(1.15);
  box-shadow: 0 4px 16px rgba(63, 0, 141, 0.5) !important;
}

.hamburger {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  margin: 5px 0;
  transition: transform 0.2s;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: radial-gradient(ellipse at 30% 40%, #3f008d 0%, #250059 40%, #0a0014 100%);
  display: flex;
  align-items: center;
  padding: 120px 32px 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 60%, rgba(139, 81, 250, 0.12) 0%, transparent 60%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(139, 81, 250, 0.18);
  border: 1px solid rgba(139, 81, 250, 0.35);
  color: #c4a0ff;
  font-size: 12px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 99px;
  margin-bottom: 24px;
  letter-spacing: 0.3px;
}

.hero-badge::before {
  content: '●';
  font-size: 8px;
  color: var(--accent);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

.hero h1 {
  font-size: clamp(38px, 5vw, 62px);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 20px;
  text-wrap: pretty;
}

.hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, #c4a0ff, #8d51fa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 17px;
  font-weight: 300;
  color: rgba(232, 224, 238, 0.8);
  max-width: 480px;
  margin-bottom: 36px;
  line-height: 1.65;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.btn-primary {
  background: linear-gradient(135deg, #3f008d, #5b00c5);
  color: #fff;
  padding: 15px 34px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: filter 0.2s, box-shadow 0.2s, transform 0.2s;
  display: inline-block;
  animation: glow-pulse 3s ease-in-out infinite;
}

@keyframes glow-pulse {

  0%,
  100% {
    box-shadow: 0 0 0 rgba(63, 0, 141, 0);
  }

  50% {
    box-shadow: 0 0 28px rgba(91, 0, 197, 0.5);
  }
}

.btn-primary:hover {
  filter: brightness(1.15);
  box-shadow: 0 6px 24px rgba(63, 0, 141, 0.5);
  transform: translateY(-1px);
  animation: none;
}

.btn-secondary {
  background: transparent;
  color: rgba(255, 255, 255, 0.85);
  padding: 15px 28px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-1px);
}

.hero-trust {
  font-size: 13px;
  color: rgba(232, 224, 238, 0.5);
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-trust::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
}

/* Hero mockup */
.hero-visual {
  position: relative;
  z-index: 2;
}

.mockup-frame {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(139, 81, 250, 0.15);
}

.mockup-bar {
  background: rgba(255, 255, 255, 0.06);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dot-r {
  background: #ff5f57;
}

.dot-y {
  background: #febc2e;
}

.dot-g {
  background: #28c840;
}

.mockup-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.mockup-content img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  object-position: top left;
  display: block;
}

.mockup-content img:first-child {
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}

/* ── SECTIONS BASE ── */
section {
  padding: 100px 32px;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 600;
  letter-spacing: -0.5px;
  line-height: 1.2;
  text-wrap: pretty;
}

.section-title.light {
  color: #fff;
}

.section-sub {
  font-size: 17px;
  color: var(--muted);
  max-width: 600px;
  margin-top: 14px;
  font-weight: 300;
  line-height: 1.65;
}

.section-sub.light {
  color: rgba(232, 224, 238, 0.65);
}

/* ── PROBLEM ── */
.problem {
  background: var(--surface-dark);
}

.problem .section-title {
  color: #fff;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 56px;
}

.pain-card {
  background: rgba(198, 40, 40, 0.08);
  border: 1px solid rgba(198, 40, 40, 0.2);
  border-radius: 14px;
  padding: 28px;
  transition: transform 0.2s, border-color 0.2s;
}

.pain-card:hover {
  transform: translateY(-2px);
  border-color: rgba(198, 40, 40, 0.4);
}

.pain-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(198, 40, 40, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.pain-icon svg {
  width: 22px;
  height: 22px;
  stroke: #ef5350;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pain-card h3 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
}

.pain-card p {
  font-size: 14px;
  color: rgba(232, 224, 238, 0.6);
  line-height: 1.6;
}

/* ── SOLUTION ── */
.solution {
  background: var(--surface-light);
}

.solution-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-top: 56px;
}

.solution-copy p {
  font-size: 16px;
  color: #444;
  line-height: 1.75;
  margin-bottom: 16px;
}

.solution-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.pill {
  background: rgba(63, 0, 141, 0.08);
  color: var(--primary);
  border: 1px solid rgba(63, 0, 141, 0.2);
  border-radius: 99px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 500;
}

.solution-img {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(63, 0, 141, 0.2);
  border: 1px solid rgba(63, 0, 141, 0.12);
}

.solution-img img {
  width: 100%;
  display: block;
}

/* ── FEATURES ── */
.features {
  background: var(--surface-mid);
}

.features-list {
  margin-top: 64px;
}

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  padding: 48px 0;
  border-bottom: 1px solid rgba(63, 0, 141, 0.08);
}

.feature-row:last-child {
  border-bottom: none;
}

.feature-row.reverse {
  direction: rtl;
}

.feature-row.reverse>* {
  direction: ltr;
}

.feature-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

.feature-copy h3 {
  font-size: 24px;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 14px;
  letter-spacing: -0.3px;
}

.feature-copy p {
  font-size: 15px;
  color: #555;
  line-height: 1.75;
}

.feature-visual {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(0, 0, 0, 0.06);
  background: #111;
}

.feature-visual img {
  width: 100%;
  display: block;
}

.feature-badge-row {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.fbadge {
  background: linear-gradient(135deg, var(--primary), var(--primary-mid));
  color: #fff;
  padding: 6px 16px;
  border-radius: 99px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* ── BENEFITS ── */
.benefits {
  background: var(--surface-dark);
}

.benefits .section-title {
  color: #fff;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}

.benefit-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 28px;
  transition: transform 0.2s, border-color 0.2s;
}

.benefit-card:hover {
  transform: translateY(-2px);
  border-color: rgba(139, 81, 250, 0.3);
}

.benefit-num {
  font-size: 36px;
  font-weight: 700;
  background: linear-gradient(135deg, #8d51fa, #5b00c5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 14px;
}

.benefit-card h3 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
}

.benefit-card p {
  font-size: 14px;
  color: rgba(232, 224, 238, 0.55);
  line-height: 1.65;
}

/* ── HOW IT WORKS ── */
.how {
  background: var(--surface-light);
}

.steps-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 56px;
  position: relative;
}

.steps-row::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
  opacity: 0.25;
}

.step {
  text-align: center;
  padding: 0 12px;
  position: relative;
}

.step-num {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--primary), var(--primary-mid));
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 20px rgba(63, 0, 141, 0.4);
}

.step h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 8px;
}

.step p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

.how-screenshot {
  margin-top: 56px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(63, 0, 141, 0.2);
  border: 1px solid rgba(63, 0, 141, 0.12);
}

.how-screenshot img {
  width: 100%;
  display: block;
}

/* ── STATS ── */
.stats {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: 72px 32px;
}

.stats-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-item {
  text-align: center;
  padding: 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item:last-child {
  border-right: none;
}

.stat-num {
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 6px;
}

.stat-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
}

/* ── TRUST BAR ── */
.trust {
  background: var(--surface-mid);
  padding: 48px 32px;
}

.trust-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.trust-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 28px;
}

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

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: #555;
}

.trust-icon {
  width: 32px;
  height: 32px;
  background: rgba(63, 0, 141, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--primary);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ── ROADMAP ── */
.roadmap {
  background: var(--surface-light);
}

.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.roadmap-card {
  background: #fff;
  border: 1px solid rgba(63, 0, 141, 0.1);
  border-radius: 16px;
  padding: 28px;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}

.roadmap-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

.roadmap-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(63, 0, 141, 0.12);
}

.roadmap-phase {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 99px;
  margin-bottom: 14px;
}

.phase-soon {
  background: rgba(63, 0, 141, 0.1);
  color: var(--primary);
}

.phase-next {
  background: rgba(139, 81, 250, 0.12);
  color: var(--accent);
}

.phase-future {
  background: rgba(66, 165, 245, 0.12);
  color: var(--blue-dark);
}

.roadmap-card h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 10px;
}

.roadmap-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.65;
  margin-bottom: 18px;
}

.roadmap-items {
  list-style: none;
}

.roadmap-items li {
  font-size: 13px;
  color: #555;
  padding: 6px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  display: flex;
  align-items: center;
  gap: 8px;
}

.roadmap-items li:last-child {
  border-bottom: none;
}

.roadmap-items li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* ── EARLY ACCESS ── */
.early-access {
  background: var(--surface-dark);
}

.early-access .section-title {
  color: #fff;
}

.early-access .section-sub {
  color: rgba(232, 224, 238, 0.55);
}

.early-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.early-card {
  background: var(--surface-card);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-left: 3px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.early-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 2px dashed rgba(139, 81, 250, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}

.early-avatar svg {
  width: 22px;
  height: 22px;
  stroke: rgba(139, 81, 250, 0.6);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.early-slot-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(139, 81, 250, 0.6);
}

.early-slot-text {
  font-size: 15px;
  color: rgba(232, 224, 238, 0.4);
  font-style: italic;
  line-height: 1.6;
}

.early-card-cta {
  background: var(--surface-card);
  border: 1px solid rgba(139, 81, 250, 0.35);
  border-left: 3px solid var(--primary);
  border-radius: 14px;
  padding: 36px 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.early-card-cta:hover {
  border-color: var(--accent);
  box-shadow: 0 0 32px rgba(139, 81, 250, 0.15);
}

.early-cta-emoji {
  font-size: 36px;
  line-height: 1;
}

.early-card-cta h3 {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
}

.early-card-cta p {
  font-size: 14px;
  color: rgba(232, 224, 238, 0.55);
  line-height: 1.65;
}

/* ── PRICING ── */
.pricing {
  background: var(--surface-light);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
  align-items: start;
}

.price-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  padding: 36px 28px;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
}

.price-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
}

.price-card.featured {
  background: linear-gradient(160deg, var(--primary-dark) 0%, var(--primary) 100%);
  border-color: var(--primary);
  transform: scale(1.03);
  box-shadow: 0 20px 56px rgba(63, 0, 141, 0.35);
}

.price-card.featured:hover {
  transform: scale(1.03) translateY(-3px);
}

.price-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #43a047, #2e7d32);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 99px;
}

.price-tier {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

.price-card.featured .price-tier {
  color: rgba(255, 255, 255, 0.6);
}

.price-name {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 6px;
}

.price-card.featured .price-name {
  color: #fff;
}

.price-amount {
  font-size: 44px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  margin: 16px 0 4px;
}

.price-card.featured .price-amount {
  color: #fff;
}

.price-period {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 28px;
}

.price-card.featured .price-period {
  color: rgba(255, 255, 255, 0.5);
}

.price-features {
  list-style: none;
  margin-bottom: 32px;
}

.price-features li {
  font-size: 14px;
  color: #444;
  padding: 8px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  gap: 10px;
}

.price-card.featured .price-features li {
  color: rgba(255, 255, 255, 0.8);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.price-features li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  font-size: 13px;
  flex-shrink: 0;
}

.price-card.featured .price-features li::before {
  color: #81c784;
}

.btn-price-primary {
  display: block;
  text-align: center;
  background: linear-gradient(135deg, #3f008d, #5b00c5);
  color: #fff;
  padding: 14px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: filter 0.2s, box-shadow 0.2s;
}

.btn-price-primary:hover {
  filter: brightness(1.15);
  box-shadow: 0 6px 20px rgba(63, 0, 141, 0.4);
}

.price-card.featured .btn-price-primary {
  background: #fff;
  color: var(--primary);
}

.price-card.featured .btn-price-primary:hover {
  background: rgba(255, 255, 255, 0.9);
}

.btn-price-outline {
  display: block;
  text-align: center;
  background: transparent;
  color: var(--primary);
  padding: 14px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid rgba(63, 0, 141, 0.3);
  transition: background 0.2s;
}

.btn-price-outline:hover {
  background: rgba(63, 0, 141, 0.06);
}

/* ── IMAGE ZOOM + LIGHTBOX ── */
.feature-visual,
.solution-img,
.how-screenshot {
  overflow: hidden;
}

.feature-visual img,
.solution-img img,
.how-screenshot img,
.how-screenshot video,
.mockup-content img {
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.4s;
  cursor: zoom-in;
}

.feature-visual:hover img,
.solution-img:hover img,
.how-screenshot:hover img,
.how-screenshot:hover video,
.mockup-content img:hover {
  transform: scale(1.04);
  filter: brightness(1.06);
}

#lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(10, 0, 20, 0.92);
  backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  cursor: zoom-out;
}

#lightbox.open {
  display: flex;
  animation: lb-in 0.25s ease;
}

@keyframes lb-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

#lightbox-img {
  max-width: min(1100px, 94vw);
  max-height: 88vh;
  width: auto;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 32px 100px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(139, 81, 250, 0.25);
  cursor: default;
  animation: lb-img-in 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: block;
}

@keyframes lb-img-in {
  from {
    transform: scale(0.88);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

#lightbox-close {
  position: fixed;
  top: 20px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
  z-index: 1001;
}

#lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

#lightbox-close svg {
  width: 18px;
  height: 18px;
  stroke: #fff;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
}

#lightbox-caption {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  font-family: var(--font);
  pointer-events: none;
  white-space: nowrap;
}

/* ── LEADS / CONSEJOS DE NEGOCIOS ── */
.leads-section {
  background: linear-gradient(135deg, #1a0040 0%, #3f008d 45%, #5b00c5 100%);
  position: relative;
  overflow: hidden;
}

.leads-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 50%, rgba(139, 81, 250, 0.25) 0%, transparent 60%);
  pointer-events: none;
}

.leads-section::after {
  content: '';
  position: absolute;
  top: -80px;
  left: -80px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(91, 0, 197, 0.3) 0%, transparent 70%);
  pointer-events: none;
}

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

.leads-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 215, 0, 0.15);
  border: 1px solid rgba(255, 215, 0, 0.35);
  color: #ffd700;
  font-size: 11px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 99px;
  margin-bottom: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.leads-perks {
  list-style: none;
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.leads-perks li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: rgba(232, 224, 238, 0.85);
}

.leads-perks li::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  min-width: 24px;
  background: rgba(67, 160, 71, 0.2);
  border: 1px solid rgba(67, 160, 71, 0.5);
  border-radius: 50%;
  color: #81c784;
  font-size: 12px;
  font-weight: 700;
}

.leads-form-wrapper {
  position: relative;
  z-index: 1;
}

.leads-form {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  padding: 40px 36px;
  backdrop-filter: blur(12px);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
}

.leads-form h3 {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  text-align: center;
}

.leads-form-subtitle {
  font-size: 13px;
  color: rgba(232, 224, 238, 0.5);
  text-align: center;
  margin-bottom: 28px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: rgba(232, 224, 238, 0.7);
  margin-bottom: 7px;
  letter-spacing: 0.3px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 14px;
  color: #fff;
  font-family: var(--font);
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.22);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.10);
}

.btn-leads-submit {
  width: 100%;
  background: linear-gradient(135deg, #43a047, #2e7d32);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 16px 24px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: filter 0.2s, transform 0.2s, box-shadow 0.2s;
  margin-top: 8px;
  letter-spacing: 0.2px;
  animation: glow-green 3s ease-in-out infinite;
}

@keyframes glow-green {

  0%,
  100% {
    box-shadow: 0 0 0 rgba(46, 125, 50, 0);
  }

  50% {
    box-shadow: 0 0 28px rgba(46, 125, 50, 0.55);
  }
}

.btn-leads-submit:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(46, 125, 50, 0.45);
  animation: none;
}

.form-note {
  text-align: center;
  font-size: 12px;
  color: rgba(232, 224, 238, 0.35);
  margin-top: 12px;
}

.leads-success {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(67, 160, 71, 0.4);
  border-radius: 20px;
  padding: 56px 36px;
  text-align: center;
  backdrop-filter: blur(12px);
}

.success-icon {
  width: 64px;
  height: 64px;
  background: rgba(67, 160, 71, 0.2);
  border: 2px solid rgba(67, 160, 71, 0.5);
  border-radius: 50%;
  font-size: 30px;
  color: #81c784;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.leads-success h3 {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.leads-success p {
  font-size: 15px;
  color: rgba(232, 224, 238, 0.65);
  line-height: 1.65;
}

@media (max-width: 1024px) {
  .leads-wrapper {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

/* ── FAQ ── */
.faq {
  background: var(--surface-mid);
}

.faq-list {
  max-width: 760px;
  margin: 56px auto 0;
}

.faq-item {
  border-bottom: 1px solid rgba(63, 0, 141, 0.1);
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: 22px 0;
  text-align: left;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 500;
  color: var(--text-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color 0.2s;
}

.faq-q:hover {
  color: var(--primary);
}

.faq-chevron {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  transition: transform 0.3s;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
}

.faq-a {
  font-size: 15px;
  color: #555;
  line-height: 1.75;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding-bottom 0.3s;
}

.faq-item.open .faq-a {
  max-height: 400px;
  padding-bottom: 22px;
}

/* ── FINAL CTA ── */
.final-cta {
  background: radial-gradient(ellipse at center, #3f008d 0%, #250059 50%, #0a0014 100%);
  padding: 120px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(139, 81, 250, 0.15) 0%, transparent 70%);
}

.final-cta h2 {
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
  position: relative;
}

.final-cta p {
  font-size: 18px;
  color: rgba(232, 224, 238, 0.7);
  font-weight: 300;
  margin-bottom: 40px;
  position: relative;
}

.final-cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

.final-trust {
  margin-top: 20px;
  font-size: 13px;
  color: rgba(232, 224, 238, 0.4);
  position: relative;
}

/* ── FOOTER ── */
footer {
  background: #0a0010;
  padding: 72px 32px 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 40px;
}

.footer-brand .nav-logo {
  margin-bottom: 16px;
}

.footer-tagline {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.6;
}

.footer-newsletter {
  margin-top: 24px;
}

.footer-newsletter label {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  display: block;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.newsletter-row {
  display: flex;
  gap: 8px;
}

.newsletter-row input {
  flex: 1;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 13px;
  color: #fff;
  font-family: var(--font);
  outline: none;
  transition: border-color 0.2s;
}

.newsletter-row input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.newsletter-row input:focus {
  border-color: var(--accent);
}

.newsletter-row button {
  background: linear-gradient(135deg, #3f008d, #5b00c5);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  font-family: var(--font);
  transition: filter 0.2s;
}

.newsletter-row button:hover {
  filter: brightness(1.15);
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 10px;
}

.footer-col a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: rgba(255, 255, 255, 0.85);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.3);
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.3);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-legal a:hover {
  color: rgba(255, 255, 255, 0.6);
}

/* ── ANIMATIONS ── */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

  .reveal.visible {
    opacity: 1;
    transform: none;
  }

  .reveal-delay-1 {
    transition-delay: 0.1s;
  }

  .reveal-delay-2 {
    transition-delay: 0.2s;
  }

  .reveal-delay-3 {
    transition-delay: 0.3s;
  }

  .reveal-delay-4 {
    transition-delay: 0.4s;
  }
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-visual {
    max-width: 600px;
  }

  .mockup-content img {
    height: 180px;
  }

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

  .feature-row {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .feature-row.reverse {
    direction: ltr;
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .steps-row::before {
    display: none;
  }

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

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

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item:nth-child(2) {
    border-right: none;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  section {
    padding: 72px 20px;
  }

  .nav-inner {
    padding: 0 20px;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--surface-dark);
    padding: 20px;
    gap: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav-links.open {
    display: flex;
  }

  .hamburger {
    display: block;
  }

  .hero {
    padding: 100px 20px 60px;
  }

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

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

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

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

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

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

  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-ctas {
    flex-direction: column;
  }

  .btn-primary,
  .btn-secondary {
    text-align: center;
    justify-content: center;
  }
}