:root {
  --plum: #4b3f6b;
  --pink: #e89aa8;
  --pink-soft: #f0b9c3;
  --muted: #8a8598;
  --grad: linear-gradient(160deg, #fbe9ec, #eef0f6 70%);
}
* { box-sizing: border-box; }
body { margin: 0; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; color: var(--plum); background: #fff; line-height: 1.5; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* nav */
.nav { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 12px 22px; border-bottom: 1px solid #f0e3e7; position: sticky; top: 0; background: #fffdfe; z-index: 10; flex-wrap: wrap; }
.nav .brand { display: flex; align-items: center; gap: 10px; font-weight: 800; }
.nav .brand img { width: 38px; }
.nav .links { font-size: 13px; color: var(--muted); display: flex; gap: 14px; flex-wrap: wrap; }
.nav .links a:hover { color: var(--plum); }

/* buttons */
.btn { display: inline-block; background: var(--pink); color: #fff; padding: 13px 26px; border-radius: 26px; font-weight: 700; font-size: 15px; }
.btn:hover { background: #e08799; }
.btn.sm { padding: 9px 18px; font-size: 13px; }
.nav .btn { padding: 8px 16px; font-size: 13px; }

/* sections */
section { padding: 46px 22px; max-width: 920px; margin: 0 auto; }
.full { max-width: none; }
.full > .inner { max-width: 920px; margin: 0 auto; }
.tinted { background: var(--grad); }
.sec-label { text-align: center; color: var(--pink); font-size: 12px; letter-spacing: 3px; text-transform: uppercase; font-weight: 700; margin: 0; }
.sec-title { text-align: center; font-size: 24px; margin: 4px 0 26px; }

/* hero */
.hero { text-align: center; padding: 54px 22px; }
.hero img { width: 170px; margin: 0 auto; }
.hero h1 { font-size: 30px; margin: 14px 0 6px; }
.hero p { color: var(--muted); font-size: 16px; margin: 0 auto 22px; max-width: 520px; }

/* steps */
.steps, .cards, .gallery { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.step { flex: 1; min-width: 200px; background: #faf3f5; border-radius: 14px; padding: 20px; text-align: center; }
.step .n { width: 34px; height: 34px; border-radius: 50%; background: var(--pink); color: #fff; font-weight: 700; line-height: 34px; margin: 0 auto 10px; }
.step p { font-size: 13px; color: var(--muted); margin: 6px 0 0; }

/* package cards */
.card { flex: 1; min-width: 210px; background: #fff; border: 2px solid #f0e3e7; border-radius: 16px; padding: 22px; text-align: center; }
.card.feat { border-color: var(--pink); box-shadow: 0 8px 24px rgba(232,154,168,.25); }
.card .tier { font-weight: 800; font-size: 18px; }
.card .price { font-size: 30px; color: var(--pink); font-weight: 800; margin: 6px 0; }
.card ul { list-style: none; padding: 0; margin: 10px 0 16px; font-size: 13px; line-height: 1.9; }
.badge { display: inline-block; background: var(--pink); color: #fff; font-size: 10px; letter-spacing: 1px; padding: 3px 9px; border-radius: 10px; text-transform: uppercase; margin-bottom: 8px; }
.pkg-note { text-align: center; color: var(--muted); font-size: 12px; margin-top: 16px; }

/* examples */
.vid { flex: 1; min-width: 240px; aspect-ratio: 16/9; background: #eceaf0; border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--muted); font-size: 13px; border: 2px dashed #d7d2dd; overflow: hidden; }
.vid iframe { width: 100%; height: 100%; border: 0; }

/* faq */
.faq { max-width: 680px; }
.qa { border-bottom: 1px solid #f0e3e7; padding: 14px 0; }
.qa .q { font-weight: 700; font-size: 15px; }
.qa .a { color: var(--muted); font-size: 13px; margin-top: 4px; }

/* footer */
.foot { background: var(--plum); color: #fff; text-align: center; padding: 40px 22px; }
.foot h2 { margin: 0 0 14px; }
.foot a { color: var(--pink-soft); }
.foot .tag { font-size: 13px; opacity: .85; margin-top: 14px; }
