:root {
  --bg: #FFFBF5;
  --bg-alt: #FFF3E0;
  --fg: #2C2320;
  --fg-light: #6B5D56;
  --accent: #E8622A;
  --accent-dark: #C44E1E;
  --accent-light: #FFF0E8;
  --warm: #F59E0B;
  --warm-light: #FFFBEB;
  --cream: #FDF6EE;
  --border: #F0DFD0;
  --radius: 12px;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', -apple-system, sans-serif;
  font-size: 18px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: 'Outfit', -apple-system, sans-serif;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

/* ── HERO ── */
.hero {
  background: linear-gradient(160deg, #FFFBF5 0%, #FFF3E0 50%, #FFFBF5 100%);
  padding: 80px 24px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -80px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(232,98,42,0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -40px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(245,158,11,0.07) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-inner {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Hero social proof bar */
.hero-social-proof {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: white;
  border: 1.5px solid var(--border);
  border-radius: 100px;
  padding: 8px 20px;
  margin-bottom: 28px;
  font-size: 0.92rem;
  color: var(--fg-light);
  box-shadow: 0 2px 12px rgba(44,35,32,0.06);
}

.hero-stars {
  color: var(--warm);
  font-size: 1rem;
  letter-spacing: 1px;
}

.hero-proof-text strong {
  color: var(--fg);
}

.hero h1 {
  font-size: clamp(2.4rem, 6vw, 3.8rem);
  font-weight: 800;
  color: var(--fg);
  margin-bottom: 24px;
}

.hero-sub {
  font-size: clamp(1.05rem, 2.5vw, 1.3rem);
  color: var(--fg-light);
  max-width: 560px;
  margin: 0 auto 40px;
}

.hero-sub em {
  color: var(--accent);
  font-style: italic;
}

.product-card {
  background: white;
  border: 2px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  max-width: 400px;
  margin: 0 auto;
  box-shadow: 0 8px 48px rgba(232,98,42,0.10), 0 2px 12px rgba(44,35,32,0.06);
}

/* Product mockup — stacked pages visual */
.product-mockup {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: -8px;
  margin-bottom: 20px;
  position: relative;
  height: 80px;
}

.mockup-page {
  width: 60px;
  height: 72px;
  background: var(--accent-light);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  position: absolute;
}

.mockup-page--back {
  transform: rotate(-8deg) translateX(-32px);
  background: #FFF3E0;
  z-index: 1;
}

.mockup-page--mid {
  transform: rotate(-2deg) translateX(0px);
  background: #FFF0E8;
  z-index: 2;
}

.mockup-page--front {
  transform: rotate(6deg) translateX(28px);
  background: white;
  z-index: 3;
  box-shadow: 0 4px 16px rgba(44,35,32,0.10);
}

.product-label {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--fg);
  margin-bottom: 6px;
}

.product-format {
  font-size: 0.9rem;
  color: var(--fg-light);
  margin-bottom: 14px;
}

.product-price-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 10px;
  margin-bottom: 4px;
}

.product-price {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 2rem;
  color: var(--accent);
}

.product-price-context {
  font-size: 0.9rem;
  color: var(--fg-light);
}

/* ── PROBLEM ── */
.problem {
  padding: 100px 24px;
  background: white;
}

.problem-inner {
  max-width: 960px;
  margin: 0 auto;
}

.problem-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: center;
}

.problem-text h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 24px;
  color: var(--fg);
}

.problem-text p {
  color: var(--fg-light);
  margin-bottom: 16px;
  font-size: 1.05rem;
}

.problem-text strong {
  color: var(--fg);
}

.stat {
  background: var(--warm-light);
  border-radius: var(--radius);
  padding: 28px 24px;
  margin-bottom: 16px;
  border-left: 4px solid var(--warm);
}

.stat-number {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 2.2rem;
  color: var(--accent);
  line-height: 1.1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.95rem;
  color: var(--fg-light);
  line-height: 1.4;
}

/* ── WHAT'S INSIDE ── */
.whats-inside {
  padding: 100px 24px;
  background: var(--bg);
}

.inside-inner {
  max-width: 800px;
  margin: 0 auto;
}

.whats-inside h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  text-align: center;
  margin-bottom: 8px;
}

