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

body {
  margin: 0;
  font-family: "Roboto", sans-serif;
  background: #fff;
  color: #1E1D30;
}

.hero__header-block {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: flow-root;
  padding: 40px clamp(16px, 10vw, 195px) 0;
  color: #fff;
  background: transparent;
  z-index: 1400;
}

.hero-shell {
  position: relative;
  overflow: hidden;
  background: radial-gradient(69.98% 149.28% at 69.98% 100%, #8C28DA 0%, #3B35BA 100%);
  color: #fff;
}

.hero {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 0;
  padding: 150px clamp(16px, 10vw, 195px) 0;
  color: #fff;
  background: transparent;
  z-index: 1;
  overflow: visible;
}

.hero-shell::before {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -330px;
  width: 980px;
  height: 980px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(
    circle,
    rgba(228, 72, 255, 0.6) 0%,
    rgba(173, 63, 249, 0.45) 34%,
    rgba(109, 56, 214, 0.23) 58%,
    rgba(59, 53, 186, 0) 82%
  );
}

.hero-shell::after {
  content: "";
  position: absolute;
  top: -508px;
  right: -10px;
  width: 1437px;
  height: 1295px;
  pointer-events: none;
  background: url("../img/hero-bird.svg") no-repeat center / contain;
}

.hero__top {
  position: relative;
  z-index: 1201;
  display: grid;
  grid-template-columns: minmax(250px, 1fr) auto auto;
  align-items: center;
  gap: 20px;
  margin-bottom: 0;
}

.hero__top.is-fixed,
.hero__top.is-detaching {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  width: 100%;
  margin-bottom: 0;
  padding: 14px clamp(16px, 10vw, 195px);
  background: #fff;
  backdrop-filter: none;
  box-shadow: 0 10px 24px rgba(30, 29, 48, 0.3);
}

.hero__top.is-fixed .hero__brand-text,
.hero__top.is-detaching .hero__brand-text,
.hero__top.is-fixed .hero__phone,
.hero__top.is-detaching .hero__phone {
  color: #1e1d30;
}

.hero__top.is-fixed .hero__messenger-link,
.hero__top.is-detaching .hero__messenger-link {
  border-color: rgba(59, 53, 186, 0.35);
  background: transparent;
}

.hero__top.is-fixed .hero__burger span,
.hero__top.is-detaching .hero__burger span {
  background: #1e1d30;
}

.hero__top.is-fixed .hero__header-btn,
.hero__top.is-detaching .hero__header-btn {
  color: #fff;
  background: linear-gradient(-45deg, #8c28da 0%, #3b35ba 100%);
  box-shadow: 0 10px 20px rgba(59, 53, 186, 0.25);
}

.hero__top.is-fixed {
  animation: heroHeaderAttach 0.28s ease forwards;
}

.hero__top.hero__top--no-attach-animation.is-fixed {
  animation: none;
}

.hero__top.is-detaching {
  animation: heroHeaderDetach 0.28s ease forwards;
  pointer-events: none;
}

@keyframes heroHeaderAttach {
  from {
    opacity: 0;
    transform: translateY(-18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroHeaderDetach {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-18px);
  }
}

.hero__brand {
  display: flex;
  align-items: center;
  gap: 22px;
}

.hero__logo-wrap {
  position: relative;
  display: block;
  width: min(274px, 100%);
  transition: width 0.25s ease;
}

.hero__logo {
  width: 100%;
  height: auto;
  display: block;
  transition: opacity 0.25s ease;
}

.hero__logo--colored {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
}

.hero__top.is-fixed .hero__logo--default,
.hero__top.is-detaching .hero__logo--default {
  opacity: 0;
}

.hero__top.is-fixed .hero__logo--colored,
.hero__top.is-detaching .hero__logo--colored {
  opacity: 1;
}

.hero__brand-text {
  margin: 20px 0 0;
  display: block;
  color: #fff;
  font-size: 16px;
  line-height: 1.17;
  white-space: nowrap;
}

.hero__phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  line-height: 1.3;
  white-space: nowrap;
}

.hero__phone-icon {
  display: none;
  width: 22px;
  height: 22px;
  background: url("../img/phone-gradient.svg") center / contain no-repeat;
}

.hero__contacts {
  display: grid;
  justify-items: end;
  gap: 4px;
}

.hero__messengers {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero__messenger-link {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.hero__messenger-link img {
  width: 28px;
  height: 28px;
  display: block;
}

.hero__header-btn,
.hero__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  text-decoration: none;
  color: #1e1d30;
  background: linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, 0.8) 100%);
  box-shadow: 0 10px 20px rgba(30, 29, 48, 0.3);
  cursor: pointer;
}

.hero__header-btn {
  padding: 14px 20px;
  font-size: 18px;
  line-height: 1.3;
  white-space: nowrap;
}

.hero__burger {
  display: none;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.12);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hero__burger span {
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: #fff;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.hero__menu-backdrop,
.hero__mobile-menu {
  display: none;
}

.hero__mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(360px, 86vw);
  padding: 88px 16px 24px;
  background: #fff;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 1201;
}

.hero__menu-nav {
  display: grid;
  gap: 14px;
  margin-bottom: 24px;
}

.hero__menu-link {
  color: #1e1d30;
  text-decoration: none;
  font-size: 18px;
  line-height: 1.3;
  border-radius: 6px;
  padding: 4px 6px;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.hero__menu-link:hover {
  color: #3b35ba;
  background: rgba(59, 53, 186, 0.08);
}

.hero__menu-contacts {
  display: grid;
  justify-items: start;
  gap: 8px;
  margin-top: 14px;
  margin-bottom: 20px;
}

.hero__menu-phone {
  color: #1e1d30;
  text-decoration: none;
  font-size: 18px;
  line-height: 1.3;
  font-weight: 700;
}

.hero__menu-messengers {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero__menu-messenger-link {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.hero__menu-messenger-link img {
  width: 26px;
  height: 26px;
  display: block;
}

.hero__menu-cta {
  width: 100%;
  min-height: 56px;
  border-radius: 7px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #fff;
  font-size: 17px;
  line-height: 1.25;
  background: linear-gradient(-45deg, #8c28da 0%, #3b35ba 100%);
  box-shadow: 0 10px 20px rgba(59, 53, 186, 0.25);
}

.hero__body {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(320px, 780px) minmax(280px, 1fr);
  gap: 30px;
  align-items: end;
}

.hero__left {
  padding-bottom: 90px;
}

.hero__title {
  margin: 0 0 40px;
  font-size: clamp(32px, 4vw, 55px);
  line-height: 1.3;
}

.hero__features {
  display: grid;
  grid-template-columns: repeat(2, minmax(280px, 340px));
  gap: 20px;
  max-width: 700px;
  margin-bottom: 42px;
}

.feature {
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 101px;
  padding: 20px 28px;
  border-radius: 7px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0.03) 85%);
}

.feature__icon {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
}

.feature__text b,
.feature__text span {
  display: block;
}

.feature__text b {
  margin-bottom: 2px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.25;
}

.feature__text span {
  font-size: 18px;
  line-height: 1.3;
  opacity: 0.98;
}

.hero__cta {
  min-height: 72px;
  min-width: 360px;
  padding: 18px 24px;
  font-size: 21px;
  line-height: 1.3;
}

.hero__note {
  margin: 20px 0 0;
  max-width: 360px;
  font-size: 16px;
  line-height: 1.3;
  text-align: center;
  opacity: 0.7;
}

.hero__right {
  position: relative;
  min-height: 746px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  --hero-person-shift: 0px;
}

.hero__person {
  position: absolute;
  left: var(--hero-person-shift);
  right: auto;
  bottom: 0;
  height: auto;
}

@media (max-width: 1600px) and (min-width: 1201px) {
  .hero__right {
    --hero-person-shift: calc((1600px - 100vw) * -0.2);
  }
}

.hero__badge {
  position: absolute;
  left: calc(20px + var(--hero-person-shift));
  bottom: 72px;
  min-width: 205px;
  border-radius: 20px 0 20px 20px;
  padding: 12px 20px;
  background: linear-gradient(45deg, #fff 0%, #edd7ff 100%);
}

.hero__badge b {
  display: block;
  color: #1e1d30;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.25;
}

.hero__badge span {
  display: block;
  color: #5f447f;
  font-size: 16px;
  line-height: 1.3;
}

@media (max-width: 1200px) {
  .hero__top.is-fixed,
  .hero__top.is-detaching {
    animation: none;
  }

  .hero__brand-text {
    display: none;
  }

  .hero__logo-wrap {
    width: min(200px, 100%);
  }

  .hero {
    display: block;
    padding: 130px 25px 40px;
  }

  .hero__header-block {
    padding: 30px 25px 0;
  }

  .hero-shell::before {
    width: 700px;
    height: 700px;
    right: -160px;
    bottom: -260px;
  }

  .hero-shell::after {
    top: -350px;
    right: -220px;
    width: 1000px;
    height: 900px;
  }

  .hero__top {
    grid-template-columns: minmax(220px, 1fr) auto auto;
    grid-template-areas:
      "brand contacts burger";
    justify-items: stretch;
    margin-bottom: 90px;
    gap: 10px;
    align-items: center;
  }

  .hero__brand {
    grid-area: brand;
    align-self: center;
    align-items: center;
  }

  .hero__contacts {
    grid-area: contacts;
    justify-items: end;
    gap: 6px;
    align-self: center;
    align-items: center;
  }

  .hero__messengers {
    align-items: center;
  }

  .hero__phone {
    align-items: center;
    justify-content: center;
  }

  .hero__burger {
    grid-area: burger;
    justify-self: end;
    align-self: center;
    margin-left: 8px;
    display: inline-flex;
  }

  .hero__top.is-fixed,
  .hero__top.is-detaching {
    padding: 12px 25px;
    grid-template-columns: minmax(180px, 1fr) auto auto;
    grid-template-areas: "brand phone button";
    column-gap: 12px;
    row-gap: 0;
    justify-items: stretch;
    align-items: center;
  }

  .hero__top.is-fixed .hero__brand,
  .hero__top.is-detaching .hero__brand {
    grid-area: brand;
  }

  .hero__top.is-fixed .hero__contacts,
  .hero__top.is-detaching .hero__contacts {
    grid-area: phone;
    justify-self: end;
  }

  .hero__top.is-fixed .hero__header-btn,
  .hero__top.is-detaching .hero__header-btn {
    grid-area: button;
    justify-self: end;
    padding: 10px 14px;
    font-size: 16px;
    line-height: 1.25;
    white-space: nowrap;
  }

  .hero__top:not(.is-fixed):not(.is-detaching) .hero__header-btn {
    display: none;
  }

  .hero__top.is-fixed .hero__burger,
  .hero__top.is-detaching .hero__burger {
    display: none;
  }

  .hero__menu-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(17, 17, 25, 0.35);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    will-change: opacity;
    transition: none;
    z-index: 1200;
    display: block;
  }

  .hero__mobile-menu {
    display: block;
    visibility: hidden;
    pointer-events: none;
    transform: translate3d(100%, 0, 0);
    backface-visibility: hidden;
    contain: layout paint;
    transition: none;
  }

  body.menu-animations-ready .hero__menu-backdrop {
    transition: opacity 0.22s ease, visibility 0s linear 0.22s;
  }

  body.menu-animations-ready .hero__mobile-menu {
    transition: transform 0.28s cubic-bezier(0.22, 0.61, 0.36, 1);
  }

  body.menu-open {
    overscroll-behavior: none;
  }

  body.menu-open .hero__menu-backdrop {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    backdrop-filter: blur(4px);
    transition: opacity 0.22s ease, visibility 0s linear 0s;
    z-index: 1100;
  }

  body.menu-open .hero__mobile-menu {
    visibility: visible;
    pointer-events: auto;
    transform: translate3d(0, 0, 0);
  }

  body.menu-open .hero__top {
    z-index: 1302;
  }

  body.menu-open .hero__top.is-detaching {
    pointer-events: auto;
  }

  body.menu-open .hero__top.is-fixed,
  body.menu-open .hero__top.is-detaching,
  body.menu-open .hero__top {
    grid-template-columns: minmax(0, 1fr) auto auto;
    grid-template-areas: "brand contacts burger";
    row-gap: 0;
    animation: none;
    opacity: 1;
    transform: translateY(0);
  }

  body.menu-open .hero__top.is-fixed .hero__contacts,
  body.menu-open .hero__top.is-detaching .hero__contacts,
  body.menu-open .hero__top .hero__contacts {
    grid-area: contacts;
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  body.menu-open .hero__top.is-fixed .hero__burger,
  body.menu-open .hero__top.is-detaching .hero__burger,
  body.menu-open .hero__top .hero__burger {
    display: inline-flex;
    grid-area: burger;
    justify-self: end;
    margin-left: 8px;
  }

  body.menu-open .hero__burger span {
    background: #1e1d30;
  }

  body.menu-open .hero__burger {
    background: rgba(59, 53, 186, 0.12);
  }

  body.menu-open .hero__burger span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  body.menu-open .hero__burger span:nth-child(2) {
    opacity: 0;
  }

  body.menu-open .hero__burger span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero__header-btn {
    white-space: normal;
  }

  .hero__body {
    grid-template-columns: minmax(0, 560px) minmax(0, 1fr);
    gap: 0;
    align-items: stretch;
  }

  .hero__left {
    padding-bottom: 0;
  }

  .hero__title {
    width: calc(100vw - 32px);
    max-width: none;
  }

  .hero__features {
    max-width: 100%;
    gap: 12px;
    margin-bottom: 24px;
    grid-template-columns: 1fr;
  }

  .hero__right {
    --hero-person-right-shift: -35%;
    min-height: 0;
    height: 100%;
    align-self: stretch;
    justify-self: stretch;
  }

  .hero__person {
    right: var(--hero-person-right-shift);
    margin: 0;
    left: auto;
    bottom: -40px;
    width: 565px;
    max-width: none;
  }

  .hero__badge {
    left: auto;
    right: calc(var(--hero-person-right-shift) + 250px);
    bottom: 0;
  }
}

@media (max-width: 1140px) {
  .hero__right {
    --hero-person-right-shift: calc(-35% + -60px);
  }
}

@media (max-width: 1368px) and (min-width: 1201px) {
  .hero__body {
    grid-template-columns: minmax(320px, 560px) minmax(320px, 1fr);
    gap: 16px;
  }

  .hero__person {
    left: auto;
    right: -45%;
  }

  .hero__title {
    width: max-content;
    max-width: calc(100vw - 80px);
  }

  .hero__features {
    grid-template-columns: 1fr;
    max-width: 340px;
    gap: 12px;
  }
}

@media (max-width: 767px) {
  .hero__top {
    grid-template-columns: minmax(0, 1fr) auto auto;
    grid-template-areas: "brand contacts burger";
    column-gap: 6px;
  }

  .hero__logo-wrap {
    width: min(150px, 100%);
  }

  .hero__brand {
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: flex-start;
    align-self: center;
    gap: 0;
  }

  .hero__brand-text {
    margin: 6px 0 0;
    text-align: left;
    color: #fff;
    font-size: 16px;
    line-height: 1.2;
    white-space: nowrap;
  }

  .hero__contacts {
    display: flex;
    align-items: center;
    align-self: center;
    justify-self: end;
    gap: 8px;
  }

  .hero__messengers {
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .hero__messenger-link {
    align-items: center;
    justify-content: center;
  }

  .hero__burger {
    width: 38px;
    height: 38px;
    align-self: center;
  }

  .hero__top.is-fixed,
  .hero__top.is-detaching {
    grid-template-columns: minmax(0, 1fr) auto auto;
    grid-template-areas: "brand phone burger";
  }

  .hero__top.is-fixed .hero__header-btn,
  .hero__top.is-detaching .hero__header-btn {
    display: none;
  }

  .hero__top.is-fixed .hero__burger,
  .hero__top.is-detaching .hero__burger {
    display: inline-flex;
    grid-area: burger;
    justify-self: end;
    margin-left: 8px;
  }

  .hero__features {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .feature {
    padding: 16px 18px;
    gap: 18px;
  }

  .hero__cta {
    width: 100%;
    min-width: 0;
    min-height: 60px;
    font-size: 18px;
  }

  .hero__note {
    max-width: 100%;
  }

  .hero__right {
    min-height: 390px;
  }
}

@media (max-width: 920px) {
  .hero__body {
    grid-template-columns: minmax(0, 1fr) minmax(240px, 330px);
    grid-template-areas:
      "title title"
      "features features"
      "cta person"
      "note person";
    column-gap: 0;
    row-gap: 10px;
    align-items: stretch;
  }

  .hero__left {
    display: contents;
  }

  .hero__title {
    grid-area: title;
    width: 100%;
    max-width: none;
  }

  .hero__features {
    grid-area: features;
    grid-template-columns: repeat(2, minmax(180px, 1fr));
    gap: 10px;
    width: 100%;
    max-width: none;
    margin: 0 0 10px;
  }

  .hero__cta {
    grid-area: cta;
    align-self: end;
    position: relative;
    z-index: 4;
  }

  .hero__note {
    grid-area: note;
    align-self: start;
    max-width: 360px;
    position: relative;
    z-index: 4;
  }

  .hero__right {
    grid-area: person;
    --hero-person-right-shift: -8%;
    --hero-person-w: clamp(255px, 37.5vw, 345px);
    --hero-badge-w: 205px;
    min-height: 360px;
    z-index: 1;
  }

  .hero__person {
    width: var(--hero-person-w);
  }

  .hero__badge {
    left: auto;
    right: calc(var(--hero-person-right-shift) + 90px);
    width: var(--hero-badge-w);
    min-width: var(--hero-badge-w);
  }

  .hero__badge b {
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  .hero__title br {
    display: none;
  }

  .hero__body {
    grid-template-columns: 1fr;
    grid-template-areas:
      "title"
      "features"
      "cta"
      "note"
      "person";
    row-gap: 10px;
  }

  .hero__features {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hero__cta,
  .hero__note {
    justify-self: center;
    text-align: center;
  }

  .hero__cta {
    width: 300px;
    min-width: 300px;
    margin-top: 60px;
  }

  .hero__right {
    justify-self: center;
    width: 100%;
    min-height: 430px;
  }

  .hero__person {
    width: clamp(320px, 62vw, 420px);
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    bottom: -40px;
  }

  .hero__badge {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    bottom: 0;
  }
}

@media (max-width: 620px) {
  .hero__logo-wrap {
    width: min(132px, 100%);
  }

  .hero__phone-text {
    display: none;
  }

  .hero__phone-icon {
    display: block;
    margin: 0;
    background-position: center center;
  }

  .hero__phone {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #fff;
    flex-shrink: 0;
  }

  .hero__phone::after {
    content: "";
    position: absolute;
    right: -1px;
    top: -1px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #2bd56f;
    border: 1px solid #fff;
    box-shadow: 0 0 0 rgba(43, 213, 111, 0.45);
    animation: phoneOnlinePulse 1.8s ease-out infinite;
  }
}

@keyframes phoneOnlinePulse {
  0% {
    box-shadow: 0 0 0 0 rgba(43, 213, 111, 0.45);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(43, 213, 111, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(43, 213, 111, 0);
  }
}

@media (max-width: 500px) {
  .hero__phone,
  .feature__text span {
    font-size: 16px;
  }

  .feature__text b {
    font-size: 21px;
  }

  .hero__header-btn {
    font-size: 16px;
    line-height: 1.25;
  }

  .hero__person {
    width: min(100%, 360px);
  }

  .hero__badge {
    min-width: 180px;
    padding: 10px 14px;
  }

  .hero__badge b {
    font-size: 16px;
  }

  .hero__badge span {
    font-size: 16px;
  }
}

/* Quiz block */
.quiz {
  background: #f5f6fa;
  padding: var(--section-v-space) 16px;
}

.quiz__title {
  margin: 0 auto;
  width: min(100%, 980px);
  text-align: center;
  color: #3b35ba;
  font-size: clamp(34px, 4vw, 55px);
  line-height: 1.24;
  font-weight: 700;
}

.quiz__subtitle {
  margin: 18px auto 60px;
  width: min(100%, 980px);
  text-align: center;
  color: #1e1d30;
  font-size: clamp(18px, 1.6vw, 24px);
  line-height: 1.3;
}

.quiz [data-marquiz-id] {
  width: min(100%, 1200px);
  margin: 30px auto 0;
}

@media (max-width: 767px) {
  .quiz {
    padding-left: 12px;
    padding-right: 12px;
  }

  .quiz__title {
    font-size: 34px;
  }

  .quiz__subtitle {
    margin-top: 12px;
    font-size: 16px;
  }

  .quiz [data-marquiz-id] {
    margin-top: 20px;
  }
}

/* Second block: responsive */
.freedom {
  background: #f3f2ff;
  overflow: hidden;
}

.freedom__canvas {
  position: relative;
  width: 100%;
  max-width: 1920px;
  min-height: 890px;
  margin: 0 auto;
  padding: 76px clamp(16px, 10vw, 195px) 92px;
  display: grid;
  grid-template-columns: minmax(280px, 620px) minmax(420px, 945px);
  grid-template-areas:
    "title title"
    "photo content";
  column-gap: clamp(28px, 6vw, 120px);
  row-gap: 0;
  align-items: start;
}

.freedom__content {
  grid-area: content;
  max-width: 945px;
  min-width: 0;
  order: 2;
}

.freedom__title {
  grid-area: title;
  justify-self: center;
  margin: 0 auto 44px;
  max-width: 752px;
  font-size: clamp(36px, 3.2vw, 55px);
  line-height: 1.3;
  font-weight: 700;
  color: #3b35ba;
  text-align: center;
}

.freedom__law {
  width: 100%;
  min-height: 110px;
  display: flex;
  align-items: flex-start;
  gap: 30px;
  padding: 30px 40px;
  border-radius: 5px 0 0 5px;
  background: linear-gradient(-45deg, #8c28da 0%, #3b35ba 100%);
  box-shadow: 0 10px 20px rgba(59, 53, 186, 0.3);
}

.freedom__law-icon {
  width: 11px;
  height: 50px;
  flex: 0 0 11px;
}

.freedom__law-text {
  flex: 1;
  width: auto;
  margin: 0;
  font-size: 18px;
  line-height: 1.3;
  color: #fff;
}

.freedom__line {
  margin: 0;
  font-size: 24px;
  line-height: 1.3;
  color: #1e1d30;
}

.freedom__line--first {
  margin-top: 60px;
  max-width: 732px;
}

.freedom__line--second {
  margin-top: 50px;
  max-width: 567px;
}

.freedom__types {
  margin-top: 30px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
}

.freedom__type {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  line-height: 1.3;
  white-space: nowrap;
}

.freedom__type--credit {
  color: #3b35ba;
}

.freedom__type--micro {
  color: #6028d1;
}

.freedom__type--tax {
  color: #8c28da;
}

.freedom__type--housing {
  color: #9e1f88;
}

.freedom__type img {
  width: 29px;
  height: 24px;
}

.freedom__result {
  margin-top: 44px;
  width: min(720px, 100%);
  min-height: 64px;
  display: flex;
  align-items: flex-start;
  gap: 30px;
}

.freedom__result-icon {
  width: 54px;
  height: 60px;
  flex: 0 0 54px;
  margin-top: 2px;
}

.freedom__result-text {
  width: auto;
  flex: 1;
  margin: 0;
  font-size: 24px;
  line-height: 1.3;
  color: #3b35ba;
  font-weight: 700;
}

.freedom__photo {
  grid-area: photo;
  margin: 0;
  order: 1;
}

.freedom__photo-img {
  display: block;
  width: min(620px, 100%);
  height: auto;
  aspect-ratio: 62 / 47;
  object-fit: cover;
  border-radius: 7px;
  box-shadow: 0 15px 30px rgba(30, 29, 48, 0.3);
}

.freedom__photo-caption {
  margin-top: 20px;
  font-size: 18px;
  line-height: 1.3;
  color: #555560;
}

.freedom__details {
  width: min(945px, 100%);
  min-width: 0;
}

    .freedom__notice {
      margin: 30px auto 0 auto;
      padding: 35px;
      border-radius: 12px;
      background: #f7f1ff;
      border: 1px solid rgba(106, 46, 204, 0.2);
      box-shadow: 0 6px 18px rgba(77, 30, 153, 0.06);
	   grid-column: 1 / -1;
	  max-width: 720px;
    }
    .freedom__notice-text {
      font-size: 16px;
      line-height: 1.3;
      color: #4f4f5f;
    }

@media (max-width: 1400px) {
  .freedom__canvas {
    grid-template-columns: minmax(280px, 500px) minmax(420px, 1fr);
    padding-top: 62px;
    padding-bottom: 72px;
    column-gap: clamp(20px, 3.2vw, 40px);
  }

  .freedom__photo {
    margin-top: 0;
  }

  .freedom__line {
    font-size: 22px;
  }

  .freedom__result-text {
    font-size: 22px;
  }
}

@media (max-width: 1200px) {
  .freedom__canvas {
    grid-template-columns: minmax(0, 460px) minmax(0, 1fr);
    padding: 56px 16px 64px;
  }

  .freedom__photo {
    margin-top: 0;
  }

  .freedom__title {
    margin-bottom: 34px;
  }

  .freedom__line--first {
    margin-top: 42px;
  }

  .freedom__line--second {
    margin-top: 36px;
  }

  .freedom__types {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 12px 16px;
  }

  .freedom__result {
    margin-top: 34px;
  }
}

@media (max-width: 992px) {
  .freedom__canvas {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "title"
      "content"
      "photo";
    row-gap: 28px;
    min-height: 0;
    padding-top: 48px;
    padding-bottom: 56px;
  }

  .freedom__photo {
    order: 2;
    margin-top: 0;
    max-width: 620px;
  }

  .freedom__title {
    margin-bottom: 26px;
    line-height: 1.24;
    text-align: center;
  }

  .freedom__content {
    order: 1;
  }

  .freedom__law {
    border-radius: 7px;
  }

  .freedom__line {
    font-size: 21px;
  }

  .freedom__result-text {
    font-size: 21px;
  }
}

@media (max-width: 768px) {
  .freedom__canvas {
    padding: 44px 12px 50px;
    row-gap: 24px;
  }

  .freedom__law {
    min-height: 0;
    gap: 14px;
    padding: 20px 16px;
  }

  .freedom__law-icon {
    height: 42px;
  }

  .freedom__law-text {
    font-size: 16px;
  }

  .freedom__line {
    font-size: 19px;
  }

  .freedom__line--first {
    margin-top: 24px;
  }

  .freedom__types {
    margin-top: 20px;
    gap: 10px 14px;
  }

  .freedom__type {
    font-size: 16px;
  }

  .freedom__line--second {
    margin-top: 24px;
  }

  .freedom__result {
    margin-top: 26px;
  }

  .freedom__result-icon {
    width: 44px;
    height: 49px;
  }

  .freedom__result-text {
    font-size: 19px;
  }
}

@media (max-width: 560px) {
  .freedom__title {
    font-size: 30px;
    margin-bottom: 20px;
  }

  .freedom__line {
    font-size: 17px;
  }

  .freedom__type {
    font-size: 16px;
  }

  .freedom__type img {
    width: 24px;
    height: 20px;
  }

  .freedom__result {
    min-height: 0;
    gap: 10px;
  }

  .freedom__result-icon {
    width: 40px;
    height: 45px;
    flex-basis: 40px;
    margin-top: 0;
  }

  .freedom__result-text {
    font-size: 17px;
  }

  .freedom__photo-caption {
    margin-top: 12px;
    font-size: 16px;
  }
}

/* Third block: responsive */
.journey {
  background: #e5ecf8;
}

.journey__canvas {
  --journey-axis-x: 95px;
  --journey-card-gap: 72px;
  --journey-first-step-half: 116px;
  --journey-last-step-half: 105px;
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(54px, 6vw, 110px) clamp(16px, 4vw, 28px) clamp(56px, 7vw, 96px);
}

.journey__bg-shape {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  pointer-events: none;
}

.journey__title {
  position: relative;
  z-index: 1;
  margin: 0 auto clamp(30px, 3.5vw, 50px);
  max-width: 930px;
  font-size: clamp(34px, 4vw, 55px);
  line-height: 1.26;
  font-weight: 700;
  color: #3b35ba;
  text-align: center;
}

.journey__line {
  display: none;
}

.journey-step {
  position: relative;
  z-index: 1;
  margin-left: calc(var(--journey-axis-x) + var(--journey-card-gap));
  margin-bottom: 18px;
  min-height: 232px;
  padding: 24px 28px;
  display: flex;
  align-items: stretch;
  gap: 24px;
}

.journey-step::before {
  content: "";
  position: absolute;
  left: calc((var(--journey-card-gap) * -1) - 1px);
  top: -18px;
  bottom: -18px;
  width: 2px;
  background: repeating-linear-gradient(
    to bottom,
    #3b35ba 0 6px,
    transparent 6px 12px
  );
  opacity: 0.3;
  z-index: 0;
}

.journey-step:first-of-type::before {
  top: 50%;
}

.journey-step:last-of-type::before {
  bottom: 50%;
}

.journey-step:last-child {
  margin-bottom: 0;
}

.journey-step__card {
  position: absolute;
  inset: 0;
  border-radius: 7px;
  background: linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, 0.7) 100%);
}

.journey-step__circle {
  position: absolute;
  left: calc((var(--journey-card-gap) + 40px) * -1);
  top: 50%;
  transform: translateY(-50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(-45deg, #8c28da 0%, #3b35ba 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.journey-step__circle span {
  font-size: 24px;
  line-height: 1.3;
  font-weight: 700;
  color: #fff;
}

.journey-step__left {
  position: relative;
  z-index: 1;
  flex: 0 0 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100%;
}

.journey-step__icon {
  width: 120px;
  height: 120px;
}

.journey-step__right {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.journey-step__heading,
.journey-step__text,
.journey-step__badge,
.journey-step__result {
  position: relative;
  z-index: 1;
}

.journey-step__heading {
  margin: 0;
  font-size: 24px;
  line-height: 1.3;
  font-weight: 700;
  color: #3b35ba;
}

.journey-step__text {
  margin: 10px 0 0;
  font-size: 18px;
  line-height: 1.3;
  color: #1e1d30;
}

.journey-step__badge {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 16px;
  border-radius: 20px;
  background: #e5ecf8;
  color: #3b35ba;
  font-size: 16px;
  line-height: 1.3;
  white-space: nowrap;
}

.journey-step__result {
  margin-top: 10px;
  padding: 10px 16px;
  border-radius: 7px;
  background: #e5ecf8;
  color: #1e1d30;
  font-size: 18px;
  line-height: 1.3;
}

.journey-step--5,
.journey-step--6 {
  min-height: 210px;
}

.journey-step__result--final {
  font-size: 24px;
  line-height: 1.3;
}

@media (max-width: 1024px) {
  .journey__canvas {
    --journey-axis-x: 70px;
    --journey-card-gap: 56px;
    --journey-first-step-half: 105px;
    --journey-last-step-half: 105px;
    padding-bottom: 68px;
  }

  .journey-step {
    padding: 20px 18px;
    min-height: 210px;
  }

  .journey-step__left {
    flex-basis: 96px;
  }

  .journey-step__icon {
    width: 96px;
    height: 96px;
  }

  .journey-step__circle {
    width: 68px;
    height: 68px;
    left: calc((var(--journey-card-gap) + 34px) * -1);
  }

  .journey-step__circle span {
    font-size: 20px;
  }

  .journey-step__heading {
    font-size: 22px;
  }

  .journey-step__text,
  .journey-step__result {
    font-size: 17px;
  }
}

@media (max-width: 767px) {
  .journey__canvas {
    --journey-axis-x: 36px;
    --journey-card-gap: 34px;
    padding: 44px 12px 50px;
  }

  .journey__title {
    text-align: left;
    max-width: 100%;
    margin-bottom: 24px;
    line-height: 1.24;
  }

  .journey-step::before {
    left: calc((var(--journey-card-gap) * -1) - 1px);
    top: -14px;
    bottom: -14px;
  }

  .journey-step:first-of-type::before {
    top: 44px;
  }

  .journey-step:last-of-type::before {
    bottom: calc(100% - 44px);
  }

  .journey-step {
    margin-left: calc(var(--journey-axis-x) + var(--journey-card-gap));
    min-height: 168px;
    padding: 16px 12px;
    display: flex;
    gap: 12px;
  }

  .journey-step__left {
    flex: 0 0 64px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100%;
    margin-bottom: 0;
  }

  .journey-step__circle {
    position: absolute;
    width: 56px;
    height: 56px;
    left: calc((var(--journey-card-gap) + 28px) * -1);
    top: 16px;
    transform: none;
  }

  .journey-step__circle span {
    font-size: 18px;
  }

  .journey-step__icon {
    position: static;
    width: 64px;
    height: 64px;
  }

  .journey-step__badge {
    margin-top: auto;
  }

  .journey-step__heading {
    font-size: 20px;
  }

  .journey-step__text,
  .journey-step__result {
    font-size: 16px;
  }
}

@media (max-width: 520px) {
  .journey-step {
    display: block;
    padding: 16px 12px;
  }

  .journey-step__left {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    min-height: 0;
    margin-bottom: 12px;
  }

  .journey-step__icon {
    width: 56px;
    height: 56px;
    flex: 0 0 56px;
  }

  .journey-step__badge {
    margin-top: 0;
  }

  .journey-step__right {
    width: 100%;
  }

  .journey-step__heading {
    font-size: 18px;
  }

  .journey-step__text,
  .journey-step__result {
    font-size: 16px;
  }
}

/* Fourth block: responsive */
.pricing {
  background: linear-gradient(-45deg, #8c28da 0%, #3b35ba 100%);
}

.pricing__canvas {
  position: relative;
  max-width: 1920px;
  margin: 0 auto;
  padding: clamp(56px, 7vw, 120px) clamp(16px, 5vw, 195px) clamp(56px, 8vw, 100px);
  display: grid;
  grid-template-columns: minmax(280px, 946px) minmax(300px, 620px);
  grid-template-areas:
    "title title"
    "image amount"
    "image note"
    "image help"
    "image cta";
  column-gap: clamp(24px, 4vw, 60px);
  row-gap: clamp(10px, 1.2vw, 16px);
  align-items: start;
}

.pricing__title {
  grid-area: title;
  margin: 0 auto clamp(10px, 1.3vw, 18px);
  max-width: 1275px;
  text-align: center;
  color: #fff;
  font-size: clamp(34px, 4vw, 55px);
  line-height: 1.24;
  font-weight: 700;
}

.pricing__image-wrap {
  grid-area: image;
  align-self: stretch;
  min-height: 560px;
  border-radius: 0 7px 7px 0;
  overflow: hidden;
}

.pricing__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  display: block;
}

.pricing__headline {
  grid-area: amount;
  justify-self: start;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 14px;
}

.pricing__amount {
  margin: 0;
  color: #fff;
  font-size: clamp(36px, 3.4vw, 55px);
  line-height: 1.2;
  font-weight: 700;
}

.pricing__monthly-tag {
  padding: 12px 20px;
  border-radius: 7px;
  background: linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, 0.7) 100%);
  color: #1e1d30;
  font-size: clamp(18px, 1.5vw, 24px);
  line-height: 1.3;
  margin-top: -8px;
}

.pricing__note {
  grid-area: note;
  border-radius: 7px;
  background: rgba(30, 29, 48, 0.9);
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 22px 26px;
  margin-top: 4px;
}

.pricing__note-icon {
  width: 38.62px;
  height: 30px;
  flex: 0 0 38.62px;
}

.pricing__note-text {
  margin: 0;
  color: #fff;
  font-size: clamp(16px, 1.15vw, 18px);
  line-height: 1.3;
}

.pricing__help-text {
  grid-area: help;
  margin: 2px 0 0;
  color: #fff;
  font-size: clamp(16px, 1.15vw, 18px);
  line-height: 1.3;
  padding-left: 72px;
  max-width: 560px;
}

.pricing__arrow {
  grid-area: help;
  align-self: start;
  justify-self: start;
  width: 44px;
  height: 60px;
  margin-top: 0;
  margin-right: 0;
}

.pricing__line {
  grid-area: cta;
  align-self: start;
  justify-self: start;
  width: 71px;
  height: 109px;
  margin-top: -60px;
  margin-left: calc(clamp(248px, 22vw, 314px) + 100px);
}

.pricing__cta {
  grid-area: cta;
  justify-self: start;
  min-height: 72px;
  min-width: 360px;
  padding: 18px 24px;
  border-radius: 7px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #1e1d30;
  text-decoration: none;
  font-size: 21px;
  line-height: 1.3;
  background: linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, 0.8) 100%);
  box-shadow: 0 10px 20px rgba(30, 29, 48, 0.3);
  margin-top: -2px;
}

.pricing__case {
  grid-area: image;
  align-self: end;
  justify-self: end;
  border-radius: 7px;
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 12px 20px;
  background: rgba(30, 29, 48, 0.9);
  margin: 0;
}

.pricing__case-icon {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
}

.pricing__case-text {
  margin: 0;
  color: #fff;
  font-size: 16px;
  line-height: 1.3;
}

@media (max-width: 1300px) {
  .pricing__canvas {
    grid-template-columns: minmax(300px, 1fr) minmax(250px, 470px);
    grid-template-areas:
      "title title"
      "image amount"
      "image note"
      "image help"
      "image cta";
    row-gap: 16px;
  }

  .pricing__image-wrap {
    min-height: 480px;
  }

  .pricing__help-text {
    max-width: 420px;
  }

  .pricing__cta {
    min-width: 0;
    width: 320px;
    max-width: 100%;
    margin-top: 2px;
  }

  .pricing__amount {
    font-size: clamp(34px, 4.2vw, 48px);
  }

  .pricing__monthly-tag {
    margin-top: -4px;
    font-size: clamp(17px, 1.8vw, 21px);
  }

  .pricing__note {
    padding: 18px 18px;
    gap: 14px;
  }

  .pricing__note-icon {
    width: 30px;
    height: 24px;
    flex-basis: 30px;
  }

  .pricing__line {
    margin-left: calc(clamp(275px, 22vw, 314px) + 72px);
  }
}

@media (max-width: 992px) {
  .pricing__canvas {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "title"
      "amount"
      "note"
      "help"
      "cta"
      "image"
      "case";
    row-gap: 30px;
  }

  .pricing__line {
    display: none;
  }

  .pricing__arrow {
    grid-area: help;
    align-self: start;
    justify-self: start;
    margin: 0;
  }

  .pricing__image-wrap {
    border-radius: 7px;
    min-height: 0;
    aspect-ratio: 946 / 560;
  }

  .pricing__help-text {
    max-width: 680px;
    margin-top: 0;
  }

  .pricing__cta {
    width: 360px;
    font-size: 16px;
    margin-top: 0;
  }

  .pricing__monthly-tag,
  .pricing__note {
    margin-top: 0;
  }

}

@media (max-width: 992px) and (min-width: 768px) {
  .pricing__canvas {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "title"
      "amount"
      "note"
      "help"
      "cta"
      "image";
    row-gap: 30px;
  }

  .pricing__headline {
    gap: 8px 12px;
  }

  .pricing__monthly-tag {
    margin-top: 0;
    white-space: nowrap;
  }

  .pricing__note {
    width: min(580px, 100%);
  }

  .pricing__image-wrap {
    grid-area: image;
    min-height: 0;
  }

  .pricing__case {
    grid-area: image;
    align-self: end;
    justify-self: end;
    z-index: 2;
  }
}

/* Fifth block: responsive + mobile slider */
.team {
  background: #fff;
}

.team__canvas {
  max-width: 1920px;
  margin: 0 auto;
  padding: clamp(54px, 6.5vw, 84px) clamp(16px, 5vw, 195px) clamp(56px, 7vw, 92px);
}

.team__title {
  margin: 0 auto clamp(32px, 3.8vw, 58px);
  max-width: 600px;
  text-align: center;
  font-size: clamp(34px, 4vw, 55px);
  line-height: 1.2;
  font-weight: 700;
  color: #3b35ba;
}

.team__swipe-hint {
  display: none;
  margin: 0 0 12px;
  color: #3b35ba;
  font-size: 16px;
  line-height: 1.3;
  opacity: 0.85;
  align-items: center;
  gap: 8px;
}

.team__swipe-icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(30%) sepia(67%) saturate(1672%) hue-rotate(232deg) brightness(90%) contrast(95%);
  animation: teamSwipeTouch 1.2s ease-in-out infinite;
}

.team__slider {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1350px;
  margin: 0 auto;
  gap: clamp(18px, 2.2vw, 40px);
  align-items: stretch;
}

.team-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-width: 0;
  height: 100%;
}

.team-card__photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  display: block;
  object-fit: cover;
  border-radius: 7px 7px 0 0;
}

.team-card__body {
  flex: 1;
  border-radius: 0 0 7px 7px;
  background: #f3f6fb;
  text-align: center;
  padding: 32px 24px 24px;
}

.team-card__name {
  margin: 0;
  font-size: 24px;
  line-height: 1.3;
  font-weight: 700;
  color: #1e1d30;
}

.team-card__role {
  margin: 16px 0 0;
  font-size: 18px;
  line-height: 1.3;
  color: #3b35ba;
}

.team-card__desc {
  margin: 16px auto 0;
  max-width: 300px;
  font-size: 18px;
  line-height: 1.3;
  color: #1e1d30;
}

@media (max-width: 767px) {
  .team__canvas {
    padding: 44px 12px 50px;
  }

  .team__title {
    text-align: left;
    margin: 0 0 18px;
    max-width: none;
  }

  .team__swipe-hint {
    display: inline-flex;
  }

  .team__slider {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 4px 2px 8px;
    scroll-snap-type: x mandatory;
	touch-action: auto;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    align-items: stretch;
  }

  .team__slider::-webkit-scrollbar {
    display: none;
  }

  .team-card {
    flex: 0 0 min(82vw, 320px);
    align-self: stretch;
    min-height: 100%;
    height: auto;
    scroll-snap-align: start;
  }

  .team-card:nth-child(3) {
    max-width: none;
  }

  .team-card__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
    padding: 24px 16px 20px;
  }

  .team-card__name {
    font-size: 20px;
  }

  .team-card__role,
  .team-card__desc {
    font-size: 16px;
  }

  .team-card__desc {
    margin-top: auto;
    max-width: none;
  }
}

@keyframes teamSwipeTouch {
  0%,
  100% { transform: translateX(0); }
  50% { transform: translateX(7px); }
}

/* Sixth block: responsive */
.compare {
  background: #fff;
}

.compare__canvas {
  max-width: 1920px;
  margin: 0 auto;
  padding: clamp(54px, 7vw, 84px) clamp(16px, 5vw, 195px) clamp(56px, 7vw, 90px);
}

.compare__inner {
  max-width: 1270px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  column-gap: 10px;
  row-gap: 14px;
}

.compare__title {
  grid-column: 1 / -1;
  margin: 0 auto;
  max-width: 900px;
  text-align: center;
  font-size: clamp(34px, 4vw, 55px);
  line-height: 1.24;
  font-weight: 700;
  color: #1e1d30;
}

.compare__tabs {
  grid-column: 1 / -1;
  justify-self: center;
  padding: 10px 20px;
  border-radius: 7px;
  background: linear-gradient(90deg, #e5f1ec 0%, #f9e9ed 100%);
  font-size: clamp(18px, 1.8vw, 24px);
  line-height: 1.3;
  color: #1e1d30;
  margin-top: 8px;
  margin-bottom: 6px;
}

.compare__timeline {
  grid-column: 1 / -1;
  position: relative;
  height: 40px;
}

.compare__timeline::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 20px;
  border-top: 1px solid #e5ecf8;
}

.compare__timeline span {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 1.3;
  color: #1e1d30;
  opacity: 0.7;
}

.compare__timeline--1 { grid-row: 4; }
.compare__timeline--2 { grid-row: 6; }
.compare__timeline--3 { grid-row: 8; }
.compare__timeline--4 { grid-row: 10; }
.compare__timeline--5 { grid-row: 12; }

.compare__card {
  position: relative;
  display: flex;
  align-items: center;
  border-radius: 7px;
  padding: 40px 40px 40px 100px;
  min-height: 126px;
}

.compare__card--left {
  grid-column: 1;
  background: #e5f2ec;
}

.compare__card--right {
  grid-column: 2;
  background: #f9e9ed;
}

.compare__card--l1, .compare__card--r1 { grid-row: 5; }
.compare__card--l2, .compare__card--r2 { grid-row: 7; }
.compare__card--l3, .compare__card--r3 { grid-row: 9; }
.compare__card--l4, .compare__card--r4 { grid-row: 11; }
.compare__card--l5, .compare__card--r5 { grid-row: 13; }

.compare__mark {
  position: absolute;
  left: 22px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.compare__mark--plus {
  background-image: url("../img/plus.svg");
}

.compare__mark--minus {
  background-image: url("../img/minus.svg");
}

.compare__text {
  margin: 0;
  color: #1e1d30;
  line-height: 1.3;
}

.compare__text--s {
  font-size: 18px;
  font-weight: 700;
}

.compare__text--b {
  font-size: 18px;
  font-weight: 400;
}

@media (max-width: 1100px) {
  .compare__card {
    padding: 20px 16px 20px 86px;
  }

  .compare__text--s,
  .compare__text--b {
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .compare__canvas {
    padding: 44px 12px 50px;
  }

  .compare__inner {
    grid-template-columns: minmax(0, 1fr);
    row-gap: 12px;
  }

  .compare__title {
    text-align: left;
    max-width: none;
  }

  .compare__tabs {
    justify-self: center;
    font-size: 16px;
  }

  .compare__timeline::before {
    left: 0;
    right: 0;
  }

  .compare__card--left,
  .compare__card--right {
    grid-column: 1;
  }

  .compare__timeline--1 { grid-row: 4; }
  .compare__card--l1 { grid-row: 5; }
  .compare__card--r1 { grid-row: 6; }
  .compare__timeline--2 { grid-row: 7; }
  .compare__card--l2 { grid-row: 8; }
  .compare__card--r2 { grid-row: 9; }
  .compare__timeline--3 { grid-row: 10; }
  .compare__card--l3 { grid-row: 11; }
  .compare__card--r3 { grid-row: 12; }
  .compare__timeline--4 { grid-row: 13; }
  .compare__card--l4 { grid-row: 14; }
  .compare__card--r4 { grid-row: 15; }
  .compare__timeline--5 { grid-row: 16; }
  .compare__card--l5 { grid-row: 17; }
  .compare__card--r5 { grid-row: 18; }

  .compare__card {
    min-height: 0;
    padding: 18px 12px 18px 76px;
  }

  .compare__mark {
    left: 16px;
    width: 30px;
    height: 30px;
  }

  .compare__text--s,
  .compare__text--b {
    font-size: 16px;
  }
}

/* Seventh block: reviews */
.site-review-card.is-loading-in {
    opacity: 0;
    transform: translateY(24px);
}

.site-review-card.is-visible-in {
    opacity: 1;
    transform: translateY(0);
    transition:
        opacity 0.45s ease,
        transform 0.45s ease;
}


.reviews {
  background: #f1f2ff;
}

.reviews__canvas {
  max-width: 1920px;
  margin: 0 auto;
  padding: clamp(56px, 7vw, 120px) clamp(16px, 5vw, 195px) clamp(56px, 7vw, 90px);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  column-gap: clamp(16px, 1.6vw, 30px);
  row-gap: clamp(20px, 2.2vw, 32px);
}

.reviews__title {
  grid-column: 1 / -1;
  margin: 0 auto clamp(8px, 1.4vw, 20px);
  width: 100%;
  text-align: center;
  color: #3b35ba;
}

.reviews__title-main,
.reviews__title-sub {
  display: block;
}

.reviews__title-main {
  font-size: 72px;
  line-height: 1.1;
  font-weight: 700;
}

.reviews__title-sub {
  margin-top: 8px;
  font-size: 42px;
  line-height: 1.2;
  font-weight: 700;
}

.review-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 360px;
  justify-self: center;
  border-radius: 7px;
  background: #ffffff;
  padding: 30px 20px 24px;
  min-height: 610px;
}

.review-card__case {
  width: 100%;
  margin: 0;
  font-size: 20px;
  line-height: 1.3;
  text-align: center;
  color: #1e1d30;
  font-weight: 700;
}

.review-card__person {
  width: 150px;
  height: 210px;
  border-radius: 7px;
  border: 2px solid #dfe7ff;
  object-fit: cover;
}

.review-card__doc {
  position: relative;
  margin-top: 20px;
}

.review-card__stamp {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 112px;
  height: 70px;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.review-card__desc {
  margin: 18px 0 0;
  width: 100%;
  font-size: 16px;
  line-height: 1.3;
  text-align: center;
  color: #1e1d30;
}

.review-card__debt-label {
  margin-top: 26px;
  padding: 4px 10px;
  border-radius: 20px;
  background: #e7ebff;
  color: #3b35ba;
  font-size: 16px;
  line-height: 1.3;
}

.review-card__amount {
  margin: 8px 0 0;
  width: 100%;
  font-size: 42px;
  line-height: 1.3;
  font-weight: 700;
  text-align: center;
  color: #1e1d30;
}

.review-card__btn {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 24px;
  border-radius: 7px;
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  line-height: 1.3;
  background: linear-gradient(-45deg, #3b35ba 0%, #4a43e0 100%);
  box-shadow: 0 10px 20px rgba(59, 53, 186, 0.25);
}

.reviews__more {
  grid-column: 1 / -1;
  justify-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 8px 15px;
  border-radius: 20px;
  color: #3b35ba;
  text-decoration: none;
  font-size: 18px;
  line-height: 1.3;
  background: rgba(59, 53, 186, 0.12);
  width: 100%;
  max-width: 360px;
  margin-top: 60px;
  cursor: pointer;
  border: none;
}

.reviews__more-icon {
  width: 16px;
  height: 16px;
  transition: transform 0.2s ease;
}

.reviews__more:hover .reviews__more-icon {
  transform: scale(1.14);
}

.reviews__more:active .reviews__more-icon {
  animation: reviewsMoreSpin 0.8s linear infinite;
}

.reviews__more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.reviews__more-icon {
    flex-shrink: 0;
}

.reviews__more.is-loading .reviews__more-icon {
    animation: reviewsSpin 0.9s linear infinite;
}

.reviews__more.is-loading {
    pointer-events: none;
    opacity: 0.8;
}

@keyframes reviewsSpin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 1300px) {
  .reviews__canvas {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .review-card__amount {
    font-size: 36px;
  }
}

@media (max-width: 992px) {
  .reviews__canvas {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .reviews__canvas {
    grid-template-columns: minmax(0, 1fr);
    padding: 44px 12px 50px;
    row-gap: 16px;
  }

  .reviews__title {
    text-align: center;
    max-width: none;
    margin-bottom: 8px;
  }

  .reviews__title-main {
    font-size: 48px;
  }

  .reviews__title-sub {
    margin-top: 4px;
    font-size: 26px;
    line-height: 1.24;
  }

  .review-card {
    min-height: 0;
    padding: 20px 14px 16px;
  }

  .review-card__case {
    font-size: 18px;
  }

  .review-card__person {
    width: 120px;
    height: 170px;
  }

  .review-card__doc {
    margin-top: 14px;
  }

  .review-card__stamp {
    width: 92px;
    height: 58px;
  }

  .review-card__desc {
    margin-top: 14px;
    font-size: 16px;
  }

  .review-card__amount {
    font-size: 30px;
  }

  .review-card__btn {
    width: 100%;
    margin-top: 16px;
    font-size: 16px;
  }

  .reviews__more {
    width: 100%;
    max-width: 360px;
    margin-top: 60px;
    font-size: 16px;
  }
}

@keyframes reviewsMoreSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Eighth block: FAQ */
.faq {
  padding: 60px 16px 80px;
  background: #f8f9fc;
}

.faq__canvas {
  width: min(100%, 1530px);
  margin: 0 auto;
}

.faq__title {
  margin: 0 0 42px;
  text-align: center;
  color: #1e1d30;
  font-size: clamp(32px, 4vw, 55px);
  line-height: 1.3;
  font-weight: 700;
}

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

.faq-item {
  position: relative;
  display: block;
  min-height: 168px;
  padding: 22px 30px 86px;
  border-radius: 20px;
  text-decoration: none;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(26, 115, 232, 0.1) 0%, rgba(26, 115, 232, 0.07) 100%);
  transform: translateY(0) scale(1);
  box-shadow: 0 10px 26px rgba(26, 115, 232, 0);
  transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}

.faq-item:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 24px 35px rgba(26, 115, 232, 0.2);
  background: linear-gradient(180deg, rgba(26, 115, 232, 0.14) 0%, rgba(26, 115, 232, 0.1) 100%);
}

.faq-item:focus-visible {
  outline: 2px solid rgba(26, 115, 232, 0.65);
  outline-offset: 2px;
}

.faq-item > p {
  margin: 0;
  max-width: 270px;
  font-size: 24px;
  line-height: 1.3;
  color: #1e1d30;
}

.faq-item__answer {
  display: none;
}

.faq-item__num {
  position: absolute;
  left: 30px;
  bottom: 12px;
  font-size: 55px;
  line-height: 1.3;
  font-weight: 700;
  color: #1a73e8;
  opacity: 0.05;
}

.faq-item img {
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: 48px;
  height: 48px;
  transition: transform 0.35s ease;
}

.faq-item:hover img {
  transform: translateX(8px);
}

.faq-popup {
  position: fixed;
  inset: 0;
  z-index: 2500;
  display: grid;
  place-items: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0s linear 0.2s;
}

.faq-popup[hidden] {
  display: none !important;
}

.faq-popup.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.2s ease, visibility 0s linear 0s;
}

.faq-popup__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 25, 0.55);
}

.faq-popup__dialog {
  position: relative;
  width: min(720px, calc(100vw - 32px));
  max-height: calc(100vh - 40px);
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  background: #fff;
  color: #1e1d30;
  box-shadow: 0 24px 45px rgba(30, 29, 48, 0.25);
  padding: 28px 28px 22px;
  overflow: hidden;
}

.faq-popup__content {
  display: flex;
  flex-direction: column;
  min-height: 0;
  flex: 1 1 auto;
  will-change: transform, opacity, filter;
}

.faq-popup__content.is-leaving-left {
  animation: faqPopupLeaveLeft 0.24s ease forwards;
}

.faq-popup__content.is-leaving-right {
  animation: faqPopupLeaveRight 0.24s ease forwards;
}

.faq-popup__content.is-entering-left {
  animation: faqPopupEnterLeft 0.24s ease forwards;
}

.faq-popup__content.is-entering-right {
  animation: faqPopupEnterRight 0.24s ease forwards;
}

@keyframes faqPopupLeaveLeft {
  from { transform: translateX(0); opacity: 1; filter: blur(0); }
  to { transform: translateX(-26px); opacity: 0; filter: blur(5px); }
}

@keyframes faqPopupLeaveRight {
  from { transform: translateX(0); opacity: 1; filter: blur(0); }
  to { transform: translateX(26px); opacity: 0; filter: blur(5px); }
}

@keyframes faqPopupEnterLeft {
  from { transform: translateX(-26px); opacity: 0; filter: blur(5px); }
  to { transform: translateX(0); opacity: 1; filter: blur(0); }
}

@keyframes faqPopupEnterRight {
  from { transform: translateX(26px); opacity: 0; filter: blur(5px); }
  to { transform: translateX(0); opacity: 1; filter: blur(0); }
}

.faq-popup__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 10px;
  background: rgba(59, 53, 186, 0.1);
  color: #1e1d30;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

.faq-popup__counter {
  margin: 0 0 10px;
  color: #3b35ba;
  font-size: 16px;
  font-weight: 700;
}

.faq-popup__title {
  margin: 0 0 14px;
  font-size: 32px;
  line-height: 1.2;
  font-weight: 700;
}

.faq-popup__text {
  margin: 0;
  min-height: 0;
  overflow-y: auto;
  padding-right: 6px;
  font-size: 18px;
  line-height: 1.3;
}

.faq-popup__text p {
  margin: 0 0 12px;
}

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

.faq-popup__text li {
  margin: 0 0 8px 20px;
}

.faq-popup__nav {
  margin-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-shrink: 0;
}

.faq-popup__nav-btn {
  min-width: 120px;
  border: none;
  border-radius: 10px;
  padding: 10px 14px;
  background: linear-gradient(-45deg, #8c28da 0%, #3b35ba 100%);
  color: #fff;
  font-size: 16px;
  line-height: 1.2;
  cursor: pointer;
}

body.faq-popup-open {
  overflow: hidden;
}

.lead-popup {
  position: fixed;
  inset: 0;
  z-index: 2600;
  display: grid;
  place-items: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0s linear 0.2s;
}

.lead-popup.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.2s ease, visibility 0s linear 0s;
}

.lead-popup__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 25, 0.6);
}

