:root {
  --cream: #FBF7F1;
  --cream-2: #F3EBDD;
  --plum: #2C2142;
  --plum-2: #4C3A6E;
  --plum-3: #6B5792;
  --honey: #F6A623;
  --honey-2: #F8B84E;
  --muted: #9A93A8;
  --max: 1080px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: var(--cream);
  color: var(--plum);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--plum-2); text-decoration: none; }
a:hover { text-decoration: underline; }
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

/* Nav */
nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; max-width: var(--max); margin: 0 auto;
}
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 22px; color: var(--plum); }
.brand svg { width: 36px; height: 36px; }
.nav-links a { margin-left: 22px; font-weight: 600; color: var(--plum-2); }

/* Hero */
.hero { text-align: center; padding: 48px 24px 64px; }
.hero .owl-badge {
  width: 132px; height: 132px; margin: 0 auto 24px;
  background: linear-gradient(160deg, var(--honey-2), #EF9D1B);
  border-radius: 32px; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 14px 40px rgba(239,157,27,.35);
}
.hero .owl-badge svg { width: 96px; height: 96px; }
.hero h1 { font-size: clamp(34px, 6vw, 56px); line-height: 1.1; letter-spacing: -1px; }
.hero p.sub { font-size: clamp(17px, 2.4vw, 21px); color: var(--plum-2); max-width: 620px; margin: 18px auto 30px; }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--plum-2); color: #fff; font-weight: 700; font-size: 17px;
  padding: 15px 28px; border-radius: 16px; box-shadow: 0 10px 26px rgba(44,33,66,.28);
}
.btn:hover { text-decoration: none; background: var(--plum); }
.btn.honey { background: var(--honey); color: #7A4800; }

/* Sections */
section { padding: 56px 0; }
section h2 { text-align: center; font-size: clamp(26px, 4vw, 36px); margin-bottom: 12px; }
section .lead { text-align: center; color: var(--plum-2); max-width: 620px; margin: 0 auto 40px; }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card {
  background: #fff; border: 1px solid var(--cream-2); border-radius: 22px; padding: 28px 22px;
  box-shadow: 0 6px 22px rgba(44,33,66,.05);
}
.card .num {
  width: 44px; height: 44px; border-radius: 50%; background: rgba(108,87,146,.12);
  display: flex; align-items: center; justify-content: center; font-weight: 800; color: var(--plum-2);
  margin-bottom: 14px;
}
.card h3 { font-size: 19px; margin-bottom: 6px; }
.card p { color: var(--plum-2); font-size: 15px; }

.band { background: var(--plum); color: var(--cream); border-radius: 28px; padding: 48px 32px; text-align: center; }
.band h2 { color: #fff; }
.band p { color: rgba(255,255,255,.8); max-width: 640px; margin: 0 auto; }

/* FAQ */
.faq { max-width: 760px; margin: 0 auto; }
.faq details {
  background: #fff; border: 1px solid var(--cream-2); border-radius: 16px; padding: 18px 22px; margin-bottom: 14px;
}
.faq summary { font-weight: 700; cursor: pointer; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq p { color: var(--plum-2); margin-top: 10px; }

/* Footer */
footer { border-top: 1px solid var(--cream-2); padding: 36px 24px; color: var(--muted); font-size: 14px; }
footer .wrap { display: flex; flex-wrap: wrap; gap: 16px; justify-content: space-between; align-items: center; }
footer a { color: var(--plum-2); margin-left: 18px; font-weight: 600; }
footer .links a:first-child { margin-left: 0; }

/* Legal pages */
.legal { max-width: 800px; margin: 0 auto; padding: 40px 24px 80px; }
.legal h1 { font-size: 34px; margin-bottom: 6px; }
.legal h2 { font-size: 22px; margin: 30px 0 8px; }
.legal h3 { font-size: 18px; margin: 20px 0 6px; }
.legal p, .legal li { color: var(--plum-2); margin-bottom: 10px; }
.legal ul { padding-left: 22px; margin-bottom: 12px; }
.legal .meta { color: var(--muted); font-size: 14px; }
.legal .note { background: #FFF6E6; border: 1px solid var(--honey-2); border-radius: 12px; padding: 14px 16px; font-size: 14px; margin: 18px 0; }
.legal a.back { font-weight: 600; }

@media (max-width: 720px) {
  .steps { grid-template-columns: 1fr; }
  .nav-links { display: none; }
}