.inside-sub {
  text-align: center;
  color: var(--fg-light);
  margin-bottom: 56px;
  font-size: 1.1rem;
}

.kit-items {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.kit-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}

.kit-item:last-child {
  border-bottom: none;
}

.kit-num {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--accent);
  opacity: 0.45;
  padding-top: 2px;
}

.kit-content h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--fg);
}

.kit-content p {
  color: var(--fg-light);
  font-size: 1rem;
  line-height: 1.55;
}

/* ── HOW IT WORKS ── */
.how-it-works {
  padding: 100px 24px;
  background: var(--accent-light);
}

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

.how-it-works h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 56px;
}

.steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 24px;
}

.step {
  flex: 1;
  max-width: 220px;
}

.step-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--accent);
  color: white;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

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

.step p {
  font-size: 0.95rem;
  color: var(--fg-light);
  line-height: 1.5;
}

.step-arrow {
  font-size: 1.4rem;
  color: var(--accent);
  opacity: 0.4;
  padding-top: 14px;
  flex-shrink: 0;
}

/* ── TESTIMONIALS ── */
.testimonials {
  padding: 100px 24px;
  background: white;
}

.testimonials-inner {
  max-width: 960px;
  margin: 0 auto;
}

.review-header {
  text-align: center;
  margin-bottom: 48px;
}

.stars-row {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 10px;
}

.star {
  font-size: 1.6rem;
  color: var(--warm);
}

.review-count {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--fg-light);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  margin-bottom: 40px;
}

.testimonial-card {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px;
}

.testimonial-card--featured {
  background: var(--accent-light);
  border-color: var(--accent);
  border-width: 2px;
}

.testimonial-stars {
  color: var(--warm);
  font-size: 1rem;
  letter-spacing: 1px;
  margin-bottom: 14px;
}

.testimonial-text {
  font-size: 0.98rem;
  color: var(--fg);
  line-height: 1.6;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--accent);
  color: white;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.author-name {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--fg);
}

.author-meta {
  font-size: 0.82rem;
  color: var(--fg-light);
}

.testimonial-extra {
  text-align: center;
  padding: 32px;
  background: var(--warm-light);
  border-radius: 16px;
  border: 1.5px solid rgba(245,158,11,0.2);
}

.extra-quote {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 8px;
  font-style: italic;
}

.extra-attr {
  font-size: 0.9rem;
  color: var(--fg-light);
}

/* ── FAQ ── */
.faq {
  padding: 100px 24px;
  background: var(--bg);
}

.faq-inner {
  max-width: 720px;
  margin: 0 auto;
}

.faq h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  text-align: center;
  margin-bottom: 48px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-item[open] {
  border-color: var(--accent);
}

.faq-q {
  padding: 22px 24px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--fg);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}

.faq-q::-webkit-details-marker { display: none; }

.faq-q::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--accent);
  font-weight: 400;
  transition: transform 0.2s;
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item[open] .faq-q::after {
  transform: rotate(45deg);
}

.faq-a {
  padding: 0 24px 22px;
  border-top: 1px solid var(--border);
}

.faq-a p {
  color: var(--fg-light);
  font-size: 1rem;
  line-height: 1.65;
  padding-top: 18px;
}

/* ── CLOSING ── */
.closing {
  padding: 100px 24px;
  background: white;
  text-align: center;
}

.closing-inner {
  max-width: 680px;
  margin: 0 auto;
}

.closing-quote {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.2rem, 3vw, 1.65rem);
  font-weight: 600;
  color: var(--fg-light);
  line-height: 1.4;
  margin-bottom: 56px;
  padding: 36px 40px;
  background: var(--bg);
  border-radius: 16px;
  border-left: 4px solid var(--accent);
}

.closing-quote em {
  color: var(--accent);
  font-style: italic;
}