.lead-popup__dialog {
  position: relative;
  width: min(740px, calc(100vw - 32px));
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  border-radius: 20px;
  background: linear-gradient(180deg, #ffffff 0%, #fbf9ff 100%);
  color: #1e1d30;
  box-shadow: 0 28px 56px rgba(30, 29, 48, 0.28);
  padding: 60px;
}

.lead-popup__close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  border: none;
  border-radius: 8px;
  background: rgba(59, 53, 186, 0.12);
  color: #1e1d30;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.lead-popup__title {
  margin: 0 auto 22px;
  max-width: 400px;
  font-size: 30px;
  line-height: 1.18;
  text-align: center;
}

.lead-popup__subtitle {
  margin: -8px auto 18px;
  max-width: 400px;
  font-size: 16px;
  line-height: 1.3;
  text-align: center;
  color: rgba(30, 29, 48, 0.82);
}

.lead-popup__subtitle:empty {
  display: none;
}

.lead-popup__form {
  display: grid;
  max-width: 400px;
  margin: 0 auto;
  gap: 12px;
}

.lead-popup__field {
  display: block;
}

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

.lead-popup__input {
  width: 100%;
  min-height: 54px;
  border: 1px solid rgba(59, 53, 186, 0.22);
  border-radius: 12px;
  padding: 14px 16px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(59, 53, 186, 0.08);
  font: inherit;
  color: #1e1d30;
}

