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

:root {
  --color-primary: #7c5cbf;
  --color-primary-dark: #5e3da0;
  --color-cta: #e8a070;
  --color-bg-lavender: #f3eeff;
  --color-bg-lavender-light: #f8f5ff;
  --color-heading: #2a1a4e;
  --color-body: #5a4a7a;
  --color-border: #ddd0f5;
  --color-proof-bg: #fdeee5;
  --color-proof-border: #f0c4a0;
  --color-footer-bg: #2a1a4e;
  --color-white: #ffffff;
  --radius: 12px;
  --radius-pill: 30px;
  --font-size-body: 15px;
  --line-height-body: 1.65;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: var(--font-size-body);
  color: var(--color-body);
  line-height: var(--line-height-body);
  background: var(--color-white);
}

img {
  max-width: 100%;
  display: block;
}

/* Utility: shared button styles */
.btn {
  display: inline-block;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: opacity 0.15s ease;
}

.btn:hover {
  opacity: 0.88;
}

.btn--violet {
  background: var(--color-primary);
  color: var(--color-white);
}

.btn--cta {
  background: var(--color-cta);
  color: var(--color-white);
}

.btn--large {
  padding: 14px 32px;
  font-size: 16px;
}

/* ── Navigation ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
}

.nav__logo {
  font-weight: 800;
  font-size: 17px;
  color: var(--color-heading);
  letter-spacing: -0.3px;
}

/* ── Hero ── */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 72px 24px 64px;
  background: linear-gradient(140deg, var(--color-bg-lavender) 0%, #ede5ff 60%, #fdeee5 100%);
}

.badge {
  display: inline-block;
  background: var(--color-cta);
  color: var(--color-white);
  padding: 4px 16px;
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero__headline {
  font-size: 42px;
  font-weight: 900;
  color: var(--color-heading);
  line-height: 1.2;
  max-width: 640px;
  margin-bottom: 20px;
}

.hero__headline--accent {
  color: var(--color-primary);
}

.hero__sub {
  font-size: 17px;
  color: var(--color-body);
  max-width: 520px;
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero__micro {
  margin-top: 12px;
  font-size: 12px;
  color: #a090c0;
}

/* ── Shared layout ── */
.section-inner {
  max-width: 720px;
  margin: 0 auto;
  width: 100%;
}

/* ── Pain Points ── */
.pain-points {
  padding: 64px 24px;
  background: var(--color-white);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.pain-points h2 {
  font-size: 26px;
  font-weight: 800;
  color: var(--color-heading);
  margin-bottom: 24px;
}

.pain-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pain-list__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15px;
  color: var(--color-body);
  line-height: 1.6;
}

.pain-list__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--color-proof-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: #c0604a;
  font-weight: 700;
}

/* ── Solution ── */
.solution {
  padding: 64px 24px;
  background: linear-gradient(135deg, var(--color-bg-lavender) 0%, #ede5ff 100%);
}

.solution h2 {
  font-size: 26px;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 16px;
}

.solution p {
  font-size: 16px;
  color: #3a2a5a;
  line-height: 1.75;
  max-width: 620px;
}

/* ── How It Works ── */
.how-it-works {
  padding: 64px 24px;
  background: var(--color-white);
}

.how-it-works h2 {
  font-size: 26px;
  font-weight: 800;
  color: var(--color-heading);
  margin-bottom: 32px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.step {
  background: var(--color-bg-lavender-light);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
}

.step__number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 17px;
  font-weight: 800;
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.step__number--primary { background: var(--color-primary); }
.step__number--cta     { background: var(--color-cta); }

.step h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-heading);
  margin-bottom: 8px;
}

.step p {
  font-size: 13px;
  color: #8070a8;
  line-height: 1.5;
}

/* ── Social Proof ── */
.proof {
  padding: 64px 24px;
  background: linear-gradient(135deg, var(--color-proof-bg) 0%, #fce8da 100%);
}

.proof h2 {
  font-size: 26px;
  font-weight: 800;
  color: var(--color-heading);
  margin-bottom: 28px;
}

.proof__tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 24px;
}

.proof__tile {
  background: var(--color-white);
  border: 1px solid var(--color-proof-border);
  border-radius: var(--radius);
  padding: 20px 16px;
  text-align: center;
}

.proof__tile h3 {
  font-size: 16px;
  font-weight: 800;
  color: var(--color-cta);
  margin-bottom: 8px;
}

.proof__tile p {
  font-size: 13px;
  color: #7a5a48;
  line-height: 1.5;
}

.testimonial {
  background: var(--color-white);
  border: 1px solid var(--color-proof-border);
  border-radius: var(--radius);
  padding: 20px 24px;
}

.testimonial p {
  font-size: 14px;
  font-style: italic;
  color: #3a2a2a;
  line-height: 1.65;
  margin-bottom: 10px;
}

.testimonial cite {
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  color: var(--color-cta);
}

/* ── Final CTA ── */
.cta-final {
  padding: 80px 24px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  text-align: center;
}

.cta-final .section-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.cta-final h2 {
  font-size: 30px;
  font-weight: 900;
  color: var(--color-white);
  margin-bottom: 14px;
  line-height: 1.25;
}

.cta-final > .section-inner > p:first-of-type {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  max-width: 480px;
  margin-bottom: 28px;
  line-height: 1.65;
}

.cta-final__micro {
  margin-top: 14px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}

/* ── Footer ── */
.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: var(--color-footer-bg);
  flex-wrap: wrap;
  gap: 8px;
}

