:root {
  --c-dark: #060028;
  --c-orange: #ff8c67;
  --c-yellow: #fccf71;
  --c-yellow2: #ffd964;
  --c-lavender: #b2c1f9;
  --c-blue: #5273ef;
  --c-green: #56be87;
  --c-purple: #b682f8;
  --c-border: #d8dded;
  --c-bg-light: #eaedf6;
  --c-muted: rgba(6,0,40,0.6);
  --c-dim: rgba(6,0,40,0.72);
  --c-w74: rgba(255,255,255,0.74);
  --c-w72: rgba(255,255,255,0.72);
  --c-w88: rgba(255,255,255,0.88);
  --font-body: "Figtree", sans-serif;
  --font-head: "Jokker", "Figtree", sans-serif;
  --container-p: 0 40px;
  --pad-x: 156px;
  --radius-lg: 32px;
  --radius-md: 24px;
}

body {
  padding: 0;
}

.main {
  overflow: hidden;
}

.container {
  max-width: 1208px;
  padding: var(--container-p);
  margin: 0 auto;
}

img {
  display: block;
  width: 100%;
  object-fit: contain;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Jokker";
}

.title {
  font-family: var(--font-head);
  font-weight: 600;
  font-style: normal;
  font-size: 52px;
  line-height: 1.1;
  letter-spacing: -0.52px;
  color: var(--c-dark);
}

.text {
  font-size: 18px;
  line-height: 1.55;
  color: var(--c-dim);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 9999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  cursor: pointer;
  transition: opacity 0.2s, background 0.2s, color 0.2s;
  background: var(--c-orange);
  color: #fff;
  border: 1.5px solid var(--c-orange);
  box-shadow: 0 6px 9px rgba(255, 140, 103, 0.32);
}
.btn:hover {
  opacity: 0.88;
}

.btn-border {
  background: transparent;
  color: var(--c-dark);
  border-color: var(--c-dark);
  box-shadow: none;
}
.btn-border:hover {
  background: var(--c-dark);
  color: #fff;
}

.cta__title-hl, .pricing__title-hl, .formats__title-hl, .features__title-hl, .architecture__title-hl, .awards__title-hl, .hero__title-hl {
  border-radius: 12px;
  padding: 1px 6px;
  display: inline;
}

.header {
  background: #060028;
  position: static;
  inset: auto;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
}
.header__logo {
  background-image: url("/resources/img/logo-server.svg");
}
.header__button {
  background: #FF8C67;
  border-radius: 100px;
  border: none;
  color: #fff;
  font-size: 15px;
  line-height: 1;
  font-weight: 600;
  padding: 14px 22px;
  cursor: pointer;
  transition: 0.3s;
}
.header__button:hover {
  background: #5273ef;
}