.lead-popup__input:focus {
  outline: 2px solid rgba(59, 53, 186, 0.32);
  outline-offset: 1px;
}

.lead-popup__consent {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
  margin-top: 20px;
  font-size: 14px;
  line-height: 1.3;
}

.lead-popup__consent + .lead-popup__consent {
  margin-top: 0;
}

.lead-popup__consent a {
  color: #3b35ba;
}

.lead-popup__submit {
  min-height: 50px;
  border: none;
  border-radius: 10px;
  margin-top: 30px;
  background: linear-gradient(-45deg, #8c28da 0%, #3b35ba 100%);
  color: #fff;
  font-size: 18px;
  line-height: 1.2;
  cursor: pointer;
}

.lead-popup__submit:disabled {
  opacity: 0.7;
  cursor: wait;
}

.lead-popup__status {
  min-height: 20px;
  margin: 0;
  font-size: 16px;
  line-height: 1.3;
}

.lead-popup__success {
  display: none;
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
}

.lead-popup__success-body {
  margin-top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  text-align: left;
}

.lead-popup__success-content {
  max-width: 360px;
}

.lead-popup.is-success .lead-popup__form {
  display: none;
}

.lead-popup.is-success .lead-popup__subtitle {
  display: none;
}

.lead-popup.is-success .lead-popup__title {
  display: none;
}

.lead-popup.is-success .lead-popup__success {
  display: block;
}

.lead-popup__success-icon {
  width: 84px;
  height: 84px;
  margin: 10px auto 18px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 46px;
  line-height: 1;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(180deg, #21b666 0%, #169e54 100%);
  box-shadow: 0 14px 28px rgba(22, 158, 84, 0.35);
}

.lead-popup__success-title {
  margin: 0 0 30px;
  font-size: 30px;
  line-height: 1.2;
  color: #1e1d30;
}

.lead-popup__success-text {
  margin: 0;
  font-size: 18px;
  line-height: 1.3;
  color: rgba(30, 29, 48, 0.9);
}

.lead-popup__success-text--hint {
  margin-top: 20px;
}

.lead-popup__success-phone {
  color: #3b35ba;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
}

.lead-popup__success-add {
  margin: 12px 0 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid rgba(59, 53, 186, 0.18);
  background: #f4f2ff;
  color: #3b35ba;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(59, 53, 186, 0.14);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}

.lead-popup__success-add:hover,
.lead-popup__success-add:focus-visible {
  transform: translateY(-1px);
  background: #ece9ff;
  box-shadow: 0 12px 24px rgba(59, 53, 186, 0.18);
}

.lead-popup__success-phone-image {
  width: 190px;
  height: auto;
  object-fit: contain;
  pointer-events: none;
  user-select: none;
}

body.lead-popup-open {
  overflow: hidden;
}

.consult-popup {
  position: fixed;
  inset: 0;
  z-index: 2700;
  display: grid;
  place-items: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0s linear 0.2s;
}

.consult-popup.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.2s ease, visibility 0s linear 0s;
}

.consult-popup__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 25, 0.6);
}

