/* Изолированные стили новой страницы SEO. Подключаются только из services_seo.tpl */

body.seo-page-new .seo-new-hero {
  background: #fff;
  margin-top: -100px;
  padding-top: 100px;
  align-items: center;
  height: calc(100vh - 170px);
  display: flex;
}

body.seo-page-new .seo-new-hero__container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: stretch;
  padding: 28px 20px 72px;
  box-sizing: border-box;
}

body.seo-page-new .seo-new-hero__content {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 46px;
}

body.seo-page-new .seo-new-hero .crumbs {
  margin: 0;
  padding: 0;
  z-index: 1;
  display: block;
}

body.seo-page-new .seo-new-hero .crumbs .wrapper ul li {
  font-size: 20px;
  line-height: 1.3;
  margin-bottom: 0;
  padding-right: 18px;
}

body.seo-page-new .seo-new-hero .crumbs .wrapper ul li a,
body.seo-page-new .seo-new-hero .crumbs .wrapper ul li span {
  color: #8a8a8a;
  font-weight: 400;
  text-decoration: none;
  text-transform: none;
}

body.seo-page-new .seo-new-hero .crumbs .wrapper ul li a::after {
  color: #b0b0b0;
}

body.seo-page-new .seo-new-hero .crumbs .wrapper ul li a:hover {
  color: #7437f1;
  text-decoration: none;
}

body.seo-page-new .seo-new-hero__title {
  position: static;
  margin: 0;
  color: #111;
  font-size: clamp(32px, 4.4vw, 83px);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.03em;
  text-transform: none;
}

body.seo-page-new .seo-new-hero__lead {
  max-width: 36em;
  margin: 0;
  color: #707070;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.45;
}

body.seo-page-new .seo-new-hero__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

body.seo-page-new .seo-new-hero__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 0 0 14px;
  color: #1a1a1a;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.35;
}

body.seo-page-new .seo-new-hero__list li:last-child {
  margin-bottom: 0;
}

body.seo-page-new .seo-new-hero__check {
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  margin-top: 1px;
}

body.seo-page-new .seo-new-hero__check svg {
  display: block;
}

body.seo-page-new .seo-new-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 30px;
}

body.seo-page-new .seo-new-hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  min-height: 56px;
  padding: 14px 32px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 25px;
  font-weight: 400;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  text-transform: none;
  white-space: nowrap;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

body.seo-page-new .seo-new-hero__btn--primary {
  background: #7437f1;
  border: 1px solid #7437f1;
  color: #fff;
}

body.seo-page-new .seo-new-hero__btn--primary:hover,
body.seo-page-new .seo-new-hero__btn--primary:focus {
  background: #6326e0;
  border-color: #6326e0;
  color: #fff;
}

body.seo-page-new .seo-new-hero__btn--ghost {
  background: #fff;
  border: 1px solid #d6d6d6;
  color: #111;
}

body.seo-page-new .seo-new-hero__btn--ghost:hover,
body.seo-page-new .seo-new-hero__btn--ghost:focus {
  border-color: #111;
  color: #111;
}

body.seo-page-new .seo-new-hero__card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 420px;
  padding: 40px 36px 32px;
  border-radius: 28px;
  background: #1c1a25;
  color: #fff;
  box-sizing: border-box;
}

body.seo-page-new .seo-new-hero__card::before,
body.seo-page-new .seo-new-hero__card::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(40px);
}

body.seo-page-new .seo-new-hero__card::before {
  top: -80px;
  right: -60px;
  width: 220px;
  height: 220px;
  background: rgba(116, 55, 241, 0.45);
}

body.seo-page-new .seo-new-hero__card::after {
  bottom: -70px;
  left: -40px;
  width: 200px;
  height: 200px;
  background: rgba(116, 55, 241, 0.28);
}

body.seo-page-new .seo-new-hero__card-title {
  position: relative;
  z-index: 1;
  margin: 0 0 25px;
  color: #fff;
  font-size: clamp(26px, 2.2vw, 31.4px);
  font-weight: 400;
  line-height: 1.2;
  text-transform: none;
}

body.seo-page-new .seo-new-hero__card-text {
  position: relative;
  z-index: 1;
  max-width: 34em;
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
}

body.seo-page-new .seo-new-hero__card-link {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.3;
  text-decoration: none;
  text-transform: none;
}

body.seo-page-new .seo-new-hero__card-link:hover {
  color: #fff;
}

body.seo-page-new .seo-new-hero__stats {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 22px;
  flex: 100%;
}

body.seo-page-new .seo-new-hero__stat {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
  min-height: 108px;
  padding: 16px 20px 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.02);
}

body.seo-page-new .seo-new-hero__stat-label {
  color: rgba(255, 255, 255, 0.55);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.3;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
}

body.seo-page-new .seo-new-hero__stat-value {
  color: #fff;
  font-size: clamp(22px, 2.2vw, 40px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

@media print, screen and (min-width: 64em) {
  body.seo-page-new .seo-new-hero__card {
    min-height: 460px;
    padding: 31px;
  }
}

/* Две колонки героя — только шире 1024px */
@media print, screen and (min-width: 64.0625em) {
  body.seo-page-new .seo-new-hero__container {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 38.8%);
    gap: 48px;
    align-items: center;
    padding: 0;
  }
}

@media print, screen and (min-width: 64.0625em) and (max-width: 1660px) {
  body.seo-page-new .seo-new-hero__container {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 50%);
  }

  body.seo-page-new .seo-new-hero__stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  body.seo-page-new .seo-new-hero__stat {
    padding: 14px 14px 12px;
  }

  body.seo-page-new .seo-new-hero__stat-label {
    font-size: 20px;
  }
}

@media screen and (max-width: 64em) {
  body.seo-page-new .seo-new-hero__container {
    grid-template-columns: 1fr;
  }
}

/* Крошки: без лишнего левого отступа на 414–768 */
@media screen and (max-width: 48em) {
  body.seo-page-new .seo-new-hero .crumbs,
  body.seo-page-new .seo-new-hero .crumbs .wrapper {
    margin-left: 0;
    padding-left: 0;
  }
}

body.seo-page-new .seo-new-audit {
  position: relative;
  overflow: hidden;
  background: #1c1a25;
  color: #fff;
}

body.seo-page-new .seo-new-audit::before,
body.seo-page-new .seo-new-audit::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(70px);
}

body.seo-page-new .seo-new-audit::before {
  bottom: -280px;
  left: -280px;
  width: 560px;
  height: 560px;
  background: rgba(116, 55, 241, 0.38);
}

body.seo-page-new .seo-new-audit::after {
  top: -265px;
  right: -280px;
  width: 560px;
  height: 560px;
  background: rgba(116, 55, 241, 0.42);
  transform: scale(1.4);
}

body.seo-page-new .seo-new-audit__container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
  padding: 64px 20px;
  box-sizing: border-box;
}

body.seo-page-new .seo-new-audit__content {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 38px;
}

