:root {
  --rose: #b34a7d;
  --plum: #6d2f57;
  --cream: #fdf6f3;
  --blush: #f6dfe4;
  --gold: #c99a4b;
  --ink: #3c2434;
  --ink-soft: #7a5c6d;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
}

h1, h2, h3 { line-height: 1.25; font-weight: 700; }

h1 { font-size: clamp(2rem, 5vw, 3.3rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); margin-bottom: 1.2rem; }
h3 { font-size: 1.2rem; margin-bottom: .5rem; }

.container { max-width: 1080px; margin: 0 auto; padding: 0 20px; }
.section { padding: 72px 0; position: relative; }
.section-sub { color: var(--ink-soft); max-width: 640px; margin-bottom: 2rem; }

/* HERO */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #fcebee 0%, #f3d7e0 45%, #a86287 100%);
  color: var(--plum);
  padding: 96px 0 110px;
}
.hero-blob {
  position: absolute;
  right: -260px;
  top: -160px;
  width: 640px;
  height: 640px;
  opacity: .55;
  pointer-events: none;
}
.hero-inner { position: relative; max-width: 720px; }
.eyebrow {
  display: inline-block;
  background: rgba(255,255,255,.55);
  color: var(--plum);
  border-radius: 999px;
  padding: 6px 18px;
  font-size: .85rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.lead { font-size: 1.2rem; margin: 18px 0 28px; color: var(--ink-soft); }
.hero .lead { color: rgba(60,36,52,.85); }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-note { margin-top: 16px; font-size: 1rem; color: var(--ink-soft); }

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 16px 32px;
  border-radius: 999px;
  font-size: 1.05rem;
  text-decoration: none;
  text-align: center;
  transition: transform .15s ease, box-shadow .15s ease;
  cursor: pointer;
}
.btn-primary {
  background: linear-gradient(135deg, var(--rose), var(--plum));
  color: #fff;
  box-shadow: 0 10px 24px rgba(179,74,125,.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(179,74,125,.45); }
.btn-ghost {
  background: rgba(255,255,255,.7);
  color: var(--plum);
  border: 1px solid rgba(179,74,125,.4);
}
.btn-big { padding: 18px 40px; font-size: 1.15rem; }

/* CARDS & GRIDS */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.card, .quote {
  background: #fff;
  border-radius: 18px;
  padding: 26px;
  box-shadow: 0 6px 18px rgba(109,47,87,.08);
}
.card p { color: var(--ink-soft); font-size: .98rem; }

.feature {
  display: flex;
  gap: 16px;
  background: #fff;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 6px 18px rgba(109,47,87,.08);
}
.feature .num {
  flex: 0 0 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--blush);
  color: var(--plum);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
}
.feature p { color: var(--ink-soft); font-size: .98rem; }

/* SOLUTION */
.solution { background: #fff; }
.decor { position: absolute; opacity: .35; pointer-events: none; }
.decor-left { left: -180px; top: 40px; width: 380px; height: 380px; }
.decor-right { right: -200px; bottom: -120px; width: 520px; height: 520px; }

/* TESTIMONIALS */
.testimonials { background: linear-gradient(180deg, #fff 0%, var(--cream) 100%); }
.quote blockquote { font-style: italic; color: var(--ink); font-size: 1rem; }
.quote figcaption { margin-top: 14px; color: var(--rose); font-weight: 700; }

/* PRICING */
.pricing { background: linear-gradient(160deg, #f9e8ee 0%, #e8c9d8 60%, #c58aa8 100%); overflow: hidden; }
.pricing-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
}
.includes { list-style: none; }
.includes li {
  padding: 10px 0 10px 34px;
  position: relative;
  font-size: 1.02rem;
}
.includes li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 9px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--plum);
  color: #fff;
  font-size: .8rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.price-block {
  background: #fff;
  border-radius: 22px;
  padding: 34px;
  text-align: center;
  box-shadow: 0 16px 40px rgba(109,47,87,.22);
}
.price-old { color: var(--ink-soft); font-size: 1.1rem; }
.price-new {
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--plum);
  margin: 4px 0;
}
.price-note { color: var(--gold); font-weight: 700; margin-bottom: 20px; }
.price-block .btn { width: 100%; }
.guarantee { margin-top: 14px; font-size: .85rem; color: var(--ink-soft); }

/* FAQ */
.faq { background: #fff; }
.faq-list { max-width: 760px; }
.faq details {
  background: var(--cream);
  border-radius: 14px;
  padding: 18px 24px;
  margin-bottom: 12px;
}
.faq summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--plum);
  font-size: 1.05rem;
}
.faq details p { margin-top: 10px; color: var(--ink-soft); }

/* FINAL */
.final { background: linear-gradient(160deg, var(--plum), #4a1f3a); color: #fff; text-align: center; }
.final .lead { color: rgba(255,255,255,.85); max-width: 560px; margin: 0 auto 28px; }
.final-inner { padding: 20px; }

/* FOOTER */
.footer { background: var(--cream); padding: 28px 0; text-align: center; color: var(--ink-soft); font-size: .9rem; }
.footer a { color: var(--rose); }

/* RESPONSIVE */
@media (max-width: 860px) {
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .pricing-inner { grid-template-columns: 1fr; }
  .hero { padding: 64px 0 80px; }
  .section { padding: 52px 0; }
  .hero-blob { width: 460px; height: 460px; right: -200px; }
}