:root {
  color-scheme: light;
  --ink: #212121;
  --muted: #8c8c8c;
  --yellow: #ffc107;
  --cream: #fff5c5;
  --paper: #ffffff;
  --soft: #fafafa;
  --line: #eeeeee;
  --container: 1320px;
  --radius: 10px;
  --radius-card: 20px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Montserrat", Arial, sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  text-underline-offset: 4px;
}

a:hover {
  text-decoration: underline;
}

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

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

h1 {
  font-size: 36px;
  line-height: 1.22;
  font-weight: 500;
}

h2 {
  font-size: 32px;
  line-height: 1.22;
  font-weight: 600;
}

h3 {
  font-size: 24px;
  line-height: 1.5;
  font-weight: 500;
}

p,
li,
dt,
dd,
label,
input,
select,
button,
textarea {
  font: inherit;
  font-size: 16px;
  line-height: 1.5;
}

main {
  overflow: hidden;
  padding-top: 98px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  transition: box-shadow 160ms ease;
}

.site-header.is-scrolled {
  box-shadow: 0 4px 16px rgba(33, 33, 33, 0.08);
}

.site-header__inner {
  width: 100%;
  min-height: 98px;
  margin: 0;
  padding: 0 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
}

.brand:hover {
  text-decoration: none;
}

.brand img {
  width: 54px;
  height: 40px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 62px;
}

.site-nav a {
  font-size: 18px;
  font-weight: 500;
}

.menu-toggle,
.menu-backdrop {
  display: none;
}

.button,
button {
  min-height: 58px;
  border: 2px solid var(--yellow);
  border-radius: var(--radius);
  background: var(--yellow);
  color: var(--ink);
  padding: 17px 26px;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.button:hover,
button:hover {
  background: transparent;
  text-decoration: none;
}

.button-outline,
.secondary {
  background: transparent;
}

.button-outline:hover,
.secondary:hover {
  background: var(--yellow);
}

.disabled {
  opacity: 0.45;
  pointer-events: none;
}

.muted,
.lead {
  color: var(--muted);
}

.lead {
  font-size: 20px;
}

.eyebrow {
  color: var(--muted);
  font-size: 16px;
  margin-bottom: 12px;
}

.notice {
  border: 1px solid var(--yellow);
  border-radius: 16px;
  padding: 14px 18px;
  background: #fffaf0;
}

.p-home-hero {
  width: 100%;
  height: 660px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.p-home-hero__title {
  position: absolute;
  z-index: 1;
  left: 58px;
  top: 111px;
  width: 510px;
  min-height: 136px;
  margin: 0;
  color: var(--ink);
  font-size: 36px;
  font-weight: 500;
  line-height: 1.22;
}

.p-home-hero__figure {
  position: absolute;
  z-index: 0;
  right: 0;
  top: 169px;
  width: 749px;
  height: 341px;
  max-width: none;
}

.p-home-hero__figure img {
  width: 100%;
  height: 100%;
}

.p-home-hero__subtitle {
  position: absolute;
  z-index: 1;
  left: 58px;
  top: 281px;
  width: 477px;
  min-height: 67px;
  margin: 0;
  color: #000000;
  font-size: 28px;
  font-weight: 400;
  line-height: normal;
}

.p-home-hero__actions {
  position: absolute;
  z-index: 1;
  left: 59px;
  top: 400px;
  display: flex;
  gap: 43px;
}

.p-home-hero__button {
  width: 211px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--yellow);
  border-radius: 10px;
  background: var(--yellow);
  color: var(--ink);
  font-size: 18px;
  font-weight: 500;
  line-height: normal;
  transition: background 160ms ease;
}

.p-home-hero__button:hover {
  background: transparent;
  text-decoration: none;
}

.p-home-hero__trial {
  position: absolute;
  z-index: 1;
  left: 58px;
  top: 512px;
  width: 252px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  font-weight: 500;
  line-height: normal;
}

.p-help-screen {
  position: relative;
  width: 100%;
  height: 626px;
  overflow: hidden;
  background: var(--soft);
}

.p-help-screen__figure {
  position: absolute;
  z-index: 0;
  left: 0;
  top: 375px;
  width: 388px;
  height: 196px;
}

.p-help-screen__figure img {
  width: 100%;
  height: 100%;
}

.p-help-screen__title {
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 74px;
  width: 268px;
  margin: 0;
  transform: translateX(-50%);
  color: var(--ink);
  font-size: 32px;
  font-weight: 600;
  line-height: normal;
  text-align: left;
}

.p-help-screen__item {
  position: absolute;
  z-index: 1;
  color: var(--ink);
}

.p-help-screen__item h3 {
  margin: 0;
  color: var(--ink);
  font-size: 24px;
  font-weight: 500;
  line-height: normal;
}

.p-help-screen__item p {
  margin: 21px 0 0;
  color: var(--ink);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
}

.p-help-screen__item--anxiety {
  left: 59px;
  top: 191px;
  width: 336px;
}

.p-help-screen__item--overload {
  left: 507px;
  top: 191px;
  width: 335px;
}

.p-help-screen__item--bad-now {
  left: 953px;
  top: 191px;
  width: 315px;
}

.p-help-screen__item--bad-now p {
  width: 270px;
}

.p-help-screen__item--unclear {
  left: 507px;
  top: 401px;
  width: 315px;
}

.p-help-screen__item--relations {
  left: 953px;
  top: 401px;
  width: 315px;
}

.p-how-screen {
  position: relative;
  width: 100%;
  height: 525px;
  overflow: hidden;
  background: var(--paper);
}

.p-how-screen__image {
  position: absolute;
  left: 205px;
  top: 98px;
  width: 427px;
  height: 427px;
  object-fit: cover;
}

.p-how-screen__content {
  position: absolute;
  left: 682px;
  top: 120px;
  width: 554px;
  color: var(--ink);
}

.p-how-screen__title {
  margin: 0 0 47px;
  color: var(--ink);
  font-size: 32px;
  font-weight: 600;
  line-height: normal;
}

.p-how-screen__step {
  margin: 0;
}

.p-how-screen__step--second {
  margin-top: 33px;
}

.p-how-screen__step h3 {
  margin: 0;
  color: var(--ink);
  font-size: 24px;
  font-weight: 500;
  line-height: normal;
}

.p-how-screen__lead {
  margin: 15px 0 0;
  color: var(--ink);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
}

.p-how-screen__text {
  width: 538px;
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

.p-effective-screen {
  position: relative;
  width: 100%;
  height: 694px;
  overflow: hidden;
  background: var(--paper);
}

.p-effective-screen::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--line);
}

.p-effective-screen__title {
  position: absolute;
  left: 50%;
  top: 120px;
  width: 417px;
  margin: 0;
  transform: translateX(-50%);
  color: var(--ink);
  font-size: 32px;
  font-weight: 600;
  line-height: normal;
}

.p-effective-screen__card {
  position: absolute;
  color: var(--ink);
  text-align: center;
}

.p-effective-screen__card h3 {
  position: absolute;
  left: 0;
  top: 132px;
  width: 100%;
  margin: 0;
  color: var(--ink);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.5;
}

.p-effective-screen__card p {
  position: absolute;
  left: 50%;
  top: 202px;
  margin: 0 auto;
  transform: translateX(-50%);
  color: var(--ink);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
}

.p-effective-screen__icon {
  display: block;
  margin: 0 auto;
  object-fit: contain;
}

.p-effective-screen__card--memory {
  left: 175px;
  top: 248px;
  width: 311px;
}

.p-effective-screen__card--science {
  left: 544px;
  top: 248px;
  width: 354px;
}

.p-effective-screen__card--access {
  left: 951px;
  top: 248px;
  width: 315px;
}

.p-effective-screen__icon--memory {
  width: 210px;
  height: 105px;
  margin-bottom: 24px;
}

.p-effective-screen__icon--science {
  width: 131px;
  height: 131px;
  margin-bottom: 11px;
}

.p-effective-screen__icon--access {
  width: 241px;
  height: 112px;
  margin-bottom: 20px;
}

.p-effective-screen__card--memory p {
  width: 311px;
}

.p-effective-screen__card--science p {
  width: 354px;
}

.p-effective-screen__card--access p {
  width: 315px;
}

@media (min-width: 1101px) and (max-width: 1350px) {
  .p-effective-screen__card--memory {
    left: calc(50% - 480px);
  }

  .p-effective-screen__card--science {
    left: calc(50% - 177px);
  }

  .p-effective-screen__card--access {
    left: calc(50% + 163px);
  }
}

@media (min-width: 1200px) and (max-width: 1350px) {
  .p-effective-screen__card--memory {
    left: calc(50% - 580px);
  }

  .p-effective-screen__card--access {
    left: calc(50% + 260px);
  }
}

@media (min-width: 1101px) and (max-width: 1350px) {
  .p-benefits-screen__picture {
    left: auto;
    right: 105px;
    width: 460px;
    height: 484px;
  }

  .p-benefits-screen__voice-title {
    left: auto;
    right: 105px;
    width: 460px;
    text-align: center;
  }
}

@media (min-width: 1351px) {
  .p-effective-screen__card--memory {
    left: calc(50% - 545px);
  }

  .p-effective-screen__card--science {
    left: calc(50% - 176px);
  }

  .p-effective-screen__card--access {
    left: calc(50% + 231px);
  }
}

.p-benefits-screen {
  position: relative;
  width: 100%;
  height: 758px;
  overflow: hidden;
  background: var(--paper);
}

.p-benefits-screen__title {
  position: absolute;
  left: 59px;
  top: 86px;
  width: 720px;
  margin: 0;
  color: var(--ink);
  font-size: 32px;
  font-weight: 600;
  line-height: 1.22;
  white-space: nowrap;
}