.hero {
  background: var(--c-dark);
}
.hero__inner {
  padding: 124px 0 80px;
}
.hero__main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
}
.hero__info {
  flex: 0 0 auto;
  max-width: 580px;
}
.hero__title {
  font-family: var(--font-head);
  font-weight: 600;
  font-style: normal;
  font-size: 52px;
  line-height: 1.1;
  letter-spacing: -0.72px;
  color: #fff;
  margin-bottom: 24px;
}
.hero__title-hl {
  background: var(--c-yellow);
  color: var(--c-dark);
}
.hero__text {
  color: var(--c-w74);
  margin-bottom: 32px;
  max-width: 488px;
}
.hero__stats {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hero__stats-item {
  display: flex;
  align-items: center;
  gap: 26px;
}
.hero__stats-num {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 22px;
  color: var(--c-orange);
  min-width: 56px;
}
.hero__stats-label {
  font-size: 17px;
  color: var(--c-w88);
}
.hero__visual {
  flex: 1 1 auto;
  max-width: 700px;
  position: absolute;
  top: 50%;
  right: -155px;
  translate: 0 -50%;
}
.hero__visual::before {
  content: "";
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  right: 0;
  width: 80px;
  height: 100%;
  background: linear-gradient(90deg, rgba(6, 0, 40, 0) 0%, rgba(6, 0, 40, 0.005) 15%, rgba(6, 0, 40, 0.015) 30%, rgba(6, 0, 40, 0.04) 45%, rgba(6, 0, 40, 0.08) 60%, rgba(6, 0, 40, 0.15) 75%, rgba(6, 0, 40, 0.3) 90%, #060028 100%);
}
.hero__img {
  width: 100%;
  border-radius: 15px;
  display: block;
}
.hero__partners {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  padding-top: 140px;
}
.hero__partners-label {
  font-weight: 600;
  font-size: 25px;
  color: rgba(255, 255, 255, 0.64);
  white-space: nowrap;
}
.hero__partners-logos {
  display: flex;
  align-items: center;
  gap: 44px;
  flex-wrap: wrap;
}
.hero__partners-logos img:nth-of-type(1) {
  max-width: 115px;
}
.hero__partners-logos img:nth-of-type(2) {
  max-width: 85px;
  padding-bottom: 18px;
}
.hero__partners-logos img:nth-of-type(3) {
  max-width: 76px;
}
.hero__partners-logos img:nth-of-type(4) {
  max-width: 203px;
}
@media (max-width: 1200px) {
  .hero__main {
    flex-direction: column;
  }
  .hero__inner {
    flex-direction: column;
    padding: 80px 0 60px;
  }
  .hero__info {
    max-width: 100%;
    width: 100%;
  }
  .hero__title, .hero__text {
    text-align: center;
  }
  .hero__text {
    margin: 0 auto 48px;
  }
  .hero__stats {
    align-items: center;
  }
  .hero__visual {
    position: relative;
    inset: 0;
    translate: none;
  }
  .hero__visual::before {
    display: none;
  }
  .hero__partners {
    padding-top: 64px;
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
}
@media (max-width: 991px) {
  .hero__title {
    font-size: 40px;
  }
}
@media (max-width: 767px) {
  .hero__title {
    font-size: 32px;
  }
  .hero__partners-inner {
    height: auto;
    flex-wrap: wrap;
    padding: 24px 0;
    gap: 20px;
  }
  .hero__partners-logos {
    gap: 24px;
    justify-content: center;
  }
}

.awards {
  background: #fff;
  padding: 96px 0;
}
.awards__inner {
  display: flex;
  flex-direction: column;
  gap: 56px;
}
.awards__title {
  text-align: center;
}
.awards__title-hl {
  background: #ffb69a;
}
.awards__bottom {
  display: flex;
  gap: 24px;
}
.awards__logos {
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex-shrink: 0;
}
.awards__logos-row {
  display: flex;
  gap: 24px;
}
.awards__logo-card {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  width: 264px;
  height: 168px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 24px;
  overflow: hidden;
}
.awards__logo-card img {
  max-height: 50px;
  width: auto;
  object-fit: contain;
}
.awards__logo-card--sm {
  width: 168px;
}
.awards__logo-card--sm img {
  max-height: 107px;
}
.awards__logo-card--f img {
  max-height: 85px;
}
.awards__logo-card--s img {
  max-height: 106px;
}
.awards__logo-sub {
  max-height: 32px !important;
}
.awards__review {
  flex: 1 1 auto;
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.awards__review-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--c-border);
}
.awards__review-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.awards__review-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
}
.awards__review-name {
  font-weight: 700;
  font-size: 18px;
}
.awards__review-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: #060028;
  font-size: 16px;
  border: 2px solid var(--c-dark);
  border-radius: 9999px;
  padding: 10px 20px;
  transition: background 0.2s, color 0.2s;
}
.awards__review-link img {
  width: 14px;
  height: 14px;
}
.awards__review-link:hover {
  background: var(--c-dark);
  color: #fff;
}
.awards__review-link:hover img {
  filter: invert(1);
}
.awards__review-stars {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}
.awards__review-stars img {
  height: 27px;
  width: auto;
}
.awards__review-stars span {
  padding-top: 5px;
  font-size: 18px;
  line-height: 1;
  opacity: 0.4;
}
.awards__review-title {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.4;
  margin-bottom: 12px;
}
.awards__review-text {
  font-size: 16px;
  line-height: 1.55;
  color: var(--c-muted);
}
@media (max-width: 1100px) {
  .awards__bottom {
    flex-direction: column;
  }
  .awards__logos {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
  .awards__logos-row {
    flex-wrap: wrap;
  }
}
@media (max-width: 991px) {
  .awards__title {
    font-size: 38px;
  }
}
@media (max-width: 767px) {
  .awards__title {
    font-size: 30px;
  }
  .awards__logo-card {
    width: calc(50% - 12px);
    height: 130px;
  }
  .awards__logo-card img:nth-of-type(1) {
    max-width: 60px;
  }
  .awards__logo-card img:nth-of-type(2) {
    max-width: 80px;
  }
  .awards__logo-card--sm {
    width: calc(33% - 16px);
    height: 100px;
  }
  .awards__logo-card--sm img {
    height: 60px;
  }
  .awards__review-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

.architecture {
  background: var(--c-bg-light);
  padding: 96px 0;
}
.architecture__inner {
  display: flex;
  flex-direction: column;
  gap: 56px;
}
.architecture__top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}
.architecture__title-hl {
  background: var(--c-lavender);
}
.architecture__nav {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}
.architecture__nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--c-border);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--c-dark);
  transition: background 0.2s, color 0.2s;
}
.architecture__nav-btn:hover {
  background: var(--c-dark);
  color: #fff;
}
.architecture__slider .slick-list {
  overflow: visible;
}
.architecture__slider .slick-slide {
  height: auto;
}
.architecture__slider .slick-track {
  display: flex;
}
.architecture__item {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 36px;
  margin-right: 24px;
  height: 100%;
  display: flex !important;
  flex-direction: column;
  align-items: flex-start;
}
.architecture__item-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 36px;
}
.architecture__item-tag {
  background: rgba(6, 0, 40, 0.06);
  border-radius: 9999px;
  padding: 6px 12px;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 1.54px;
  text-transform: uppercase;
}
.architecture__item-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  flex-shrink: 0;
}
.architecture__item-title {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 26px;
  letter-spacing: -0.26px;
  line-height: 1.2;
  margin-bottom: 16px;
}
.architecture__item-text {
  font-size: 16px;
  line-height: 1.55;
  color: var(--c-dim);
  margin-bottom: 40px;
  flex-grow: 1;
}
.architecture__item-link {
  font-weight: 600;
  font-size: 16px;
  transition: opacity 0.2s;
}
.architecture__item-link:hover {
  opacity: 0.75;
}
@media (max-width: 991px) {
  .architecture__top {
    flex-direction: column;
    align-items: flex-start;
  }
  .architecture__title {
    font-size: 38px;
  }
}
@media (max-width: 767px) {
  .architecture__title {
    font-size: 30px;
  }
}