.consult-popup__dialog {
  position: relative;
  width: min(560px, calc(100vw - 32px));
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  border-radius: 20px;
  background: linear-gradient(180deg, #ffffff 0%, #fbf9ff 100%);
  color: #1e1d30;
  box-shadow: 0 28px 56px rgba(30, 29, 48, 0.28);
  padding: 48px 36px 40px;
}

.consult-popup__close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  border: none;
  border-radius: 8px;
  background: rgba(59, 53, 186, 0.12);
  color: #1e1d30;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.consult-popup__title {
  margin: 0 auto 16px;
  max-width: 440px;
  font-size: clamp(22px, 4vw, 28px);
  line-height: 1.18;
  text-align: center;
}

.consult-popup__expert {
  max-width: 420px;
  margin: 0 auto 24px;
}

.consult-popup__expert .bankruptcy-quiz__expert-name {
  display: block;
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  color: #1e1d30;
}

.consult-popup__expert .bankruptcy-quiz__expert-role {
  display: block;
  margin-top: 2px;
  font-size: 16px;
  line-height: 1.3;
  color: rgba(30, 29, 48, 0.55);
}

.consult-popup__expert .bankruptcy-quiz__expert-online {
  border-color: #fff;
}

.consult-popup__form {
  max-width: 420px;
}