body.seo-page-new .seo-new-audit__title {
  position: static;
  margin: 0;
  color: #fff;
  font-size: clamp(36px, 4.2vw, 74px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.03em;
  text-transform: none;
}

body.seo-page-new .seo-new-audit__title-accent {
  display: block;
  background-image: linear-gradient(90deg, #b892ff 0%, #7437f1 72%);
  -webkit-background-clip: text;
  background-clip: text;
  color: #7437f1;
  -webkit-text-fill-color: transparent;
}

body.seo-page-new .seo-new-audit__lead {
  color: rgba(255, 255, 255, 0.62);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.2;
  margin: 0;
}

body.seo-page-new .seo-new-audit__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

body.seo-page-new .seo-new-audit__list li {
  display: flex;
  align-items: baseline;
  gap: 22px;
  margin: 0 0 18px;
  color: #fff;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.2;
}

body.seo-page-new .seo-new-audit__list li:last-child {
  margin-bottom: 0;
}

body.seo-page-new .seo-new-audit__num {
  flex: 0 0 auto;
  color: #7437f1;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0.04em;
}

body.seo-page-new .seo-new-audit__form-card {
  box-sizing: border-box;
  padding: 40px 36px 32px;
  border-radius: 28px;
  background: #fff;
  color: #111;
}

body.seo-page-new .seo-new-audit__form-title {
  margin: 0 0 40px;
  color: #111;
  font-size: clamp(20px, 2.6vw, 32px);
  font-weight: 400;
  line-height: 1.2;
  text-transform: none;
}

body.seo-page-new .seo-new-audit__form {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

body.seo-page-new .seo-new-audit__honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

body.seo-page-new .seo-new-audit__field {
  display: block;
  margin: 0;
}

body.seo-page-new .seo-new-audit__field input {
  display: block;
  box-sizing: border-box;
  width: 100%;
  height: auto;
  min-height: 52px;
  margin: 0;
  padding: 12px 20px;
  border: 1px solid #d6d6d6;
  border-radius: 999px;
  background: #fff;
  color: #111;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2;
  box-shadow: none;
}

body.seo-page-new .seo-new-audit__field input::placeholder {
  color: #9a9a9a;
}

body.seo-page-new .seo-new-audit__field input:focus {
  border-color: #7437f1;
  outline: none;
}

body.seo-page-new .seo-new-audit__policy {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
  gap: 10px;
  margin: 6px 0 2px;
  color: #333;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2;
}

body.seo-page-new .seo-new-audit__policy > span {
  flex: 1 1 auto;
  min-width: 0;
}

body.seo-page-new .seo-new-audit__policy input {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  margin: 2px 0 0;
  accent-color: #7437f1;
}

body.seo-page-new .seo-new-audit__policy a {
  display: inline !important;
  color: #333;
  text-decoration: underline;
  text-transform: none;
}

body.seo-page-new .seo-new-audit__policy a:hover {
  color: #7437f1;
}

body.seo-page-new .seo-new-audit__captcha {
  padding: 0;
  margin: 0;
  width: 100%;
  min-height: 0;
}

body.seo-page-new .seo-new-audit__captcha + .error {
  margin: 0;
  color: #c0392b;
  font-size: 14px;
}

body.seo-page-new .seo-new-audit__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 100%;
  min-height: 56px;
  margin: 6px 0 0;
  padding: 14px 28px;
  border: 1px solid #7437f1;
  border-radius: 999px;
  background: #7437f1;
  color: #fff;
  cursor: pointer;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2;
  text-align: center;
  text-transform: none;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

body.seo-page-new .seo-new-audit__submit:hover,
body.seo-page-new .seo-new-audit__submit:focus {
  background: #6326e0;
  border-color: #6326e0;
  color: #fff;
}

body.seo-page-new .seo-new-tariffs {
  background: #fff;
}

body.seo-page-new .seo-new-tariffs__container {
  padding: 64px 20px 72px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 46px;
}

body.seo-page-new .seo-new-tariffs__title {
  position: static;
  margin: 0;
  color: #111;
  font-size: clamp(32px, 4vw, 74px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.03em;
  text-transform: none;
}

body.seo-page-new .seo-new-tariffs__intro {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 40px;
}

body.seo-page-new .seo-new-tariffs__intro-text p {
  max-width: 36em;
  margin: 0;
  color: #555;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.45;
}

body.seo-page-new .seo-new-tariffs__intro-text p:last-child {
  margin-bottom: 0;
}

body.seo-page-new .seo-new-tariffs__note {
  padding: 46px;
  border-radius: 24px;
  background: #f5f5f7;
}

body.seo-page-new .seo-new-tariffs__note p {
  margin: 0;
  color: #333;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.4;
}

body.seo-page-new .seo-new-tariffs__note span {
  color: #7437f1;
}

body.seo-page-new .seo-new-tariffs__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-bottom: 64px;
}

body.seo-page-new .seo-new-tariffs__pager,
body.seo-page-new .seo-new-benefits__pager {
  display: none;
}

body.seo-page-new .seo-new-tariffs__card {
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  min-height: 100%;
  padding: 24px;
  border: 1px solid transparent;
  border-radius: 20px;
  background: #fff;
  color: #111;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

body.seo-page-new .seo-new-tariffs__card:hover,
body.seo-page-new .seo-new-tariffs__card:focus-within,
body.seo-page-new .seo-new-tariffs__card--featured {
  border-color: #1c1a25;
  background: #1c1a25;
  color: #fff;
}

body.seo-page-new .seo-new-tariffs__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  min-height: 32px;
  justify-content: space-between;
}

body.seo-page-new .seo-new-tariffs__badge {
  display: inline-flex;
  align-items: center;
  padding: 12px 18px;
  border: 1px solid #cfcfcf;
  border-radius: 999px;
  color: #333;
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
  white-space: nowrap;
}

body.seo-page-new .seo-new-tariffs__card:hover .seo-new-tariffs__badge,
body.seo-page-new .seo-new-tariffs__card:focus-within .seo-new-tariffs__badge,
body.seo-page-new .seo-new-tariffs__card--featured .seo-new-tariffs__badge {
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
}

body.seo-page-new .seo-new-tariffs__badge--accent,
body.seo-page-new .seo-new-tariffs__card:hover .seo-new-tariffs__badge--accent,
body.seo-page-new .seo-new-tariffs__card:focus-within .seo-new-tariffs__badge--accent,
body.seo-page-new .seo-new-tariffs__card--featured .seo-new-tariffs__badge--accent {
  border-color: #7437f1;
  background: #7437f1;
  color: #fff;
}

body.seo-page-new .seo-new-tariffs__name {
  position: static;
  margin: 0 0 10px;
  color: inherit;
  font-size: 36px;
  font-weight: 400;
  line-height: 1.15;
  text-transform: none;
}

body.seo-page-new .seo-new-tariffs__price {
  margin: 0 0 24px;
  color: inherit;
  font-size: clamp(28px, 3.2vw, 50px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

body.seo-page-new .seo-new-tariffs__price span {
  color: #9a9a9a;
  font-size: 20px;
}

body.seo-page-new .seo-new-tariffs__card:hover .seo-new-tariffs__price span,
body.seo-page-new .seo-new-tariffs__card:focus-within .seo-new-tariffs__price span,
body.seo-page-new .seo-new-tariffs__card--featured .seo-new-tariffs__price span {
  color: rgba(255, 255, 255, 0.5);
}

body.seo-page-new .seo-new-tariffs__desc {
  margin: 0 0 28px;
  color: #555;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2;
}

body.seo-page-new .seo-new-tariffs__card:hover .seo-new-tariffs__desc,
body.seo-page-new .seo-new-tariffs__card:focus-within .seo-new-tariffs__desc,
body.seo-page-new .seo-new-tariffs__card--featured .seo-new-tariffs__desc {
  color: rgba(255, 255, 255, 0.78);
}

body.seo-page-new .seo-new-tariffs__features {
  list-style: none;
  margin: 0 0 27px;
  padding: 0;
}

body.seo-page-new .seo-new-tariffs__features li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
}

body.seo-page-new .seo-new-tariffs__features span {
  color: #8a8a8a;
}

body.seo-page-new .seo-new-tariffs__card:hover .seo-new-tariffs__features span,
body.seo-page-new .seo-new-tariffs__card:focus-within .seo-new-tariffs__features span,
body.seo-page-new .seo-new-tariffs__card--featured .seo-new-tariffs__features span {
  color: rgba(255, 255, 255, 0.5);
}

body.seo-page-new .seo-new-tariffs__features strong {
  color: #111;
  font-weight: 400;
  text-align: right;
}

body.seo-page-new .seo-new-tariffs__card:hover .seo-new-tariffs__features strong,
body.seo-page-new .seo-new-tariffs__card:focus-within .seo-new-tariffs__features strong,
body.seo-page-new .seo-new-tariffs__card--featured .seo-new-tariffs__features strong {
  color: #fff;
}

body.seo-page-new .seo-new-tariffs__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 100%;
  min-height: 52px;
  margin-top: auto;
  padding: 12px 20px;
  border: 1px solid #111;
  border-radius: 999px;
  background: #fff;
  color: #111;
  cursor: pointer;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  text-transform: none;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

body.seo-page-new .seo-new-tariffs__card:hover .seo-new-tariffs__btn,
body.seo-page-new .seo-new-tariffs__card:focus-within .seo-new-tariffs__btn,
body.seo-page-new .seo-new-tariffs__card--featured .seo-new-tariffs__btn {
  border-color: #7437f1;
  background: #7437f1;
  color: #fff;
}

body.seo-page-new .seo-new-tariffs__card:hover .seo-new-tariffs__btn:hover,
body.seo-page-new .seo-new-tariffs__card:hover .seo-new-tariffs__btn:focus,
body.seo-page-new .seo-new-tariffs__card:focus-within .seo-new-tariffs__btn:hover,
body.seo-page-new .seo-new-tariffs__card:focus-within .seo-new-tariffs__btn:focus,
body.seo-page-new .seo-new-tariffs__card--featured .seo-new-tariffs__btn:hover,
body.seo-page-new .seo-new-tariffs__card--featured .seo-new-tariffs__btn:focus {
  background: #6326e0;
  border-color: #6326e0;
  color: #fff;
}

@media screen and (min-width: 48em) {
  body.seo-page-new .seo-new-tariffs__cards:has(.seo-new-tariffs__card:not(.seo-new-tariffs__card--featured):hover) .seo-new-tariffs__card--featured,
  body.seo-page-new .seo-new-tariffs__cards:has(.seo-new-tariffs__card:not(.seo-new-tariffs__card--featured):focus-within) .seo-new-tariffs__card--featured {
    border-color: transparent;
    background: #fff;
    color: #111;
  }

  body.seo-page-new .seo-new-tariffs__cards:has(.seo-new-tariffs__card:not(.seo-new-tariffs__card--featured):hover) .seo-new-tariffs__card--featured .seo-new-tariffs__badge,
  body.seo-page-new .seo-new-tariffs__cards:has(.seo-new-tariffs__card:not(.seo-new-tariffs__card--featured):focus-within) .seo-new-tariffs__card--featured .seo-new-tariffs__badge {
    border-color: #cfcfcf;
    color: #333;
  }

  body.seo-page-new .seo-new-tariffs__cards:has(.seo-new-tariffs__card:not(.seo-new-tariffs__card--featured):hover) .seo-new-tariffs__card--featured .seo-new-tariffs__badge--accent,
  body.seo-page-new .seo-new-tariffs__cards:has(.seo-new-tariffs__card:not(.seo-new-tariffs__card--featured):focus-within) .seo-new-tariffs__card--featured .seo-new-tariffs__badge--accent {
    border-color: #7437f1;
    background: #7437f1;
    color: #fff;
  }

  body.seo-page-new .seo-new-tariffs__cards:has(.seo-new-tariffs__card:not(.seo-new-tariffs__card--featured):hover) .seo-new-tariffs__card--featured .seo-new-tariffs__price span,
  body.seo-page-new .seo-new-tariffs__cards:has(.seo-new-tariffs__card:not(.seo-new-tariffs__card--featured):focus-within) .seo-new-tariffs__card--featured .seo-new-tariffs__price span {
    color: #9a9a9a;
  }

  body.seo-page-new .seo-new-tariffs__cards:has(.seo-new-tariffs__card:not(.seo-new-tariffs__card--featured):hover) .seo-new-tariffs__card--featured .seo-new-tariffs__desc,
  body.seo-page-new .seo-new-tariffs__cards:has(.seo-new-tariffs__card:not(.seo-new-tariffs__card--featured):focus-within) .seo-new-tariffs__card--featured .seo-new-tariffs__desc {
    color: #555;
  }

  body.seo-page-new .seo-new-tariffs__cards:has(.seo-new-tariffs__card:not(.seo-new-tariffs__card--featured):hover) .seo-new-tariffs__card--featured .seo-new-tariffs__features span,
  body.seo-page-new .seo-new-tariffs__cards:has(.seo-new-tariffs__card:not(.seo-new-tariffs__card--featured):focus-within) .seo-new-tariffs__card--featured .seo-new-tariffs__features span {
    color: #8a8a8a;
  }

  body.seo-page-new .seo-new-tariffs__cards:has(.seo-new-tariffs__card:not(.seo-new-tariffs__card--featured):hover) .seo-new-tariffs__card--featured .seo-new-tariffs__features strong,
  body.seo-page-new .seo-new-tariffs__cards:has(.seo-new-tariffs__card:not(.seo-new-tariffs__card--featured):focus-within) .seo-new-tariffs__card--featured .seo-new-tariffs__features strong {
    color: #111;
  }

  body.seo-page-new .seo-new-tariffs__cards:has(.seo-new-tariffs__card:not(.seo-new-tariffs__card--featured):hover) .seo-new-tariffs__card--featured .seo-new-tariffs__btn,
  body.seo-page-new .seo-new-tariffs__cards:has(.seo-new-tariffs__card:not(.seo-new-tariffs__card--featured):focus-within) .seo-new-tariffs__card--featured .seo-new-tariffs__btn {
    border-color: #111;
    background: #fff;
    color: #111;
  }
}

body.seo-page-new .seo-new-tariffs__modules {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: start;
}

body.seo-page-new .seo-new-tariffs__modules-title {
  position: static;
  grid-column: 1 / -1;
  margin: 0;
  color: #111;
  font-size: clamp(26px, 2.4vw, 36px);
  font-weight: 400;
  line-height: 1.15;
  text-transform: none;
}

body.seo-page-new .seo-new-tariffs__modules-text p {
  margin: 0 0 18px;
  color: #555;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.4;
}

body.seo-page-new .seo-new-tariffs__modules-text p:last-child {
  margin-bottom: 0;
}

body.seo-page-new .seo-new-tariffs__module-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

body.seo-page-new .seo-new-tariffs__module {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 90px;
  padding: 20px;
  border-radius: 18px;
  background: #1c1a25;
  gap: 8px;
}

body.seo-page-new .seo-new-tariffs__module strong {
  color: #fff;
  font-size: 28px;
  font-weight: 400;
  line-height: 1;
}

body.seo-page-new .seo-new-tariffs__module span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
}

body.seo-page-new .seo-new-board {
  position: relative;
  overflow: hidden;
  background: #1c1a25;
  color: #fff;
}

body.seo-page-new .seo-new-board::before,
body.seo-page-new .seo-new-board::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(160px);
}

body.seo-page-new .seo-new-board::before {
  top: -680px;
  right: -670px;
  width: 1100px;
  height: 1100px;
  background: rgba(116, 55, 241, 0.4);
}

body.seo-page-new .seo-new-board::after {
  bottom: -420px;
  left: -460px;
  width: 760px;
  height: 760px;
  background: rgba(116, 55, 241, 0.22);
}

body.seo-page-new .seo-new-board__container {
  position: relative;
  z-index: 1;
  padding: 64px 20px;
  box-sizing: border-box;
}

body.seo-page-new .seo-new-board__title {
  position: static;
  margin: 0 0 40px;
  color: #fff;
  font-size: clamp(32px, 4.8vw, 74px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
  text-transform: none;
}

body.seo-page-new .seo-new-board__title:has(+ .seo-new-board__lead) {
  margin-bottom: 24px;
}

body.seo-page-new .seo-new-board__lead {
  max-width: 40em;
  margin: 0 0 40px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.45;
}

body.seo-page-new .seo-new-board__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px 48px;
  list-style: none;
  margin: 0;
  padding: 0;
}

body.seo-page-new .seo-new-board__item-title {
  position: relative;
  display: inline-block;
  margin: 0 0 14px;
  padding-bottom: 26px;
  color: #fff;
  font-size: 36px;
  font-weight: 400;
  line-height: 1.2;
  text-transform: none;
}

body.seo-page-new .seo-new-board__item-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 264px;
  height: 1px;
  background: #7437f1;
}

body.seo-page-new .seo-new-board__item-title span {
  color: #7437f1;
  margin-right: 10px;
}

body.seo-page-new .seo-new-board__text {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
  max-width: 620px;
}

body.seo-page-new .seo-new-board__text:last-child {
  margin-bottom: 0;
}

body.seo-page-new .seo-new-board__result {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.45;
}

body.seo-page-new .seo-new-board__result span {
  color: #7437f1;
}

body.seo-page-new .seo-new-cases {
  background: #fff;
}

body.seo-page-new .seo-new-cases__head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px 32px;
  padding: 72px 20px 40px;
  box-sizing: border-box;
}

