/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #0a0a0f;
  --bg2:       #111118;
  --bg3:       #16161f;
  --accent:    #5b8eff;
  --accent2:   #c9a84c;
  --white:     #f0f0f5;
  --muted:     #8888a0;
  --border:    rgba(255,255,255,0.07);
  --grad:      linear-gradient(135deg, #5b8eff 0%, #9b5bff 100%);
  --grad-gold: linear-gradient(135deg, #c9a84c 0%, #f5d07a 100%);
  --radius:    16px;
  --font:      'Heebo', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.7;
  direction: ltr;
  text-align: left;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

a { color: inherit; text-decoration: none; }

/* ===== NAV ===== */
.topnav {
  position: fixed;
  top: 0; right: 0; left: 0;
  z-index: 100;
  background: rgba(10,10,15,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.5px;
}
.dot { color: var(--accent); }
.nav-cta {
  background: var(--grad);
  color: #fff;
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  transition: opacity 0.2s;
}
.nav-cta:hover { opacity: 0.85; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(91,142,255,0.12) 0%, transparent 70%),
    var(--bg);
}
.brand-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--accent);
  background: rgba(91,142,255,0.1);
  border: 1px solid rgba(91,142,255,0.25);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 32px;
}
.hero-title {
  font-size: clamp(42px, 7vw, 80px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -2px;
  margin-bottom: 28px;
}
.accent { background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-sub {
  font-size: clamp(17px, 2vw, 22px);
  color: var(--muted);
  margin-bottom: 40px;
  max-width: 560px;
  line-height: 1.8;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.btn {
  display: inline-block;
  padding: 16px 32px;
  border-radius: 50px;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  min-height: 52px;
}
.btn-primary {
  background: var(--grad);
  color: #fff;
  box-shadow: 0 4px 24px rgba(91,142,255,0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(91,142,255,0.45); }
.btn-ghost {
  border: 1px solid var(--border);
  color: var(--white);
  background: rgba(255,255,255,0.04);
}
.btn-ghost:hover { background: rgba(255,255,255,0.08); }
.btn-xl { font-size: 19px; padding: 20px 40px; }

.hero-tagline {
  font-size: 15px;
  color: var(--muted);
  font-style: italic;
  margin-bottom: 24px;
}
.trust-micro {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--muted);
}
.trust-micro span { display: flex; align-items: center; gap: 6px; }

/* ===== SECTIONS ===== */
section { padding: 100px 0; }

.section-title {
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 20px;
  text-align: center;
}
.section-sub {
  color: var(--muted);
  font-size: 18px;
  text-align: center;
  margin-bottom: 60px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== BEFORE / AFTER ===== */
.before-after { background: var(--bg2); }
.before-after .section-title { margin-bottom: 16px; }
.before-after .section-sub { margin-bottom: 60px; }

.split-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.split-card {
  flex: 1;
  min-width: 260px;
  max-width: 380px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
}
.after-card { border-color: rgba(91,142,255,0.3); box-shadow: 0 0 40px rgba(91,142,255,0.08); }
.split-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  background: rgba(255,255,255,0.06);
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 20px;
  color: var(--muted);
}
.good-label { background: rgba(91,142,255,0.15); color: var(--accent); }

.split-visual { margin-bottom: 20px; }
.photo-mock {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  position: relative;
  overflow: hidden;
}
.photo-mock.dull { background: #2a2a35; border: 3px solid #444; }
.photo-mock.prime {
  background: linear-gradient(135deg, #1a2540, #2a3560);
  border: 3px solid var(--accent);
  box-shadow: 0 0 30px rgba(91,142,255,0.3);
}
.photo-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(91,142,255,0.2), transparent 60%);
}
.photo-face { position: relative; z-index: 1; }

.split-caption { font-size: 16px; margin-bottom: 16px; color: var(--muted); }
.split-caption em { font-style: italic; }
.split-caption.bad em { color: #ff6b6b; }
.split-caption.good em { color: var(--accent); }

.split-issues { list-style: none; font-size: 14px; color: var(--muted); line-height: 2; }
.split-issues li { color: var(--muted); }
.after-card .split-issues li { color: rgba(91,142,255,0.9); }

.split-arrow {
  font-size: 32px;
  color: var(--accent);
  flex-shrink: 0;
}

/* ===== PAIN ===== */
.pain { background: var(--bg); }
.pain .section-title { text-align: center; margin-bottom: 16px; }
.pain-lead { text-align: center; color: var(--muted); font-size: 18px; margin-bottom: 60px; }
.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.pain-item {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}
.pain-icon { font-size: 32px; display: block; margin-bottom: 16px; }
.pain-item p { color: var(--muted); font-size: 16px; }

/* ===== HOW IT WORKS ===== */
.how { background: var(--bg2); }
.how .section-title { margin-bottom: 60px; }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}
.step {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
}
.step::before {
  content: '';
  position: absolute;
  top: 0; right: 0; left: 0;
  height: 3px;
  background: var(--grad);
}
.step-num {
  font-size: 52px;
  font-weight: 900;
  line-height: 1;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}
.step h3 { font-size: 20px; font-weight: 700; margin-bottom: 12px; }
.step p { color: var(--muted); font-size: 15px; }

/* ===== PACKAGES ===== */
.packages { background: var(--bg); }
.packages .section-title { margin-bottom: 16px; }
.pkg-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 60px;
}
.pkg-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}
.pkg-card:hover { transform: translateY(-4px); box-shadow: 0 12px 48px rgba(0,0,0,0.3); }
.pkg-card.featured {
  border-color: rgba(91,142,255,0.4);
  background: linear-gradient(160deg, #111128 0%, #0e0e1a 100%);
  box-shadow: 0 0 60px rgba(91,142,255,0.1);
}
.pkg-card.premium {
  border-color: rgba(201,168,76,0.3);
  background: linear-gradient(160deg, #161208 0%, #0f0f0a 100%);
}
.pkg-badge {
  position: absolute;
  top: -14px;
  right: 32px;
  background: var(--grad);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 50px;
}
.pkg-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}
.pkg-card.featured .pkg-tag { color: var(--accent); }
.pkg-card.premium .pkg-tag { color: var(--accent2); }

.pkg-name {
  font-size: 26px;
  font-weight: 900;
  margin-bottom: 8px;
}
.pkg-price {
  font-size: 48px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 12px;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.pkg-card.premium .pkg-price {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.pkg-tagline {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 24px;
  font-style: italic;
}
.pkg-items {
  list-style: none;
  margin-bottom: 32px;
  flex: 1;
}
.pkg-items li {
  font-size: 15px;
  color: var(--muted);
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
}
.pkg-items li:last-child { border-bottom: none; }

.paypal-wrap {
  margin-bottom: 16px;
  min-height: 48px;
}

.btn-wa {
  display: block;
  text-align: center;
  color: #25D366;
  font-size: 14px;
  font-weight: 600;
  padding: 10px;
  border: 1px solid rgba(37,211,102,0.25);
  border-radius: 50px;
  transition: background 0.2s;
}
.btn-wa:hover { background: rgba(37,211,102,0.08); }
.btn-wa::before { content: '📱 '; }

/* ===== TRUST ===== */
.trust { background: var(--bg2); text-align: center; }
.trust-body {
  color: var(--muted);
  font-size: 18px;
  max-width: 640px;
  margin: 0 auto 48px;
  line-height: 1.9;
}
.trust-body strong { color: var(--white); }
.trust-bullets {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}
.trust-item {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
}

/* ===== FINAL CTA ===== */
.final-cta {
  background:
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(91,142,255,0.1) 0%, transparent 70%),
    var(--bg);
  text-align: center;
}
.final-cta h2 {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -1px;
  margin-bottom: 20px;
}
.final-cta p {
  color: var(--muted);
  font-size: 18px;
  margin-bottom: 48px;
}
.final-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.final-micro {
  font-size: 14px;
  color: var(--muted);
  font-style: italic;
}

/* ===== FOOTER ===== */
.footer {
  background: #060609;
  padding: 40px 0;
  text-align: center;
  border-top: 1px solid var(--border);
}
.footer-logo {
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 8px;
}
.footer-tagline {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 12px;
}
.footer-copy {
  color: rgba(255,255,255,0.2);
  font-size: 12px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero { padding: 100px 0 60px; min-height: auto; }
  .hero-title { font-size: 40px; }
  .hero-ctas { flex-direction: column; }
  .btn { width: 100%; text-align: center; }
  .split-arrow { transform: rotate(90deg); }
  .split-wrap { flex-direction: column; }
  .split-card { max-width: 100%; width: 100%; }
  .trust-micro { flex-direction: column; gap: 8px; }
  section { padding: 70px 0; }
  .final-btns { flex-direction: column; align-items: center; }
  .final-btns .btn { width: 100%; max-width: 360px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 34px; letter-spacing: -1px; }
  .pkg-grid { grid-template-columns: 1fr; }
}