.p-benefits-screen__voice-title {
  position: absolute;
  left: 796px;
  top: 171px;
  width: 485px;
  margin: 0;
  color: var(--ink);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.5;
}

.p-benefits-screen__picture {
  position: absolute;
  left: 779px;
  top: 212px;
  width: 519px;
  height: 546px;
}

.p-benefits-screen__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-benefits-screen__content {
  position: absolute;
  left: 59px;
  top: 171px;
  width: 605px;
}

.p-benefits-screen__modes-title {
  margin: 0 0 24px;
  color: var(--ink);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.5;
}

.p-benefits-screen__item {
  position: relative;
  padding-left: 23px;
  color: var(--ink);
}

.p-benefits-screen__item::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 13px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--ink);
}

.p-benefits-screen__item h4 {
  margin: 0;
  color: var(--ink);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}

.p-benefits-screen__item p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

.p-benefits-screen__item--dialog {
  width: 532px;
}

.p-benefits-screen__item--session {
  width: 589px;
  margin-top: 16px;
}

.p-benefits-screen__item--day {
  width: 605px;
  margin-top: 16px;
}

.p-benefits-screen__item--bad {
  width: 571px;
  margin-top: 16px;
}

.p-benefits-screen__item--panic {
  width: 594px;
  margin-top: 16px;
}

.p-safety-screen {
  position: relative;
  width: 100%;
  height: 383px;
  margin-top: 80px;
  overflow: hidden;
  background: var(--soft);
}

.p-safety-screen__intro {
  position: absolute;
  left: 59px;
  top: 83px;
  width: 438px;
  color: var(--ink);
}

.p-safety-screen__title {
  width: 239px;
  margin: 0;
  color: var(--ink);
  font-size: 32px;
  font-weight: 600;
  line-height: normal;
}