.features {
  background: var(--c-dark);
  padding: 96px 0;
}
.features__inner {
  display: flex;
  flex-direction: column;
  gap: 56px;
}
.features__top {
  max-width: 650px;
}
.features__title {
  color: #fff;
}
.features__title-hl {
  background: var(--c-yellow2);
  color: var(--c-dark);
}
.features__text {
  color: var(--c-w72);
  margin-top: 16px;
}
.features__box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.features__item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  padding: 36px;
}
.features__item-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 36px;
}
.features__item-icon img {
  width: 28px;
  height: 28px;
}
.features__item-title {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 26px;
  letter-spacing: -0.26px;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 16px;
}
.features__item-text {
  font-size: 16px;
  line-height: 1.55;
  color: var(--c-w72);
  margin-bottom: 24px;
}
.features__item-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.features__item-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--c-w88);
  line-height: 1;
}
.features__item-list li img {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
@media (max-width: 991px) {
  .features__box {
    grid-template-columns: 1fr;
  }
  .features__title {
    font-size: 38px;
  }
}
@media (max-width: 767px) {
  .features__title {
    font-size: 30px;
  }
}

.formats {
  background: #fff;
  padding: 96px 0;
}
.formats__inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.formats__top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}
.formats__title {
  max-width: 700px;
}
.formats__title-hl {
  background: #ffb69a;
}
.formats__nav {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}
.formats__nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--c-border);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--c-dark);
  transition: background 0.2s, color 0.2s;
}
.formats__nav-btn:hover {
  background: var(--c-dark);
  color: #fff;
}
.formats__slider .slick-list {
  overflow: visible;
}
.formats__slider .slick-slide {
  margin-right: 24px;
  height: auto;
}
.formats__slider .slick-track {
  display: flex;
}
.formats__item {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
  max-width: 350px;
}
.formats__item-img {
  height: 220px;
  border-bottom: 1px solid var(--c-border);
  background: #f5f6fb;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.formats__item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.formats__item-body {
  padding: 22px 24px 26px;
}
.formats__item-title {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.2px;
  margin-bottom: 8px;
}
.formats__item-text {
  font-size: 14px;
  line-height: 1.5;
  color: var(--c-muted);
}
@media (max-width: 991px) {
  .formats__top {
    flex-direction: column;
    align-items: flex-start;
  }
  .formats__title {
    font-size: 38px;
  }
}
@media (max-width: 767px) {
  .formats__title {
    font-size: 30px;
  }
}