.closing-quote-attr {
  display: block;
  font-size: 0.85em;
  font-weight: 400;
  margin-top: 10px;
  color: var(--fg-light);
  opacity: 0.7;
}

.closing-vision h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 20px;
}

.closing-vision p {
  color: var(--fg-light);
  font-size: 1.1rem;
  margin-bottom: 16px;
}

/* Price anchoring comparison box */
.price-anchor-box {
  margin: 28px 0 8px;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 20px 24px;
  text-align: left;
}

.price-anchor-items {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price-anchor-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.95rem;
  color: var(--fg-light);
  padding: 8px 12px;
  border-radius: 8px;
}

.price-anchor-item span {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
}

.price-anchor-item--cross {
  text-decoration: line-through;
  opacity: 0.6;
}

.price-anchor-item--win {
  background: var(--accent);
  color: white;
  font-weight: 600;
  text-decoration: none;
  opacity: 1;
}

.price-anchor-item--win span {
  color: white;
  font-size: 1.05rem;
}

.guarantee-note {
  font-size: 0.88rem;
  color: var(--fg-light);
  margin-top: 14px;
  opacity: 0.75;
}

/* ── BUY BUTTON ── */
.btn-buy {
  display: block;
  width: 100%;
  background: var(--accent);
  color: white;
  border: none;
  border-radius: 100px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 16px 28px;
  cursor: pointer;
  transition: background 0.15s, transform 0.1s, box-shadow 0.15s;
  letter-spacing: 0.01em;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(232,98,42,0.30);
}

.btn-buy:hover { background: var(--accent-dark); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(232,98,42,0.35); }
.btn-buy:active { transform: translateY(0); }

.btn-buy--large {
  font-size: 1.15rem;
  padding: 18px 40px;
  width: auto;
  display: inline-block;
}

.secure-note {
  font-size: 0.82rem;
  color: var(--fg-light);
  margin-top: 10px;
  text-align: center;
}

/* ── SUCCESS / ERROR PAGE ── */
.page-center {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  background: linear-gradient(160deg, #FFFBF5 0%, #FFF3E0 50%, #FFFBF5 100%);
}

.page-card {
  background: white;
  border: 2px solid var(--border);
  border-radius: 20px;
  padding: 48px 40px;
  max-width: 480px;
  width: 100%;
  text-align: center;
  box-shadow: 0 12px 48px rgba(232,98,42,0.08);
}

.page-card-icon { font-size: 56px; margin-bottom: 20px; }
.page-card h1 { font-size: 1.9rem; font-weight: 800; margin-bottom: 12px; color: var(--fg); }
.page-card p { color: var(--fg-light); margin-bottom: 16px; font-size: 1rem; }

.btn-download {
  display: inline-block;
  background: var(--accent);
  color: white;
  text-decoration: none;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 16px 36px;
  border-radius: 100px;
  margin: 8px 0 20px;
  transition: background 0.15s;
  box-shadow: 0 4px 16px rgba(232,98,42,0.28);
}

.btn-download:hover { background: var(--accent-dark); }

/* ── FOOTER ── */
.site-footer {
  padding: 48px 24px;
  background: var(--fg);
  text-align: center;
}

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

.footer-brand {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: white;
  margin-bottom: 8px;
}

.footer-tagline {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
}

/* ── MOBILE ── */
@media (max-width: 768px) {
  .hero {
    padding: 60px 20px 56px;
  }

  .hero-social-proof {
    flex-direction: column;
    gap: 4px;
    text-align: center;
    border-radius: 16px;
    padding: 12px 20px;
  }

  .problem-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .kit-item {
    grid-template-columns: 48px 1fr;
    gap: 16px;
    padding: 24px 0;
  }

  .steps {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }

  .step-arrow {
    transform: rotate(90deg);
    padding: 0;
  }

  .step {
    max-width: 280px;
  }

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

  .closing-quote {
    padding: 24px 20px;
    font-size: 1.1rem;
  }

  .price-anchor-box {
    padding: 16px;
  }

  section {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
}