body.seo-page-new .seo-new-cases__title {
  position: static;
  margin: 0;
  color: #111;
  font-size: clamp(32px, 4.8vw, 74px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
  text-transform: none;
}

body.seo-page-new .seo-new-more {
  position: relative;
  display: inline-block;
  margin-left: 20px;
  padding-right: 160px;
  color: #111;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 21px;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

body.seo-page-new .seo-new-more span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 51px;
}

body.seo-page-new .seo-new-more span::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: -5px;
  width: 61px;
  height: 51px;
  background: #ededed;
  transition: width 0.4s;
}

body.seo-page-new .seo-new-more::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -20px;
  width: 6px;
  height: 6px;
  margin-top: -3px;
  border-radius: 50%;
  background: currentColor;
}

body.seo-page-new .seo-new-more::after {
  content: "";
  position: absolute;
  top: 20%;
  right: 0;
  width: 183px;
  height: 8px;
  margin-top: -4px;
  background: url("/assets/img/elements/link_long_arrow.png") no-repeat center right;
  transition: width 0.4s;
}

body.seo-page-new .seo-new-more:hover {
  color: #111;
  text-decoration: none;
}

body.seo-page-new .seo-new-more:hover span::before {
  width: 100px;
}

body.seo-page-new .seo-new-more:hover::after {
  width: 143px;
}

body.seo-page-new .seo-new-cases__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

body.seo-page-new .seo-new-cases__card {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  border-radius: 0;
  text-decoration: none;
  color: #fff;
  min-width: 0;
}

body.seo-page-new .seo-new-cases__image {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s;
}

body.seo-page-new .seo-new-cases__video {
  display: none;
  position: absolute;
  z-index: 1;
  top: -2px;
  left: -2px;
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  max-width: none;
  object-fit: cover;
  pointer-events: none;
  transition: transform 0.7s;
}

body.seo-page-new .seo-new-cases__meta {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 24px 20px 22px;
  box-sizing: border-box;
}

body.seo-page-new .seo-new-cases__name {
  max-width: 21em;
  color: #fff;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.35);
}

body.seo-page-new .seo-new-cases__tag {
  display: inline-block;
  padding: 5px 10px;
  border: 0;
  border-radius: 3px;
  background: #d9dee4;
  color: #1c1a25;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2;
}

body.seo-page-new .seo-new-cases__card:hover {
  text-decoration: none;
  color: #fff;
}

body.seo-page-new .seo-new-cases__card:hover .seo-new-cases__image,
body.seo-page-new .seo-new-cases__card:hover .seo-new-cases__video {
  transform: scale(1.05);
}

@media screen and (min-width: 48em) {
  body.seo-page-new .seo-new-cases__video {
    display: block;
  }
}

body.seo-page-new .seo-new-calc {
  position: relative;
  overflow: hidden;
  background: #1c1a25;
  color: #fff;
}

body.seo-page-new .seo-new-calc::before,
body.seo-page-new .seo-new-calc::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(160px);
}

body.seo-page-new .seo-new-calc::before {
  top: -620px;
  right: -640px;
  width: 1100px;
  height: 1100px;
  background: rgba(116, 55, 241, 0.4);
}

body.seo-page-new .seo-new-calc::after {
  bottom: -380px;
  left: -420px;
  width: 720px;
  height: 720px;
  background: rgba(116, 55, 241, 0.22);
}

body.seo-page-new .seo-new-calc__container {
  position: relative;
  z-index: 1;
  padding: 72px 20px;
  box-sizing: border-box;
}

body.seo-page-new .seo-new-calc__title {
  position: static;
  margin: 0 0 48px;
  color: #fff;
  font-size: clamp(32px, 4.8vw, 74px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
  text-transform: none;
}

body.seo-page-new .seo-new-calc__lead {
  max-width: 40em;
  margin: 0 0 40px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.45;
}

body.seo-page-new .seo-new-calc__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: stretch;
}

body.seo-page-new .seo-new-calc__form {
  display: flex;
  flex-direction: column;
  gap: 26px;
  padding: 28px 22px 22px;
  border-radius: 20px;
  background: #fff;
  box-sizing: border-box;
  overflow: visible;
}

body.seo-page-new .seo-new-calc__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
}

body.seo-page-new .seo-new-calc__label {
  color: #8a8a8a;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.3;
}

body.seo-page-new .seo-new-calc__select-wrap {
  position: relative;
}

body.seo-page-new .seo-new-calc__select-wrap.is-open {
  z-index: 9;
}

body.seo-page-new .seo-new-calc__select {
  width: 100%;
  min-height: 52px;
  padding: 12px 44px 12px 16px;
  border: 1px solid #d6d6d6;
  border-radius: 14px;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='10' fill='none'%3E%3Cpath d='M1 1L9 9L17 1' stroke='%239a9a9a' stroke-width='1'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  color: #1c1a25;
  font-family: inherit;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.35;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  background-size: 18px 10px;
}

body.seo-page-new .seo-new-calc__select:focus {
  outline: none;
  border-color: #7437f1;
  background-color: #f3edfe;
}

body.seo-page-new .seo-new-calc__select-wrap.is-custom .seo-new-calc__select {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
  pointer-events: none;
}

body.seo-page-new .seo-new-calc__trigger {
  display: flex;
  align-items: center;
  box-sizing: border-box;
  width: 100%;
  min-height: 58px;
  padding: 0 70px 0 28px;
  border: 1px solid #d6d6d6;
  border-radius: 50px;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='10' fill='none'%3E%3Cpath d='M1 1L9 9L17 1' stroke='%239a9a9a' stroke-width='1'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 28px center;
  background-size: 18px 10px;
  color: #1c1a25;
  font-family: inherit;
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

body.seo-page-new .seo-new-calc__trigger-text {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}

body.seo-page-new .seo-new-calc__select-wrap.is-open .seo-new-calc__trigger {
  border-color: #7437f1;
  color: #7437f1;
  background-color: #f3edfe;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='10' fill='none'%3E%3Cpath d='M1 9L9 1L17 9' stroke='%237437f1' stroke-width='1'/%3E%3C/svg%3E");
}

body.seo-page-new .seo-new-calc__select-wrap.is-current .seo-new-calc__select,
body.seo-page-new .seo-new-calc__select-wrap.is-current .seo-new-calc__trigger {
  border-color: #7437f1;
  color: #7437f1;
  background-color: #f3edfe;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='10' fill='none'%3E%3Cpath d='M1 1L9 9L17 1' stroke='%237437f1' stroke-width='1'/%3E%3C/svg%3E");
}

body.seo-page-new .seo-new-calc__select-wrap.is-current.is-open .seo-new-calc__trigger {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='10' fill='none'%3E%3Cpath d='M1 9L9 1L17 9' stroke='%237437f1' stroke-width='1'/%3E%3C/svg%3E");
}

body.seo-page-new .seo-new-calc__list {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 6px);
  z-index: 8;
  margin: 0;
  padding: 8px;
  list-style: none;
  border: 1px solid #ececef;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 16px 40px rgba(28, 26, 37, 0.16);
}