.consult-popup__success {
  min-height: auto;
  padding: 32px 16px 16px;
}

.consult-popup__success[hidden] {
  display: none !important;
}

.consult-popup.is-success .consult-popup__form-wrap {
  display: none;
}

.consult-popup.is-success .consult-popup__success {
  display: flex;
}

body.consult-popup-open {
  overflow: hidden;
}

@media (max-width: 560px) {
  .consult-popup__dialog {
    padding: 40px 20px 28px;
  }
}

@media (max-width: 1400px) {
  .faq__grid {
    gap: 22px;
  }

  .faq-item {
    min-height: 162px;
    padding: 20px 24px 80px;
  }

  .faq-item > p {
    font-size: 22px;
  }

  .faq-item__num {
    left: 24px;
    bottom: 10px;
  }
}

@media (max-width: 1100px) {
  .faq {
    padding-top: 48px;
    padding-bottom: 64px;
  }

  .faq__title {
    margin-bottom: 30px;
  }

  .faq__grid {
    grid-template-columns: repeat(2, minmax(0, 420px));
    justify-content: center;
    gap: 18px;
  }

  .faq-item {
    min-height: 156px;
    padding-bottom: 76px;
  }

  .faq-item > p {
    font-size: 21px;
  }
}

@media (max-width: 767px) {
	.lead-popup__dialog {
		padding: 25px;
	}
  .faq {
    padding-top: 42px;
    padding-bottom: 48px;
  }

  .faq__title {
    margin-bottom: 22px;
    font-size: 34px;
  }

  .faq__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: center;
    gap: 14px;
  }

  .faq-item {
    min-height: 148px;
    border-radius: 16px;
    padding: 18px 20px 72px;
  }

  .faq-item > p {
    max-width: 250px;
    font-size: 20px;
    line-height: 1.3;
  }

  .faq-item__num {
    left: 20px;
    bottom: 8px;
    font-size: 48px;
  }

  .faq-item img {
    right: 16px;
    bottom: 16px;
    width: 44px;
    height: 44px;
  }
}