.p-safety-screen__lead {
  width: 438px;
  margin: 18px 0 0;
  color: var(--ink);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

.p-safety-screen__details {
  position: absolute;
  left: 620px;
  top: 59px;
  width: 691px;
}

.p-safety-screen__item {
  color: var(--ink);
}

.p-safety-screen__item h3 {
  margin: 0;
  color: var(--ink);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.5;
}

.p-safety-screen__item p {
  margin: 17px 0 0;
  color: var(--ink);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
}

.p-safety-screen__item--privacy p {
  width: 691px;
}

.p-safety-screen__item--boundaries {
  margin-top: 32px;
}

.p-safety-screen__item--boundaries p {
  width: 642px;
}

.p-safety-screen__picture {
  position: absolute;
  left: 0;
  top: 205px;
  width: 482px;
  height: 102px;
}

.p-safety-screen__image {
  display: block;
  width: 100%;
  height: 100%;
}

.p-tariffs-screen {
  position: relative;
  width: calc(100% - 116px);
  height: 703px;
  margin: 83px auto 0;
  color: var(--ink);
  background: #fff;
}

.p-tariffs-screen__title {
  position: absolute;
  left: 50%;
  top: 0;
  width: 136px;
  margin: 0;
  color: #000;
  font-size: 32px;
  font-weight: 600;
  line-height: normal;
  text-align: center;
  transform: translateX(-50%);
}

.p-tariffs-screen__subtitle {
  position: absolute;
  left: 50%;
  top: 56px;
  width: 447px;
  margin: 0;
  color: #000;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
  transform: translateX(-50%);
}

.p-tariffs-screen__grid {
  position: absolute;
  left: 0;
  top: 140px;
  display: grid;
  grid-template-columns: repeat(3, 396px);
  width: 100%;
  justify-content: space-between;
  gap: 0;
}

.p-tariffs-screen__card {
  position: relative;
  width: 396px;
  height: 563px;
  border: 1px solid #9e9e9e;
  border-radius: 20px;
  background: #fff;
  color: var(--ink);
  text-align: center;
}

.p-tariffs-screen__card h3 {
  position: absolute;
  left: 50%;
  top: 24px;
  margin: 0;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.5;
  white-space: nowrap;
  transform: translateX(-50%);
}

.p-tariffs-screen__line {
  position: absolute;
  left: 50%;
  top: 82px;
  width: 88px;
  height: 1px;
  background: #9e9e9e;
  transform: translateX(-50%);
}

.p-tariffs-screen__features {
  position: absolute;
  left: 50%;
  top: 105px;
  width: max-content;
  margin: 0;
  padding: 0 0 0 20px;
  list-style: disc;
  transform: translateX(-50%);
}

.p-tariffs-screen__features li {
  height: 30px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
}

.p-tariffs-screen__line--price {
  top: 282px;
}

.p-tariffs-screen__price {
  position: absolute;
  left: 0;
  top: 302px;
  display: flex;
  width: 100%;
  height: 54px;
  align-items: flex-start;
  justify-content: center;
  color: var(--ink);
}

.p-tariffs-screen__price strong {
  font-size: 36px;
  font-weight: 500;
  line-height: 1.5;
}

.p-tariffs-screen__price span {
  margin: 22px 0 0 4px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

.p-tariffs-screen__actions {
  position: absolute;
  left: 51px;
  top: 385px;
  display: flex;
  width: 293px;
  flex-direction: column;
  gap: 29px;
}

.p-tariffs-screen__button {
  display: flex;
  width: 293px;
  height: 58px;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--yellow);
  border-radius: 10px;
  background: transparent;
  color: var(--ink);
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
  text-decoration: none;
}

.p-tariffs-screen__button:hover {
  background: var(--yellow);
  text-decoration: none;
}

.p-reviews-screen {
  position: relative;
  width: 1093px;
  height: 527px;
  margin: 105px auto 0;
  color: var(--ink);
  background: #fff;
}

.p-reviews-screen__title {
  position: absolute;
  left: 50%;
  top: 0;
  width: 134px;
  margin: 0;
  color: var(--ink);
  font-size: 32px;
  font-weight: 600;
  line-height: normal;
  text-align: center;
  transform: translateX(-50%);
}

.p-reviews-screen__slider {
  position: absolute;
  left: 0;
  top: 95px;
  width: 100%;
  height: 432px;
}

.p-reviews-screen__radio {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.p-reviews-screen__slide {
  display: none;
  margin: 0;
}

.p-reviews-screen__radio:checked + .p-reviews-screen__slide {
  display: block;
}

.p-reviews-screen__slider.is-next .p-reviews-screen__radio:checked + .p-reviews-screen__slide {
  animation: p-review-in-next 180ms ease-out;
}

.p-reviews-screen__slider.is-prev .p-reviews-screen__radio:checked + .p-reviews-screen__slide {
  animation: p-review-in-prev 180ms ease-out;
}

.p-reviews-screen__image {
  display: block;
  width: 764px;
  height: 355px;
  margin: 0 auto;
  object-fit: cover;
}

.p-reviews-screen__source {
  position: absolute;
  left: 50%;
  top: 402px;
  margin: 0;
  color: var(--ink);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
  transform: translateX(-50%);
}

.p-reviews-screen__source a {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.p-reviews-screen__arrows {
  position: absolute;
  left: 0;
  top: 174px;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
}

.p-reviews-screen__arrow {
  position: relative;
  width: 52px;
  height: 60px;
  min-height: 60px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  pointer-events: auto;
}

.p-reviews-screen__arrow:hover {
  border: 0;
  background: transparent;
}

.p-reviews-screen__arrow span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 42px;
  height: 42px;
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
}

.p-reviews-screen__arrow--prev span {
  transform: translate(-35%, -50%) rotate(-45deg);
}

.p-reviews-screen__arrow--next span {
  transform: translate(-65%, -50%) rotate(135deg);
}

@keyframes p-review-in-next {
  from {
    opacity: 0;
    transform: translateX(34px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes p-review-in-prev {
  from {
    opacity: 0;
    transform: translateX(-34px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.p-faq-screen {
  width: 100%;
  min-height: 576px;
  margin-top: 72px;
  padding-top: 36px;
  background: var(--soft);
  color: var(--ink);
}

.p-faq-screen__title {
  width: 70px;
  margin: 0 auto;
  color: #000;
  font-size: 32px;
  font-weight: 600;
  line-height: normal;
  text-align: center;
}

.p-faq-screen__list {
  width: 874px;
  margin: 37px auto 0;
}

.p-faq-screen__item {
  border-bottom: 1px solid var(--muted);
}

.p-faq-screen__question {
  display: grid;
  min-height: 66px;
  grid-template-columns: minmax(0, 1fr) 29px;
  gap: 32px;
  align-items: center;
  padding: 0;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
}

.p-faq-screen__question::-webkit-details-marker {
  display: none;
}

.p-faq-screen .p-faq-screen__question::before,
.p-faq-screen .p-faq-screen__question::after {
  display: none !important;
  content: none !important;
}

.p-faq-screen__icon {
  position: relative;
  width: 29px;
  height: 29px;
}

.p-faq-screen__icon::before,
.p-faq-screen__icon::after {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 29px;
  height: 0;
  border-top: 1px solid var(--muted);
  background: transparent;
  transition: transform 140ms ease, opacity 140ms ease;
}

.p-faq-screen__icon::after {
  transform: rotate(90deg);
}

.p-faq-screen__item[open] .p-faq-screen__icon::after {
  transform: rotate(0deg);
}

.p-faq-screen__answer {
  height: 0;
  overflow: hidden;
  opacity: 0;
  transition: height 260ms ease, opacity 220ms ease;
  will-change: height, opacity;
}

.p-faq-screen__item[open] .p-faq-screen__answer {
  opacity: 1;
}

.p-faq-screen__item.is-closing .p-faq-screen__answer {
  opacity: 0;
}

.p-faq-screen__answer p {
  width: 782px;
  min-height: 0;
  overflow: hidden;
  margin: -3px 0 20px;
  color: #9e9e9e;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

.p-footer-screen {
  position: relative;
  min-height: 724px;
  overflow: hidden;
  padding-top: 51px;
  padding-bottom: 38px;
  background: var(--paper);
  color: var(--ink);
}

.p-footer-screen__figure {
  position: absolute;
  z-index: 0;
  pointer-events: none;
}

.p-footer-screen__figure--desktop {
  top: 72px;
  right: 0;
  width: 601px;
  height: 172px;
}

.p-footer-screen__figure--mobile {
  display: none;
}

.p-footer-screen__inner {
  position: relative;
  z-index: 1;
  width: min(1094px, calc(100% - 346px));
  height: 524px;
  margin: 0 auto;
}

.p-footer-screen__contacts {
  position: absolute;
  left: 0;
  top: 0;
  width: 430px;
}

.p-footer-screen__contacts h2 {
  margin: 0 0 18px;
  font-size: 36px;
  font-weight: 500;
  line-height: normal;
}

.p-footer-screen__line {
  display: flex;
  flex-wrap: wrap;
  gap: 0 8px;
  width: auto;
  margin: 0 0 16px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

.p-footer-screen__line--support {
  flex-wrap: nowrap;
}

.p-footer-screen__line a {
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.p-footer-screen__line--social a + a {
  margin-left: 23px;
}

.p-footer-screen__nav,
.p-footer-screen__docs {
  position: absolute;
  top: 234px;
  display: grid;
  align-content: start;
  gap: 22px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

.p-footer-screen__nav {
  left: 334px;
  width: 150px;
}

.p-footer-screen__docs {
  left: 557px;
  width: 386px;
}

.p-footer-screen__nav strong,
.p-footer-screen__docs strong {
  font-size: 16px;
  font-weight: 500;
}

.p-footer-screen__actions {
  position: absolute;
  left: 0;
  top: 234px;
  display: grid;
  width: 211px;
  gap: 35px;
}

.p-footer-screen__button {
  display: inline-flex;
  width: 211px;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--yellow);
  border-radius: 10px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 500;
  line-height: normal;
  text-align: center;
  transition: background 160ms ease, text-decoration-color 160ms ease;
}

.p-footer-screen__button:hover {
  background: var(--yellow);
  text-decoration: none;
}

.p-footer-screen__bottom {
  position: relative;
  z-index: 1;
  width: min(1045px, calc(100% - 346px));
  margin: 0 auto;
  padding-top: 35px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.p-footer-screen__bottom p {
  width: auto;
  max-width: 1045px;
  margin: 0 0 17px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
}

@media (min-width: 901px) and (max-width: 1350px) {
  .p-tariffs-screen {
    width: calc(100% - 116px);
  }

  .p-tariffs-screen__grid {
    width: 100%;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    justify-content: stretch;
    gap: 48px;
  }

  .p-tariffs-screen__card {
    width: 100%;
  }

  .p-tariffs-screen__actions {
    left: 50%;
    width: min(293px, calc(100% - 48px));
    transform: translateX(-50%);
  }

  .p-tariffs-screen__button {
    width: 100%;
  }

  .p-reviews-screen {
    width: min(calc(100% - 120px), 1093px);
  }

  .p-reviews-screen__image {
    width: min(764px, calc(100% - 180px));
  }

  .p-faq-screen__list {
    width: min(calc(100% - 240px), 874px);
  }

  .p-faq-screen__answer p {
    width: min(100%, 782px);
  }

  .p-footer-screen__figure--desktop {
    width: min(601px, 47vw);
    height: auto;
  }

  .p-footer-screen__inner {
    width: min(1094px, calc(100% - 120px));
  }

  .p-footer-screen__bottom {
    width: min(1045px, calc(100% - 120px));
  }
}

@media (min-width: 901px) and (max-width: 1100px) {
  .p-home-hero__figure {
    right: -120px;
    top: 210px;
    width: 600px;
    height: 272px;
  }

  .p-help-screen__figure {
    width: 320px;
    height: 162px;
  }

  .p-help-screen__item--anxiety {
    left: 60px;
    width: 300px;
  }

  .p-help-screen__item--overload,
  .p-help-screen__item--unclear {
    left: 50%;
    width: 300px;
    transform: translateX(-50%);
  }

  .p-help-screen__item--bad-now,
  .p-help-screen__item--relations {
    left: auto;
    right: 60px;
    width: 300px;
  }

  .p-help-screen__item--bad-now p {
    width: 100%;
  }

  .p-how-screen__image {
    left: 60px;
    top: 100px;
    width: 360px;
    height: 360px;
  }

  .p-how-screen__content {
    left: 480px;
    top: 118px;
    width: calc(100% - 540px);
  }

  .p-how-screen__text {
    width: 100%;
  }

  .p-effective-screen__card--memory {
    left: 5.5%;
    width: 28%;
  }

  .p-effective-screen__card--science {
    left: 36%;
    width: 28%;
  }

  .p-effective-screen__card--access {
    left: 66.5%;
    width: 28%;
  }

  .p-effective-screen__card p,
  .p-effective-screen__card--memory p,
  .p-effective-screen__card--science p,
  .p-effective-screen__card--access p {
    width: 100%;
  }

  .p-benefits-screen {
    height: 640px;
  }

  .p-benefits-screen__title {
    left: 60px;
  }

  .p-benefits-screen__content {
    left: 60px;
    width: 470px;
  }

  .p-benefits-screen__item,
  .p-benefits-screen__item--dialog,
  .p-benefits-screen__item--session,
  .p-benefits-screen__item--day,
  .p-benefits-screen__item--bad,
  .p-benefits-screen__item--panic {
    width: 100%;
  }

  .p-benefits-screen__picture {
    left: auto;
    right: 40px;
    width: 400px;
    height: 421px;
  }

  .p-benefits-screen__voice-title {
    left: auto;
    right: 40px;
    width: 400px;
    text-align: center;
  }

  .p-safety-screen__intro {
    left: 60px;
    width: 360px;
  }

  .p-safety-screen__lead {
    width: 360px;
  }

  .p-safety-screen__details {
    left: 500px;
    width: calc(100% - 560px);
  }

  .p-safety-screen__item--privacy p,
  .p-safety-screen__item--boundaries p {
    width: 100%;
  }

  .p-safety-screen__picture {
    width: 360px;
    height: 76px;
  }
}

.help-section {
  position: relative;
  height: 626px;
  min-height: 626px;
  margin-bottom: 98px;
  padding: 92px 60px 78px;
  background: var(--soft);
}

.help-inner {
  width: min(1320px, calc(100% - 120px));
  margin: 0 auto;
}

.help-section h2 {
  text-align: center;
  margin-bottom: 82px;
}

.help-figure {
  position: absolute;
  left: 0;
  bottom: 0;
  width: min(31vw, 438px);
}

.help-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 58px 42px;
}

.help-grid article {
  min-height: 150px;
}

.help-grid h3 {
  margin-bottom: 16px;
}

.help-grid p {
  color: var(--muted);
  margin-bottom: 0;
}

.work-section {
  width: min(1031px, calc(100% - 120px));
  height: 427px;
  margin: 0 auto;
  padding: 0;
  margin-bottom: 120px;
  display: grid;
  grid-template-columns: 427px minmax(0, 1fr);
  align-items: center;
  gap: 110px;
}

.work-photo {
  width: 427px;
  border-radius: 0;
}

.work-copy h2 {
  margin-bottom: 54px;
}

.work-step + .work-step {
  margin-top: 42px;
}

.work-step h3 {
  margin-bottom: 10px;
}

.work-lead {
  color: var(--ink);
  font-weight: 500;
  margin-bottom: 10px;
}

.work-step p:last-child {
  color: var(--muted);
}

.effective-section {
  width: min(1100px, calc(100% - 120px));
  margin: 0 auto;
  height: 574px;
  padding: 64px 0 0;
  margin-bottom: 86px;
  text-align: center;
}

.effective-section h2 {
  margin-bottom: 82px;
}

.effective-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 70px;
}

.effective-grid article {
  display: grid;
  grid-template-rows: 132px 74px auto;
  justify-items: center;
  align-items: start;
}

.effective-grid img {
  max-height: 131px;
  width: auto;
  object-fit: contain;
}

.effective-grid h3 {
  margin: 34px 0 0;
}

.effective-grid p {
  margin: 0;
  font-size: 20px;
  color: var(--ink);
  text-align: center;
}

.advantages-section {
  border-top: 1px solid var(--line);
  width: min(1239px, calc(100% - 120px));
  margin: 0 auto;
  height: 672px;
  margin-bottom: 42px;
  padding: 86px 0 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 519px;
  gap: 92px;
}

.advantages-copy h2 {
  margin-bottom: 70px;
}

.advantages-copy h3 {
  margin-bottom: 18px;
}

.mode-list {
  margin: 0;
}

.mode-list dt {
  position: relative;
  margin: 24px 0 6px;
  padding-left: 22px;
  font-weight: 500;
}

.mode-list dt::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--ink);
}

.mode-list dd {
  margin: 0 0 0 22px;
  color: var(--muted);
}

.voice-card {
  text-align: center;
  align-self: start;
}

.voice-card h3 {
  margin: 85px 0 0;
  text-align: center;
}

.voice-card img {
  width: 519px;
  margin-top: 0;
}

.safety-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(240px, 360px) minmax(0, 560px);
  gap: 120px;
  height: 383px;
  min-height: 383px;
  margin-bottom: 83px;
  padding: 64px 60px 40px 360px;
}

.safety-figure {
  position: absolute;
  left: 0;
  bottom: 0;
  width: min(34vw, 486px);
}

.safety-copy {
  margin-left: 0;
  position: relative;
  z-index: 1;
}

.safety-copy h2,
.safety-details h3 {
  margin-bottom: 28px;
}

.safety-copy p,
.safety-details p {
  color: var(--muted);
}

.safety-details {
  position: relative;
  z-index: 1;
}

.safety-details h3:not(:first-child) {
  margin-top: 58px;
}

.tariffs-section {
  border-top: 1px solid var(--line);
  width: min(1320px, calc(100% - 120px));
  margin: 0 auto;
  height: 703px;
  padding: 0;
  margin-bottom: 105px;
}

.tariffs-head {
  text-align: center;
  margin-bottom: 52px;
}

.tariffs-head p {
  color: var(--muted);
}

.tariff-grid {
  display: grid;
  grid-template-columns: repeat(3, 396px);
  justify-content: space-between;
  gap: 66px;
}

.tariff-card {
  width: 396px;
  min-height: 563px;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 34px 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.tariff-card h3 {
  width: 100%;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.tariff-card ul {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: grid;
  gap: 10px;
  color: var(--muted);
}

.tariff-card .price {
  width: 100%;
  margin-top: auto;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 8px;
}

.tariff-card .price strong {
  font-size: 40px;
  line-height: 1;
}

.tariff-card .button {
  width: 100%;
  margin-top: 18px;
}

.reviews-section {
  height: 527px;
  margin-bottom: 72px;
  padding: 0;
  text-align: center;
}

.reviews-section h2 {
  margin-bottom: 58px;
}

.reviews-slider {
  position: relative;
  width: min(1093px, calc(100% - 100px));
  margin: 0 auto;
}

.review-radio {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.review-slide {
  display: none;
  margin: 0;
}

.review-radio:checked + .review-slide {
  display: block;
}

.review-slide img {
  width: min(764px, 100%);
  height: 355px;
  object-fit: contain;
  margin: 0 auto;
}

.review-slide figcaption {
  margin-top: 22px;
  color: var(--muted);
}

.review-arrows {
  position: absolute;
  top: 172px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.review-arrow {
  width: 51px;
  height: 59px;
  min-height: 59px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  pointer-events: auto;
  font-size: 56px;
  font-weight: 200;
  line-height: 1;
}

.review-arrow:hover {
  background: transparent;
  border: 0;
  color: var(--ink);
}

.faq-section {
  background: var(--soft);
  height: 576px;
  margin-bottom: 65px;
  padding: 36px 60px 74px;
}

.faq-section h2 {
  text-align: center;
  margin-bottom: 29px;
}

.faq-grid {
  width: min(874px, 100%);
  margin: 0 auto;
  display: block;
}

details {
  border-bottom: 1px solid #8c8c8c;
}

summary {
  list-style: none;
  cursor: pointer;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 30px;
  gap: 24px;
  align-items: center;
  min-height: 66px;
  padding: 17px 0 18px;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
}

summary::-webkit-details-marker {
  display: none;
}

summary::before {
  content: none;
}

summary::after {
  content: "";
  justify-self: end;
  width: 29px;
  height: 29px;
  background:
    linear-gradient(#8c8c8c, #8c8c8c) center / 29px 1px no-repeat,
    linear-gradient(#8c8c8c, #8c8c8c) center / 1px 29px no-repeat;
}

details[open] summary::after {
  height: 1px;
  background: #8c8c8c;
}

details p {
  width: min(782px, calc(100% - 92px));
  margin: -3px 0 18px;
  color: #9e9e9e;
  font-size: 16px;
  line-height: 1.5;
}

.site-footer {
  position: relative;
  overflow: hidden;
  min-height: 662px;
  padding: 0;
}

.footer-figure {
  position: absolute;
  right: 0;
  top: 21px;
  bottom: auto;
  width: 601px;
  pointer-events: none;
}

.footer-top {
  width: min(1094px, calc(100% - 346px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 321px 143px 386px;
  column-gap: 63px;
  position: relative;
  z-index: 1;
}

.footer-contacts h2 {
  margin: 0 0 18px;
  font-size: 36px;
  font-weight: 500;
  line-height: normal;
}

.footer-contacts p {
  margin: 0 0 16px;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.5;
}

.footer-contacts a {
  color: var(--muted);
  text-decoration: underline;
}

.footer-contacts p:first-of-type {
  white-space: nowrap;
}

.footer-contacts {
  padding-top: 0;
}

.footer-actions {
  width: 211px;
  display: grid;
  gap: 18px;
  margin-top: 46px;
}

.footer-menu,
.footer-legal {
  display: grid;
  align-content: start;
  gap: 20px;
  padding-top: 219px;
  font-size: 16px;
  line-height: 1.5;
}

.footer-legal strong {
  font-size: 16px;
  font-weight: 500;
}

.footer-bottom {
  width: min(1045px, calc(100% - 346px));
  margin: 68px auto 0;
  padding-top: 46px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  position: relative;
  z-index: 1;
}

.footer-bottom p {
  max-width: 1045px;
  margin-bottom: 12px;
  font-size: 14px;
  line-height: 1.5;
}

.auth-page,
.system-page,
.error-page,
.legal-hero,
.account-hero,
.blog-hero {
  width: min(900px, calc(100% - 120px));
  margin: 0 auto;
  padding: 96px 0 54px;
}

.auth-page {
  display: grid;
  grid-template-columns: minmax(0, 420px) minmax(0, 1fr);
  gap: 72px;
  align-items: start;
}

.auth-page h1,
.auth-page .auth-form {
  grid-column: 1;
}

.auth-copy {
  grid-column: 2;
  grid-row: 1 / span 2;
  color: var(--muted);
}

.auth-form,
.auth-page form,
.panel form,
.payment-panel form {
  display: grid;
  gap: 16px;
}

.p-auth-page {
  display: block;
  width: min(1094px, calc(100% - 346px));
  min-height: 535px;
  margin: 0 auto;
  padding: 73px 0 0;
}

.p-auth-page h1 {
  width: max-content;
  max-width: 100%;
  margin: 0;
  color: var(--ink);
  font-size: 36px;
  font-weight: 500;
  line-height: 1.22;
}

.p-auth-page__form,
.p-auth-page.auth-page .p-auth-page__form {
  display: flex;
  align-items: center;
  gap: 25px;
  width: 500px;
  max-width: 100%;
  margin-top: 45px;
}

.p-auth-page__input {
  width: 264px;
  min-height: 58px;
  border: 1px solid var(--muted);
  border-radius: 10px;
  padding: 0 22px;
  background: transparent;
  color: var(--ink);
  font-family: inherit;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.2;
}

.p-auth-page__input::placeholder {
  color: var(--ink);
  opacity: 1;
}

.p-auth-page__button {
  width: 211px;
  min-height: 58px;
  border: 1px solid var(--yellow);
  border-radius: 10px;
  background: var(--yellow);
  color: #000;
  padding: 0;
  font-family: inherit;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
  cursor: pointer;
  transition: background-color 0.18s ease, border-color 0.18s ease;
}

.p-auth-page__button:hover,
.p-auth-page__button:focus-visible {
  background: transparent;
}

.p-auth-page__note {
  width: 523px;
  max-width: 100%;
  margin: 34px 0 0;
  color: var(--muted);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  white-space: nowrap;
}

.p-auth-page__details {
  width: 638px;
  max-width: 100%;
  margin: 23px 0 0;
  color: var(--muted);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

.p-auth-page__details p {
  margin: 0;
}

.p-auth-page__details p + p {
  margin-top: 24px;
}

.p-dashboard {
  position: relative;
  width: calc(100% - 116px);
  min-height: 878px;
  margin: 0 auto;
  padding-top: 19px;
}

.p-dashboard__eyebrow {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

.p-dashboard__admin-tabs {
  display: flex;
  width: max-content;
  max-width: 100%;
  gap: 59px;
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

.p-dashboard__admin-tabs a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.p-dashboard h1 {
  margin: 0;
  color: var(--ink);
  font-size: 36px;
  font-weight: 500;
  line-height: 1.22;
}

.p-dashboard__meta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

.p-dashboard__status {
  width: max-content;
  max-width: 100%;
  margin: 18px 0 0;
  color: var(--ink);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
  white-space: nowrap;
}

.p-dashboard .notice {
  width: max-content;
  max-width: 100%;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
}

.p-dashboard__logout {
  position: absolute;
  top: 11px;
  right: 0;
  margin: 0;
}

.p-dashboard__logout button {
  min-height: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
  color: var(--ink);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.p-dashboard__logout button:hover {
  background: transparent;
}

.p-dashboard__columns {
  display: grid;
  grid-template-columns: 363px 346px;
  column-gap: 195px;
  align-items: start;
  margin-top: 60px;
}

.p-dashboard__profile,
.p-dashboard__stats {
  min-width: 0;
}

.p-dashboard__profile h2,
.p-dashboard__stats h2 {
  margin: 0;
  color: #000;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.22;
}

.p-dashboard__phone {
  margin: 22px 0 0;
  color: var(--ink);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
}

.p-dashboard__phone-note {
  width: 361px;
  max-width: 100%;
  margin: 11px 0 0;
  color: var(--muted);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

.p-dashboard__form {
  display: grid;
  gap: 20px;
  width: 361px;
  max-width: 100%;
  margin-top: 20px;
}

.p-dashboard__form label {
  display: grid;
  gap: 10px;
  color: #000;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.2;
}

.p-dashboard__form input,
.p-dashboard__form select {
  width: 100%;
  min-height: 58px;
  border: 1px solid var(--muted);
  border-radius: 10px;
  background-color: transparent;
  padding: 0 22px;
  color: #000;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.2;
}

.p-dashboard__form select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14'%3E%3Cpath d='M7 10.5 1.5 3.5h11L7 10.5Z' fill='%23212121'/%3E%3C/svg%3E");
  background-position: right 22px center;
  background-repeat: no-repeat;
  background-size: 14px 14px;
  padding-right: 52px;
}

.p-dashboard__form button {
  width: 100%;
  min-height: 58px;
  margin-top: 8px;
  border: 1px solid var(--yellow);
  border-radius: 10px;
  background: var(--yellow);
  padding: 0;
  color: #000;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
}

.p-dashboard__form button:hover {
  background: transparent;
}

.p-dashboard__stats ul {
  display: grid;
  gap: 0;
  margin: 17px 0 0;
  padding: 0;
  color: var(--ink);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
  list-style: none;
}

.p-dashboard__payment-note {
  margin: -30px auto 36px;
  color: var(--muted);
  text-align: center;
  font-size: 16px;
  line-height: 1.5;
}

.p-dashboard-tariffs {
  margin-top: 0;
  margin-bottom: 120px;
}

.p-dashboard-tariffs .p-tariffs-screen__actions form {
  width: 100%;
}

.p-tariffs-screen__button--disabled {
  background: transparent;
  cursor: default;
}

input,
select,
textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--paper);
  color: var(--ink);
  padding: 12px 16px;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(255, 193, 7, 0.35);
  border-color: var(--yellow);
}

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

.dashboard-grid,
.content-section,
.blog-grid,
.legal-text {
  width: min(var(--container), calc(100% - 120px));
  margin: 0 auto;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
  padding-bottom: 88px;
}

.panel,
.blog-card,
.metric-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.panel {
  padding: 30px;
}

.logout-inline {
  margin-top: 24px;
}

.stats-list,
.tariff-list,
.plain-list {
  margin: 0;
  padding-left: 20px;
}

.stats-list li,
.tariff-list li,
.plain-list li {
  margin-bottom: 10px;
}

.p-admin {
  width: calc(100% - 116px);
  margin: 0 auto;
  padding-top: 19px;
  padding-bottom: 76px;
}

.p-admin__tabs {
  display: flex;
  gap: 59px;
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

.p-admin__tabs a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.p-admin h1 {
  margin: 0;
  color: var(--ink);
  font-size: 36px;
  font-weight: 500;
  line-height: 1.22;
}

.p-admin__stats {
  margin-top: 40px;
}

.p-admin__stats h2,
.p-admin__payment h2 {
  margin: 0;
  color: #000;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.22;
}

.p-admin__stats-grid {
  display: grid;
  grid-template-columns: 280px 248px 280px;
  column-gap: 55px;
  margin-top: 10px;
}

.p-admin__stats-grid ul {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 0;
  color: var(--ink);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  list-style: none;
}

.p-admin__users {
  width: 782px;
  max-width: 100%;
  margin-top: 26px;
}

.p-admin__table-wrap {
  width: 782px;
  max-width: 100%;
  overflow-x: visible;
  border: 0;
  border-radius: 0;
}

.p-admin__table-wrap table {
  width: 782px;
  table-layout: fixed;
  border-collapse: collapse;
}

.p-admin__table-wrap th,
.p-admin__table-wrap td {
  height: 36px;
  border: 0;
  padding: 5px 12px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  white-space: nowrap;
}

.p-admin__table-wrap th {
  background: #fafafa;
  font-weight: 700;
}

.p-admin__table-wrap th a {
  color: inherit;
  text-decoration: none;
}

.p-admin__table-wrap tbody tr:nth-child(even) td {
  background: #fafafa;
}

.p-admin__table-wrap th:nth-child(1),
.p-admin__table-wrap td:nth-child(1) {
  width: 95px;
}

.p-admin__table-wrap th:nth-child(2),
.p-admin__table-wrap td:nth-child(2) {
  width: 115px;
}

.p-admin__table-wrap th:nth-child(n + 3),
.p-admin__table-wrap td:nth-child(n + 3) {
  width: 81px;
}

.p-admin__pagination {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
  margin-top: 26px;
}

.p-admin__pager-button {
  display: inline-flex;
  width: 112px;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--yellow);
  border-radius: 10px;
  background: transparent;
  padding: 0;
  color: var(--ink);
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
}

.p-admin__pager-button:not(.p-admin__pager-button--disabled):hover {
  background: var(--yellow);
  text-decoration: none;
}

.p-admin__pager-button--disabled {
  opacity: 0.45;
}

.p-admin__pagination span:not(.p-admin__pager-button) {
  margin-left: 31px;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.5;
}

.p-admin__payment {
  margin-top: 60px;
  width: 657px;
  max-width: 100%;
}

.p-admin__payment form {
  display: grid;
  grid-template-columns: 427px 211px;
  gap: 19px;
  align-items: end;
  margin-top: 19px;
}

.p-admin__payment label {
  grid-column: 1 / -1;
  margin-bottom: -12px;
  color: #000;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.2;
}

.p-admin__payment input {
  width: 427px;
  height: 58px;
  min-height: 58px;
  border: 1px solid var(--muted);
  border-radius: 10px;
  background: transparent;
  padding: 0 22px;
  color: var(--ink);
  font-size: 18px;
}

.p-admin__payment button {
  width: 211px;
  height: 58px;
  min-height: 58px;
  border: 1px solid var(--yellow);
  border-radius: 10px;
  background: var(--yellow);
  padding: 0;
  color: #000;
  font-size: 18px;
  font-weight: 500;
}

.p-admin__payment button:hover {
  background: transparent;
}

.p-admin__notice,
.p-admin__payment-result {
  margin-top: 24px;
}

.p-admin .group-start {
  border-left: 0;
}

.p-admin__payment-result h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.22;
}

.p-admin__payment-result ul {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.p-admin__refund-form {
  display: block;
  margin-top: 18px;
}

.p-admin__refund-form button {
  width: auto;
  min-width: 320px;
  padding: 0 24px;
}

.p-blog {
  width: calc(100% - 120px);
  max-width: 1320px;
  margin: 0 auto;
  padding: 62px 0 100px;
  color: var(--ink);
}

.p-blog__breadcrumbs {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0 0 13px;
  color: var(--muted);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

.p-blog__breadcrumbs a,
.p-blog__breadcrumbs span {
  color: var(--muted);
}

.p-blog__title {
  margin: 0;
  color: var(--ink);
  font-size: 36px;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0;
}

.p-blog__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 400px));
  justify-content: space-between;
  gap: 68px 46px;
  margin-top: 38px;
}

.p-article-card {
  width: 400px;
  max-width: 100%;
  overflow: hidden;
  border: 1px solid #eeeeee;
  border-radius: 20px;
  color: var(--ink);
}

.p-article-card__link {
  display: block;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.p-article-card__link:hover {
  text-decoration: none;
}

.p-article-card__cover {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 300px;
  overflow: hidden;
  border-radius: 0;
  background: #d9d9d9;
}

.p-article-card__cover img {
  display: block;
  width: 82%;
  height: 82%;
  object-fit: contain;
}

.p-article-card__meta {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 28px 20px 0;
  color: var(--muted);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

.p-article-card__title {
  display: block;
  width: calc(100% - 40px);
  margin: 16px 20px 0;
  color: var(--ink);
  font-size: 24px;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0;
}

.p-article-card__excerpt {
  display: block;
  width: calc(100% - 40px);
  margin: 9px 20px 39px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

.p-blog__pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-top: 94px;
}

.p-blog__pages {
  display: flex;
  align-items: center;
  gap: 15px;
}

.p-blog__pager,
.p-blog__page {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  border: 1px solid #eeeeee;
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  text-decoration: none;
  transition: background 160ms ease, border-color 160ms ease;
}

.p-blog__pager:hover,
.p-blog__page:hover {
  border-color: var(--yellow);
  background: var(--yellow);
  text-decoration: none;
}

.p-blog__pager {
  width: 86px;
  border-color: var(--yellow);
}

.p-blog__page {
  width: 40px;
}

.p-blog__page.is-current {
  border-color: var(--yellow);
  background: var(--yellow);
}

.p-blog__pager.is-disabled {
  pointer-events: none;
}

@media (min-width: 901px) and (max-width: 1350px) {
  .p-blog {
    width: calc(100% - 120px);
  }

  .p-blog__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 58px 42px;
  }

  .p-article-card {
    width: 100%;
  }

  .p-article-card__cover {
    height: clamp(215px, 23.5vw, 300px);
  }
}

.p-legal {
  width: 668px;
  max-width: calc(100% - 120px);
  margin-left: max(60px, calc(50% - 322px));
  padding: 41px 0 52px;
  color: var(--ink);
}

.p-legal h1 {
  width: max-content;
  max-width: 100%;
  margin: 0 0 19px;
  color: var(--ink);
  font-size: 36px;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0;
}

.p-legal__text {
  width: 668px;
  max-width: 100%;
  color: var(--ink);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

.p-legal__text p {
  margin: 0 0 24px;
}

.p-legal__text p:last-child {
  margin-bottom: 0;
}

.section-heading {
  margin-bottom: 26px;
}

.section-heading p {
  color: var(--muted);
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.metric-card {
  padding: 18px;
}

.metric-card span {
  display: block;
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 10px;
}

.metric-card strong {
  font-size: 24px;
  font-weight: 600;
}

.table-wrap {
  width: 100%;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  padding: 14px 12px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  white-space: nowrap;
}

tbody tr:nth-child(even) td {
  background: var(--soft);
}

th {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
}

.group-start {
  border-left: 1px solid var(--line);
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 18px;
}

.payment-result {
  margin-top: 24px;
}

.blog-hero {
  text-align: center;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  padding-bottom: 90px;
}

.blog-card {
  overflow: hidden;
}

.blog-cover {
  display: block;
  aspect-ratio: 16 / 10;
  background: var(--cream);
}

.blog-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card .blog-meta,
.blog-card h3,
.blog-card p {
  margin-left: 22px;
  margin-right: 22px;
}

.blog-meta {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-top: 20px;
  color: var(--muted);
  font-size: 14px;
}

.blog-card h3 {
  margin-top: 14px;
  margin-bottom: 12px;
}

.blog-card p {
  color: var(--muted);
  margin-bottom: 24px;
}

.legal-text,
.article-shell {
  padding: 0 0 90px;
}

.article-page {
  width: min(820px, calc(100% - 120px));
  margin: 0 auto;
  padding: 86px 0 90px;
}

.article-body {
  margin: 38px 0;
}

.article-body a {
  text-decoration: underline;
}

.article-shell {
  width: min(820px, calc(100% - 120px));
  margin: 0 auto;
}

.cookie {
  position: fixed;
  left: 24px;
  bottom: 24px;
  width: min(460px, calc(100% - 48px));
  z-index: 80;
  display: none;
  align-items: center;
  gap: 18px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 18px 60px rgba(33, 33, 33, 0.12);
}

.cookie span,
.cookie button {
  font-size: 14px;
}

.cookie button {
  min-height: 42px;
  padding: 8px 16px;
  white-space: nowrap;
}

@media (min-width: 1600px) {
  .hero-section {
    max-width: 1600px;
  }

  .hero-figure {
    width: min(55vw, 900px);
  }
}

@media (max-width: 1100px) {
  .site-header__inner {
    width: 100%;
  }

  .site-nav {
    gap: 28px;
  }

  .hero-section {
    padding-left: 24px;
  }

  .hero-copy {
    width: 52vw;
  }

  .work-section,
  .advantages-section,
  .dashboard-grid {
    grid-template-columns: 1fr;
  }

  .work-section {
    gap: 42px;
  }

  .voice-card h3 {
    margin-top: 0;
  }

  .tariff-grid,
  .metrics-grid,
  .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-top {
    width: min(var(--container), calc(100% - 48px));
    grid-template-columns: 1fr 1fr;
    column-gap: 48px;
  }
}

@media (max-width: 900px) {
  main {
    padding-top: 82px;
  }

  h1 {
    font-size: 26px;
  }

  h2 {
    font-size: 24px;
  }

  h3 {
    font-size: 20px;
  }

  p,
  li,
  dt,
  dd,
  label,
  input,
  select,
  button,
  textarea {
    font-size: 16px;
  }

  .site-header__inner {
    min-height: 82px;
    width: 100%;
    padding: 0 20px;
  }

  .brand {
    gap: 10px;
    font-size: 24px;
  }

  .brand img {
    width: 40px;
    height: auto;
  }

  .menu-toggle {
    display: grid;
    place-items: center;
    width: 42px;
    min-height: 42px;
    padding: 0;
    border: 0;
    background: transparent;
    border-radius: 0;
    z-index: 75;
  }

  .menu-toggle span {
    width: 28px;
    height: 2px;
    background: var(--ink);
    grid-area: 1 / 1;
    transition: transform 180ms ease;
  }

  .menu-toggle span:first-child {
    transform: translateY(-7px);
  }

  .menu-toggle span:nth-child(2) {
    transform: translateY(0);
  }

  .menu-toggle span:last-child {
    transform: translateY(7px);
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: rotate(-45deg);
  }

  .menu-backdrop {
    position: fixed;
    inset: 0;
    z-index: 60;
    border: 0;
    border-radius: 0;
    background: rgba(33, 33, 33, 0.45);
    min-height: 0;
    padding: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease;
  }

  body.menu-open .menu-backdrop {
    display: block;
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav {
    position: fixed;
    z-index: 70;
    top: 0;
    right: 0;
    width: min(320px, 82vw);
    height: 100vh;
    padding: 110px 32px 32px;
    background: var(--paper);
    display: none;
    align-content: start;
    gap: 24px;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(100%);
    transition: transform 180ms ease;
    box-shadow: -20px 0 60px rgba(33, 33, 33, 0.15);
  }

  .site-nav.is-open {
    display: grid;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
  }

  .site-nav a {
    font-size: 18px;
  }

  .p-home-hero {
    height: calc(545px + 44.03vw);
    min-height: 710px;
    max-width: none;
    overflow: hidden;
  }

  .p-home-hero__title {
    left: 50%;
    top: 35px;
    width: min(calc(100% - 20px), 362px);
    min-height: 96px;
    transform: translateX(-50%);
    font-size: 26px;
    font-weight: 500;
    line-height: normal;
    text-align: center;
  }

  .p-home-hero__figure {
    left: 50%;
    right: auto;
    top: 163px;
    width: calc(100vw + 8px);
    height: calc(44.03vw + 4px);
    transform: translateX(-50%);
  }

  .p-home-hero__subtitle {
    left: 50%;
    top: calc(190px + 44.03vw);
    width: min(calc(100% - 40px), 362px);
    min-height: 81px;
    transform: translateX(-50%);
    font-size: 22px;
    font-weight: 400;
    line-height: normal;
    text-align: center;
  }

  .p-home-hero__actions {
    left: 50%;
    top: calc(302px + 44.03vw);
    width: min(calc(100% - 40px), 362px);
    transform: translateX(-50%);
    display: grid;
    gap: 25px;
  }

  .p-home-hero__button {
    width: 100%;
    height: 58px;
  }

  .p-home-hero__trial {
    left: 50%;
    top: calc(468px + 44.03vw);
    width: 252px;
    transform: translateX(-50%);
    font-size: 18px;
    font-weight: 500;
    line-height: normal;
  }

  .p-help-screen {
    height: 717px;
  }

  .p-help-screen__figure {
    left: auto;
    right: 0;
    top: 27px;
    width: 240px;
    height: 122px;
  }

  .p-help-screen__title {
    top: 46px;
    width: 201px;
    font-size: 24px;
    line-height: normal;
  }

  .p-help-screen__item {
    left: 50%;
    width: min(calc(100% - 42px), 362px);
    transform: translateX(-50%);
  }

  .p-help-screen__item h3 {
    font-size: 20px;
    line-height: normal;
  }

  .p-help-screen__item p {
    margin-top: 7px;
    font-size: 16px;
    line-height: 1.5;
  }

  .p-help-screen__item--anxiety {
    top: 123px;
  }

  .p-help-screen__item--overload {
    top: 238px;
  }

  .p-help-screen__item--bad-now {
    top: 362px;
  }

  .p-help-screen__item--bad-now p {
    width: 100%;
  }

  .p-help-screen__item--unclear {
    top: 477px;
  }

  .p-help-screen__item--relations {
    top: 591px;
  }

  .p-how-screen {
    height: 840px;
  }

  .p-how-screen__image {
    left: 0;
    top: 0;
    width: 100%;
    height: 402px;
  }

  .p-how-screen__content {
    left: 50%;
    top: 446px;
    width: min(calc(100% - 40px), 362px);
    transform: translateX(-50%);
  }

  .p-how-screen__title {
    margin-bottom: 33px;
    font-size: 24px;
    line-height: normal;
  }

  .p-how-screen__step--second {
    margin-top: 32px;
  }

  .p-how-screen__step h3 {
    font-size: 20px;
    line-height: normal;
  }

  .p-how-screen__lead {
    margin-top: 7px;
    font-size: 16px;
    line-height: 1.5;
  }

  .p-how-screen__text {
    width: 100%;
    margin-top: 3px;
    font-size: 16px;
    line-height: 1.5;
  }

  .p-effective-screen {
    height: 1028px;
  }

  .p-effective-screen__title {
    top: 64px;
    width: 313px;
    font-size: 24px;
    line-height: normal;
  }

  .p-effective-screen__card {
    left: 50%;
    width: min(calc(100% - 40px), 362px);
    transform: translateX(-50%);
  }

  .p-effective-screen__card h3 {
    position: static;
    width: auto;
    font-size: 20px;
    line-height: 1.5;
  }

  .p-effective-screen__card p {
    position: static;
    width: 100%;
    margin-top: 10px;
    transform: none;
    font-size: 16px;
    line-height: 1.5;
  }

  .p-effective-screen__card--memory {
    top: 145px;
  }

  .p-effective-screen__card--science {
    top: 412px;
  }

  .p-effective-screen__card--access {
    top: 703px;
  }

  .p-effective-screen__icon--memory {
    width: 210px;
    height: 105px;
    margin-bottom: 14px;
  }

  .p-effective-screen__icon--science {
    width: 131px;
    height: 131px;
    margin-bottom: 1px;
  }

  .p-effective-screen__icon--access {
    width: 241px;
    height: 112px;
    margin-bottom: 20px;
  }

  .p-benefits-screen {
    height: auto;
    min-height: 1340px;
    padding-top: 56px;
    overflow: hidden;
  }

  .p-benefits-screen__title,
  .p-benefits-screen__voice-title,
  .p-benefits-screen__picture,
  .p-benefits-screen__content {
    position: static;
  }

  .p-benefits-screen__title {
    width: min(calc(100% - 40px), 386px);
    margin: 0 auto;
    padding-top: 0;
    font-size: 24px;
    line-height: normal;
    text-align: center;
    white-space: normal;
  }

  .p-benefits-screen__voice-title {
    width: min(calc(100% - 40px), 282px);
    margin: 34px auto 0;
    font-size: 20px;
    line-height: 1.5;
    text-align: center;
  }

  .p-benefits-screen__picture {
    display: block;
    width: min(100%, 402px);
    height: auto;
    margin: 0 auto;
  }

  .p-benefits-screen__image {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .p-benefits-screen__content {
    width: min(calc(100% - 40px), 362px);
    margin: 15px auto 0;
  }

  .p-benefits-screen__modes-title {
    margin-bottom: 24px;
    font-size: 20px;
    line-height: 1.5;
  }

  .p-benefits-screen__item,
  .p-benefits-screen__item--dialog,
  .p-benefits-screen__item--session,
  .p-benefits-screen__item--day,
  .p-benefits-screen__item--bad,
  .p-benefits-screen__item--panic {
    width: 100%;
  }

  .p-benefits-screen__item {
    padding-left: 23px;
  }

  .p-benefits-screen__item h4,
  .p-benefits-screen__item p {
    font-size: 16px;
    line-height: 1.5;
  }

  .p-benefits-screen__item--session {
    margin-top: 16px;
  }

  .p-benefits-screen__item--day,
  .p-benefits-screen__item--bad,
  .p-benefits-screen__item--panic {
    margin-top: 17px;
  }

  .p-safety-screen {
    height: 489px;
    margin-top: 82px;
  }

  .p-safety-screen__intro,
  .p-safety-screen__details {
    position: static;
  }

  .p-safety-screen__intro {
    position: relative;
    z-index: 1;
    left: auto;
    top: auto;
    width: min(calc(100% - 39px), 363px);
    margin: 0 auto;
    padding-top: 43px;
  }

  .p-safety-screen__title {
    width: 179px;
    font-size: 24px;
    line-height: normal;
  }

  .p-safety-screen__lead {
    width: min(100%, 363px);
    margin-top: 22px;
    font-size: 16px;
    line-height: 1.5;
  }

  .p-safety-screen__details {
    position: relative;
    z-index: 1;
    left: auto;
    top: auto;
    width: min(calc(100% - 40px), 362px);
    margin: 22px auto 0;
  }

  .p-safety-screen__item h3 {
    font-size: 20px;
    line-height: 1.5;
  }

  .p-safety-screen__item p {
    width: 100%;
    margin-top: 23px;
    font-size: 16px;
    line-height: 1.5;
  }

  .p-safety-screen__item--boundaries {
    margin-top: 32px;
  }

  .p-safety-screen__picture {
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 404px;
    display: block;
    width: min(calc(100% - 40px), 362px);
    height: auto;
    margin: 0;
    transform: translateX(-50%);
  }

  .p-safety-screen__image {
    width: 100%;
    height: auto;
  }

  .p-tariffs-screen {
    width: min(calc(100% - 38px), 364px);
    height: 1779px;
    margin-top: 54px;
  }

  .p-tariffs-screen__title {
    top: 0;
    width: 102px;
    font-size: 24px;
    line-height: normal;
  }

  .p-tariffs-screen__subtitle {
    top: 56px;
    width: min(100%, 358px);
    font-size: 16px;
    line-height: 1.5;
  }

  .p-tariffs-screen__grid {
    left: 50%;
    top: 110px;
    width: 362px;
    grid-template-columns: 362px;
    gap: 41px;
    transform: translateX(-50%);
  }

  .p-tariffs-screen__card {
    width: 362px;
    height: 529px;
  }

  .p-tariffs-screen__card h3 {
    top: 24px;
    font-size: 20px;
    line-height: 1.5;
  }

  .p-tariffs-screen__line {
    top: 75px;
  }

  .p-tariffs-screen__features {
    top: 95px;
  }

  .p-tariffs-screen__line--price {
    top: 265px;
  }

  .p-tariffs-screen__price {
    top: 282px;
    height: 48px;
  }

  .p-tariffs-screen__price strong {
    font-size: 32px;
  }

  .p-tariffs-screen__price span {
    margin-top: 17px;
  }

  .p-tariffs-screen__actions {
    left: 25px;
    top: 355px;
    width: 312px;
    gap: 19px;
    transform: none;
  }

  .p-tariffs-screen__button {
    width: 312px;
  }

  .p-reviews-screen {
    width: min(calc(100% - 43px), 359px);
    height: 337px;
    margin-top: 52px;
  }

  .p-reviews-screen__title {
    top: 0;
    width: 101px;
    font-size: 24px;
    line-height: normal;
  }

  .p-reviews-screen__slider {
    top: 61px;
    height: 276px;
  }

  .p-reviews-screen__image {
    width: 100%;
    height: 167px;
    object-fit: cover;
  }

  .p-reviews-screen__source {
    left: 0;
    top: 188px;
    width: 117px;
    font-size: 16px;
    line-height: 1.5;
    text-align: left;
    transform: none;
  }

  .p-reviews-screen__arrows {
    left: 96px;
    top: 244px;
    width: 165px;
  }

  .p-reviews-screen__arrow {
    width: 32px;
    height: 33px;
    min-height: 33px;
  }

  .p-reviews-screen__arrow span {
    width: 23px;
    height: 23px;
  }

  .p-faq-screen {
    min-height: 628px;
    margin-top: 54px;
    padding-top: 37px;
  }

  .p-faq-screen__title {
    width: 53px;
    font-size: 24px;
    line-height: normal;
  }

  .p-faq-screen__list {
    width: min(calc(100% - 40px), 361px);
    margin-top: 43px;
  }

  .p-faq-screen__question {
    min-height: 73px;
    grid-template-columns: minmax(0, 297px) 29px;
    gap: 27px;
    font-size: 16px;
    line-height: 1.5;
  }

  .p-faq-screen__answer p {
    width: 100%;
    margin: -6px 0 27px;
    font-size: 16px;
    line-height: 1.5;
  }

  .p-footer-screen {
    min-height: 1360px;
    margin-top: 0;
    padding: 36px 0 46px;
  }

  .p-footer-screen__figure--desktop {
    display: none;
  }

  .p-footer-screen__figure--mobile {
    position: relative;
    left: auto;
    top: auto;
    order: 2;
    display: block;
    width: min(calc(100% - 40px), 362px);
    height: auto;
    margin: 52px auto 0;
  }

  .p-footer-screen__inner {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
    margin: 0;
  }

  .p-footer-screen__contacts {
    position: relative;
    left: auto;
    top: auto;
    order: 1;
    width: min(calc(100% - 36px), 364px);
    margin: 0 auto;
  }

  .p-footer-screen__contacts h2 {
    margin: 0 0 12px;
    font-size: 26px;
    line-height: normal;
  }

  .p-footer-screen__line {
    display: flex;
    width: 100%;
    margin-bottom: 10px;
    gap: 0 8px;
    font-size: 16px;
    line-height: 1.5;
  }

  .p-footer-screen__line--support {
    display: block;
  }

  .p-footer-screen__line--support a {
    display: block;
    margin-top: 6px;
  }

  .p-footer-screen__line--social {
    flex-wrap: nowrap;
  }

  .p-footer-screen__line--social a + a {
    margin-left: 15px;
  }

  .p-footer-screen__nav,
  .p-footer-screen__docs {
    position: relative;
    left: auto;
    top: auto;
    width: min(calc(100% - 38px), 364px);
    margin: 0 auto;
    gap: 22px;
    font-size: 16px;
    line-height: 1.5;
  }

  .p-footer-screen__nav {
    order: 3;
    margin-top: 31px;
  }

  .p-footer-screen__docs {
    order: 4;
    margin-top: 46px;
  }

  .p-footer-screen__actions {
    position: relative;
    left: auto;
    top: auto;
    order: 5;
    width: min(calc(100% - 40px), 362px);
    margin: 52px auto 0;
    gap: 28px;
  }

  .p-footer-screen__button {
    width: 100%;
    min-height: 58px;
    font-size: 18px;
  }

  .p-footer-screen__bottom {
    width: min(calc(100% - 40px), 362px);
    margin: 34px auto 0;
    padding: 49px 0 0;
  }

  .p-footer-screen__bottom p {
    width: min(100%, 364px);
    margin: 0 0 18px;
    font-size: 14px;
    line-height: 1.5;
  }

  .hero-section {
    min-height: 732px;
    padding: 35px 20px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-copy {
    width: 100%;
    text-align: center;
  }

  .hero-copy h1 {
    margin-bottom: 27px;
    text-align: center;
  }

  .hero-subtitle {
    width: 361px;
    max-width: 100%;
    font-size: 22px;
    line-height: normal;
    margin: 33px auto 31px;
    color: #000000;
  }

  .hero-actions {
    display: grid;
    gap: 25px;
    margin-bottom: 25px;
  }

  .hero-actions .button {
    width: 362px;
    max-width: 100%;
  }

  .hero-figure {
    position: static;
    width: 402px;
    max-width: none;
    margin: 0 -20px;
    order: 2;
  }

  .hero-copy-rest {
    order: 3;
  }

  .trial-note {
    font-size: 18px;
    text-align: center;
  }

  .help-section {
    position: relative;
    min-height: 717px;
    margin-bottom: 0;
    padding: 62px 20px 80px;
  }

  .help-inner {
    width: 100%;
    position: relative;
    z-index: 1;
  }

  .help-section h2 {
    margin-bottom: 42px;
  }

  .help-figure {
    position: absolute;
    left: auto;
    right: 0;
    top: 27px;
    bottom: auto;
    width: 240px;
    margin: 0;
    z-index: 0;
    transform: scaleX(-1);
  }

  .help-grid,
  .effective-grid,
  .tariff-grid,
  .metrics-grid,
  .blog-grid,
  .footer-top {
    grid-template-columns: 1fr;
  }

  .help-grid {
    gap: 28px;
  }

  .help-grid article {
    min-height: auto;
  }

  .work-section,
  .effective-section,
  .tariffs-section,
  .dashboard-grid,
  .content-section,
  .blog-grid,
  .legal-text,
  .article-page,
  .article-shell,
  .admin-hero,
  .admin-section,
  .auth-page,
  .system-page,
  .error-page,
  .legal-hero,
  .account-hero,
  .blog-hero {
    width: calc(100% - 40px);
  }

  .work-section {
    min-height: 840px;
    margin-bottom: 64px;
    padding: 58px 0;
  }

  .work-photo {
    width: 100%;
  }

  .effective-section {
    min-height: 964px;
    margin-bottom: 51px;
    padding-top: 54px;
  }

  .effective-section h2 {
    margin-bottom: 46px;
  }

  .effective-grid {
    gap: 46px;
  }

  .effective-grid article {
    grid-template-rows: auto;
  }

  .effective-grid p {
    font-size: 16px;
  }

  .advantages-section {
    width: calc(100% - 40px);
    min-height: 1340px;
    margin-bottom: 49px;
    padding-top: 56px;
    gap: 38px;
  }

  .advantages-copy h2 {
    margin-bottom: 36px;
  }

  .voice-card img {
    width: 100%;
  }

  .safety-section {
    display: block;
    min-height: 489px;
    margin-bottom: 54px;
    padding: 58px 20px 74px;
  }

  .safety-copy {
    margin-left: 0;
  }

  .safety-details {
    margin-top: 36px;
  }

  .safety-figure {
    width: 260px;
    bottom: 0;
  }

  .tariffs-section {
    min-height: 1779px;
    margin-bottom: 52px;
    padding-top: 58px;
  }

  .tariff-card {
    width: 100%;
    min-height: 493px;
  }

  .tariff-card .price strong {
    font-size: 32px;
    font-weight: 500;
    line-height: 1.5;
  }

  .reviews-section {
    min-height: 337px;
    margin-bottom: 54px;
  }

  .reviews-slider {
    width: calc(100% - 40px);
  }

  .review-slide img {
    width: 100%;
    height: auto;
  }

  .review-arrows {
    position: static;
    margin-top: 24px;
    justify-content: center;
    gap: 18px;
  }

  .faq-section {
    min-height: 628px;
    margin-bottom: 60px;
    padding: 44px 20px 60px;
  }

  .faq-section h2 {
    margin-bottom: 33px;
  }

  .faq-grid {
    width: 100%;
  }

  summary {
    min-height: 65px;
    font-size: 16px;
    gap: 18px;
  }

  details p {
    width: calc(100% - 46px);
    font-size: 16px;
  }

  .site-footer {
    min-height: 1460px;
    padding: 0 20px 34px;
  }

  .footer-figure {
    top: 36px;
    right: 0;
    width: 240px;
  }

  .footer-top {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .footer-contacts {
    padding-top: 0;
  }

  .footer-contacts h2 {
    font-size: 32px;
    margin-bottom: 28px;
  }

  .footer-contacts p {
    white-space: normal;
  }

  .footer-actions {
    width: 100%;
    margin-top: 72px;
    gap: 28px;
  }

  .footer-actions .button {
    width: 100%;
  }

  .footer-menu,
  .footer-legal {
    padding-top: 48px;
    gap: 18px;
  }

  .footer-bottom {
    width: 100%;
    margin-top: 51px;
    padding-top: 35px;
  }

  .footer-bottom p {
    max-width: 364px;
  }

  .auth-page {
    display: block;
  }

  .auth-copy {
    margin-top: 34px;
  }

  .p-auth-page {
    width: min(calc(100% - 40px), 361px);
    min-height: 608px;
    padding: 37px 0 0;
  }

  .p-auth-page h1 {
    width: 306px;
    margin: 0 auto;
    text-align: center;
    font-size: 26px;
    line-height: 1.23;
  }

  .p-auth-page__form,
  .p-auth-page.auth-page .p-auth-page__form {
    display: grid;
    gap: 18px;
    width: 100%;
    margin-top: 37px;
  }

  .p-auth-page__input,
  .p-auth-page__button {
    width: 100%;
    min-height: 58px;
  }

  .p-auth-page__note.auth-copy,
  .p-auth-page__note {
    width: 100%;
    margin-top: 39px;
    text-align: left;
    white-space: normal;
  }

  .p-auth-page__details {
    width: 100%;
    margin-top: 35px;
  }

  .p-dashboard {
    width: min(calc(100% - 40px), 364px);
    min-height: 1002px;
    padding-top: 7px;
  }

  .p-dashboard__eyebrow {
    margin-bottom: 10px;
  }

  .p-dashboard h1 {
    font-size: 26px;
    line-height: 1.23;
  }

  .p-dashboard__meta {
    flex-wrap: nowrap;
    gap: 16px;
    margin-top: 14px;
    white-space: nowrap;
  }

  .p-dashboard__meta span:last-child {
    min-width: 0;
  }

  .p-dashboard__status {
    width: 318px;
    margin-top: 18px;
    font-size: 16px;
    white-space: normal;
  }

  .p-dashboard__admin-tabs {
    gap: 31px;
  }

  .p-dashboard__logout {
    top: 7px;
    right: 0;
  }

  .p-dashboard__logout button {
    font-size: 16px;
    font-weight: 400;
  }

  .p-dashboard__columns {
    display: grid;
    grid-template-columns: 1fr;
    gap: 58px;
    margin-top: 49px;
  }

  .p-dashboard__profile h2,
  .p-dashboard__stats h2 {
    font-size: 28px;
  }

  .p-dashboard__phone {
    margin-top: 22px;
  }

  .p-dashboard__phone-note {
    width: 361px;
  }

  .p-dashboard__form {
    width: 100%;
    margin-top: 18px;
  }

  .p-dashboard__stats ul {
    margin-top: 17px;
    font-size: 16px;
  }

  .p-dashboard-tariffs {
    margin-top: 0;
    margin-bottom: 70px;
  }

  .p-dashboard__payment-note {
    width: min(100% - 40px, 361px);
    margin: -20px auto 30px;
  }

  .p-admin {
    width: min(calc(100% - 40px), 362px);
    padding-top: 7px;
    padding-bottom: 52px;
  }

  .p-admin__tabs {
    gap: 31px;
    margin-bottom: 10px;
  }

  .p-admin h1 {
    font-size: 26px;
    line-height: 1.23;
  }

  .p-admin__stats {
    margin-top: 27px;
  }

  .p-admin__stats h2,
  .p-admin__payment h2 {
    font-size: 22px;
  }

  .p-admin__stats-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 13px;
  }

  .p-admin__stats-grid ul {
    gap: 6px;
    font-size: 16px;
  }

  .p-admin__users {
    width: 362px;
    margin-top: 24px;
  }

  .p-admin__table-wrap {
    width: 362px;
    max-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x;
    scrollbar-width: thin;
  }

  .p-admin__table-wrap table {
    width: 782px;
  }

  .p-admin__table-wrap th,
  .p-admin__table-wrap td {
    height: 25px;
    padding: 3px 10px;
    font-size: 12px;
  }

  .p-admin__pagination {
    gap: 14px;
    margin-top: 31px;
  }

  .p-admin__pager-button {
    width: 89px;
    min-height: 35px;
    border-radius: 7px;
    font-size: 12px;
  }

  .p-admin__pagination span:not(.p-admin__pager-button) {
    margin-left: 6px;
    font-size: 12px;
  }

  .p-admin__payment {
    width: 362px;
    margin-top: 57px;
  }

  .p-admin__payment form {
    display: grid;
    grid-template-columns: 1fr;
    gap: 23px;
    margin-top: 25px;
  }

  .p-admin__payment label {
    margin-bottom: -16px;
    font-size: 16px;
  }

  .p-admin__payment input,
  .p-admin__payment button {
    width: 100%;
    height: 58px;
  }

  .p-admin__refund-form button {
    min-width: 0;
  }

  .p-blog {
    width: min(calc(100% - 40px), 362px);
    max-width: none;
    margin: 0 auto;
    padding: 27px 0 80px;
  }

  .p-blog__breadcrumbs {
    margin-bottom: 8px;
  }

  .p-blog__title {
    font-size: 26px;
    line-height: normal;
  }

  .p-blog__grid {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 43px;
  }

  .p-article-card {
    width: 100%;
  }

  .p-article-card__cover {
    height: 250px;
  }

  .p-article-card__cover img {
    width: 80%;
    height: 80%;
  }

  .p-article-card__meta {
    margin: 27px 21px 0;
    gap: 14px;
  }

  .p-article-card__title {
    width: calc(100% - 42px);
    margin: 16px 21px 0;
    font-size: 20px;
    line-height: normal;
  }

  .p-article-card__excerpt {
    width: calc(100% - 44px);
    margin: 14px 21px 35px;
  }

  .p-blog__pagination {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 29px;
    margin-top: 64px;
  }

  .p-blog__pages {
    grid-column: 1 / -1;
    grid-row: 1;
    justify-content: space-between;
    gap: 0;
  }

  .p-blog__pager {
    grid-row: 2;
    width: 86px;
    height: 40px;
  }

  .p-blog__pager:last-child {
    justify-self: end;
  }

  .p-blog__page:nth-child(n + 6) {
    display: none;
  }

  .p-legal {
    width: min(calc(100% - 40px), 362px);
    max-width: none;
    margin: 0 auto;
    padding: 7px 0 80px;
  }

  .p-legal h1 {
    width: 362px;
    max-width: 100%;
    margin-bottom: 29px;
    font-size: 26px;
    line-height: normal;
  }

  .p-legal__text {
    width: 360px;
    max-width: 100%;
    font-size: 16px;
    line-height: 1.5;
  }

  .p-legal__text p {
    margin-bottom: 24px;
  }

  .pagination {
    align-items: flex-start;
    flex-direction: column;
  }

  .cookie {
    display: none;
  }
}
