:root {
  --pink: #e0246c;
  --pink-dark: #b91656;
  --ink: #17131a;
  --ink-soft: #4a4350;
  --bg: #ffffff;
  --bg-soft: #faf6f8;
  --line: #ece5ea;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 12px 34px rgba(23, 19, 26, 0.10);
  --shadow-sm: 0 4px 14px rgba(23, 19, 26, 0.08);
  --max: 1160px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; }

h1, h2, h3, p { margin: 0; overflow-wrap: break-word; }

ul { margin: 0; padding: 0; list-style: none; }

button { font-family: inherit; cursor: pointer; }

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 20px;
}

.accent { color: var(--pink); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 2px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  padding: 14px 26px;
  min-height: 48px;
  transition: transform .15s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px) scale(.99); }

.btn--primary {
  background: var(--pink);
  color: #fff;
  box-shadow: 0 10px 24px rgba(224, 36, 108, 0.32);
}
.btn--primary:hover { background: var(--pink-dark); }

.btn--outline {
  background: transparent;
  color: var(--pink);
  border-color: var(--pink);
}
.btn--outline:hover { background: var(--pink); color: #fff; }

.btn--lg { padding: 17px 34px; font-size: 17px; min-height: 56px; }
.btn--sm { padding: 10px 18px; font-size: 14px; min-height: 42px; }
.btn--block { width: 100%; }

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header__inner {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 66px;
}
.logo {
  font-weight: 800;
  font-size: 20px;
  letter-spacing: .5px;
}
.logo span { color: var(--pink); }
.nav {
  display: flex;
  gap: 26px;
  margin-left: auto;
}
.nav__link {
  font-weight: 600;
  color: var(--ink-soft);
  transition: color .2s ease;
}
.nav__link:hover { color: var(--pink); }
.header__actions { display: flex; align-items: center; gap: 12px; margin-left: 20px; }
.btn-login {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 16px;
  min-height: 42px;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  background: #fff;
  color: var(--ink);
  font-weight: 700;
  font-size: 14px;
  transition: border-color .2s ease, color .2s ease, box-shadow .2s ease, transform .15s ease;
}
.btn-login svg { width: 17px; height: 17px; color: var(--pink); }
.btn-login:hover {
  border-color: var(--pink);
  color: var(--pink);
  box-shadow: 0 6px 16px rgba(224, 36, 108, 0.16);
}
.btn-login:active { transform: translateY(1px); }

.hero {
  background: #ffffff;
  padding: 48px 0 56px;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
  align-items: center;
}
.hero__badge {
  display: inline-block;
  background: #fff;
  color: var(--pink-dark);
  border: 1px solid #f3c6d8;
  font-weight: 700;
  font-size: 13px;
  padding: 7px 14px;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}
.hero__title {
  font-size: clamp(30px, 7vw, 54px);
  line-height: 1.08;
  font-weight: 800;
  margin: 18px 0 16px;
  letter-spacing: -0.5px;
}
.hero__bullets {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-bottom: 16px;
}
.hero__bullets li {
  position: relative;
  padding-left: 24px;
  font-weight: 600;
  color: var(--ink-soft);
}
.hero__bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: inset 0 0 0 3px #fff;
}
.hero__text {
  color: var(--ink-soft);
  font-size: clamp(15px, 2.6vw, 18px);
  max-width: 540px;
  margin-bottom: 26px;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 20px;
  margin-bottom: 30px;
}
.hero__note { font-size: 13px; color: #9a8f96; }
.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 30px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.stat b { display: block; font-size: clamp(20px, 4.5vw, 28px); font-weight: 800; color: var(--pink); }
.stat span { font-size: 13px; color: var(--ink-soft); }

.hero__media { display: flex; justify-content: center; align-items: flex-end; }
.hero__photo-img {
  display: block;
  width: 100%;
  max-width: 460px;
  height: auto;
}

.section-head { text-align: center; max-width: 640px; margin: 0 auto 30px; }
.eyebrow {
  display: inline-block;
  color: var(--pink);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.eyebrow--light { color: #ffd0e1; }
.section-title {
  font-size: clamp(26px, 5vw, 40px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.5px;
}
.section-title--light { color: #fff; }
.section-sub { color: var(--ink-soft); margin-top: 12px; font-size: 17px; }

.programs { padding: 66px 0; }
.tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 34px;
}
.tab {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink-soft);
  font-weight: 700;
  font-size: 14px;
  padding: 10px 18px;
  min-height: 44px;
  border-radius: 999px;
  transition: all .18s ease;
}
.tab:hover { border-color: var(--pink); color: var(--pink); }
.tab.is-active {
  background: var(--pink);
  border-color: var(--pink);
  color: #fff;
  box-shadow: 0 8px 18px rgba(224, 36, 108, 0.28);
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 22px;
}
.card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.card[hidden] { display: none !important; }

.card__media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1;
  background: #f3f4f6;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.card__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  z-index: 1;
  transition: transform .45s ease;
}
.card:hover .card__photo { transform: scale(1.05); }

.card__media .card__kicker {
  position: absolute;
  left: 14px;
  bottom: 12px;
  z-index: 3;
  margin: 0;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 3;
  background: rgba(23, 19, 26, 0.72);
  color: #fff;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .6px;
  text-transform: uppercase;
  padding: 6px 11px;
  border-radius: 999px;
  backdrop-filter: blur(4px);
}
.badge--flag { background: var(--pink); }
.badge--best { background: #f0a020; color: #2a1c00; }

.card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 18px 18px 18px;
}
.card__title { font-size: 20px; font-weight: 800; margin: 0 0 12px; letter-spacing: -0.3px; }
.card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 12px;
}
.card__meta li {
  font-size: 12px;
  font-weight: 700;
  color: var(--ink-soft);
  background: var(--bg-soft);
  border: 1px solid var(--line);
  padding: 5px 11px;
  border-radius: 999px;
}
.card__text { color: var(--ink-soft); font-size: 14.5px; margin-bottom: 16px; flex: 1; }

.card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.card__stat { font-size: 12.5px; font-weight: 700; color: #8a7f86; }
.card__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  padding: 6px 4px;
  color: var(--pink);
  font-weight: 800;
  font-size: 14px;
  white-space: nowrap;
}
.card__btn span { transition: transform .2s ease; }
.card__btn:hover span { transform: translateX(4px); }

.cards__empty { text-align: center; color: var(--ink-soft); margin-top: 30px; }

.lead {
  padding: 70px 0;
  background: radial-gradient(120% 120% at 0% 0%, #33101f 0%, #1b0a12 55%, #12060b 100%);
}
.lead__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
  align-items: center;
}
.lead__desc { color: #e8d3dc; margin: 14px 0 20px; font-size: 17px; max-width: 460px; }
.lead__list { display: grid; gap: 12px; }
.lead__list li {
  position: relative;
  padding-left: 30px;
  color: #f3e5eb;
  font-weight: 600;
}
.lead__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  background: var(--pink);
  color: #fff;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 800;
}

.form {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px 24px 26px;
  box-shadow: var(--shadow);
}
.form__row { margin-bottom: 16px; }
.form__label { display: block; font-weight: 700; font-size: 14px; margin-bottom: 8px; }
.form__input {
  width: 100%;
  border: 2px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-size: 16px;
  min-height: 52px;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.form__input:focus {
  outline: none;
  border-color: var(--pink);
  box-shadow: 0 0 0 4px rgba(224, 36, 108, 0.12);
}
.form__input.is-invalid { border-color: #e23636; box-shadow: 0 0 0 4px rgba(226, 54, 54, 0.10); }
.form__error {
  display: block;
  min-height: 16px;
  color: #e23636;
  font-size: 13px;
  font-weight: 600;
  margin-top: 6px;
}
.form__policy { color: #9a8f96; font-size: 12.5px; margin-top: 14px; text-align: center; }
.form__success {
  margin-top: 16px;
  background: #eafaf0;
  border: 1px solid #b8ecc9;
  color: #1c7a45;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  font-size: 15px;
}

.guarantees {
  padding: 72px 0;
  background:
    radial-gradient(90% 60% at 50% -10%, #fde7ef 0%, transparent 60%),
    var(--bg-soft);
}
.guar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.guar {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
}
.guar::after {
  content: "";
  position: absolute;
  right: -40px;
  top: -40px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(224,36,108,.10), transparent 70%);
}
.guar:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.guar__icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  margin-bottom: 16px;
  color: #fff;
  background: linear-gradient(135deg, #ff6fa5, var(--pink));
  box-shadow: 0 10px 20px rgba(224, 36, 108, 0.28);
}
.guar__icon svg { width: 28px; height: 28px; }
.guar__title { font-size: 18px; font-weight: 800; margin-bottom: 8px; letter-spacing: -0.2px; }
.guar__text { color: var(--ink-soft); font-size: 14.5px; }

.faq { padding: 72px 0; }
.faq__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
  align-items: start;
}
.section-head--left { text-align: left; margin: 0; max-width: none; }

.accordion { display: grid; gap: 12px; }
.acc {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: border-color .2s ease, box-shadow .2s ease;
  overflow: hidden;
}
.acc[open] { border-color: #f3c6d8; box-shadow: 0 10px 26px rgba(224, 36, 108, 0.10); }
.acc__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  list-style: none;
  transition: color .2s ease;
}
.acc__q::-webkit-details-marker { display: none; }
.acc__q:hover { color: var(--pink); }
.acc__ic {
  position: relative;
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 2px solid var(--pink);
}
.acc__ic::before,
.acc__ic::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--pink);
  border-radius: 2px;
  transition: transform .25s ease, opacity .25s ease;
}
.acc__ic::before { width: 11px; height: 2px; }
.acc__ic::after { width: 2px; height: 11px; }
.acc[open] .acc__ic { background: var(--pink); }
.acc[open] .acc__ic::before,
.acc[open] .acc__ic::after { background: #fff; }
.acc[open] .acc__ic::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.acc__a {
  padding: 0 20px 18px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.6;
  animation: accFade .3s ease;
}
.acc__a p { margin: 0; }
@keyframes accFade {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (min-width: 900px) {
  .faq__inner { grid-template-columns: 0.8fr 1.2fr; gap: 48px; }
  .section-head--left { position: sticky; top: 90px; }
}

.contacts {
  padding: 72px 0;
  background:
    radial-gradient(90% 70% at 50% -10%, #fde7ef 0%, transparent 60%),
    var(--bg-soft);
}
.contacts__head { text-align: center; max-width: 640px; margin: 0 auto 34px; }
.contacts__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  max-width: 1040px;
  margin: 0 auto;
}
@media (min-width: 560px) {
  .contacts__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 920px) {
  .contacts__grid { grid-template-columns: repeat(4, 1fr); }
}
.clink {
  --brand: var(--pink);
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.clink:hover {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--brand) 45%, var(--line));
  box-shadow: 0 16px 34px color-mix(in srgb, var(--brand) 22%, transparent);
}
.clink__ic {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 13px;
  color: #fff;
  background: var(--brand);
  box-shadow: 0 8px 18px color-mix(in srgb, var(--brand) 34%, transparent);
}
.clink__ic svg { width: 26px; height: 26px; }
.clink__body { display: flex; flex-direction: column; min-width: 0; }
.clink__body b { font-size: 16px; font-weight: 800; }
.clink__body span {
  font-size: 13px;
  color: var(--ink-soft);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.clink__arrow {
  margin-left: auto;
  color: var(--brand);
  font-weight: 800;
  font-size: 18px;
  transition: transform .2s ease;
}
.clink:hover .clink__arrow { transform: translateX(4px); }

.clink--tg { --brand: #29a9eb; }
.clink--vk { --brand: #0077ff; }
.clink--mail { --brand: #e0246c; }
.clink--max { --brand: #7b4fd0; }

.auth-body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 20px;
  background:
    radial-gradient(70% 55% at 50% 0%, #fde7ef 0%, transparent 60%),
    var(--bg-soft);
}
.auth { width: 100%; max-width: 440px; }
.auth__card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 34px 30px 30px;
  box-shadow: var(--shadow);
}
.auth__back {
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 5px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--ink-soft);
  margin-bottom: 18px;
  transition: color .2s ease;
}
.auth__back:hover { color: var(--pink); }
.auth__back svg { width: 17px; height: 17px; }
.auth__logo { display: inline-block; font-size: 22px; margin-bottom: 22px; }
.auth__title { font-size: 26px; font-weight: 800; letter-spacing: -0.4px; margin-bottom: 8px; }
.auth__sub { color: var(--ink-soft); font-size: 14.5px; margin-bottom: 24px; }
.auth__form .form__row { margin-bottom: 16px; }
.auth__label-row { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.auth__link { color: var(--pink); font-weight: 700; font-size: 13px; }
.auth__link:hover { text-decoration: underline; }

.auth__password { position: relative; }
.auth__password .form__input { padding-right: 50px; }
.auth__toggle {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: none;
  background: none;
  color: #9a8f96;
  border-radius: 10px;
  transition: color .2s ease, background .2s ease;
}
.auth__toggle:hover { color: var(--pink); background: var(--bg-soft); }
.auth__toggle.is-on { color: var(--pink); }
.auth__toggle svg { width: 20px; height: 20px; }
.auth__toggle .auth__eye-off { display: none; }
.auth__toggle.is-on .auth__eye { display: none; }
.auth__toggle.is-on .auth__eye-off { display: block; }

.auth__remember {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 4px 0 20px;
  font-size: 14px;
  color: var(--ink-soft);
  cursor: pointer;
  user-select: none;
}
.auth__remember input { width: 17px; height: 17px; accent-color: var(--pink); cursor: pointer; }

.auth__foot {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  text-align: center;
  font-size: 13.5px;
  color: var(--ink-soft);
}
.auth__foot-q { display: block; margin-bottom: 5px; }
.auth__foot-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
}
.auth__dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--line);
}

.footer {
  background: #12060b;
  color: #cbb9c2;
  padding: 54px 0 26px;
}
.footer__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.logo--footer { color: #fff; font-size: 22px; }
.footer__tagline {
  margin: 14px 0 18px;
  font-size: 14px;
  color: #9a8892;
  max-width: 320px;
}
.footer__socials { display: flex; gap: 10px; }
.footer__socials a {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  transition: background .2s ease, transform .2s ease;
}
.footer__socials a:hover { background: var(--pink); transform: translateY(-3px); }
.footer__socials svg { width: 20px; height: 20px; }

.footer__col-title {
  display: block;
  color: #fff;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .8px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer__links { display: flex; flex-direction: column; gap: 11px; }
.footer__links a {
  font-size: 14px;
  color: #cbb9c2;
  transition: color .2s ease;
  width: fit-content;
}
.footer__links a:hover { color: var(--pink); }

.footer__company { color: #fff; font-weight: 700; font-size: 15px; margin-bottom: 12px; }
.footer__req { display: flex; flex-direction: column; gap: 7px; margin-bottom: 14px; }
.footer__req li { font-size: 14px; color: #cbb9c2; }
.footer__req li span {
  display: inline-block;
  min-width: 46px;
  color: #7d6d76;
  font-weight: 700;
}
.footer__addr { font-size: 13.5px; color: #9a8892; line-height: 1.5; max-width: 300px; }

.footer__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
  padding-top: 22px;
  font-size: 13px;
  color: #7d6d76;
}
.footer__disclaimer { color: #6a5a63; }

@media (min-width: 760px) {
  .footer__top { grid-template-columns: 1.4fr 1fr 1.1fr; gap: 40px; }
}

.hide-mobile { display: none; }

@media (min-width: 720px) {
  .lead__inner { grid-template-columns: 1.05fr 0.95fr; gap: 44px; }
}

@media (min-width: 900px) {
  .hero { padding: 70px 0 80px; }
  .hero__inner { grid-template-columns: 1.15fr 0.85fr; gap: 48px; }
  .hide-mobile { display: inline; }
}

@media (max-width: 640px) {
  .nav { display: none; }
  .header__cta { display: none; }
  .header__inner { justify-content: space-between; }
  .btn--lg { width: 100%; }
  .hero__actions { align-items: stretch; }
}
