:root {
  --purple-900: #241458;
  --purple-700: #4B32B0;
  --purple-500: #6C4EE3;
  --purple-100: #EEECFC;
  --purple-50: #FAF9FF;
  --coral-500: #FF7A59;
  --coral-700: #C24E30;
  --coral-100: #FFE4D9;
  --ink: #241E3D;
  --ink-soft: #5B5578;
  --ink-faint: #8B85A8;
  --line: #E4E0F5;
  --white: #FFFFFF;
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 8px;
  --shadow: 0 20px 50px rgba(36, 20, 88, 0.12);
  --font-display: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--purple-900);
  margin: 0;
  line-height: 1.15;
}

/* ---------- NAV ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  color: var(--purple-900);
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo .mark {
  width: 28px; height: 28px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--purple-500), var(--purple-700));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 14px;
}
.nav-cta {
  background: var(--purple-900);
  color: white;
  padding: 10px 22px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 14px;
  font-family: var(--font-display);
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  padding: 16px 34px;
  border-radius: 40px;
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--coral-500);
  color: #4A1B0C;
  box-shadow: 0 12px 30px rgba(255, 122, 89, 0.4);
}
.btn-primary:hover { background: #ff875f; }
.btn-ghost {
  background: transparent;
  border: 1.5px solid var(--line);
  color: var(--purple-900);
}

/* ---------- HERO ---------- */
.hero {
  background: linear-gradient(170deg, #2C1D6B 0%, #4B32B0 55%, #6C4EE3 100%);
  color: white;
  padding: 72px 0 100px;
  position: relative;
  overflow: hidden;
}
.hero .ring {
  position: absolute;
  border-radius: 50%;
  border: 50px solid rgba(255,255,255,0.06);
}
.hero .ring1 { width: 360px; height: 360px; top: -120px; right: -100px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.eyebrow {
  display: inline-block;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-family: var(--font-display);
  margin-bottom: 22px;
}
.hero h1 {
  color: white;
  font-size: 46px;
  font-weight: 700;
  margin-bottom: 18px;
}
.hero h1 .hi { color: #FFD1BE; }
.hero p.lead {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  max-width: 480px;
  margin-bottom: 30px;
}
.price-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 26px;
}
.price-now { font-family: var(--font-display); font-size: 40px; font-weight: 700; color: #FFD1BE; }
.price-old { font-size: 20px; color: rgba(255,255,255,0.55); text-decoration: line-through; }
.price-off {
  background: var(--coral-500);
  color: #4A1B0C;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  font-family: var(--font-display);
}
.trust-row {
  display: flex;
  gap: 22px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.75);
}

.hero-stack { position: relative; height: 460px; }
.stack-card {
  position: absolute;
  width: 78%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.35);
  border: 6px solid white;
}
.stack-card.s1 { top: 10px; left: 40px; transform: rotate(7deg); z-index: 1; }
.stack-card.s2 { top: 0; left: 0; transform: rotate(-6deg); z-index: 2; }
.stack-card.s3 { top: 30px; left: 20px; transform: rotate(1deg); z-index: 3; }

/* ---------- SECTION ---------- */
.section { padding: 84px 0; }
.section-head { text-align: center; max-width: 620px; margin: 0 auto 52px; }
.section-head .kicker {
  color: var(--coral-700);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-head h2 { font-size: 32px; margin-bottom: 14px; }
.section-head p { color: var(--ink-soft); font-size: 16px; }

/* ---------- WHAT'S INSIDE GRID ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.feature-card {
  background: var(--purple-50);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 26px;
}
.feature-card .ico {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: white;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 16px;
}
.feature-card h3 { font-size: 16px; margin-bottom: 8px; }
.feature-card p { font-size: 14px; color: var(--ink-soft); margin: 0; }

/* ---------- GALLERY ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- HOW IT WORKS ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.step {
  text-align: center;
  padding: 0 12px;
}
.step .num {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--purple-900);
  color: white;
  font-family: var(--font-display);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.step h3 { font-size: 16px; margin-bottom: 8px; }
.step p { font-size: 14px; color: var(--ink-soft); }

/* ---------- PRICING CTA ---------- */
.pricing-box {
  background: linear-gradient(135deg, var(--purple-700), var(--purple-900));
  border-radius: 28px;
  padding: 56px;
  color: white;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  align-items: center;
}
.pricing-box h2 { color: white; font-size: 30px; margin-bottom: 12px; }
.pricing-box p { color: rgba(255,255,255,0.8); font-size: 15px; margin-bottom: 0; }
.price-card {
  background: white;
  border-radius: 20px;
  padding: 32px;
  text-align: center;
  color: var(--ink);
}
.price-card .amt { font-family: var(--font-display); font-size: 48px; font-weight: 700; color: var(--purple-900); }
.price-card .was { font-size: 15px; color: var(--ink-faint); text-decoration: line-through; margin-bottom: 4px; }
.price-card .note { font-size: 12px; color: var(--ink-faint); margin-top: 14px; }
.price-card .btn { width: 100%; margin-top: 18px; }

/* ---------- FAQ ---------- */
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}
.faq-item h3 { font-size: 16px; margin-bottom: 8px; color: var(--purple-900); }
.faq-item p { font-size: 14px; color: var(--ink-soft); margin: 0; }

/* ---------- FOOTER ---------- */
.footer {
  background: var(--purple-900);
  color: rgba(255,255,255,0.7);
  padding: 56px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 30px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer h4 {
  color: white;
  font-size: 14px;
  margin-bottom: 14px;
  letter-spacing: 0.5px;
}
.footer a {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 10px;
}
.footer a:hover { color: white; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 22px;
  font-size: 13px;
  flex-wrap: wrap;
  gap: 10px;
}

/* ---------- STICKY MOBILE BAR ---------- */
.sticky-buy {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: white;
  border-top: 1px solid var(--line);
  padding: 12px 20px;
  z-index: 60;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 -8px 24px rgba(0,0,0,0.08);
}
.sticky-buy .amt { font-family: var(--font-display); font-weight: 700; font-size: 18px; color: var(--purple-900); }

/* ---------- POLICY PAGES ---------- */
.policy-hero {
  background: var(--purple-50);
  padding: 56px 0 40px;
  border-bottom: 1px solid var(--line);
}
.policy-hero h1 { font-size: 32px; }
.policy-hero p { color: var(--ink-soft); margin-top: 10px; }
.policy-body { padding: 48px 0 90px; max-width: 780px; margin: 0 auto; }
.policy-body h2 { font-size: 20px; margin: 34px 0 12px; }
.policy-body h2:first-child { margin-top: 0; }
.policy-body p, .policy-body li { font-size: 15px; color: var(--ink-soft); margin-bottom: 12px; }
.policy-body ul { padding-left: 20px; }
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--purple-700);
  margin-bottom: 18px;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-stack { height: 320px; margin-top: 20px; }
  .hero h1 { font-size: 34px; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr; }
  .pricing-box { grid-template-columns: 1fr; padding: 34px 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .sticky-buy { display: flex; }
  .section { padding: 56px 0; }
  body { padding-bottom: 70px; }
}