@media (max-width: 420px) {
  .faq__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .faq-popup__dialog {
    padding: 22px 16px 16px;
    border-radius: 16px;
  }

  .faq-popup__title {
    font-size: 24px;
  }

  .faq-popup__text {
    font-size: 16px;
  }

  .faq-popup__nav-btn {
    min-width: 0;
    flex: 1;
  }

.lead-popup__title {
    margin-right: 34px;
    margin-left: 0;
    max-width: none;
    font-size: 24px;
    text-align: left;
  }

  .lead-popup__subtitle {
    margin: -6px 34px 16px 0;
    max-width: none;
    text-align: left;
  }

  .lead-popup__success-title {
    font-size: 24px;
  }

  .lead-popup__success-text {
    font-size: 16px;
  }

  .lead-popup__success-body {
    flex-direction: column;
    align-items: center;
    gap: 14px;
    text-align: center;
  }

  .lead-popup__success-content {
    max-width: none;
  }

  .lead-popup__success-add {
    margin-left: auto;
    margin-right: auto;
  }

  .lead-popup__success-phone-image {
    width: min(180px, 52vw);
  }
}

/* Contacts block */
.contacts-block {
  background: #fff;
}

.contacts-block__canvas {
  position: relative;
  width: 1920px;
  height: 1404px;
  margin: 0 auto;
  background: linear-gradient(-45deg, #8c28da 0%, #3b35ba 100%);
}

.contacts-block__bg {
  position: absolute;
  left: 0;
  top: 599.97px;
  width: 1920px;
  height: 804px;
  object-fit: cover;
}

.contacts-block__accent {
  position: absolute;
  left: 488.57px;
  top: 108.07px;
  width: 28.97px;
  height: 33.64px;
}

.contacts-block__panel {
  position: absolute;
  left: 975px;
  top: 721.97px;
  width: 750px;
  height: 560px;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.8);
  padding: 60px;
  color: #1e1d30;
}