.footer__logo {
  font-weight: 700;
  font-size: 14px;
  color: #c4afe8;
}

.footer__copy {
  font-size: 12px;
  color: #7060a0;
}

.footer__link {
  color: #7060a0;
  text-decoration: none;
}

.footer__link:hover {
  color: #c4afe8;
}

/* ── Services Section ── */
.services {
  padding: 80px 24px;
  background: var(--color-bg-lavender-light);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 32px 0 28px;
}

.service-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-card__icon {
  font-size: 28px;
  margin-bottom: 4px;
}

.service-card h3 {
  font-size: 16px;
  color: var(--color-heading);
  font-weight: 700;
}

.service-card p {
  font-size: 13px;
  color: var(--color-body);
  line-height: 1.65;
  flex: 1;
}

.service-card__list {
  list-style: none;
  padding: 0;
  margin: 4px 0;
}

.service-card__list li {
  font-size: 12px;
  color: var(--color-body);
  padding: 3px 0 3px 18px;
  position: relative;
}

.service-card__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: 700;
  font-size: 11px;
}

.service-card__price {
  margin-top: 8px;
  font-size: 13px;
  color: #666;
  border-top: 1px solid var(--color-border);
  padding-top: 12px;
}

.service-card__price strong {
  font-size: 22px;
  color: var(--color-heading);
}

.service-card__price span {
  font-size: 12px;
  color: #999;
}

.bundle-box {
  background: var(--color-heading);
  border-radius: var(--radius);
  padding: 24px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.bundle-badge {
  display: inline-block;
  background: var(--color-cta);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 8px;
}

.bundle-box__left h3 {
  font-size: 18px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 4px;
}

.bundle-box__left p {
  font-size: 13px;
  color: #b8a8d8;
  margin: 0;
}

.bundle-box__right {
  text-align: right;
  flex-shrink: 0;
}

.bundle-price {
  display: block;
  font-size: 32px;
  font-weight: 700;
  color: var(--color-cta);
  line-height: 1;
}

.bundle-price span {
  font-size: 14px;
  color: #b8a8d8;
  font-weight: 400;
}

.bundle-note {
  display: block;
  font-size: 12px;
  color: #9080b8;
  margin-top: 4px;
}

/* ── Responsive: Mobile (max 768px) ── */
@media (max-width: 768px) {
  .hero {
    padding: 48px 20px 40px;
  }

  .hero__headline {
    font-size: 28px;
  }

  .hero__sub {
    font-size: 15px;
  }

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

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

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

  .bundle-box {
    flex-direction: column;
    text-align: center;
  }

  .bundle-box__right {
    text-align: center;
  }

  .cta-final h2 {
    font-size: 22px;
  }

  .nav__logo {
    font-size: 14px;
  }

  .footer {
    flex-direction: column;
    text-align: center;
  }
}