body.seo-page-new .seo-new-calc__select-wrap.is-open .seo-new-calc__list {
  display: block;
}

body.seo-page-new .seo-new-calc__option {
  padding: 12px 14px;
  border-radius: 10px;
  color: #1c1a25;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.35;
  cursor: pointer;
}

body.seo-page-new .seo-new-calc__option:hover,
body.seo-page-new .seo-new-calc__option:focus {
  background: #f3edfe;
}

body.seo-page-new .seo-new-calc__option.is-selected {
  color: #7437f1;
  background: #f3edfe;
}

body.seo-page-new .seo-new-calc__hint {
  color: #8a8a8a;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.4;
  flex: 100%;
  display: flex;
  align-items: flex-end;
  margin: 0;
}

body.seo-page-new .seo-new-calc__result {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 28px 24px;
  border-radius: 20px;
  background: #1c1a25;
  box-sizing: border-box;
  scroll-margin-top: 96px;
}

body.seo-page-new .seo-new-calc__badge {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  margin-bottom: 18px;
  padding: 13px 18px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  color: #fff;
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
  white-space: nowrap;
}

body.seo-page-new .seo-new-calc__name {
  position: static;
  margin: 0 0 10px;
  color: #fff;
  font-size: 36px;
  font-weight: 400;
  line-height: 1.15;
  text-transform: none;
}