.case {
  background: var(--c-bg-light);
  padding: 96px 0;
}
.case__inner {
  display: flex;
  gap: 24px;
  align-items: stretch;
}
.case__left {
  background: var(--c-dark);
  border-radius: var(--radius-lg);
  padding: 40px;
  flex: 1 1 auto;
  overflow: hidden;
}
.case__eyebrow {
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1.68px;
  text-transform: uppercase;
  color: var(--c-orange);
  margin-bottom: 24px;
}
.case__title {
  font-size: 28px;
  letter-spacing: -0.28px;
  color: #fff;
  margin-bottom: 24px;
}
.case__title-accent {
  color: var(--c-yellow);
}
.case__quote-text {
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 24px;
}
.case__author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 40px;
}
.case__author-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 20px;
  color: #fff;
  flex-shrink: 0;
}
.case__author-name {
  font-weight: 700;
  font-size: 15px;
  color: #fff;
}
.case__author-name--dark {
  color: var(--c-dark);
}
.case__author-role {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}
.case__author-role--dark {
  color: var(--c-muted);
}
.case__stats {
  display: flex;
  gap: 12px;
}
.case__stats-item {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 20px 18px;
  flex: 1 1 0;
}
.case__stats-num {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 36px;
  line-height: 1;
  color: var(--c-yellow);
  margin-bottom: 8px;
}
.case__stats-text {
  font-size: 12px;
  line-height: 1.45;
  color: var(--c-w72);
}
.case__right {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 41px;
  flex: 0 0 409px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.case__right-mark {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 80px;
  line-height: 0.9;
  color: var(--c-orange);
  margin-bottom: 8px;
}
.case__right-text {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 20px;
  line-height: 1.54;
  color: var(--c-dark);
  margin-bottom: 40px;
  flex: 1 1 auto;
}
@media (max-width: 1100px) {
  .case__right {
    flex: 0 0 340px;
  }
}
@media (max-width: 991px) {
  .case__inner {
    flex-direction: column;
  }
  .case__right {
    flex: none;
  }
  .case__stats {
    flex-wrap: wrap;
  }
  .case__stats-item {
    flex: 1 1 calc(33% - 8px);
  }
}
@media (max-width: 767px) {
  .case__title {
    font-size: 22px;
  }
  .case__stats {
    flex-direction: column;
  }
  .case__stats-item {
    flex: none;
  }
}

.switcher {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
}
.switcher .switcher__text {
  font: 700 18px/20px "Figtree";
  color: #060028;
  position: relative;
}
.switcher .switcher__text span {
  font: 700 24px/28px "Epom";
  color: #5273EF;
  position: absolute;
  top: -23px;
  right: -100px;
  white-space: nowrap;
}
.switcher .switcher__text span::before {
  content: "";
  position: absolute;
  top: -3px;
  left: -80px;
  width: 75px;
  height: 23px;
  background: center/contain no-repeat url("/resources/img/pricing/icons/switcher-arrow.svg");
}
.switcher .switcher__btn {
  margin: 0 24px;
  width: 72px;
  height: 40px;
  background: #C9CCD0;
  border-radius: 58px;
  position: relative;
  cursor: pointer;
  transition: all 0.2s linear;
}
.switcher .switcher__btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 4px;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  background: #fff;
  border-radius: 41px;
  transition: all 0.2s ease-in-out;
}
.switcher .switcher__btn.active {
  background: var(--c-orange);
}
.switcher .switcher__btn.active::before {
  left: 50%;
  transition: all 0.2s ease-out;
}