.contacts-block__title {
  margin: 0;
  width: 627px;
  font-size: 32px;
  line-height: 1.3;
  color: #3b35ba;
}

.contacts-block__route {
  margin-top: 36px;
  display: grid;
  gap: 10px;
}

.contacts-block__route div,
.contacts-block__info div,
.contacts-block__messengers a {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 18px;
  line-height: 1.3;
}

.contacts-block h4 {
  margin: 30px 0 20px;
  font-size: 32px;
  line-height: 1.3;
  color: #1e1d30;
}

.contacts-block__info {
  display: grid;
  gap: 7px;
}

.contacts-block__messengers {
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 22px;
}

.contacts-block__messengers p,
.contacts-block__socials p {
  margin: 0;
  font-size: 18px;
  line-height: 1.3;
}

.contacts-block__messengers a {
  color: #1e1d30;
  text-decoration: none;
}

.contacts-block__socials {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contacts-block__socials a {
  width: 50px;
  height: 42.05px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Footer */
.footer {
  background: #3b35ba;
  color: #fff;
}

.footer a {color: #fff;}

.footer__canvas {
  display: grid;
  grid-template-columns: auto auto minmax(280px, 1fr) auto;
  align-items: center;
  gap: 26px;
  width: 100%;
  max-width: 1560px;
  padding: 26px clamp(20px, 6vw, 120px);
  margin: 0 auto;
}

.footer__left {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer__logo {
  width: 230px;
  height: auto;
}

.footer__brand {
  margin: 10px 0 0;
  width: auto;
  font-size: 16px;
  line-height: 1.1719;
  color: #fff;
}

.footer__phone-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  white-space: nowrap;
  color: #fff;
  font-size: 18px;
  line-height: 1.3;
}

.footer__phone-wrap img {
  width: 14px;
  height: 22px;
}

.footer__phone-wrap span {
  font-size: 22px;
  line-height: 1.2;
}

.footer__phone-link {
  color: inherit;
  text-decoration: none;
  font-size: 22px;
  line-height: 1.2;
}

.footer__disclaimer {
  margin: 0;
  max-width: 360px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  line-height: 1.3;
}

.footer__legal {
  max-width: 240px;
  color: #fff;
  opacity: 0.78;
  font-size: 12px;
  line-height: 1.3;
  text-align: right;
}

.footer__legal span {
  display: block;
}

.footer__legal a {
  color: #fff;
}

.footer__legal span + span {
  margin-top: 6px;
}

@media (max-width: 1300px) {
  .footer__canvas {
    grid-template-columns: auto 1fr;
    gap: 16px 24px;
  }

  .footer__phone-wrap {
    justify-content: flex-start;
  }

  .footer__disclaimer {
    grid-column: 1 / -1;
  }

  .footer__legal {
    grid-column: 1 / -1;
    max-width: none;
    text-align: left;
  }
}

@media (max-width: 767px) {
  .footer__canvas {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 22px 16px;
  }

  .footer__left {
    gap: 12px;
  }

  .footer__logo {
    width: 180px;
  }

  .footer__brand {
    font-size: 16px;
  }

  .footer__phone-wrap span {
    font-size: 18px;
  }


  .footer__legal {
    font-size: 11px;
  }
}

.reviewlab-section {
  padding: 56px 16px;
  background: #fff;
  max-width: 100%;
  overflow-x: clip;
}

.site-reviews {
  background: #e9edf8;
}

.site-reviews__canvas {
  max-width: 1920px;
  margin: 0 auto;
  padding: var(--section-v-space) clamp(16px, 5vw, 100px);
}

.site-reviews__title {
  margin: 8px 0 var(--section-title-gap);
  text-align: center;
  color: #3b35ba;
  font-size: clamp(36px, 3.8vw, 48px);
  line-height: 1.2;
  font-weight: 700;
}

.site-reviews__grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 68px 18px;
}

.site-review-card {
  position: relative;
  background: #fbfbff;
  border-radius: 4px;
  min-height: 220px;
  padding: 40px 22px 18px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  gap: 16px;
}

.site-review-card::before {
  content: "";
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background:
    url("../img/quote.svg") center / 15px 11px no-repeat,
    linear-gradient(180deg, #8744ff 0%, #6227d8 100%);
  box-shadow: 0 6px 14px rgba(98, 39, 216, 0.3);
}

.site-review-card__text {
  margin: 0;
  color: #1f1f2e;
  font-size: 16px;
  line-height: 1.3;
  font-style: italic;
  text-align: center;
  max-width: 100%;
}

.site-review-card__spoiler {
  margin: 0;
  display: flex;
  flex-direction: column;
  min-height: 172px;
}

.site-review-card__spoiler.is-expanded .site-review-card__text-wrap {
  max-height: none;
  overflow: visible;
}

.site-review-card__spoiler.is-expanded .site-review-card__text-wrap::after {
  display: none;
}

.site-review-card__text-wrap {
  order: 1;
  position: relative;
  max-height: 140px;
  overflow: hidden;
}

.site-review-card__text-wrap::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 64px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(251, 251, 255, 0) 0%, #fbfbff 100%);
}

.site-review-card__toggle {
  display: inline-block;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  order: 2;
  margin-top: 8px;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
  border: none;
  border-bottom: 1px dashed #5d48c9;
  border-radius: 0;
  background: transparent;
  color: #5d48c9;
  font-size: 16px;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  list-style: none;
}

.site-review-card__spoiler.is-overflow .site-review-card__toggle {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.site-review-card__spoiler:not(.is-overflow) .site-review-card__text-wrap {
  max-height: none;
  overflow: visible;
}

.site-review-card__spoiler:not(.is-overflow) .site-review-card__text-wrap::after {
  display: none;
}

.site-review-card__meta {
  order: 3;
  display: grid;
  gap: 2px;
  justify-items: center;
  margin-top: 8px;
}

.site-review-card__label {
  color: #1f1f2e;
  font-size: 16px;
  line-height: 1.3;
  font-weight: 700;
}

.site-review-card__amount {
  color: #1f1f2e;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 700;
}

.site-reviews .img {
  order: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
}

.site-reviews .img a {
  margin-top: 20px;
  margin-left: 10px;
  margin-right: 10px;
  transition: 0.3s all;
  display: inline-block;
  border: 1px solid #8a8996;
  border-radius: 7px;
  position: relative;
}

.site-reviews .img a:first-child {
  margin-left: 0;
}

.site-reviews .img a:last-child {
  margin-right: 0;
}

.site-reviews .img a::after {
  transition: 0.3s all;
  opacity: 0;
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: linear-gradient(281.53deg, #8c28da 0%, #3b35ba 100%);
  z-index: 2;
  border-radius: 7px;
}

.site-reviews .img a::before {
  transition: 0.3s all;
  opacity: 0;
  content: "+";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  bottom: 0;
  color: #fff;
  font-size: 24px;
  line-height: 0;
  z-index: 3;
  font-style: normal;
  text-align: center;
}

.site-reviews .img img {
  border-radius: 7px;
  position: relative;
  z-index: 1;
  display: block;
}

.site-reviews .img a:hover::after {
  opacity: 0.7;
}

.site-reviews .img a:hover::before {
  opacity: 1;
}

.site-reviews__more-wrap {
  text-align: center;
}

@media (max-width: 1200px) {
  .site-reviews__canvas {
    padding-left: 16px;
    padding-right: 16px;
  }

  .site-reviews__grid {
    gap: 60px 14px;
  }

  .site-review-card {
    padding: 36px 16px 16px;
  }

  .site-review-card__amount {
    font-size: 18px;
  }

}

@media (max-width: 992px) {
  .site-reviews__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 54px 12px;
  }
}

@media (max-width: 767px) {
  .site-reviews__canvas {
    padding-left: 12px;
    padding-right: 12px;
  }

  .site-reviews__title {
    margin-bottom: 30px;
    text-align: center;
  }

  .site-reviews__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 52px;
  }

  .site-review-card {
    border-radius: 10px;
    min-height: 0;
    padding: 34px 14px 14px;
    gap: 16px;
  }

  .site-review-card__amount {
    font-size: 17px;
  }

  .site-review-card__label {
    font-size: 16px;
  }

  .site-review-card__toggle {
    font-size: 16px;
  }

}

.reviewlab-section__title {
  margin: 0 auto 42px;
  max-width: 900px;
  text-align: center;
  color: #1e1d30;
  font-size: clamp(34px, 4vw, 55px);
  line-height: 1.24;
  font-weight: 700;
}

.reviewlab-section review-lab {
  display: block;
  width: 100%;
  max-width: 980px;
  min-width: 0;
  margin: 0 auto;
}

@media (max-width: 992px) {
  .reviewlab-section__title {
    margin-bottom: 30px;
    font-size: 42px;
  }
}

@media (max-width: 767px) {
  .reviewlab-section__title {
    margin-bottom: 22px;
    font-size: 34px;
    line-height: 1.2;
  }
}

/* Unified vertical section spacing (except hero) */
:root {
  --section-v-space: 140px;
}

@media (max-width: 1200px) {
  :root {
    --section-v-space: 120px;
  }
}

@media (max-width: 992px) {
  :root {
    --section-v-space: 80px;
  }
}

@media (max-width: 767px) {
  :root {
    --section-v-space: 60px;
  }
}

.freedom__canvas,
.journey__canvas,
.pricing__canvas,
.team__canvas,
.compare__canvas,
.reviews__canvas {
  padding-top: var(--section-v-space);
  padding-bottom: var(--section-v-space);
}

.faq,
.reviewlab-section {
  padding-top: var(--section-v-space);
  padding-bottom: var(--section-v-space);
}

/* Unified section title spacing (except hero) */
:root {
  --section-title-gap: 60px;
}

@media (max-width: 1200px) {
  :root {
    --section-title-gap: 60px;
  }
}

@media (max-width: 992px) {
  :root {
    --section-title-gap: 40px;
  }
}

@media (max-width: 767px) {
  :root {
    --section-title-gap: 30px;
  }
}

.quiz__title,
.freedom__title,
.journey__title,
.pricing__title,
.team__title,
.compare__title,
.reviews__title,
.faq__title,
.reviewlab-section__title {
  margin-bottom: var(--section-title-gap);
}

.quiz__title {
  margin-bottom: 0;
}

.compare__canvas {
  padding-top: 0;
}


.map {padding: 0; position: relative;}

.map-block {
  display: flex;
  align-items: stretch;
}

.map-block #map2,
.map-block .contacts-block {
  width: 50%;
  max-width: 50%;
}

#map2 {
  position: relative;
  min-height: 640px;
}

.contacts-block {padding: 60px; position: relative;}
.contacts-block .bg {position: absolute; z-index: 1; left:0; right:0; top:0; bottom:0; border-radius: 7px; background: #fff; opacity: 0.9;}
.contacts-block .inner {position:relative; z-index: 2;}

.contacts-block h2 {color: #3B35BA; margin-bottom: 30px;}
.contacts-block .icons {display: flex; align-items: center;}
.contacts-block .icons .item {display: flex; align-items: center; max-width: 280px;}
.contacts-block .item:first-child {margin-right: 45px;}
.contacts-block .item img {margin-right: 20px;}
.contacts-block .info {margin-top: 40px; display: flex; justify-content: flex-start; align-items: flex-start;}
.contacts-block .info:nth-child(2n) {margin-top: 0;}
.contacts-block .left, .contacts-block .right {max-width: 250px;}
.contacts-block .left {margin-right: 100px;}
.contacts-block h3 {font-size: 18px; line-height: 1.3; margin-bottom: 20px;}

.contacts-block .flex {display: flex; justify-content: flex-start; flex-direction: column;}
.contacts-block a {color: #1E1D30; text-decoration: none;}
.contacts-block .info .left .item {display: flex; align-items: center; margin-bottom: 20px;}
.contacts-block .info .right .item a{display: flex; align-items: center; margin-bottom: 20px;}
.contacts-block .info .item img {margin-right: 10px;}
.contacts-block .info .right .flex .item:last-child {margin-bottom: 0;}


.contacts-block .soc {margin-top: 40px; max-width: 300px; font-weight: bold;}
.contacts-block .imgs {display: flex; justify-content: flex-start;}
.contacts-block .imgs a {margin-top: 20px; margin-right: 10px; display: flex; width: 50px; height: 50px; align-items: center; justify-content: center; border-radius: 50%;}
.contacts-block .imgs a:last-child {margin-right: 0;}
.contacts-block .imgs a.vk {background: #e3eef7;}
.contacts-block .imgs a.fb {background: #e1edf7;}
.contacts-block .imgs a.ig {background: #f4e5ec;}

@media (max-width: 1200px) {
  .map-block {
    flex-direction: column;
  }

  .map-block #map2,
  .map-block .contacts-block {
    width: 100%;
    max-width: 100%;
  }

  #map2 {
    height: 350px;
    min-height: 350px;
    max-height: 350px;
  }

  .contacts-block {
    padding: 36px 24px;
  }

  .contacts-block .icons {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 20px;
    align-items: start;
  }

  .contacts-block .icons .item {
    max-width: none;
  }

  .contacts-block .icons .item:first-child {
    margin-right: 0;
  }

  .contacts-block .info {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 28px;
  }

  .contacts-block .left,
  .contacts-block .right {
    max-width: none;
  }

  .contacts-block .left {
    margin-right: 0;
  }
}

@media (max-width: 767px) {
  #map2 {
    height: 300px;
    min-height: 300px;
    max-height: 300px;
  }

  .contacts-block {
    padding: 24px 16px;
  }

  .contacts-block h2 {
    margin-bottom: 20px;
    font-size: 30px;
    line-height: 1.15;
  }

  .contacts-block .info {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .contacts-block h3 {
    font-size: 17px;
    line-height: 1.3;
    margin-bottom: 14px;
  }

  .contacts-block .info .left .item,
  .contacts-block .info .right .item a {
    margin-bottom: 14px;
  }

  .contacts-block .soc {
    margin-top: 24px;
  }
}

@media (max-width: 620px) {
  .contacts-block .icons {
    grid-template-columns: 1fr;
  }
}


.reviews__pagination {
    padding-bottom: 40px;
    display: flex;
    justify-content: center;
}

.reviews__pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    margin: 0 4px;
    padding: 0 12px;
    border-radius: 10px;
    text-decoration: none;
    border: 1px solid #d9d9d9;
    color: #222;
    transition: 0.2s ease;
}

.reviews__pagination .page-numbers.current {
    background: #222;
    color: #fff;
    border-color: #222;
}

.reviews__pagination .page-numbers:hover {
    border-color: #222;
}

.reviews__pagination {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.reviews__pagination .nav-links,
.reviews__pagination {
    gap: 10px;
}

.reviews__pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 46px;
    height: 46px;
    padding: 0 16px;
    border-radius: 14px;
    background: #ffffff;
    border: 1px solid #e6e3f7;
    color: #2a2340;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    line-height: 1;
    box-shadow: 0 6px 18px rgba(71, 55, 160, 0.06);
    transition:
        background 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;
}

.reviews__pagination .page-numbers:hover {
    background: #f6f3ff;
    border-color: #cfc7f6;
    color: #4b35d4;
    box-shadow: 0 10px 22px rgba(71, 55, 160, 0.12);
    transform: translateY(-2px);
}

.reviews__pagination .page-numbers.current {
    background: linear-gradient(135deg, #6b4eff 0%, #4b35d4 100%);
    border-color: #4b35d4;
    color: #ffffff;
    box-shadow: 0 12px 24px rgba(75, 53, 212, 0.28);
    pointer-events: none;
}

.reviews__pagination .page-numbers.prev,
.reviews__pagination .page-numbers.next {
    padding: 0 18px;
    font-size: 18px;
    font-weight: 700;
}

.reviews__pagination .page-numbers.dots {
    min-width: auto;
    padding: 0 6px;
    border: 0;
    background: transparent;
    box-shadow: none;
    color: #8d87aa;
}

.reviews__pagination .page-numbers.dots:hover {
    background: transparent;
    border: 0;
    box-shadow: none;
    transform: none;
    color: #8d87aa;
}

/* Page Cases Header Style */
body.page-cases .hero__top:not(.is-fixed):not(.is-detaching) {
  margin: 0;
  width: 100%;
  padding: 14px clamp(16px, 10vw, 195px);
  border-radius: 0;
  background: #fff;
  backdrop-filter: none;
  box-shadow: 0 10px 24px rgba(30, 29, 48, 0.3);
}

body.page-cases .hero__header-block {
  padding: 0;
}

body.page-cases .hero__top:not(.is-fixed):not(.is-detaching) .hero__brand-text,
body.page-cases .hero__top:not(.is-fixed):not(.is-detaching) .hero__phone {
  color: #1e1d30;
}


body.page-cases .hero__top:not(.is-fixed):not(.is-detaching) .hero__logo--default {
  opacity: 0;
}

body.page-cases .hero__top:not(.is-fixed):not(.is-detaching) .hero__logo--colored {
  opacity: 1;
}

body.page-cases .hero__top:not(.is-fixed):not(.is-detaching) .hero__burger span {
  background: #1e1d30;
}

body.page-cases .hero__top:not(.is-fixed):not(.is-detaching) .hero__header-btn {
  color: #fff;
  background: linear-gradient(-45deg, #8c28da 0%, #3b35ba 100%);
  box-shadow: 0 10px 20px rgba(59, 53, 186, 0.25);
}

@media (max-width: 1200px) {
  body.page-cases .hero__top:not(.is-fixed):not(.is-detaching) {
    grid-template-columns: minmax(180px, 1fr) auto;
    grid-template-areas:
      "brand phone"
      "brand button";
    column-gap: 12px;
    row-gap: 8px;
    align-items: center;
  }

  body.page-cases .hero__top:not(.is-fixed):not(.is-detaching) .hero__brand {
    grid-area: brand;
  }

  body.page-cases .hero__top:not(.is-fixed):not(.is-detaching) .hero__contacts {
    grid-area: phone;
    justify-self: end;
  }

  body.page-cases .hero__top:not(.is-fixed):not(.is-detaching) .hero__header-btn {
    display: inline-flex;
    grid-area: button;
    justify-self: end;
    padding: 10px 14px;
    font-size: 16px;
    line-height: 1.25;
    white-space: nowrap;
  }

  body.page-cases .hero__top:not(.is-fixed):not(.is-detaching) .hero__burger {
    display: none;
  }
}