body.seo-page-new .seo-new-calc__price {
  margin: 0 0 20px;
  color: #fff;
  font-size: clamp(28px, 3.2vw, 50px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

body.seo-page-new .seo-new-calc__price span:last-child {
  color: rgba(255, 255, 255, 0.5);
  font-size: 20px;
}

body.seo-page-new .seo-new-calc__desc {
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2;
}

body.seo-page-new .seo-new-calc__features {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
}

body.seo-page-new .seo-new-calc__features li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2;
}

body.seo-page-new .seo-new-calc__features span {
  color: rgba(255, 255, 255, 0.5);
}

body.seo-page-new .seo-new-calc__features strong {
  color: #fff;
  font-weight: 400;
  text-align: right;
}

body.seo-page-new .seo-new-calc__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 100%;
  min-height: 52px;
  margin-top: auto;
  padding: 12px 20px;
  border: 1px solid #7437f1;
  border-radius: 999px;
  background: #7437f1;
  color: #fff;
  cursor: pointer;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  text-transform: none;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

body.seo-page-new .seo-new-calc__btn:hover,
body.seo-page-new .seo-new-calc__btn:focus {
  background: #6326e0;
  border-color: #6326e0;
  color: #fff;
  text-decoration: none;
}

html:has(body.seo-page-new) {
  overflow-x: clip;
}

body.seo-page-new {
  overflow-x: clip;
}

body.seo-page-new .off-canvas-content {
  -webkit-transform: none;
  transform: none;
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
}

body.seo-page-new .seo-new-split {
  background: #fff;
}

body.seo-page-new .seo-new-split__container {
  padding: 72px 20px;
  box-sizing: border-box;
}

body.seo-page-new .seo-new-split--pt .seo-new-split__container {
  padding-top: 24px;
}

body.seo-page-new .seo-new-split--pb .seo-new-split__container {
  padding-bottom: 83px;
}

body.seo-page-new .seo-new-split__title {
  position: static;
  margin: 0 0 24px;
  color: #111;
  font-size: clamp(32px, 4.8vw, 74px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
  text-transform: none;
}

body.seo-page-new .seo-new-split__lead {
  max-width: 40em;
  margin: 0 0 40px;
  color: #707070;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.45;
}

body.seo-page-new .seo-new-split__layout {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
  overflow: visible;
}

body.seo-page-new .seo-new-split__aside-slot {
  min-width: 0;
}

body.seo-page-new .seo-new-split__aside {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
  box-sizing: border-box;
  padding: 36px 28px;
  border-radius: 24px;
  background: #f5f5f7;
}

body.seo-page-new .seo-new-split__aside-text {
  margin: 0;
  color: #333;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.4;
}

body.seo-page-new .seo-new-split__mark {
  color: #7437f1;
  font-weight: 400;
  text-decoration: none;
}

body.seo-page-new a.seo-new-split__mark:hover,
body.seo-page-new a.seo-new-split__mark:focus {
  color: #6326e0;
  text-decoration: none;
}

body.seo-page-new .seo-new-split__aside-link {
  color: #7437f1;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.3;
  text-decoration: none;
}

body.seo-page-new .seo-new-split__aside-link:hover,
body.seo-page-new .seo-new-split__aside-link:focus {
  color: #6326e0;
  text-decoration: none;
}

body.seo-page-new .seo-new-split__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

body.seo-page-new .seo-new-split__item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  column-gap: 16px;
  row-gap: 1px;
  align-items: baseline;
  margin: 0;
}

body.seo-page-new .seo-new-split__num {
  grid-column: 1;
  grid-row: 1;
  color: #7437f1;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.2;
}

body.seo-page-new .seo-new-split__item > :not(.seo-new-split__num) {
  grid-column: 2;
}

body.seo-page-new .seo-new-split__item-title {
  position: static;
  margin: 0;
  color: #111;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2;
  text-transform: none;
}

body.seo-page-new .seo-new-split__item-text {
  margin: 0;
  color: #707070;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.45;
}

body.seo-page-new .seo-new-split__item-link {
  color: #7437f1;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.3;
  text-decoration: none;
}

body.seo-page-new .seo-new-split__item-link:hover,
body.seo-page-new .seo-new-split__item-link:focus {
  color: #6326e0;
  text-decoration: none;
}

body.seo-page-new .seo-new-topics {
  background: #fff;
}

body.seo-page-new .seo-new-topics__container {
  padding: 72px 20px;
  box-sizing: border-box;
}

body.seo-page-new .seo-new-topics__title {
  position: static;
  margin: 0 0 44px;
  color: #111;
  font-size: clamp(32px, 4.8vw, 74px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
  text-transform: none;
}

body.seo-page-new .seo-new-topics__lead {
  max-width: 50em;
  margin: 0 0 40px;
}

body.seo-page-new .seo-new-topics__lead p {
  margin: 0;
  color: #707070;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.45;
}

body.seo-page-new .seo-new-topics__panel {
  box-sizing: border-box;
  margin: 0 0 24px;
  padding: 32px 24px;
  border: 1px solid #e8e8e8;
  border-radius: 20px;
  background: #fff;
}

body.seo-page-new .seo-new-topics__panel:last-child {
  margin-bottom: 0;
}

body.seo-page-new .seo-new-topics__panel--dark {
  border-color: transparent;
  background: #1c1a25;
  color: #fff;
}

body.seo-page-new .seo-new-topics__panel-title {
  position: static;
  margin: 0 0 28px;
  color: inherit;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.2;
  text-transform: none;
}

body.seo-page-new .seo-new-topics__list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

body.seo-page-new .seo-new-topics__link {
  display: inline-flex;
  align-items: center;
  box-sizing: border-box;
  min-height: 52px;
  padding: 12px 24px;
  border: 1px solid #cfcfcf;
  border-radius: 999px;
  background: #fff;
  color: #1c1a25;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2;
  text-decoration: none;
  text-transform: none;
  white-space: nowrap;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

body.seo-page-new button.seo-new-topics__link {
  font-family: inherit;
  margin: 0;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  box-shadow: none;
  border-color: #7437f1;
  background: #7437f1;
  color: #fff;
}

body.seo-page-new .seo-new-topics__link:hover,
body.seo-page-new .seo-new-topics__link:focus {
  border-color: #7437f1;
  background: #7437f1;
  color: #fff;
  text-decoration: none;
}

body.seo-page-new button.seo-new-topics__link:hover,
body.seo-page-new button.seo-new-topics__link:focus {
  border-color: #6326e0;
  background: #6326e0;
  color: #fff;
}

body.seo-page-new .seo-new-topics__panel--dark .seo-new-topics__link {
  border-color: rgba(255, 255, 255, 0.35);
  background: transparent;
  color: #fff;
}

body.seo-page-new .seo-new-topics__panel--dark .seo-new-topics__link:hover,
body.seo-page-new .seo-new-topics__panel--dark .seo-new-topics__link:focus {
  border-color: #7437f1;
  background: #7437f1;
  color: #fff;
}

body.seo-page-new .seo-new-topics__note {
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.45;
}

body.seo-page-new.seo-new-niche-open {
  overflow: hidden;
}

body.seo-page-new .seo-new-niche {
  box-sizing: border-box;
  width: calc(100vw - 32px);
  max-width: 104.75rem;
  max-height: calc(100vh - 32px);
  margin: auto;
  padding: 56px 24px 32px;
  overflow: auto;
  border: 0;
  border-radius: 20px;
  background: #fff;
  color: #111;
}

body.seo-page-new .seo-new-niche::backdrop {
  background: rgba(25, 23, 34, 0.88);
}

body.seo-page-new .seo-new-niche__close {
  position: absolute;
  top: 20px;
  right: 16px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #111;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}

body.seo-page-new .seo-new-niche__close:hover,
body.seo-page-new .seo-new-niche__close:focus {
  color: #7437f1;
  outline: none;
}

body.seo-page-new .seo-new-niche__close svg {
  display: block;
  pointer-events: none;
}

body.seo-page-new .seo-new-niche__title {
  position: static;
  margin: 0 0 16px;
  padding-right: 36px;
  color: #111;
  font-size: clamp(28px, 4.2vw, 72px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
  text-transform: none;
}

body.seo-page-new .seo-new-niche__lead {
  margin: 0 0 36px;
  color: #707070;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.45;
}

body.seo-page-new .seo-new-niche__form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

body.seo-page-new .seo-new-niche__honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

body.seo-page-new .seo-new-niche__field {
  display: block;
  margin: 0;
}

body.seo-page-new .seo-new-niche__field input {
  display: block;
  box-sizing: border-box;
  width: 100%;
  height: auto;
  min-height: 50px;
  margin: 0;
  padding: 12px 22px;
  border: 1px solid #cacaca;
  border-radius: 20px;
  background: #fff;
  color: #111;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2;
  box-shadow: none;
}

body.seo-page-new .seo-new-niche__field input::placeholder {
  color: #9395a2;
}

body.seo-page-new .seo-new-niche__field input:focus {
  border-color: #7437f1;
  outline: none;
}

body.seo-page-new .seo-new-niche__policy {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
  gap: 10px;
  margin: 0;
  color: #707070;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.35;
}

body.seo-page-new .seo-new-niche__policy > span {
  flex: 1 1 auto;
  min-width: 0;
}

body.seo-page-new .seo-new-niche__policy input {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  margin: 2px 0 0;
  accent-color: #7437f1;
}

body.seo-page-new .seo-new-niche__policy a {
  display: inline !important;
  color: #707070;
  text-decoration: underline;
  text-transform: none;
}

body.seo-page-new .seo-new-niche__policy a:hover {
  color: #7437f1;
}

body.seo-page-new .seo-new-niche__captcha {
  width: 100%;
  padding: 0;
  margin: 0;
  min-height: 0;
}

body.seo-page-new .seo-new-niche__captcha + .error {
  margin: 0;
  color: #c0392b;
  font-size: 14px;
}

body.seo-page-new .seo-new-niche__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 100%;
  min-height: 54px;
  margin: 8px 0 0;
  padding: 14px 28px;
  border: 1px solid #7437f1;
  border-radius: 999px;
  background: #7437f1;
  color: #fff;
  cursor: pointer;
  font-family: inherit;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2;
  text-align: center;
  text-transform: none;
  appearance: none;
  -webkit-appearance: none;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

body.seo-page-new .seo-new-niche__submit:hover,
body.seo-page-new .seo-new-niche__submit:focus {
  background: #6326e0;
  border-color: #6326e0;
  color: #fff;
  outline: none;
}

body.seo-page-new .seo-new-clients {
  background: #fff;
}

body.seo-page-new .seo-new-clients__container {
  padding: 72px 20px;
  box-sizing: border-box;
}

body.seo-page-new .seo-new-clients__title {
  position: static;
  margin: 0 0 40px;
  color: #111;
  font-size: clamp(32px, 4.8vw, 72px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0;
  text-transform: none;
}

body.seo-page-new .seo-new-clients__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 28px 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

body.seo-page-new .seo-new-clients__list li {
  flex: 0 0 120px;
  width: 120px;
  max-width: 120px;
  height: 120px;
  max-height: 120px;
}

body.seo-page-new .seo-new-clients__logo {
  display: block;
  width: 120px;
  max-width: 120px;
  height: 120px;
  max-height: 120px;
  object-fit: contain;
}

body.seo-page-new .seo-new-awards {
  background: #fff;
}

body.seo-page-new .seo-new-awards__container {
  padding: 72px 20px;
  box-sizing: border-box;
}

body.seo-page-new .seo-new-awards__title {
  position: static;
  margin: 0 0 40px;
  color: #111;
  font-size: clamp(32px, 4.8vw, 72px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0;
  text-transform: none;
}

body.seo-page-new .seo-new-awards__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  margin: 0;
  padding: 0;
  list-style: none;
}

body.seo-page-new .seo-new-awards__item {
  padding: 38px 76px;
}

body.seo-page-new .seo-new-awards__logo {
  display: block;
  width: 100%;
  height: 71px;
  max-height: 71px;
  margin: 0 0 26px;
  object-fit: contain;
  object-position: left center;
}

body.seo-page-new .seo-new-awards__item-title {
  position: static;
  margin: 0 0 17px;
  color: #111;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.7;
  text-transform: uppercase;
}

body.seo-page-new .seo-new-awards__text {
  margin: 0;
  color: #707070;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.35;
}

body.seo-page-new .seo-new-benefits {
  background: #fff;
}

body.seo-page-new .seo-new-benefits__container {
  padding: 40px 20px 72px;
  box-sizing: border-box;
}

body.seo-page-new .seo-new-benefits__title {
  position: static;
  margin: 0 0 28px;
  color: #111;
  font-size: clamp(32px, 4.8vw, 74px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
  text-transform: none;
}

body.seo-page-new .seo-new-benefits__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
  align-items: stretch;
}

body.seo-page-new .seo-new-benefits__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-sizing: border-box;
  min-width: 0;
  height: 100%;
  padding: 28px 24px;
  border: 1px solid #d9d9d9;
  border-radius: 20px;
  background: #fff;
  color: #111;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

body.seo-page-new .seo-new-benefits__item:hover,
body.seo-page-new .seo-new-benefits__item:focus-within {
  border-color: #1c1a25;
  background: #1c1a25;
  color: #fff;
}

body.seo-page-new .seo-new-benefits__num {
  color: #7437f1;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.2;
}

body.seo-page-new .seo-new-benefits__item-title {
  position: static;
  margin: 16px 0 0;
  color: inherit;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.2;
  text-transform: none;
}

body.seo-page-new .seo-new-benefits__text {
  margin: 14px 0 0;
  color: #707070;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2;
  transition: color 0.2s ease;
}

body.seo-page-new .seo-new-benefits__item:hover .seo-new-benefits__text,
body.seo-page-new .seo-new-benefits__item:focus-within .seo-new-benefits__text {
  color: #fff;
}

body.seo-page-new .seo-new-benefits__link {
  margin: 16px 0 0;
  color: #7437f1;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.3;
  text-decoration: none;
}

body.seo-page-new .seo-new-benefits__link:hover,
body.seo-page-new .seo-new-benefits__link:focus {
  color: #6326e0;
  text-decoration: none;
}

body.seo-page-new .seo-new-benefits__item:hover .seo-new-benefits__link,
body.seo-page-new .seo-new-benefits__item:focus-within .seo-new-benefits__link {
  color: #7437f1;
}

body.seo-page-new .seo-new-faq {
  position: relative;
  overflow: hidden;
  background: #1c1a25;
  color: #fff;
}

body.seo-page-new .seo-new-faq::before {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(160px);
  top: -420px;
  right: -480px;
  width: 900px;
  height: 900px;
  background: rgba(116, 55, 241, 0.45);
}

body.seo-page-new .seo-new-faq__container {
  position: relative;
  z-index: 1;
  padding: 72px 20px;
  box-sizing: border-box;
}

body.seo-page-new .seo-new-faq__title {
  position: static;
  margin: 0 0 36px;
  color: #fff;
  font-size: clamp(32px, 4.8vw, 74px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
  text-transform: none;
}

body.seo-page-new .seo-new-faq__list {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
}

body.seo-page-new .seo-new-faq__item {
  margin: 0;
  border: 0;
  background: transparent;
}

body.seo-page-new .seo-new-faq__question {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  column-gap: 16px;
  align-items: center;
  margin: 0;
  padding: 22px 0;
  color: #fff;
  cursor: pointer;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.3;
  list-style: none;
}

body.seo-page-new .seo-new-faq__question::-webkit-details-marker,
body.seo-page-new .seo-new-faq__question::marker {
  display: none;
  content: none;
}

body.seo-page-new .seo-new-faq__question::before {
  content: "";
  grid-column: 1;
  width: 22px;
  height: 22px;
  background: url("/assets/img/seo-new/blog/ic_faq_cross.svg") center / contain no-repeat;
  transition: transform 0.2s ease;
}

body.seo-page-new .seo-new-faq__item[open] .seo-new-faq__question::before {
  transform: rotate(45deg);
}

body.seo-page-new .seo-new-faq__answer {
  padding: 0 0 18px 38px;
}

body.seo-page-new .seo-new-faq__answer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.45;
}

body.seo-page-new .seo-new-articles {
  background: #fff;
}

body.seo-page-new .seo-new-articles__container {
  padding: 72px 20px;
  box-sizing: border-box;
}

body.seo-page-new .seo-new-articles__head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px 32px;
  margin: 0 0 40px;
}

body.seo-page-new .seo-new-articles__title {
  position: static;
  margin: 0;
  color: #111;
  font-size: clamp(32px, 4.8vw, 74px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
  text-transform: none;
}

body.seo-page-new .seo-new-articles__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: stretch;
}

body.seo-page-new .seo-new-articles__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
  height: 100%;
}

body.seo-page-new .seo-new-articles__cover {
  display: block;
  width: 100%;
  margin: 0 0 18px;
  overflow: hidden;
  border-radius: 20px;
}

body.seo-page-new .seo-new-articles__image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 402 / 262;
  object-fit: cover;
}

body.seo-page-new .seo-new-articles__item-title {
  position: static;
  margin: 0 0 16px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.2;
  text-transform: none;
}

body.seo-page-new .seo-new-articles__item-title a {
  color: #111;
  text-decoration: none;
}

body.seo-page-new .seo-new-articles__item-title a:hover,
body.seo-page-new .seo-new-articles__item-title a:focus {
  color: #7437f1;
  text-decoration: none;
}

body.seo-page-new .seo-new-articles__text {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  overflow: hidden;
  margin: 0 0 16px;
  color: #707070;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
}

body.seo-page-new .seo-new-articles__tag {
  margin-top: auto;
  color: #3489c2;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.3;
  text-decoration: underline;
}

body.seo-page-new .seo-new-articles__tag:hover,
body.seo-page-new .seo-new-articles__tag:focus {
  color: #2a6fa0;
}

body.seo-page-new .seo-new-articles__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 20px;
  margin-top: 16px;
  color: #9a9a9a;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
}

body.seo-page-new .seo-new-articles__date,
body.seo-page-new .seo-new-articles__views {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

body.seo-page-new .seo-new-articles__date::before,
body.seo-page-new .seo-new-articles__views::before {
  content: "";
  width: 16px;
  height: 16px;
  background: url("/assets/img/seo-new/blog/ic_calendar.svg") center / contain no-repeat;
}

body.seo-page-new .seo-new-articles__views::before {
  width: 20px;
  height: 20px;
  background-image: url("/assets/img/seo-new/blog/ic_views.svg");
}

@media print, screen and (min-width: 48em) {
  body.seo-page-new .seo-new-tariffs__cards {
    grid-template-columns: 1fr 1fr;
  }

  body.seo-page-new .seo-new-tariffs__module-list {
    grid-template-columns: 1fr 1fr 1fr;
  }

  body.seo-page-new .seo-new-board__grid {
    grid-template-columns: 1fr 1fr;
  }

  body.seo-page-new .seo-new-awards__grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px 30px;
  }

  body.seo-page-new .seo-new-benefits__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }

  body.seo-page-new .seo-new-articles__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px 24px;
  }
}

