:root {
  --blue-950: #0d2d7f;
  --blue-900: #12348b;
  --blue-700: #2253de;
  --blue-100: #eaf1ff;
  --yellow: #ffd800;
  --yellow-deep: #f1bd00;
  --cream: #fffbe8;
  --line: #cbd8ef;
  --ink: #05070d;
  --muted: #53627a;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(18, 52, 139, 0.16);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  background: var(--white);
}

button,
input {
  font: inherit;
}

.shell {
  width: min(1358px, calc(100% - 48px));
  margin: 0 auto;
}

.topbar {
  color: var(--white);
  background: var(--blue-950);
}

.topbar__inner {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.topbar__contacts,
.topbar__tools,
.hero__actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

.topbar__contacts span,
.lang {
  font-size: 14px;
  line-height: 1.35;
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 7px;
  font-weight: 700;
  line-height: 1;
  cursor: default;
  white-space: nowrap;
}

.btn--yellow {
  color: #111;
  background: var(--yellow);
}

.btn--blue {
  color: var(--white);
  background: var(--blue-700);
}

.btn--outline {
  color: var(--blue-700);
  background: var(--white);
  border-color: var(--blue-700);
}

.nav {
  background: var(--cream);
  border-bottom: 1px solid var(--yellow-deep);
}

.nav__inner {
  min-height: 68px;
  display: flex;
  align-items: center;
  gap: 34px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 215px;
}

.brand__seal {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--blue-700);
  background: var(--white);
  border: 2px solid var(--line);
  border-radius: 50%;
  box-shadow: inset 0 0 0 5px var(--blue-100);
}

.brand__text {
  display: grid;
  line-height: 0.95;
  letter-spacing: -0.2px;
}

.brand__text strong {
  font-size: 20px;
}

.brand__text span {
  font-size: 28px;
}

.access-note {
  max-width: 590px;
  display: grid;
  gap: 8px;
  padding: 18px 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 5px solid var(--blue-700);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(18, 52, 139, 0.08);
}

.access-note strong {
  color: var(--blue-900);
  font-size: 17px;
}

.access-note span {
  color: var(--muted);
  line-height: 1.45;
}

.hero {
  position: relative;
  overflow: hidden;
  background: var(--cream);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0 0 0 48%;
  background: linear-gradient(115deg, transparent 0 15%, rgba(255, 255, 255, 0.78) 15% 100%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  min-height: 400px;
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  align-items: center;
  gap: 46px;
}

.notice {
  display: inline-flex;
  margin: 0 0 16px;
  padding: 8px 12px;
  color: var(--blue-900);
  background: var(--blue-100);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.08;
}

.lead {
  max-width: 640px;
  margin-bottom: 36px;
  font-size: 18px;
  line-height: 1.55;
}

.hero__visual {
  position: relative;
  min-height: 330px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
}

.visual-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.visual-card--main {
  width: min(480px, 100%);
  padding: 22px;
}

.telegram-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 138px;
  align-items: center;
  gap: 22px;
}

.telegram-card__icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  color: var(--blue-700);
  background: var(--blue-100);
  border: 2px solid var(--line);
  border-radius: 50%;
}

.telegram-card__icon svg {
  width: 27px;
  height: 27px;
  fill: currentColor;
  transform: translateX(-1px);
}

.telegram-card__content {
  display: grid;
  gap: 14px;
  min-width: 0;
}

.telegram-card__eyebrow {
  margin: 4px 0 -6px;
  color: var(--blue-900);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.telegram-card h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(18px, 1.35vw, 20px);
  line-height: 1.15;
  overflow-wrap: anywhere;
}

.telegram-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.telegram-link {
  width: fit-content;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  color: var(--blue-900);
  background: var(--yellow);
  border-radius: 7px;
  font-weight: 800;
  text-decoration: none;
}

.qr-panel {
  display: grid;
  justify-items: center;
  gap: 9px;
  padding: 12px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-bottom: 4px solid var(--yellow);
  border-radius: 10px;
}

.qr-panel img {
  width: 112px;
  height: 112px;
  display: block;
}

.qr-panel span {
  color: var(--blue-900);
  font-size: 13px;
  font-weight: 800;
}

.superwoman-badge {
  position: static;
  width: 145px;
  height: 145px;
  flex: 0 0 145px;
  overflow: hidden;
  background: var(--white);
  border: 6px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 14px 36px rgba(5, 7, 13, 0.22);
}

