:root {
  --bg: #f8f3ef;
  --bg-soft: #fff7fb;
  --text: #2a2430;
  --muted: #6f6575;
  --primary: #7a4e8a;
  --primary-dark: #5f376e;
  --accent: #d7a2bf;
  --card: #ffffff;
  --border: #ead8e5;
  --shadow: 0 18px 45px rgba(68, 45, 78, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
}

a {
  color: inherit;
}

.hero {
  position: relative;
  min-height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.24), transparent 30%),
    linear-gradient(135deg, #5d3470 0%, #8b5796 45%, #d69cbc 100%);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.35;
}

.hero__content {
  position: relative;
  width: min(900px, 92%);
  padding: 80px 20px;
}

.eyebrow,
.section__label {
  margin: 0 0 10px;
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: rgba(255, 255, 255, 0.86);
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.8rem, 7vw, 5.8rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.hero__subtitle {
  width: min(720px, 100%);
  margin: 24px auto 32px;
  font-size: clamp(1.05rem, 2.5vw, 1.35rem);
  color: rgba(255, 255, 255, 0.92);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 24px;
  border-radius: 999px;
  color: #fff;
  background: var(--primary);
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 12px 25px rgba(122, 78, 138, 0.22);
  transition: transform 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
  background: var(--primary-dark);
}

.button--light {
  color: var(--primary-dark);
  background: #fff;
}

.button--light:hover {
  color: #fff;
  background: var(--primary-dark);
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: 70px 0;
}

.section--intro {
  padding-top: 50px;
}

.section--soft {
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

h2 {
  margin: 0 0 18px;
  color: var(--primary-dark);
  font-size: clamp(1.75rem, 4vw, 2.7rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
}

h3 {
  margin: 0 0 12px;
  color: var(--primary-dark);
  font-size: 1.15rem;
}

p {
  margin: 0 0 16px;
}

.grid {
  display: grid;
  gap: 32px;
  align-items: center;
}

.grid--two {
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 24px;
}

.card,
.quote-card,
.cta-box {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.card--highlight {
  background: linear-gradient(145deg, #fff, #fff7fb);
}

.checklist {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.checklist li {
  position: relative;
  padding-left: 28px;
}

.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary);
  font-weight: 700;
}

.quote-card {
  padding: 42px;
  background: linear-gradient(145deg, #7a4e8a, #c28ab0);
  color: #fff;
  font-size: 1.45rem;
  line-height: 1.45;
}

.quote-card p {
  margin: 0;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 24px;
}

.step {
  padding: 28px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid var(--border);
}

.step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 50%;
  color: #fff;
  background: var(--primary);
  font-weight: 700;
}

.faq details {
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}

.faq details:first-of-type {
  border-top: 1px solid var(--border);
}

.faq summary {
  cursor: pointer;
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 1.05rem;
}

.faq details p {
  margin: 14px 0 0;
  color: var(--muted);
}

.cta-section {
  padding: 80px 0;
  background:
    radial-gradient(circle at top right, rgba(215, 162, 191, 0.28), transparent 34%),
    linear-gradient(180deg, #fff, #f8f3ef);
}

.cta-box {
  text-align: center;
  width: min(840px, calc(100% - 40px));
}

.cta-box p {
  width: min(680px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.ad {
  width: min(1120px, calc(100% - 40px));
  margin: 24px auto;
  padding: 18px;
  text-align: center;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--border);
  border-radius: 18px;
}

.ad--top {
  margin-top: 30px;
}

.footer {
  padding: 42px 20px;
  text-align: center;
  color: var(--muted);
  background: #fff;
  border-top: 1px solid var(--border);
  font-size: 0.95rem;
}

.footer p {
  margin: 4px 0;
}

@media (max-width: 860px) {
  .grid--two,
  .cards,
  .steps {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 390px;
  }

  .section {
    padding: 52px 0;
  }

  .card,
  .quote-card,
  .cta-box {
    border-radius: 18px;
    padding: 22px;
  }
}