@media print, screen and (min-width: 64em) {
  body.seo-page-new .seo-new-audit__container {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 49%);
    gap: 56px;
    align-items: flex-start;
    padding: 100px 0;
  }

  body.seo-page-new .seo-new-audit__form-card {
    padding: 34px 50px;
  }

  body.seo-page-new .seo-new-tariffs__container {
    padding: 110px 0;
  }

  body.seo-page-new .seo-new-tariffs__intro {
    grid-template-columns: minmax(0, 0.96fr) minmax(280px, 1.04fr);
    gap: 48px;
    align-items: flex-start;
    margin-bottom: 0;
  }

  body.seo-page-new .seo-new-tariffs__cards {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 30px;
    margin-bottom: 30px;
  }

  body.seo-page-new .seo-new-tariffs__modules {
    grid-template-columns: minmax(0, 0.99fr) minmax(280px, 1.01fr);
    gap: 20px 48px;
    align-items: start;
  }

  body.seo-page-new .seo-new-board__container {
    padding: 108px 0;
  }

  body.seo-page-new .seo-new-board__title {
    margin-bottom: 80px;
  }

  body.seo-page-new .seo-new-board__title:has(+ .seo-new-board__lead) {
    margin-bottom: 50px;
  }

  body.seo-page-new .seo-new-board__lead {
    margin-bottom: 80px;
    font-size: 24px;
  }

  body.seo-page-new .seo-new-board__grid {
    gap: 100px 0;
  }

  body.seo-page-new .seo-new-calc__container {
    padding: 108px 0;
  }

  body.seo-page-new .seo-new-calc__lead {
    margin-bottom: 76px;
    font-size: 24px;
  }

  body.seo-page-new .seo-new-calc__layout {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 1fr);
    gap: 20px;
    align-items: stretch;
  }

  body.seo-page-new .seo-new-calc__form {
    padding: 26px 24px;
  }

  body.seo-page-new .seo-new-calc__result {
    padding: 24px;
  }

  body.seo-page-new .seo-new-split__container {
    padding: 108px 0;
  }

  body.seo-page-new .seo-new-split--pt .seo-new-split__container {
    padding-top: 24px;
  }

  body.seo-page-new .seo-new-split--pb .seo-new-split__container {
    padding-bottom: 83px;
  }

  body.seo-page-new .seo-new-split__title {
    margin-bottom: 47px;
  }

  body.seo-page-new .seo-new-split__lead {
    margin-bottom: 45px;
    font-size: 24px;
  }

  body.seo-page-new .seo-new-split__layout {
    grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
    gap: 46px;
  }

  body.seo-page-new .seo-new-split__aside-slot {
    align-self: stretch;
  }

  body.seo-page-new .seo-new-split__aside {
    padding: 46px;
    gap: 36px;
  }

  body.seo-page-new .seo-new-split__aside-text {
    font-size: 24px;
  }

  body.seo-page-new .seo-new-split__aside-link {
    font-size: 24px;
  }

  body.seo-page-new .seo-new-split__list {
    gap: 32px;
  }

  body.seo-page-new .seo-new-split__item {
    column-gap: 26px;
  }

  body.seo-page-new .seo-new-split__num,
  body.seo-page-new .seo-new-split__item-title {
    font-size: 24px;
  }

  body.seo-page-new .seo-new-split__item-text,
  body.seo-page-new .seo-new-split__item-link {
    font-size: 24px;
  }

  body.seo-page-new .seo-new-topics__container {
    padding: 108px 0;
  }

  body.seo-page-new .seo-new-topics__lead {
    margin-bottom: 46px;
  }

  body.seo-page-new .seo-new-topics__lead p {
    font-size: 24px;
  }

  body.seo-page-new .seo-new-topics__panel {
    margin-bottom: 22px;
    padding: 28px;
  }

  body.seo-page-new .seo-new-topics__panel-title {
    margin-bottom: 32px;
    font-size: 36px;
  }

  body.seo-page-new .seo-new-topics__list {
    gap: 12px;
  }

  body.seo-page-new .seo-new-topics__link {
    min-height: 50px;
    padding: 0 22px;
    font-size: 20px;
  }

  body.seo-page-new .seo-new-topics__note {
    margin-top: 36px;
    font-size: 20px;
  }

  body.seo-page-new .seo-new-niche {
    width: calc(100vw - 48px);
    max-height: calc(100vh - 48px);
    padding: 80px 112px 88px;
  }

  body.seo-page-new .seo-new-niche__close {
    top: 40px;
    right: 40px;
  }

  body.seo-page-new .seo-new-niche__title {
    margin-bottom: 20px;
    padding-right: 48px;
  }

  body.seo-page-new .seo-new-niche__lead {
    margin-bottom: 56px;
    font-size: 20px;
  }

  body.seo-page-new .seo-new-niche__field input {
    min-height: 52px;
    font-size: 20px;
  }

  body.seo-page-new .seo-new-niche__policy {
    font-size: 20px;
  }

  body.seo-page-new .seo-new-niche__submit {
    min-height: 56px;
  }

  body.seo-page-new .seo-new-clients__container {
    padding: 0 0 100px 0;
  }

  body.seo-page-new .seo-new-clients__title {
    margin-bottom: 88px;
  }

  body.seo-page-new .seo-new-clients__list {
    flex-wrap: nowrap;
    gap: 0;
  }

  body.seo-page-new .seo-new-awards__container {
    padding: 32px 0 40px;
  }

  body.seo-page-new .seo-new-awards__title {
    margin-bottom: 75px;
  }

  body.seo-page-new .seo-new-awards__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
  }

  body.seo-page-new .seo-new-awards__item-title {
    font-size: 20px;
  }

  body.seo-page-new .seo-new-awards__text {
    font-size: 20px;
  }

  body.seo-page-new .seo-new-benefits__container {
    padding: 24px 0 108px;
  }

  body.seo-page-new .seo-new-benefits__title {
    margin-bottom: 75px;
  }

  body.seo-page-new .seo-new-benefits__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 40px;
  }

  body.seo-page-new .seo-new-benefits__item {
    padding: 30px;
  }

  body.seo-page-new .seo-new-benefits__num {
    font-size: 22px;
  }

  body.seo-page-new .seo-new-benefits__item-title {
    margin-top: 12px;
    font-size: 24px;
  }

  body.seo-page-new .seo-new-benefits__text,
  body.seo-page-new .seo-new-benefits__link {
    font-size: 20px;
  }

  body.seo-page-new .seo-new-faq__container {
    padding: 108px 0;
  }

  body.seo-page-new .seo-new-faq__title {
    margin-bottom: 50px;
  }

  body.seo-page-new .seo-new-faq__question {
    column-gap: 50px;
    padding: 22px 0;
    font-size: 24px;
  }

  body.seo-page-new .seo-new-faq__answer {
    padding-left: 42px;
  }

  body.seo-page-new .seo-new-faq__answer p {
    font-size: 20px;
  }

  body.seo-page-new .seo-new-articles__container {
    padding: 108px 0;
  }

  body.seo-page-new .seo-new-articles__head {
    margin-bottom: 76px;
  }

  body.seo-page-new .seo-new-articles__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 30px;
  }

  body.seo-page-new .seo-new-articles__item-title {
    font-size: 20px;
  }

  body.seo-page-new .seo-new-articles__text {
    font-size: 20px;
  }

  body.seo-page-new .seo-new-articles__tag {
    font-size: 20px;
  }

  body.seo-page-new .seo-new-articles__meta {
    font-size: 20px;
  }

  body.seo-page-new .seo-new-cases__head {
    padding: 110px 0 72px;
  }

  body.seo-page-new .seo-new-cases__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  body.seo-page-new .seo-new-cases__meta {
    gap: 12px;
    padding: 26px 56px;
  }

  body.seo-page-new .seo-new-cases__name {
    font-size: 20px;
  }
}

/* Планшет 768–1023: без 100vh; поля даёт глобальный .row */
@media screen and (min-width: 48em) and (max-width: 63.9375em) {
  body.seo-page-new .seo-new-hero {
    height: auto;
    display: block;
  }

  body.seo-page-new .seo-new-hero__container {
    grid-template-columns: 1fr;
    padding: 24px 0 56px;
  }

  body.seo-page-new .seo-new-hero__lead,
  body.seo-page-new .seo-new-audit__lead,
  body.seo-page-new .seo-new-audit__list li,
  body.seo-page-new .seo-new-tariffs__intro-text p,
  body.seo-page-new .seo-new-tariffs__note p {
    font-size: 18px;
  }

  body.seo-page-new .seo-new-hero__btn {
    font-size: 18px;
    white-space: normal;
    max-width: 100%;
  }

  body.seo-page-new .seo-new-hero__stats {
    gap: 12px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  body.seo-page-new .seo-new-hero__stat {
    min-height: 0;
    padding: 12px 14px;
  }

  body.seo-page-new .seo-new-hero__stat-label {
    font-size: 18px;
  }

  body.seo-page-new .seo-new-cases__head {
    padding: 56px 0 32px;
  }

  body.seo-page-new .seo-new-cases__grid {
    grid-template-columns: 1fr 1fr;
  }

  body.seo-page-new .seo-new-tariffs__note {
    padding: 28px 24px;
  }

  body.seo-page-new .seo-new-board__item-title {
    font-size: 28px;
  }

  body.seo-page-new .seo-new-board__item-title::after {
    width: 100%;
    max-width: 264px;
  }

  body.seo-page-new .seo-new-awards__item {
    padding: 16px 8px 16px 0;
  }

  body.seo-page-new .seo-new-more {
    margin-left: 0;
    padding-right: 120px;
    font-size: 18px;
  }

  body.seo-page-new .seo-new-articles .seo-new-more {
    font-size: 16px;
  }

  body.seo-page-new .seo-new-more::after {
    width: 110px;
  }
}

/* Ноутбук 1024–1439: не 4 колонки и не nowrap логотипов; поля — у .row */
@media screen and (min-width: 64em) and (max-width: 89.9375em) {
  body.seo-page-new .seo-new-hero {
    height: auto;
  }

  body.seo-page-new .seo-new-hero__container {
    gap: 32px;
    padding: 24px 0 48px;
    align-items: start;
  }

  body.seo-page-new .seo-new-hero__btn {
    font-size: 20px;
    white-space: normal;
  }

  body.seo-page-new .seo-new-audit__container {
    gap: 40px;
    padding: 80px 0;
  }

  body.seo-page-new .seo-new-tariffs__container,
  body.seo-page-new .seo-new-board__container,
  body.seo-page-new .seo-new-calc__container,
  body.seo-page-new .seo-new-split__container,
  body.seo-page-new .seo-new-topics__container,
  body.seo-page-new .seo-new-faq__container,
  body.seo-page-new .seo-new-articles__container {
    padding: 80px 0;
  }

  body.seo-page-new .seo-new-split--pt .seo-new-split__container {
    padding-top: 24px;
  }

  body.seo-page-new .seo-new-split--pb .seo-new-split__container {
    padding-bottom: 64px;
  }

  body.seo-page-new .seo-new-clients__container {
    padding: 0 0 80px;
  }

  body.seo-page-new .seo-new-awards__container {
    padding: 32px 0 48px;
  }

  body.seo-page-new .seo-new-benefits__container {
    padding: 24px 0 80px;
  }

  body.seo-page-new .seo-new-cases__head {
    padding: 80px 0 48px;
  }

  body.seo-page-new .seo-new-tariffs__cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  body.seo-page-new .seo-new-tariffs__card {
    min-width: 0;
  }

  body.seo-page-new .seo-new-tariffs__intro,
  body.seo-page-new .seo-new-tariffs__modules,
  body.seo-page-new .seo-new-split__layout {
    gap: 28px;
  }

  body.seo-page-new .seo-new-board__grid {
    gap: 48px 32px;
  }

  body.seo-page-new .seo-new-clients__list {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 24px 32px;
  }

  body.seo-page-new .seo-new-awards__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px 24px;
  }

  body.seo-page-new .seo-new-awards__item {
    min-width: 0;
    padding: 12px 16px 12px 0;
  }

  body.seo-page-new .seo-new-articles__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px 24px;
  }

  body.seo-page-new .seo-new-niche {
    width: calc(100% - 48px);
    max-width: 960px;
    padding: 56px 48px 48px;
  }

  body.seo-page-new .seo-new-calc__layout,
  body.seo-page-new .seo-new-audit__container {
    min-width: 0;
  }

  body.seo-page-new .seo-new-calc__form,
  body.seo-page-new .seo-new-calc__result {
    min-width: 0;
  }
}