.superwoman-badge img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 20%;
}

.superwoman-badge picture {
  display: block;
  width: 100%;
  height: 100%;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(245px, 1fr));
  gap: 48px;
  padding: 80px 0 48px;
}

.service-card {
  min-height: 124px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 28px 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-bottom: 5px solid var(--yellow);
  border-radius: 10px;
}

.icon {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--blue-700);
  border: 2px solid var(--blue-700);
  border-radius: 8px;
}

.instructions {
  padding: 54px 0 64px;
  background: #f5f8ff;
}

.instructions__inner {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 42px;
}

.section-heading p {
  margin-bottom: 10px;
  color: var(--blue-900);
  font-weight: 800;
  text-transform: uppercase;
}

.section-heading h2 {
  margin-bottom: 0;
  font-size: 36px;
  line-height: 1.1;
}

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

.step {
  min-height: 210px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
}

.step span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  color: var(--ink);
  background: var(--yellow);
  border-radius: 50%;
  font-weight: 800;
}

.step h3 {
  margin-bottom: 12px;
  font-size: 20px;
}

.step p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.5;
}

.cities {
  padding: 58px 0 74px;
}

.cities .section-heading {
  margin-bottom: 28px;
}

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

.city-cards article {
  min-height: 112px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-bottom: 5px solid var(--yellow);
  border-radius: 10px;
}

.city-cards strong {
  font-size: 22px;
}

.city-cards span {
  color: var(--muted);
}

.seo-info {
  padding: 58px 0;
  background: #f5f8ff;
}

.seo-info__inner {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 46px;
}

.seo-copy {
  display: grid;
  gap: 16px;
  color: #34415a;
  font-size: 18px;
  line-height: 1.6;
}

.seo-copy p {
  margin: 0;
}

.faq {
  padding: 58px 0 76px;
}

.faq .section-heading {
  margin-bottom: 28px;
}

.faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.faq-list article {
  min-height: 172px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-bottom: 5px solid var(--yellow);
  border-radius: 10px;
}

.faq-list h3 {
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.25;
}

.faq-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.final-cta {
  color: var(--white);
  background: var(--blue-950);
}

.final-cta__inner {
  min-height: 190px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.cta-note {
  max-width: 360px;
  padding: 16px 18px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 8px;
  font-weight: 700;
  line-height: 1.4;
}

.final-cta p {
  margin-bottom: 10px;
  color: var(--yellow);
  font-weight: 800;
}

.final-cta h2 {
  max-width: 850px;
  margin-bottom: 0;
  font-size: 34px;
  line-height: 1.16;
}

.footer {
  padding: 24px 0;
  color: var(--muted);
  background: #f8fafd;
}

.footer .shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer strong {
  color: var(--ink);
}

@media (max-width: 1100px) {
  .topbar__contacts {
    display: none;
  }

  .topbar__inner,
  .nav__inner {
    justify-content: space-between;
  }

  .hero__inner,
  .instructions__inner,
  .seo-info__inner {
    grid-template-columns: 1fr;
  }

  .hero__inner {
    padding: 42px 0 62px;
  }

  .hero__visual {
    justify-content: flex-start;
  }

  .visual-card--main {
    margin-left: 0;
  }

  .service-grid,
  .city-cards,
  .faq-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }
}

@media (max-width: 720px) {
  .shell {
    width: min(100% - 28px, 1358px);
  }

  .topbar__inner,
  .topbar__tools,
  .nav__inner,
  .hero__actions,
  .final-cta__inner,
  .footer .shell {
    align-items: stretch;
    flex-direction: column;
  }

  .topbar__inner,
  .nav__inner {
    padding: 14px 0;
  }

  .hero::after {
    display: none;
  }

  h1 {
    font-size: 38px;
  }

  .hero__actions .btn,
  .final-cta .btn {
    width: 100%;
  }

  .cta-note {
    max-width: none;
  }

  .service-grid,
  .steps,
  .city-cards,
  .faq-list {
    grid-template-columns: 1fr;
  }

  .superwoman-badge {
    position: absolute;
    right: 8px;
    bottom: -24px;
    width: 118px;
    height: 118px;
    flex-basis: 118px;
  }

  .telegram-card {
    grid-template-columns: 1fr;
  }

  .qr-panel {
    width: fit-content;
  }

  .section-heading h2,
  .final-cta h2 {
    font-size: 28px;
  }
}
