:root {
  color-scheme: dark;
  --bg: #0a0a0d;
  --bg-alt: #131118;
  --card-bg: #17151d;
  --border: rgba(255, 255, 255, 0.08);
  --text: #f5f5f7;
  --muted: #a9a5b3;

  --pink: #ff2d87;
  --pink-light: #ff7cc0;
  --pink-dark: #c2185b;
  --gradient: linear-gradient(135deg, #ff5fa8 0%, #ff2d87 45%, #c2185b 100%);

  --radius: 16px;
  --shadow-glow: 0 0 40px rgba(255, 45, 135, 0.25);
  --container: 1160px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Poppins', system-ui, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: var(--pink-light); text-decoration: none; }
a:hover { text-decoration: underline; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.container--narrow { max-width: 780px; }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.logo {
  display: inline-flex;
  align-items: center;
}
.logo-img { height: 56px; width: auto; }
.logo-img--footer { height: 64px; margin-bottom: 12px; }

.btn {
  display: inline-block;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 22px;
  border-radius: 999px;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn--primary {
  background: var(--gradient);
  color: #fff;
  box-shadow: var(--shadow-glow);
}
.btn--primary:hover { transform: translateY(-2px); text-decoration: none; }
.btn--outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn--outline:hover { border-color: var(--pink); text-decoration: none; }
.btn--ghost {
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--border);
}
.btn--small { padding: 10px 16px; font-size: 0.85rem; }
.btn--lg { padding: 16px 32px; font-size: 1.05rem; }
.btn--full { width: 100%; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(10, 10, 13, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 24px;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.only-mobile { display: none; }

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(5, 5, 7, 0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.age-gate[hidden] { display: none; }
.age-gate__box {
  max-width: 460px;
  text-align: center;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 32px;
}
.age-gate__logo { height: 76px; width: auto; margin: 0 auto 16px; }
.age-gate__box h2 { margin-top: 0; }
.age-gate__box p { color: var(--muted); }
.age-gate__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}

.hero {
  padding: 90px 0 70px;
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 45, 135, 0.18), transparent 45%),
    radial-gradient(circle at 85% 0%, rgba(255, 45, 135, 0.12), transparent 40%);
}
.hero__inner { text-align: center; max-width: 820px; }
.badge {
  display: inline-block;
  background: rgba(255, 45, 135, 0.12);
  border: 1px solid rgba(255, 45, 135, 0.35);
  color: var(--pink-light);
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 0.85rem;
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  line-height: 1.15;
  margin: 0 0 20px;
}
.grad {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__subtitle {
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 640px;
  margin: 0 auto 32px;
}
.hero__cta { margin-bottom: 36px; }
.hero__note { color: var(--muted); font-size: 0.85rem; margin-top: 12px; }

.trust-row {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 28px;
  padding: 0;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.section { padding: 90px 0; }
.section--alt { background: var(--bg-alt); }
.section__title {
  text-align: center;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin: 0 0 10px;
}
.section__subtitle {
  text-align: center;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 48px;
}

.grid { display: grid; gap: 24px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }

.card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
}
.card__icon { font-size: 1.8rem; margin-bottom: 14px; }
.card h3 { margin: 0 0 10px; font-size: 1.1rem; }
.card p { margin: 0; color: var(--muted); font-size: 0.95rem; }

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}
.step { text-align: center; }
.step__num {
  width: 48px;
  height: 48px;
  line-height: 48px;
  border-radius: 50%;
  background: var(--gradient);
  color: #fff;
  font-weight: 700;
  margin: 0 auto 16px;
}
.step h3 { margin: 0 0 8px; }
.step p { color: var(--muted); margin: 0; font-size: 0.95rem; }

.center-cta { text-align: center; }

.testimonial {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 24px;
}
.testimonial__stars { color: var(--pink-light); letter-spacing: 2px; margin-bottom: 10px; }
.testimonial p { color: var(--text); margin: 0 0 16px; }
.testimonial__author { color: var(--muted); font-size: 0.9rem; }

.faq__item {
  border-bottom: 1px solid var(--border);
}
.faq__question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  color: var(--text);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.faq__chevron { color: var(--pink); font-size: 1.2rem; transition: transform .2s ease; }
.faq__item.is-open .faq__chevron { transform: rotate(45deg); }
.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .25s ease;
}
.faq__answer p { color: var(--muted); margin: 0 0 20px; }
.faq__item.is-open .faq__answer { max-height: 220px; }

.final-cta {
  padding: 80px 0;
  text-align: center;
  background: radial-gradient(circle at 50% 0%, rgba(255,45,135,0.18), transparent 60%);
}
.final-cta h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin: 0 0 12px; }
.final-cta p { color: var(--muted); margin: 0 0 28px; }

.site-footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 48px 0 24px;
  font-size: 0.9rem;
}
.footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.footer__brand { max-width: 480px; }
.footer__brand p { color: var(--muted); margin-top: 12px; }
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__link-btn {
  background: none; border: none; padding: 0;
  font-family: inherit; font-size: inherit;
  color: var(--pink-light); cursor: pointer;
  text-align: left;
}
.footer__link-btn:hover { text-decoration: underline; }
.footer__bottom {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  color: var(--muted);
  font-size: 0.8rem;
}

.info-modal {
  position: fixed; inset: 0; z-index: 120;
  display: none; align-items: center; justify-content: center; padding: 20px;
}
.info-modal.is-open { display: flex; }
.info-modal__backdrop { position: absolute; inset: 0; background: rgba(5,5,7,0.85); }
.info-modal__box {
  position: relative;
  max-width: 420px; width: 100%;
  background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 32px 28px; text-align: center;
}
.info-modal__close {
  position: absolute; top: 14px; right: 14px;
  background: none; border: none; color: var(--muted); font-size: 1.1rem; cursor: pointer;
}
.info-modal__badge {
  display: inline-block; background: rgba(255,45,135,0.12); color: var(--pink-light);
  border: 1px solid rgba(255,45,135,0.35); padding: 4px 14px; border-radius: 999px;
  font-size: 0.8rem; font-weight: 600; margin-bottom: 14px;
}
.info-modal__box h2 { margin: 0 0 12px; font-size: 1.3rem; }
.info-modal__box p { color: var(--muted); font-size: 0.92rem; margin: 0 0 20px; }
.info-modal__contacts { display: flex; flex-direction: column; gap: 12px; margin-bottom: 16px; }
.info-modal__note { font-size: 0.75rem; margin: 0; }

@media (max-width: 900px) {
  .grid--3 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; gap: 40px; }
  .footer__inner { flex-direction: column; }
}

@media (max-width: 600px) {
  .container { padding: 0 16px; }

  .header__inner { padding: 10px 16px; gap: 10px; }
  .logo-img { height: 42px; }
  .header__actions { gap: 8px; }
  .btn--outline { padding: 8px 14px; font-size: 0.85rem; }
  .btn--small { padding: 8px 12px; font-size: 0.8rem; }

  .hero { padding: 56px 0 40px; }
  .hero__subtitle { font-size: 1rem; }
  .trust-row { gap: 10px 16px; font-size: 0.8rem; }

  .section { padding: 56px 0; }
  .card, .testimonial { padding: 22px 18px; }

  .final-cta { padding: 56px 0; }
}

@media (max-width: 480px) {
  .only-desktop { display: none; }
  .only-mobile { display: inline; }
}