@media screen and (max-width: 47.9375em) {
  /* HERO — 414 crop (без шапки) */
  body.seo-page-new .seo-new-hero {
    height: auto;
    display: block;
  }

  body.seo-page-new .seo-new-hero .crumbs {
    margin-left: 0;
    padding: 8px 20px 0 0;
  }

  body.seo-page-new .seo-new-hero .crumbs .wrapper ul li a,
  body.seo-page-new .seo-new-hero .crumbs .wrapper ul li span {
    color: #7437f1;
  }

  body.seo-page-new .seo-new-hero .crumbs .wrapper ul li:last-child span {
    color: #1c1a25;
  }

  body.seo-page-new .seo-new-hero__container {
    gap: 32px;
    padding: 16px 0 48px;
  }

  body.seo-page-new .seo-new-hero__content {
    gap: 40px;
  }

  body.seo-page-new .seo-new-hero__title {
    font-size: 32px;
    line-height: 1.15;
  }

  body.seo-page-new .seo-new-hero__lead {
    max-width: none;
    font-size: 18px;
    line-height: 1.2;
    color: #797979;
  }

  body.seo-page-new .seo-new-hero__list li {
    font-size: 18px;
    margin-bottom: 16px;
  }

  body.seo-page-new .seo-new-hero__actions {
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 14px;
    margin-bottom: 0;
  }

  body.seo-page-new .seo-new-hero__btn {
    width: 100%;
    min-height: 50px;
    padding: 14px 24px;
    font-size: 18px;
    white-space: nowrap;
  }

  body.seo-page-new .seo-new-hero__card {
    min-height: 0;
    padding: 32px 28px 28px;
    border-radius: 24px;
  }

  body.seo-page-new .seo-new-hero__card-title {
    margin-bottom: 18px;
    font-size: 24px;
  }

  body.seo-page-new .seo-new-hero__card-text {
    margin-bottom: 14px;
    font-size: 18px;
    line-height: 1.15;
  }

  body.seo-page-new .seo-new-hero__card-link {
    margin-bottom: 28px;
    font-size: 18px;
  }

  body.seo-page-new .seo-new-hero__stats {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 0;
  }

  body.seo-page-new .seo-new-hero__stat {
    min-height: 100px;
    padding: 18px 20px 16px;
  }

  body.seo-page-new .seo-new-hero__stat-label {
    font-size: 18px;
  }

  body.seo-page-new .seo-new-hero__stat-value {
    font-size: 32px;
  }

  body.seo-page-new .seo-new-audit__container {
    gap: 40px;
    padding: 56px 20px;
  }

  body.seo-page-new .seo-new-audit__content {
    gap: 38px;
  }

  body.seo-page-new .seo-new-audit__title {
    font-size: 32px;
    line-height: 1.05;
  }

  body.seo-page-new .seo-new-audit__lead {
    font-size: 18px;
    line-height: 1.5;
    color: #8d8c92;
  }

  body.seo-page-new .seo-new-audit__list li {
    gap: 16px;
    margin-bottom: 22px;
    font-size: 18px;
  }

  body.seo-page-new .seo-new-audit__num {
    font-size: 18px;
  }

  body.seo-page-new .seo-new-audit__form-card {
    padding: 36px 22px 24px;
    border-radius: 24px;
  }

  body.seo-page-new .seo-new-audit__form-title {
    margin-bottom: 28px;
    font-size: 18px;
    line-height: 1.45;
  }

  body.seo-page-new .seo-new-audit__form {
    gap: 16px;
  }

  body.seo-page-new .seo-new-audit__field input {
    min-height: 50px;
    padding: 12px 18px;
    font-size: 18px;
  }

  body.seo-page-new .seo-new-audit__policy {
    font-size: 18px;
  }

  body.seo-page-new .seo-new-audit__submit {
    min-height: 50px;
    margin-top: 8px;
    font-size: 18px;
  }

  body.seo-page-new .seo-new-tariffs__container {
    padding: 56px 20px 64px;
    gap: 32px;
  }

  body.seo-page-new .seo-new-tariffs__title {
    font-size: 32px;
    line-height: 1.15;
  }

  body.seo-page-new .seo-new-tariffs__intro {
    gap: 20px;
    margin-bottom: 0;
  }

  body.seo-page-new .seo-new-tariffs__intro-text p,
  body.seo-page-new .seo-new-tariffs__note p,
  body.seo-page-new .seo-new-tariffs__modules-text p {
    font-size: 18px;
    line-height: 1.45;
  }

  body.seo-page-new .seo-new-tariffs__note {
    padding: 24px 22px;
    border-radius: 20px;
  }

  body.seo-page-new .seo-new-tariffs__cards {
    display: flex;
    flex-wrap: nowrap;
    gap: 12px;
    margin-bottom: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  body.seo-page-new .seo-new-tariffs__cards::-webkit-scrollbar {
    display: none;
  }

  body.seo-page-new .seo-new-tariffs__card {
    flex: 0 0 100%;
    min-height: 0;
    padding: 28px 24px 24px;
    border-radius: 24px;
    background: #1c1a25;
    color: #fff;
    scroll-snap-align: start;
  }

  body.seo-page-new .seo-new-tariffs__badge {
    border-color: rgba(255, 255, 255, 0.45);
    color: #fff;
    font-size: 18px;
    padding: 10px 14px;
  }

  body.seo-page-new .seo-new-tariffs__name {
    font-size: 28px;
  }

  body.seo-page-new .seo-new-tariffs__price {
    font-size: 36px;
    margin-bottom: 16px;
  }

  body.seo-page-new .seo-new-tariffs__price span {
    color: rgba(255, 255, 255, 0.5);
    font-size: 18px;
  }

  body.seo-page-new .seo-new-tariffs__desc {
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 18px;
  }

  body.seo-page-new .seo-new-tariffs__features {
    margin-bottom: 20px;
  }

  body.seo-page-new .seo-new-tariffs__features li {
    font-size: 18px;
  }

  body.seo-page-new .seo-new-tariffs__features span {
    color: rgba(255, 255, 255, 0.5);
  }

  body.seo-page-new .seo-new-tariffs__features strong {
    color: #fff;
  }

  body.seo-page-new .seo-new-tariffs__btn {
    min-height: 50px;
    border-color: #7437f1;
    background: #7437f1;
    color: #fff;
    font-size: 18px;
  }

  body.seo-page-new .seo-new-tariffs__pager,
  body.seo-page-new .seo-new-benefits__pager {
    display: flex;
    gap: 6px;
    margin: 0 0 40px;
  }

  body.seo-page-new .seo-new-tariffs__pager[hidden],
  body.seo-page-new .seo-new-benefits__pager[hidden] {
    display: none;
  }

  body.seo-page-new .seo-new-tariffs__pager-dot,
  body.seo-page-new .seo-new-benefits__pager-dot {
    flex: 1 1 0;
    height: 4px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: #e4e4e4;
    cursor: pointer;
  }

  body.seo-page-new .seo-new-tariffs__pager-dot.is-current,
  body.seo-page-new .seo-new-benefits__pager-dot.is-current {
    background: #7437f1;
  }

  body.seo-page-new .seo-new-tariffs__modules {
    gap: 20px;
  }

  body.seo-page-new .seo-new-tariffs__modules-title {
    font-size: 24px;
  }

  body.seo-page-new .seo-new-tariffs__module {
    min-height: 0;
    padding: 22px 20px;
    border-radius: 18px;
  }

  body.seo-page-new .seo-new-tariffs__module strong {
    font-size: 24px;
  }

  body.seo-page-new .seo-new-tariffs__module span {
    font-size: 18px;
  }

  body.seo-page-new .seo-new-board__container {
    padding: 56px 20px;
  }

  body.seo-page-new .seo-new-board__title {
    margin-bottom: 36px;
    font-size: 32px;
    line-height: 1.15;
  }

  body.seo-page-new .seo-new-board__lead {
    margin-bottom: 32px;
    font-size: 18px;
  }

  body.seo-page-new .seo-new-board__grid {
    gap: 40px;
  }

  body.seo-page-new .seo-new-board__item-title {
    margin-bottom: 14px;
    padding-bottom: 16px;
    font-size: 24px;
  }

  body.seo-page-new .seo-new-board__item-title::after {
    width: 100%;
  }

  body.seo-page-new .seo-new-board__text,
  body.seo-page-new .seo-new-board__result {
    font-size: 18px;
  }

  body.seo-page-new .seo-new-cases {
    display: flex;
    flex-direction: column;
  }

  body.seo-page-new .seo-new-cases > .row,
  body.seo-page-new .seo-new-cases__head {
    display: contents;
  }

  body.seo-page-new .seo-new-cases__title {
    order: 1;
    width: 100%;
    box-sizing: border-box;
    padding: 56px 20px 24px;
    font-size: 32px;
  }

  body.seo-page-new .seo-new-cases__grid {
    order: 2;
  }

  body.seo-page-new .seo-new-cases .seo-new-more {
    order: 3;
    align-self: center;
    margin: 28px auto 40px;
    font-size: 18px;
    padding-right: 100px;
  }

  body.seo-page-new .seo-new-more {
    margin-left: 0;
    font-size: 18px;
    padding-right: 100px;
  }

  body.seo-page-new .seo-new-more::after {
    width: 85px;
  }

  body.seo-page-new .seo-new-more:hover::after {
    width: 65px;
  }

  body.seo-page-new .seo-new-cases__meta {
    padding: 20px 20px 22px;
  }

  body.seo-page-new .seo-new-calc {
    overflow: hidden;
    overflow: clip;
  }

  body.seo-page-new .seo-new-calc__container {
    padding: 56px 20px;
  }

  body.seo-page-new .seo-new-calc__title {
    margin-bottom: 16px;
    font-size: 32px;
  }

  body.seo-page-new .seo-new-calc__lead {
    margin-bottom: 28px;
    font-size: 18px;
    line-height: 1.45;
  }

  body.seo-page-new .seo-new-calc__layout {
    gap: 28px;
  }

  body.seo-page-new .seo-new-calc__form {
    gap: 20px;
    padding: 24px 18px 20px;
    border-radius: 24px;
  }

  body.seo-page-new .seo-new-calc__label {
    font-size: 18px;
  }

  body.seo-page-new .seo-new-calc__select,
  body.seo-page-new .seo-new-calc__trigger {
    min-height: 50px;
    padding: 12px 44px 12px 18px;
    border-radius: 999px;
    font-size: 18px;
    background-position: right 16px center;
  }

  body.seo-page-new .seo-new-calc__hint {
    font-size: 18px;
    line-height: 1.4;
  }

  body.seo-page-new .seo-new-calc__result {
    padding: 28px 20px 24px;
    border-radius: 24px;
  }

  body.seo-page-new .seo-new-calc__name {
    font-size: 32px;
  }

  body.seo-page-new .seo-new-calc__price {
    font-size: 28px;
  }

  body.seo-page-new .seo-new-calc__desc,
  body.seo-page-new .seo-new-calc__features li {
    font-size: 18px;
  }

  body.seo-page-new .seo-new-calc__btn {
    min-height: 50px;
    font-size: 18px;
  }

  body.seo-page-new .seo-new-split__container {
    padding: 56px 20px;
  }

  body.seo-page-new .seo-new-split--pt .seo-new-split__container {
    padding-top: 24px;
  }

  body.seo-page-new .seo-new-split--pb .seo-new-split__container {
    padding-bottom: 56px;
  }

  body.seo-page-new .seo-new-split__title {
    font-size: 32px;
  }

  body.seo-page-new .seo-new-split__lead {
    margin-bottom: 28px;
    font-size: 18px;
  }

  body.seo-page-new .seo-new-split__layout {
    gap: 24px;
  }

  body.seo-page-new .seo-new-split__aside {
    padding: 24px 20px;
    border-radius: 20px;
  }

  body.seo-page-new .seo-new-split__aside-text,
  body.seo-page-new .seo-new-split__item-text,
  body.seo-page-new .seo-new-split__aside-link,
  body.seo-page-new .seo-new-split__item-title {
    font-size: 18px;
  }

  body.seo-page-new .seo-new-split__num {
    font-size: 18px;
  }

  body.seo-page-new .seo-new-topics__container {
    padding: 56px 20px;
  }

  body.seo-page-new .seo-new-topics__title {
    margin-bottom: 20px;
    font-size: 32px;
  }

  body.seo-page-new .seo-new-topics__lead {
    margin-bottom: 28px;
  }

  body.seo-page-new .seo-new-topics__lead p,
  body.seo-page-new .seo-new-topics__note {
    font-size: 18px;
  }

  body.seo-page-new .seo-new-topics__panel {
    padding: 24px 20px;
    border-radius: 20px;
    overflow: hidden;
  }

  body.seo-page-new .seo-new-topics__panel-title {
    margin-bottom: 20px;
    font-size: 20px;
  }

  body.seo-page-new .seo-new-topics__list {
    flex-wrap: nowrap;
    gap: 8px;
    margin: 0 -20px;
    padding: 0 20px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    overscroll-behavior-x: contain;
  }

  body.seo-page-new .seo-new-topics__list::-webkit-scrollbar {
    display: none;
  }

  body.seo-page-new .seo-new-topics__list li {
    flex: 0 0 auto;
  }

  body.seo-page-new .seo-new-topics__link {
    min-height: 44px;
    padding: 10px 16px;
    font-size: 18px;
    white-space: nowrap;
  }

  body.seo-page-new .seo-new-niche {
    width: calc(100% - 32px);
    max-width: 382px;
    padding: 28px 20px 24px;
    border-radius: 20px;
  }

  body.seo-page-new .seo-new-niche__title {
    font-size: 24px;
  }

  body.seo-page-new .seo-new-niche__lead,
  body.seo-page-new .seo-new-niche__policy {
    font-size: 18px;
  }

  body.seo-page-new .seo-new-niche__field input {
    min-height: 50px;
    font-size: 18px;
  }

  body.seo-page-new .seo-new-niche__submit {
    min-height: 50px;
    font-size: 18px;
  }

  body.seo-page-new .seo-new-clients__container,
  body.seo-page-new .seo-new-awards__container {
    padding: 56px 20px;
  }

  body.seo-page-new .seo-new-clients__title,
  body.seo-page-new .seo-new-awards__title {
    margin-bottom: 28px;
    font-size: 32px;
  }

  body.seo-page-new .seo-new-clients__list {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
    margin: 0 -20px;
    padding: 0 20px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    overscroll-behavior-x: contain;
  }

  body.seo-page-new .seo-new-clients__list::-webkit-scrollbar {
    display: none;
  }

  body.seo-page-new .seo-new-clients__list li {
    flex: 0 0 120px;
    width: 120px;
    max-width: 120px;
    height: 120px;
    max-height: 120px;
  }

  body.seo-page-new .seo-new-clients__logo {
    width: 120px;
    max-width: 120px;
    height: 120px;
    max-height: 120px;
    aspect-ratio: auto;
    object-fit: contain;
  }

  body.seo-page-new .seo-new-awards__grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 12px;
    margin: 0;
    padding: 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    overscroll-behavior-x: contain;
  }

  body.seo-page-new .seo-new-awards__grid::-webkit-scrollbar {
    display: none;
  }

  body.seo-page-new .seo-new-awards__item {
    flex: 0 0 82%;
    width: 82%;
    padding: 0;
    scroll-snap-align: start;
  }

  body.seo-page-new .seo-new-awards__item-title {
    font-size: 18px;
  }

  body.seo-page-new .seo-new-awards__text {
    font-size: 18px;
  }

  body.seo-page-new .seo-new-benefits__container {
    padding: 40px 20px 56px;
  }

  body.seo-page-new .seo-new-benefits__title {
    margin-bottom: 24px;
    font-size: 32px;
  }

  body.seo-page-new .seo-new-benefits__grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 12px;
    margin: 0 0 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  body.seo-page-new .seo-new-benefits__grid::-webkit-scrollbar {
    display: none;
  }

  body.seo-page-new .seo-new-benefits__item {
    flex: 0 0 100%;
    width: 100%;
    height: auto;
    padding: 24px 20px;
    border-color: #1c1a25;
    background: #fff;
    color: #111;
    scroll-snap-align: start;
  }

  body.seo-page-new .seo-new-benefits__item:hover,
  body.seo-page-new .seo-new-benefits__item:focus-within {
    border-color: #1c1a25;
    background: #fff;
    color: #111;
  }

  body.seo-page-new .seo-new-benefits__item:hover .seo-new-benefits__text,
  body.seo-page-new .seo-new-benefits__item:focus-within .seo-new-benefits__text {
    color: #707070;
  }

  body.seo-page-new .seo-new-benefits__item:hover .seo-new-benefits__link,
  body.seo-page-new .seo-new-benefits__item:focus-within .seo-new-benefits__link {
    color: #7437f1;
  }

  body.seo-page-new .seo-new-benefits__pager {
    margin: 0;
  }

  body.seo-page-new .seo-new-benefits__item-title {
    font-size: 20px;
  }

  body.seo-page-new .seo-new-benefits__text,
  body.seo-page-new .seo-new-benefits__link {
    font-size: 18px;
  }

  body.seo-page-new .seo-new-faq__container {
    padding: 56px 20px;
  }

  body.seo-page-new .seo-new-faq__title {
    margin-bottom: 24px;
    font-size: 32px;
  }

  body.seo-page-new .seo-new-faq__question {
    padding: 18px 0;
    font-size: 18px;
  }

  body.seo-page-new .seo-new-faq__answer {
    padding-left: 38px;
  }

  body.seo-page-new .seo-new-faq__answer p {
    font-size: 18px;
  }

  body.seo-page-new .seo-new-articles {
    display: flex;
    flex-direction: column;
    padding: 56px 20px;
  }

  body.seo-page-new .seo-new-articles > .row,
  body.seo-page-new .seo-new-articles__container,
  body.seo-page-new .seo-new-articles__head {
    display: contents;
  }

  body.seo-page-new .seo-new-articles__container {
    padding: 0;
  }

  body.seo-page-new .seo-new-articles__title {
    order: 1;
    width: 100%;
    margin-bottom: 28px;
    font-size: 32px;
  }

  body.seo-page-new .seo-new-articles__grid {
    order: 2;
  }

  body.seo-page-new .seo-new-articles .seo-new-more {
    order: 3;
    align-self: center;
    margin: 28px auto 0;
    font-size: 14px;
  }

  body.seo-page-new .seo-new-articles__item-title {
    font-size: 16px;
  }

  body.seo-page-new .seo-new-articles__text {
    font-size: 16px;
  }
}
