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

:root {
  --purple: #7c3aed;
  --purple-light: #a78bfa;
  --pink: #ec4899;
  --dark: #0f0a1e;
  --dark2: #1a1030;
  --card-bg: #1e1535;
  --border: rgba(255,255,255,0.08);
  --text: #e2d9f3;
  --muted: #9585b8;
  --white: #ffffff;
  --radius: 16px;
  --shadow: 0 8px 32px rgba(124,58,237,0.15);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--dark);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* ── NAV ── */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(15,10,30,0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.logo { font-size: 1.4rem; font-weight: 800; color: var(--white); text-decoration: none; }
.logo span { color: var(--purple-light); }
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a { color: var(--muted); text-decoration: none; font-size: 0.95rem; font-weight: 500; transition: color .2s; }
.nav-links a:hover { color: var(--white); }

.btn-nav {
  background: var(--purple); color: var(--white) !important;
  padding: 8px 20px; border-radius: 8px; font-weight: 600 !important;
  transition: background .2s !important;
}
.btn-nav:hover { background: #6d28d9 !important; }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: .2s; }

.mobile-menu {
  display: none; flex-direction: column; gap: 4px;
  padding: 12px 24px 20px; border-top: 1px solid var(--border);
  background: rgba(15,10,30,0.97);
}
.mobile-menu a { color: var(--muted); text-decoration: none; font-size: 1rem; font-weight: 500; padding: 10px 0; border-bottom: 1px solid var(--border); }
.mobile-menu a:last-child { border-bottom: none; margin-top: 8px; }
.mobile-menu.open { display: flex; }

/* ── HERO ── */
.hero {
  position: relative; padding: 100px 0 80px; text-align: center; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(ellipse 80% 60% at 50% -10%, rgba(124,58,237,0.35) 0%, transparent 70%),
              radial-gradient(ellipse 40% 40% at 80% 80%, rgba(236,72,153,0.12) 0%, transparent 60%);
}
.hero .container { position: relative; z-index: 1; }

.badge {
  display: inline-block; background: rgba(124,58,237,0.2); border: 1px solid rgba(124,58,237,0.4);
  color: var(--purple-light); font-size: 0.82rem; font-weight: 600;
  padding: 6px 16px; border-radius: 999px; margin-bottom: 24px; letter-spacing: .03em;
}
.hero h1 { font-size: clamp(2.2rem, 6vw, 4rem); font-weight: 900; line-height: 1.15; color: var(--white); margin-bottom: 20px; }
.gradient-text {
  background: linear-gradient(135deg, var(--purple-light), var(--pink));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-sub { font-size: 1.1rem; color: var(--muted); max-width: 580px; margin: 0 auto 36px; }

.hero-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 56px; }
.btn-primary {
  background: linear-gradient(135deg, var(--purple), #9333ea);
  color: var(--white); padding: 14px 32px; border-radius: 10px; font-weight: 700;
  text-decoration: none; font-size: 1rem; transition: transform .2s, box-shadow .2s;
  box-shadow: 0 4px 20px rgba(124,58,237,0.4);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(124,58,237,0.5); }
.btn-ghost {
  background: transparent; border: 2px solid var(--border);
  color: var(--text); padding: 14px 32px; border-radius: 10px; font-weight: 600;
  text-decoration: none; font-size: 1rem; transition: border-color .2s, color .2s;
}
.btn-ghost:hover { border-color: var(--purple-light); color: var(--white); }

.hero-stats { display: flex; justify-content: center; align-items: center; gap: 24px; flex-wrap: wrap; }
.stat { display: flex; flex-direction: column; align-items: center; }
.stat strong { font-size: 1.6rem; font-weight: 800; color: var(--white); }
.stat span { font-size: 0.82rem; color: var(--muted); }
.stat-divider { width: 1px; height: 40px; background: var(--border); }

/* ── PLATFORMS STRIP ── */
.platforms-strip { background: var(--dark2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 20px 0; }
.platforms-inner { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.platforms-inner span { color: var(--muted); font-size: 0.9rem; font-weight: 500; white-space: nowrap; }
.platforms { display: flex; gap: 10px; flex-wrap: wrap; }
.platform-tag {
  background: rgba(124,58,237,0.12); border: 1px solid rgba(124,58,237,0.25);
  color: var(--purple-light); padding: 6px 14px; border-radius: 999px; font-size: 0.85rem; font-weight: 500;
}

/* ── SECTIONS ── */
.section { padding: 80px 0; }
.section-alt { background: var(--dark2); }
.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 800; color: var(--white); margin-bottom: 12px; }
.section-header p { color: var(--muted); font-size: 1rem; max-width: 520px; margin: 0 auto; }

/* ── CARDS ── */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 24px; }

.card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px; position: relative;
  display: flex; flex-direction: column; transition: transform .25s, box-shadow .25s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card.featured { border-color: rgba(124,58,237,0.5); box-shadow: 0 0 0 1px rgba(124,58,237,0.2); }
.card.bundle { border-color: rgba(236,72,153,0.4); }

.card-badge {
  position: absolute; top: -12px; left: 24px;
  background: linear-gradient(135deg, var(--purple), #9333ea);
  color: var(--white); font-size: 0.75rem; font-weight: 700;
  padding: 4px 14px; border-radius: 999px; letter-spacing: .04em;
}
.bundle-badge { background: linear-gradient(135deg, var(--pink), #f97316) !important; }

.card-icon { font-size: 2.4rem; margin-bottom: 16px; }
.card h3 { font-size: 1.2rem; font-weight: 700; color: var(--white); margin-bottom: 12px; }
.card > p { color: var(--muted); font-size: 0.92rem; margin-bottom: 20px; }

.card-features { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-bottom: 28px; flex: 1; }
.card-features li { color: var(--text); font-size: 0.88rem; }

.card-footer { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: auto; }
.price { display: flex; align-items: baseline; gap: 8px; }
.old-price { color: var(--muted); text-decoration: line-through; font-size: 0.9rem; }
.price strong { font-size: 1.6rem; font-weight: 800; color: var(--white); }

.btn-buy {
  background: var(--purple); color: var(--white);
  padding: 10px 22px; border-radius: 8px; font-weight: 700; font-size: 0.9rem;
  text-decoration: none; transition: background .2s, transform .2s; white-space: nowrap;
}
.btn-buy:hover { background: #6d28d9; transform: scale(1.03); }
.btn-bundle { background: linear-gradient(135deg, var(--pink), #f97316) !important; }
.btn-bundle:hover { opacity: 0.9; background: linear-gradient(135deg, var(--pink), #f97316) !important; }

/* ── HOW IT WORKS ── */
.steps { display: flex; align-items: flex-start; justify-content: center; gap: 16px; flex-wrap: wrap; }
.step { background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px 28px; flex: 1; min-width: 220px; max-width: 300px; text-align: center; }
.step-num {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), #9333ea);
  color: var(--white); font-size: 1.2rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.step h3 { font-size: 1.05rem; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.step p { color: var(--muted); font-size: 0.9rem; }
.step-arrow { font-size: 1.8rem; color: var(--purple-light); margin-top: 60px; align-self: flex-start; }

/* ── REVIEWS ── */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px; }
.review { background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; }
.stars { color: #f59e0b; font-size: 1rem; margin-bottom: 12px; }
.review p { color: var(--text); font-size: 0.92rem; font-style: italic; margin-bottom: 16px; line-height: 1.6; }
.reviewer { color: var(--muted); font-size: 0.82rem; font-weight: 600; }

/* ── FAQ ── */
.faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 8px; }
.faq-item { background: var(--card-bg); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; }
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 20px 24px; background: none; border: none; cursor: pointer;
  color: var(--white); font-size: 1rem; font-weight: 600; font-family: inherit; text-align: left; gap: 12px;
}
.faq-q:hover { color: var(--purple-light); }
.faq-icon { font-size: 1.3rem; color: var(--purple-light); flex-shrink: 0; transition: transform .25s; }
.faq-q.open .faq-icon { transform: rotate(45deg); }
.faq-a { display: none; padding: 0 24px 20px; color: var(--muted); font-size: 0.93rem; line-height: 1.7; }
.faq-a.open { display: block; }

/* ── CTA BANNER ── */
.cta-banner {
  padding: 80px 24px; text-align: center;
  background: linear-gradient(135deg, #1a0a3e 0%, #2d1060 50%, #1a0a3e 100%);
  border-top: 1px solid rgba(124,58,237,0.3);
  border-bottom: 1px solid rgba(124,58,237,0.3);
}
.cta-banner h2 { font-size: clamp(1.8rem, 4vw, 2.4rem); font-weight: 800; color: var(--white); margin-bottom: 12px; }
.cta-banner p { color: var(--muted); margin-bottom: 32px; font-size: 1rem; max-width: 480px; margin-left: auto; margin-right: auto; }

/* ── FOOTER ── */
.footer { padding: 40px 0; border-top: 1px solid var(--border); }
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 20px; text-align: center; }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; justify-content: center; }
.footer-links a { color: var(--muted); text-decoration: none; font-size: 0.88rem; transition: color .2s; }
.footer-links a:hover { color: var(--white); }
.footer-company { color: var(--muted); font-size: 0.82rem; }
.footer-copy { color: var(--muted); font-size: 0.82rem; }

/* ── MODAL ── */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.7); backdrop-filter: blur(4px);
  z-index: 1000; display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity .25s;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal {
  background: var(--card-bg); border: 1px solid rgba(124,58,237,0.4);
  border-radius: 20px; padding: 40px 36px; max-width: 420px; width: 90%;
  text-align: center; position: relative; transform: translateY(20px); transition: transform .25s;
  max-height: 90vh; overflow-y: auto;
}
.modal.modal--checkout {
  max-width: 560px;
  padding: 24px 20px;
  text-align: left;
}
.modal-overlay.open .modal { transform: translateY(0); }
.modal-close { position: absolute; top: 16px; right: 16px; background: none; border: none; color: var(--muted); font-size: 1.2rem; cursor: pointer; }
.modal-close:hover { color: var(--white); }
.modal-icon { font-size: 2.5rem; margin-bottom: 16px; }
.modal h3 { font-size: 1.3rem; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.modal-price { font-size: 1.8rem; font-weight: 800; color: var(--purple-light); margin-bottom: 16px; }
.modal-note { color: var(--muted); font-size: 0.85rem; margin-bottom: 28px; line-height: 1.6; background: rgba(124,58,237,0.1); padding: 12px 16px; border-radius: 8px; }
.modal-btn { display: inline-block; width: 100%; text-align: center; padding: 14px; }

/* ── Tier grid ── */
.tier-grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.tier-btn {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 11px 14px;
  cursor: pointer;
  text-align: left;
  transition: border-color .15s, background .15s;
}
.tier-btn:hover {
  border-color: rgba(124,58,237,0.5);
  background: rgba(124,58,237,0.08);
}
.tier-btn.active {
  border-color: var(--purple);
  background: rgba(124,58,237,0.18);
}
.tier-btn-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2px;
}
.tier-btn-name {
  font-size: .88rem;
  font-weight: 700;
  color: var(--white);
}
.tier-btn-price {
  font-size: .95rem;
  font-weight: 800;
  color: var(--purple-light);
}
.tier-btn-desc {
  font-size: .75rem;
  color: var(--muted);
}

/* from price on cards */
.from-price {
  font-size: .75rem;
  color: var(--muted);
  font-weight: 400;
  margin-right: 2px;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .step-arrow { display: none; }
  .steps { flex-direction: column; align-items: center; }
  .hero { padding: 70px 0 56px; }
  .hero-stats { gap: 16px; }
  .stat-divider { display: none; }
  .cta-banner p { margin-bottom: 28px; }
}

@media (max-width: 480px) {
  .cards-grid { grid-template-columns: 1fr; }
  .card-footer { flex-direction: column; align-items: flex-start; }
  .btn-buy { width: 100%; text-align: center; }
}