.pricing {
  background: #fff;
  padding: 96px 0;
}
.pricing__inner {
  display: flex;
  flex-direction: column;
  gap: 56px;
}
.pricing__top {
  text-align: center;
}
.pricing__title {
  margin-bottom: 16px;
}
.pricing__title-hl {
  background: var(--c-lavender);
}
.pricing__text {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}
.pricing__box {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  align-items: start;
}
.pricing__item {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: 28px;
  padding: 33px 29px;
  position: relative;
}
.pricing__item--featured {
  background: var(--c-dark);
  border-color: var(--c-dark);
}
.pricing__item--featured .pricing__item-name {
  color: #fff;
}
.pricing__item--featured .pricing__item-sub {
  color: rgba(255, 255, 255, 0.8);
}
.pricing__item--featured .pricing__item-amount {
  color: #fff;
}
.pricing__item--featured .pricing__item-period {
  color: rgba(255, 255, 255, 0.6);
}
.pricing__item--featured .pricing__item-price {
  border-top-color: rgba(255, 255, 255, 0.1);
}
.pricing__item--featured .pricing__item-list li {
  color: rgba(255, 255, 255, 0.8);
}
.pricing__item-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--c-yellow);
  border-radius: 9999px;
  padding: 5px 12px;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  white-space: nowrap;
}
.pricing__item-name {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 24px;
  text-align: center;
  line-height: 1;
  margin-bottom: 4px;
}
.pricing__item-sub {
  font-weight: 600;
  font-size: 13px;
  color: var(--c-muted);
  text-align: center;
  margin-bottom: 0;
}
.pricing__item-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  padding: 14px 0;
  margin: 14px 0;
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
}
.pricing__item-amount {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 32px;
  line-height: 1;
  letter-spacing: -0.32px;
  transition: 0.3s ease;
}
.pricing__item-amount--talk {
  font-size: 28px;
}
.pricing__item-period {
  font-size: 14px;
  font-weight: 500;
  color: var(--c-muted);
}
.pricing__item-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}
.pricing__item-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.45;
  color: var(--c-dim);
}
.pricing__item-list li img {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  margin-top: 2px;
}
.pricing__item-btn {
  display: block;
  text-align: center;
  padding: 15px;
  width: 100%;
}
@media (max-width: 1100px) {
  .pricing__box {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .pricing__box {
    grid-template-columns: 1fr;
  }
  .pricing__title {
    font-size: 36px;
  }
  .pricing .switcher {
    flex-direction: column;
    gap: 16px;
  }
  .pricing .switcher__text span {
    top: auto;
    bottom: -42px;
  }
  .pricing .switcher__text span::before {
    transform: rotate3d(-1, 0, 0, 180deg);
  }
}

.cta {
  background: var(--c-dark);
  padding: 80px 0;
}
.cta__inner {
  display: flex;
  align-items: center;
  gap: 48px;
}
.cta__info {
  flex: 1 1 auto;
  max-width: 604px;
  padding-top: 20px;
}
.cta__title {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 48px;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 24px;
}
.cta__title-hl {
  background: var(--c-yellow);
  color: var(--c-dark);
}
.cta__text {
  color: var(--c-w74);
  margin-bottom: 32px;
}
.cta__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cta__list-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 17px;
  color: #fff;
}
.cta__list-item img {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.cta__form-wrap {
  flex: 0 0 552px;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 48px 44px;
}
.cta__form-title {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 20px;
  color: var(--c-dark);
  text-align: center;
  margin-bottom: 32px;
  line-height: 1.3;
}
.cta form {
  max-width: 410px;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 1100px) {
  .cta__inner {
    flex-direction: column;
  }
  .cta__form-wrap {
    flex: none;
    width: 100%;
    max-width: 552px;
  }
  .cta__info {
    max-width: 100%;
    padding-top: 0;
  }
}
@media (max-width: 767px) {
  .cta__title {
    font-size: 34px;
  }
  .cta__form-wrap {
    max-width: 100%;
    padding: 32px 24px;
  }
  .cta__list {
    gap: 4px;
  }
}

@media (max-width: 1280px) {
  :root {
    --pad-x: 48px;
  }
}
@media (max-width: 767px) {
  .title br {
    display: none;
  }

  :root {
    --pad-x: 20px;
    --container-p: 0 16px;
  }
}

/*# sourceMappingURL=style.css.map */
