:root {
  --ink: #20223a;
  --muted: #5b5d70;
  --pink: #e85c97;
  --pink-600: #d4467f;
  --pink-bg: #fbd9e2;
  --pink-soft: #fce9ee;
  --peach: #fbe7cb;
  --mint: #a6e7ce;
  --mint-soft: #d9f4e8;
  --paper: #ffffff;
  --line: #efe7ea;
  --radius: 18px;
  --radius-lg: 26px;
  --shadow: 0 12px 30px rgba(32, 34, 58, 0.08);
  --shadow-sm: 0 4px 14px rgba(32, 34, 58, 0.06);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

/* Offset anchor scrolling so sections land below the sticky nav, not under it */
section { scroll-margin-top: 88px; }

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

.wrap { width: min(1120px, 92vw); margin: 0 auto; }

h1, h2, h3 { line-height: 1.15; margin: 0; letter-spacing: -0.01em; }

a { color: inherit; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; border: 0; cursor: pointer; text-decoration: none;
  font-family: inherit; font-weight: 800; font-size: 1rem;
  padding: 14px 22px; border-radius: 999px; transition: transform .08s ease, background .15s ease;
}
.btn:active { transform: translateY(1px); }
.btn--pink { background: var(--pink); color: #fff; }
.btn--pink:hover { background: var(--pink-600); }
.btn--ghost { background: rgba(255,255,255,.7); color: var(--ink); padding: 10px 18px; }
.btn--ghost:hover { background: #fff; }
.btn--outline { background: #fff; color: var(--ink); }
.btn--outline:hover { background: var(--pink-bg); }
.btn--block { width: 100%; }

/* ---------- Nav ---------- */
.nav { position: sticky; top: 0; z-index: 50; background: var(--pink-bg); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.logo { font-weight: 800; font-size: 1.6rem; color: var(--pink); text-decoration: none; letter-spacing: -0.03em; }
.logo--sm { font-size: 1.3rem; }
.nav__links { display: flex; align-items: center; gap: 26px; }
.nav__links a { text-decoration: none; font-weight: 700; color: var(--ink); }
.nav__links a:hover { color: var(--pink); }

/* ---------- Hero ---------- */
.hero { background: var(--pink-bg); padding: 92px 0 80px; }
.hero__inner { display: flex; flex-direction: column; align-items: center; text-align: center; }
.pill { background: #fff; color: var(--ink); font-weight: 700; font-size: .9rem; padding: 8px 16px; border-radius: 999px; box-shadow: var(--shadow-sm); margin-bottom: 22px; }
.hero h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); font-weight: 800; }
.hero__sub { max-width: 620px; color: var(--muted); font-size: 1.15rem; margin: 18px 0 30px; }
.hero__cta { display: flex; flex-direction: column; align-items: center; gap: 18px; margin-top: 8px; }
.hero__cta-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }
.hero__cta-note { color: var(--ink); font-weight: 600; margin: 0; font-size: 1rem; }
.btn--lg { font-size: 1.15rem; padding: 18px 36px; }
.btn--xl { font-size: 1.1rem; padding: 16px 32px; border-radius: 999px; }
@media (max-width: 560px) {
  .hero__cta-row { flex-direction: column; width: 100%; }
  .hero__cta-row .btn { width: 100%; }
}
.hero__stats { display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: auto 1fr; gap: 24px; list-style: none; margin: 88px 0 0; padding: 0; width: min(960px, 100%); }
.hero__stat { background: transparent; padding: 8px 12px; text-align: center; display: grid; grid-template-rows: subgrid; grid-row: span 2; justify-items: center; row-gap: 14px; }
.hero__stat-num { display: block; font-size: clamp(2.4rem, 5vw, 3.4rem); font-weight: 800; color: var(--pink-600); line-height: 1; margin: 0; white-space: nowrap; }
.hero__stat-label { margin: 0; color: var(--ink); font-size: 1rem; line-height: 1.45; }
@media (max-width: 720px) {
  .hero__stats { grid-template-columns: 1fr; }
}

/* ---------- Search ---------- */
.search { width: min(720px, 100%); background: #fff; border-radius: var(--radius-lg); padding: 18px; box-shadow: var(--shadow); text-align: left; }
.search__label { display: block; font-weight: 800; margin: 4px 4px 12px; }
.search__row { display: flex; gap: 10px; }
.search__input {
  flex: 1; min-width: 0; font-family: inherit; font-size: 1rem; color: var(--ink);
  padding: 14px 18px; border: 2px solid var(--line); border-radius: 999px; background: #fff;
}
.search__input:focus { outline: none; border-color: var(--pink); }
.search__row .btn { white-space: nowrap; }

/* ---------- Result / lead ---------- */
.result { width: min(720px, 100%); background: #fff; border-radius: var(--radius-lg); padding: 24px; box-shadow: var(--shadow); margin-top: 16px; text-align: left; }
.result__msg { font-weight: 800; font-size: 1.1rem; margin: 0 0 16px; }
.lead__row { display: flex; gap: 10px; margin-bottom: 12px; }
.lead__row .search__input { border-color: var(--line); }
.lead__small { color: var(--muted); font-size: .85rem; margin: 12px 4px 0; }
.lead__thanks { font-weight: 800; color: var(--pink-600); margin: 8px 0 0; }

/* ---------- Offer + price ---------- */
.offer { background: var(--pink-soft); padding: 80px 0; }
.offer__eyebrow { text-align: center; color: var(--pink-600); font-weight: 800; margin: 0 0 10px; }
.offer__grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; margin: 44px auto 0; max-width: 920px; align-items: start; }
.offer__list { list-style: none; margin: 0; padding: 0; }
.offer__list li { padding: 14px 0; border-bottom: 1px solid #f0d6df; color: var(--ink); line-height: 1.5; font-size: 1.02rem; }
.offer__list li:last-child { border-bottom: 0; }
.offer__list strong { color: var(--ink); }
.offer__price { background: #fff; border-radius: var(--radius-lg); padding: 28px; text-align: center; box-shadow: var(--shadow-sm); position: sticky; top: 100px; }
.offer__amount { font-size: 3.4rem; font-weight: 800; color: var(--pink); line-height: 1; margin: 0; }
.offer__currency { font-size: 2rem; vertical-align: top; margin-right: 2px; }
.offer__per { font-size: 1.1rem; font-weight: 700; color: var(--muted); margin-left: 4px; }
.offer__setup { color: var(--ink); font-weight: 700; margin: 12px 0 0; }
.offer__terms { color: var(--muted); font-size: 0.9rem; margin: 4px 0 20px; }

/* ---------- In-area book panel (inside the hero result) ---------- */
.result__book { margin-top: 4px; }

/* ---------- CTA secondary link ---------- */
.cta__alt { margin: 16px 0 0; color: #4a4c61; font-size: 0.95rem; }
.cta__alt a { color: var(--pink-600); font-weight: 700; }

/* ---------- The problem (stats) ---------- */
.problem { background: #fff; padding: 80px 0; }
.problem__eyebrow { text-align: center; color: var(--pink-600); font-weight: 800; margin: 0 0 10px; }
.cord { position: relative; max-width: 1100px; margin: 56px auto 0; padding-bottom: 8px; text-align: center; }
.cord__phone { display: block; width: 60px; height: 60px; fill: var(--pink); margin: 28px auto 24px; position: relative; z-index: 2; }
.cord__list { position: relative; z-index: 1; list-style: none; margin: 0; padding: 0; }
.cord__list--top { display: flex; justify-content: center; }
.cord__list--below { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.cord__item { padding: 24px; background: var(--pink-soft); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; }
.cord__list--top .cord__item { width: 320px; aspect-ratio: 1 / 1; }
@media (max-width: 900px) {
  .cord__list--below { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .cord__list--below { grid-template-columns: 1fr; }
}
.cord__dot { display: none; }
.cord__num { display: block; font-size: clamp(2rem, 3.6vw, 2.6rem); font-weight: 800; color: var(--pink); line-height: 1; }
.cord__label { margin: 12px 0 0; color: var(--ink); font-size: 1rem; line-height: 1.45; }
.problem__source { text-align: center; color: var(--muted); font-size: .82rem; margin-top: 30px; }

/* ---------- Trust trio ---------- */
.trio { background: var(--pink-soft); padding: 44px 0; }
.trio__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.trio__item { text-align: left; }
.trio__icon { display: inline-grid; place-items: center; width: 44px; height: 44px; background: #fff; color: var(--pink); border-radius: 50%; font-size: 1.2rem; box-shadow: var(--shadow-sm); margin-bottom: 12px; }
.trio__item h3 { font-size: 1.15rem; margin-bottom: 6px; }
.trio__item p { color: var(--muted); margin: 0; }

/* ---------- Section bits ---------- */
.section__title { font-size: clamp(1.6rem, 3.4vw, 2.3rem); font-weight: 800; text-align: center; }
.section__lead { text-align: center; color: var(--muted); max-width: 640px; margin: 14px auto 0; font-size: 1.08rem; }

/* ---------- Pillar cards ---------- */
.cards { padding: 72px 0; }
.cards__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 36px; }
.card { display: flex; align-items: center; justify-content: space-between; gap: 16px; background: #fff; border: 2px solid var(--line); border-radius: var(--radius); padding: 26px; text-decoration: none; transition: transform .12s ease, box-shadow .12s ease, border-color .12s ease; }
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: transparent; }
.card h3 { font-size: 1.2rem; margin-bottom: 8px; }
.card p { color: var(--muted); margin: 0; font-size: .98rem; }
.card__arrow { flex: 0 0 auto; display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; background: var(--pink); color: #fff; font-size: 1.2rem; font-weight: 800; }

/* ---------- Service pillars (alternating feature rows) ---------- */
.features { display: flex; flex-direction: column; gap: 88px; margin-top: 52px; }
.feature { display: flex; align-items: center; gap: 48px; }
.feature:nth-child(even) { flex-direction: row-reverse; }
.feature__media { flex: 1 1 0; align-self: stretch; min-height: 320px; border-radius: var(--radius-lg); background: var(--pink-soft); display: grid; place-items: center; background-size: cover; background-position: center; }
.feature__media--mint { background-color: var(--mint-soft); }
.feature__media--peach { background-color: var(--peach); }
.feature__icon { font-size: 3.4rem; color: var(--pink); opacity: .85; }
.feature__text { flex: 1 1 0; }
.feature__text h3 { font-size: 1.5rem; margin: 0 0 14px; }
.feature__text p { color: var(--muted); margin: 0 0 16px; font-size: 1.05rem; line-height: 1.65; }
.feature__list { margin: 0; padding-left: 24px; color: var(--muted); font-size: 1.05rem; line-height: 1.65; }
.feature__list li { margin: 8px 0; }

/* ---------- How it works ---------- */
.how { padding: 24px 0 80px; }
.how__steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 36px; }
.how__step { border-radius: var(--radius-lg); padding: 30px 26px; }
.how__step--peach { background: var(--peach); }
.how__step--mint { background: var(--mint-soft); }
.how__num { display: inline-grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; background: #fff; font-weight: 800; margin-bottom: 14px; }
.how__step h3 { font-size: 1.2rem; margin-bottom: 8px; }
.how__step p { margin: 0; color: #4a4c61; }

/* ---------- Team ---------- */
.team { padding: 24px 0 80px; }
.team__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; max-width: 760px; margin: 36px auto 0; }
.member { display: flex; align-items: center; gap: 18px; margin: 0; background: var(--pink-soft); border-radius: var(--radius-lg); padding: 22px; }
.avatar { flex: 0 0 auto; width: 76px; height: 76px; border-radius: 50%; display: grid; place-items: center; font-weight: 800; font-size: 1.6rem; color: #fff; background-size: cover; background-position: center; }
.avatar--rose { background-color: var(--pink); }
.avatar--mint { background-color: #34b88a; }
.member figcaption strong { display: block; font-size: 1.1rem; }
.member figcaption span { color: var(--muted); font-size: .95rem; }

/* ---------- Scams ---------- */
.scams { background: var(--pink-soft); padding: 72px 0; }
.scams__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 36px; }
.scam { position: relative; display: flex; flex-direction: column; gap: 16px; background: #fff; border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-sm); }
.scam__tag { position: absolute; top: 16px; right: 16px; display: inline-block; font-size: .78rem; font-weight: 800; padding: 4px 12px; border-radius: 999px; background: var(--peach); }
.scam__tag--new { background: var(--mint); }
.scam h3 { font-size: 1.12rem; margin: 0; padding-right: 92px; line-height: 1.3; }
.scam p { color: var(--muted); margin: 0; font-size: .96rem; line-height: 1.62; }
.scams__cta { text-align: center; margin-top: 36px; }

/* ---------- Stat ---------- */
.stat { background: var(--mint); padding: 64px 0; text-align: center; }
.stat__big { font-size: clamp(2rem, 5vw, 3rem); font-weight: 800; margin: 0; }
.stat__rest { font-size: 1.3rem; font-weight: 700; margin: 6px 0 0; }
.stat__src { color: #2f6b54; font-weight: 700; margin: 14px 0 0; font-size: .85rem; }
.stat__note { max-width: 660px; margin: 18px auto 0; font-size: 1.05rem; font-weight: 600; color: var(--ink); }

/* ---------- CTA ---------- */
.cta { background: var(--pink-bg); padding: 80px 0; }
.cta__inner { max-width: 560px; margin: 0 auto; text-align: center; }
.cta h2 { font-size: clamp(1.7rem, 3.6vw, 2.4rem); font-weight: 800; }
.cta p { color: #4a4c61; margin: 16px 0 26px; font-size: 1.1rem; }
.cta .lead { text-align: left; }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: #cfd0db; padding: 48px 0; }
.footer__inner { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 10px; }
.footer .logo { color: #fff; }
.footer__note { max-width: 480px; margin: 0; color: #aeb0c0; }
.footer__legal { margin: 0; font-size: .85rem; color: #8a8c9e; }

/* ---------- Alerts page ---------- */
.page-hero { background: var(--pink-bg); padding: 96px 0 56px; text-align: center; }
.page-hero h1 { font-size: clamp(1.9rem, 4vw, 2.8rem); font-weight: 800; }
.page-hero p { color: #4a4c61; max-width: 640px; margin: 16px auto 0; font-size: 1.1rem; }
.updated { color: var(--muted); font-size: .85rem; margin-top: 10px; }
.scam__what { font-weight: 700; color: var(--ink); line-height: 1.55; }
.scam__src { font-size: .82rem; color: var(--muted); }
.scam__src a { color: var(--pink-600); font-weight: 700; }
.rules { padding: 64px 0; }
.rules__list { max-width: 820px; margin: 32px auto 0; display: grid; gap: 14px; }
.rule { display: flex; gap: 16px; align-items: flex-start; background: var(--pink-soft); border-radius: var(--radius); padding: 18px 22px; }
.rule__n { flex: 0 0 auto; width: 32px; height: 32px; border-radius: 50%; background: var(--pink); color: #fff; display: grid; place-items: center; font-weight: 800; }
.rule p { margin: 0; }
.report { background: var(--mint-soft); padding: 64px 0; }
.report ul { max-width: 760px; margin: 20px auto 0; padding-left: 22px; }
.report li { margin: 10px 0; color: #314a40; }
.scam__tag--hot { background: #ffd7d0; }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .nav__links { gap: 14px; }
  .nav__links a:not(.btn) { display: none; }
  .trio__grid, .cards__grid, .how__steps, .scams__grid, .problem__grid { grid-template-columns: 1fr; }
  .feature, .feature:nth-child(even) { flex-direction: column; gap: 24px; }
  .feature__media { width: 100%; min-height: 220px; }
  .team__grid { grid-template-columns: 1fr; }
  .search__row, .lead__row { flex-direction: column; }
  .search__row .btn { width: 100%; }
}
