.hero--wordpress .breadcrumbs {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  flex-wrap: wrap;
}

.hero--wordpress .breadcrumbs a {
  color: var(--accent-link);
  transition: opacity 0.2s;
}

.hero--wordpress .breadcrumbs a:hover {
  opacity: 0.8;
}

.hero--wordpress .breadcrumbs__sep {
  color: var(--accent-color);
  font-weight: 400;
}

.hero--wordpress .breadcrumbs__current {
  color: var(--accent-link);
}

.hero--wordpress {
  margin-top: 1rem;
  margin-bottom: 5rem;
}
.hero--wordpress .hero__container {
  padding: 3.5rem 5rem;
  background: #faf8fd;
  border-radius: 2.5rem;
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
}

.hero--wordpress .hero__content h2 {
  margin-bottom: 1.5rem;
}

.text-accent {
  color: var(--accent-color);
}

.hero__subtitle {
  color: var(--default-color);
  margin-bottom: 2rem;
}

.hero__features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 1.125rem;
}

.hero__feature {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero__feature-icon {
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero__image-wrapper--wordpress {
  position: relative;
  width: 100%;
  max-width: 45rem;
  height: auto;
  margin-right: -8rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__photo--wordpress {
  width: 100%;
  height: auto;
  max-height: 30rem;
  object-fit: contain;
  -webkit-mask-image: none;
  mask-image: none;
  background: transparent;
  margin-top: 0;
}

@media (max-width: 48em) {
  .hero--wordpress .hero__content h2 {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
  }
  .hero--wordpress {
    margin-bottom: 4rem;
  }

  .hero--wordpress .hero__container {
    display: flex;
    flex-direction: column;
    padding: 2rem 0;
    border-radius: 2rem;
  }

  .hero--wordpress .breadcrumbs {
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
  }

  .hero--wordpress .hero__content h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .hero__subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .hero__features {
    gap: 0.875rem;
    margin-bottom: 2rem;
  }

  .hero__feature {
    font-size: 0.9375rem;
  }

  .hero__feature-icon {
    width: 2rem;
    height: 2rem;
  }

  .hero__image-wrapper--wordpress {
    /*position: absolute;*/
    z-index: 0;
    margin-right: 0;
    margin-bottom: 1.5rem;
    max-width: 100%;
    /*bottom: 6rem;*/
    /*left: 2rem;*/
    opacity: 0.6;
  }

  .hero__photo--wordpress {
    max-height: 18rem;
  }
  .hero--wordpress .hero__content {
    position: relative;
    z-index: 1;
  }
}


.advantages {
  margin-bottom: 7.5rem;
}

.advantages__title {
  margin-bottom: 2.5rem;
}

.advantages__grid {
  display: grid;
  gap: 2rem;
}

.advantages__grid--3x3 {
  grid-template-columns: repeat(3, 1fr);
}

.advantage-card {
  background: #fff;
  border: 1px solid #00000026;
  border-radius: 2rem;
  padding: 2rem;
  transition: all 0.3s ease;
  height: auto;
  min-height: 18.125rem;
}

.advantage-card:hover {
  border-color: rgba(0, 133, 235, 0.2);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
  transform: translateY(-2px);
}

.advantage-card__icon {
  width: 3.063rem;
  height: 3.063rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.advantage-card__icon svg {
  width: 100%;
  height: 100%;
}

.advantage-card__title {
  margin-bottom: 0.5rem;
  color: var(--default-color);
}

.advantage-card__text {
  color: var(--default-color);
}


.advantages--cloudserver {
  margin-bottom: 7.5rem;
}

.advantages__two-cols {
  display: grid;
  grid-template-columns: 1.4fr 0.67fr;
  gap: 2rem;
}

.advantages__col {
  background: #fff;
  border: 1px solid #00000026;
  border-radius: 2rem;
  padding: 2rem;
}

.advantages__col-title {
  margin-bottom: 1.5rem;
  color: var(--default-color);
}

.advantages__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.advantages__list-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--default-color);
}

.advantages__check {
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.advantages__check img {
  width: 100%;
}

.advantages__check--orange svg circle {
  stroke: var(--accent-color);
  stroke-opacity: 0.3;
}

.advantages__check--orange svg path {
  stroke: var(--accent-color);
}
.advantage-card__icon img {
  width: 100%;
}

@media (max-width: 48em) {
  .advantages {
    margin-bottom: 4rem;
  }

  .advantages__title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }

  .advantages__grid--3x3 {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .advantage-card {
    padding: 1.5rem;
    border-radius: 2rem;
    min-height: auto;
  }

  .advantage-card__icon {
    width: 2.5rem;
    height: 2.5rem;
  }

  .advantage-card__title {
    font-size: 1rem;
  }

  .advantage-card__text {
    font-size: 0.9375rem;
  }
  .advantages__two-cols {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .advantages__col {
    padding: 1.5rem;
    border-radius: 2rem;
  }

  .advantages__col-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }

  .advantages__list {
    gap: 0.875rem;
  }

  .advantages__list-item {
    font-size: 0.9375rem;
  }
}

.docs-section {
  margin-bottom: 7.5rem;
}

.docs-block {
  margin-bottom: 3.5rem;
}

.docs-block:last-child {
  margin-bottom: 0;
}

.docs-block__title {
  margin-bottom: 1.5rem;
  color: var(--default-color);
}

.docs-grid {
  display: grid;
  grid-template-columns: repeat(3, 26.3rem);
  gap: 1.5rem;
}

.doc-card {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 2rem;
  background: #fff;
  border: 1px solid #00000026;
  backdrop-filter: blur(24px);
  border-radius: 2rem;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

.doc-card:hover {
  border-color: rgba(0, 133, 235, 0.2);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transform: translateY(-2px);
}

.doc-card__icon {
  width: 2.5rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.doc-card__icon img {
  width: 100%;
  height: 100%;
}

.doc-card__title {
  color: var(--default-color);
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.doc-card__meta {
  font-size: 1.125rem;
  color: var(--secondary);
}

.doc-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--accent-link);
  transition: gap 0.2s ease;
}

.doc-card__link img {
  width: 0.875rem;
  height: 0.875rem;
  transition: transform 0.2s ease;
}
.doc-card--link {
  gap: 1rem;
}
.doc-card--link:hover .doc-card__link {
  gap: 0.625rem;
}

.doc-card--link:hover .doc-card__link svg {
  transform: translateX(3px);
}


@media (max-width: 48em) {
  .docs-section {
    margin-bottom: 4rem;
  }

  .docs-block {
    margin-bottom: 2.5rem;
  }

  .docs-block__title {
    margin-bottom: 1rem;
  }

  .docs-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .doc-card {
    padding: 1.5rem;
    border-radius: 2rem;
    gap: 0.625rem;
  }

  .doc-card__title {
    font-size: 0.9375rem;
  }

  .doc-card__meta {
    font-size: 0.8125rem;
  }

  .doc-card__link {
    font-size: 0.875rem;
  }
}

.audience {
  margin-bottom: 7.5rem;
  position: relative;
  overflow: hidden;
}

.audience .stats__bg-decor {
  z-index: 0;
  left: auto;
  right: -12rem;
  top: -0.8rem;
  transform: rotate(359deg);
}

.audience__title {
  margin-bottom: 2.5rem;
  color: var(--default-color);
}

.audience--blue {
  background: linear-gradient(135deg, #e8f4fc 0%, #d6ecfa 100%);
  border-radius: 4rem;
  padding: 4rem 0;
}

.audience__grid {
  display: grid;
  gap: 2rem;
}

.audience__grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

.audience-card {
  background: #ffffffb2;
  backdrop-filter: blur(1.5rem);
  border-radius: 2rem;
  padding: 2rem;
  transition: all 0.3s ease;
}

.audience-card:hover {
  background: rgba(255, 255, 255, 0.95);
  transform: translateY(-0.125rem);
  box-shadow: 0 0.5rem 1.5rem rgba(0, 133, 235, 0.08);
}

.audience-card__icon {
  width: 2.438rem;
  height: 2.438rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.audience-card__icon img {
  width: 2.438rem;
  height: 2.438rem;
}

.audience-card__text {
  color: var(--default-color);
  margin: 0;
}

.audience--industries {
  margin-bottom: 7.5rem;
}

.audience__grid--custom {
  display: grid;
  gap: 2rem;
  justify-content: start;
}

.audience__grid--custom_block {
  display: flex;
  gap: 2rem;
}

.industry-card {
  background: #f7f7f7;
  border-radius: 2rem;
  padding: 2rem;
  transition: all 0.3s ease;
  border: none;
  width: var(--card-width, auto);
}

.industry-card:hover {
  background: #ebebef;
  transform: translateY(-0.125rem);
  box-shadow: 0 0.25rem 1.25rem rgba(0, 0, 0, 0.04);
}

.industry-card__icon {
  max-width: 6.25rem;
  min-width: 3.613rem;
  width: fit-content;
  height: 3.5rem;
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.industry-card__icon img {
  width: auto;
  height: 100%;
}

.industry-card__title {
  color: var(--default-color);
  margin: 0 0 0.5rem 0;
}

.industry-card__text {
  color: var(--default-color);
  margin: 0;
}

@media (max-width: 48em) {
  .audience {
    margin-bottom: 4rem;
  }

  .audience__title {
    margin-bottom: 1.5rem;
  }

  .audience--blue {
    padding: 1.5rem;
    border-radius: 2rem;
    margin-bottom: 3rem;
  }
  .industry-card__icon {
    width: 4.813rem;
  }

  .audience__grid--4 {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .audience-card {
    padding: 1.5rem;
  }

  .audience-card__icon {
    width: 2.5rem;
    height: 2.5rem;
  }

  .audience-card__text {
    font-size: 0.9375rem;
  }
  .audience--industries {
    margin-bottom: 4rem;
  }

  .audience__grid--custom {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .audience__grid--custom_block {
    flex-direction: column;
    gap: 1rem;
  }

  .industry-card {
    width: 100%;
    padding: 1.5rem;
  }
}

.licenses {
  margin-bottom: 7.5rem;
  background: #f7f7f7;
  position: relative;
  border-radius: 3.375rem;
  padding: 4rem;
}

.licenses__swiper {
  overflow: hidden;
}

.licenses__slide {
  width: 100%;
}

.licenses__card {
  display: flex;
  align-items: stretch;
  overflow: hidden;
  min-height: 26.688rem;
  gap: 7rem;
}

.licenses__image {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f2f7fa;
  border-radius: 2.5rem;
  border: 1px solid #00000026;
  height: 100%;
  overflow: hidden;
  width: 40rem;
}

.licenses__image img {
  max-width: 100%;
  max-height: 26rem;
  object-fit: contain;
  border-radius: 0.5rem;
  transform: scale(1.2);
}

.licenses__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-bottom: 6.5rem;
  position: relative;
  gap: 6.5rem;
  height: fit-content;
  width: 35rem;
}
.licenses__content-block {
  display: grid;
}
.licenses__label {
  display: inline-block;
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--secondary);
}

.licenses__title {
  color: var(--default-color);
  margin: 0 0 1rem 0;
}

.licenses__text {
  color: var(--default-color);
  margin: 0 0 1rem 0;
}
.licenses__content .news__btn-all {
  margin-top: 0;
  font-size: 1rem;
  padding: 0.75rem 1.875rem;
}

.licenses__nav {
  display: flex;
  align-items: center;
  position: absolute;
  bottom: 4rem;
  right: 26rem;
  justify-content: center;
  gap: 1rem;
  z-index: 5;
}

.licenses__nav-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative !important;
  top: auto !important;
  border: 1px solid rgba(0, 0, 0, 0.15);
  width: 4.25rem !important;
  height: 2.5rem !important;
  border-radius: 6.25rem !important;
  margin-top: 0 !important;
  left: 0 !important;
  transition: all 0.3s ease;
}
.licenses__nav-btn:hover,
.licenses__nav-btn:hover {
  background: rgba(254, 140, 0, 1);
  border-color: transparent;
}
.licenses__nav-btn:hover img,
.licenses__nav-btn:hover img {
  filter: brightness(0) invert(1);
}
.licenses__nav-btn:after,
.licenses__nav-btn:after {
  display: none;
}
.licenses__nav-btn img,
.licenses__nav-btn img {
  width: 1.25rem;
  height: 1.25rem;
  transition: all 0.3s ease;
}

.licenses__nav-btn.swiper-button-disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.licenses__counter {
  font-size: 1.125rem;
  color: rgba(0, 0, 0, 0.4) !important;
  min-width: 2.5rem;
  text-align: center;
}


@media (max-width: 48em) {
  .licenses {
    margin-bottom: 4rem;
    border-radius: 2rem;
    padding: 1.5rem;
  }

  .licenses__card {
    flex-direction: column;
    min-height: auto;
    gap: 1.5rem;
  }

  .licenses__image {
    flex: 0 0 auto;
    width: 100%;
    border-radius: 2rem;
    height: auto;
    min-height: 16rem;
  }

  .licenses__image img {
    max-height: 14rem;
  }

  .licenses__content {
    padding-bottom: 0;
    gap: 1.5rem;
    padding-bottom: 1rem;
    width: 100%;
  }

  .licenses__content-block {
    gap: 0.75rem;
  }

  .licenses__label {
    font-size: 0.875rem;
  }

  .licenses__title {
    font-size: 1.25rem;
    line-height: 1.3;
  }

  .licenses__text {
    font-size: 1rem;
    line-height: 1.5;
  }

  .licenses__content .news__btn-all {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .licenses__nav {
    position: static;
    margin-top: 1.5rem;
    justify-content: center;
    width: 100%;
  }

  .licenses__nav-btn {
    width: 3.5rem !important;
    height: 2.5rem !important;
  }

  .licenses__counter {
    font-size: 1rem;
  }
}

@media (min-width: 48em) and (max-width: 64em) {
  .licenses {
    padding: 2.5rem;
    border-radius: 2.5rem;
  }

  .licenses__card {
    gap: 3rem;
    min-height: auto;
  }

  .licenses__image {
    flex: 0 0 40%;
    padding: 2rem;
    border-radius: 2rem;
  }

  .licenses__image img {
    transform: scale(1);
  }

  .licenses__content {
    padding-bottom: 5rem;
    gap: 3rem;
  }

  .licenses__nav {
    bottom: 2rem;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }
}

.service-examples {
  margin-bottom: 7.5rem;
  padding: 4rem 0;
  background: #f7f7f7;
  border-radius: 4rem;
}

.service-examples__inner {
  position: relative;
}
.service-examples__inner .licenses__content {
  gap: 3.688rem;
  padding-bottom: 3.688rem;
  width: 34rem;
}
.service-examples__inner .licenses__image {
  width: 41rem;
  height: auto;
}
.service-examples__swiper {
  overflow: visible;
}

.service-examples__slide {
  width: 100%;
}

.service-examples__card {
  display: flex;
  align-items: stretch;
  gap: 4rem;
  background: #ffffff;
  border-radius: 2rem;
  padding: 3rem;
  min-height: 25rem;
}

.service-examples__content {
  flex: 0 0 45%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1rem 0;
}

.service-examples__title {
  color: var(--default-color);
  margin: 0 0 1rem 0;
  text-transform: uppercase;
}

.service-examples__text {
  margin: 0;
}
.service-examples__image {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f0f4f8;
  border-radius: 1.5rem;
  overflow: hidden;
}

.service-examples__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1.5rem;
}

.service-examples__nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}

.service-examples__nav-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border: 0.0625rem solid #d1d5db;
  border-radius: 50%;
  background: #ffffff;
  color: #374151;
  cursor: pointer;
  transition: all 0.3s ease;
}

.service-examples__nav-btn:hover {
  border-color: #0085eb;
  color: #0085eb;
}

.service-examples__nav-btn.swiper-button-disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.service-examples__counter {
  font-size: 1.125rem;
  color: rgba(0, 0, 0, 0.4) !important;
  min-width: 2.5rem;
  text-align: center;
}

.service-examples__inner .licenses__nav {
  right: auto;
  bottom: 0;
}
.service-examples__inner .licenses__image img {
  transform: scale(1);
}

@media (max-width: 48em) {
  .service-examples {
    margin-bottom: 4rem;
    padding: 1.5rem;
    border-radius: 1.5rem;
  }

  .service-examples__card {
    flex-direction: column-reverse;
    gap: 1.5rem;
    padding: 1.5rem;
    min-height: auto;
  }

  .service-examples__content {
    flex: 0 0 auto;
  }

  .service-examples__title {
    font-size: 1.375rem;
  }

  .service-examples__image {
    min-height: 12rem;
  }

  .service-examples__nav {
    justify-content: center;
    margin-top: 1.5rem;
  }
  .service-examples__inner .licenses__image {
    width: 100%;
  }
  .service-examples__inner .licenses__content {
    order: 1;
    width: 100%;
    padding-bottom: 1rem;
  }
}
.cta-banner {
  margin-bottom: 7.5rem;
  position: relative;
  overflow: hidden;
}

.cta-banner__inner {
  background: var(--accent-link);
  border-radius: 2.5rem;
  padding: 2.5rem 5rem 2.5rem 2.5rem;
  position: relative;
  overflow: hidden;
  color: #ffffff;
  z-index: 1;
}
.cta-banner__inner .stats__card {
  height: auto !important;
}
.cta-banner__inner .stats__card:first-child {
  width: 21.438rem;
}
.cta-banner__inner .stats__card:last-child {
  width: 31rem;
}

.cta-banner__stats-block {
  display: flex;
  gap: 2rem;
}

.cta-banner__title {
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 1;
  letter-spacing: -0.158rem;
}

.cta-banner__stats {
  display: flex;
  align-items: center;
  gap: 5rem;
  position: relative;
  z-index: 1;
}

.cta-banner__stat-value {
  font-size: 3.75rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.cta-banner__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  background: #ffffff;
  color: var(--accent-link);
  border-radius: 6.25rem;
  font-size: 1.25rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.cta-banner__btn:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
}

.cta-banner__arrow {
  position: absolute;
  top: 3rem;
  right: 3.3rem;
  pointer-events: none;
  width: 7.953rem;
  height: 4.764rem;
}

@media (max-width: 48em) {
  .cta-banner {
    margin-bottom: 4rem;
  }

  .cta-banner__inner {
    border-radius: 2rem;
    padding: 2rem 1.5rem;
  }

  .cta-banner__title {
    margin-bottom: 1.5rem;
    letter-spacing: normal;
  }

  .cta-banner__stats {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }

  .cta-banner__stat {
    padding: 1.25rem 1.5rem;
    min-width: auto;
  }

  .cta-banner__stat-value {
    font-size: 1.75rem;
  }

  .cta-banner__stat-label {
    font-size: 0.9375rem;
  }

  .cta-banner__btn {
    width: 100%;
    margin-left: 0;
    margin-top: 0.5rem;
    padding: 1rem;
    font-size: 1.125rem;
  }

  .cta-banner__arrow {
    display: none;
  }
  .cta-banner__stats-block {
    display: grid;
  }
  .cta-banner__inner .stats__card:first-child {
    width: 100%;
  }
  .cta-banner__inner .stats__card:last-child {
    width: 100%;
  }
}
.audit-steps {
  margin-bottom: 7.5rem;
}

.audit-steps__title {
  font-size: 3.75rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 2.5rem;
  color: var(--default-color);
}

.audit-steps__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.audit-step {
  display: flex;
  align-items: center;
  gap: 1.3rem;
  padding: 1rem 2rem 1rem 1.2rem;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 2rem;
  transition: all 0.3s ease;
}

.audit-step:hover {
  border-color: rgba(0, 133, 235, 0.3);
  box-shadow: 0 4px 20px rgba(0, 133, 235, 0.06);
}

.audit-step__number {
  font-size: 4.5rem;
  font-weight: 700;
  color: var(--accent-color);
  font-family: "Caveat", sans-serif;
  letter-spacing: 1rem;
}

.audit-step__text {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--default-color);
  margin: 0;
}

@media (max-width: 48em) {
  .audit-steps {
    margin-bottom: 4rem;
  }

  .audit-steps__title {
    font-size: 1.625rem;
    margin-bottom: 1.5rem;
  }

  .audit-steps__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .audit-step {
    padding: 1rem 1.5rem 1rem 1rem;
    border-radius: 1.25rem;
  }

  .audit-step__number {
    font-size: 3.5rem;
    min-width: 2rem;
  }

  .audit-step__text {
    font-size: 1rem;
    padding-top: 0.25rem;
  }
}

.mail-steps {
  margin-bottom: 7.5rem;
}

.mail-steps__title {
  margin-bottom: 1rem;
  color: var(--default-color);
}

.mail-steps__subtitle {
  margin-bottom: 2.5rem;
}

.mail-steps__track {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  height: 8.563rem;
}

.mail-step {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
  position: relative;
}

.mail-step:nth-child(even) {
  transform: translateY(-2.5rem);
}

.mail-step__number-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mail-step__circle {
  position: absolute;
  width: 3.75rem;
  height: 2.5rem;
  bottom: 0rem;
  left: -0.4rem;
}

.mail-step__circle img {
  width: 3.75rem;
  height: 2.5rem;
}

.mail-step__number {
  position: relative;
  z-index: 1;
  font-size: 4.5rem;
  font-weight: 700;
  color: var(--accent-color);
  line-height: 1;
  font-family: "Caveat", sans-serif;
  letter-spacing: 1rem;
}

.mail-step__text {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--default-color);
  margin: 0;
  max-width: 10.938rem;
}

@media (max-width: 48em) {
  .mail-steps {
    margin-bottom: 4rem;
    border-radius: 2rem;
    padding: 0rem 1rem;
  }

  .mail-steps__title {
    margin-bottom: 1.5rem;
  }

  .mail-steps__subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .mail-steps__track {
    flex-direction: column;
    gap: 1rem;
    height: auto;
  }

  .mail-step {
    flex-direction: row;
    align-items: center;
    text-align: left;
    gap: 1rem;
  }

  .mail-step:nth-child(even) {
    transform: translateY(0);
  }

  .mail-step__number-wrap {
    width: 3.5rem;
    height: 3.5rem;
    flex-shrink: 0;
    margin-bottom: 0;
  }

  .mail-step__number {
    font-size: 3.5rem;
  }

  .mail-step__text {
    font-size: 1rem;
    max-width: none;
  }
}
.how-we-work {
  margin-bottom: 7.5rem;
}

.how-we-work__title {
  margin-bottom: 3rem;
  color: var(--default-color);
}

.how-we-work__grid {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.688rem;
}

.how-we-work__item {
  flex: 1;
  max-width: 14rem;
  position: relative; 
}

.how-we-work__item--top {
  margin-top: 0;
}

.how-we-work__item--bottom {
  margin-top: 4rem;
}

.how-we-work__item-title {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--default-color);
  margin: 0 0 0.5rem 0;
}

.how-we-work__item-text {
  font-size: 0.875rem;
  line-height: 1.4;
  color: var(--default-color);
  margin: 0;
}

.how-we-work__arrow {
  position: absolute;
  width: 5.164rem;
  height: 2.74rem;
  pointer-events: none;
}

.how-we-work__arrow--down {
  bottom: -1.5rem;
  right: -5.5rem;
  transform: scaleY(-1);
}

.how-we-work__arrow--up {
  top: -0.5rem;
  right: -4rem;
}

.how-we-work__item:last-child .how-we-work__arrow {
  display: none;
}


@media (max-width: 48em) {
  .how-we-work {
    margin-bottom: 4rem;
  }

  .how-we-work__title {
    margin-bottom: 1.5rem;
  }

  .how-we-work__grid {
    flex-direction: column;
    gap: 2.5rem;
  }
  .how-we-work__item {
    max-width: 100%;
  }
  .how-we-work__item--bottom {
    margin-top: 0;
  }

  .how-we-work__arrow {
    display: flex;
    transform: rotate(90deg);
    flex-direction: column;
  }
  .how-we-work__arrow--up,
  .how-we-work__arrow--down {
    top: 5.5rem;
    right: -1rem;
  }

  .how-we-work__item-title {
    font-size: 1.125rem;
  }

  .how-we-work__item-text {
    font-size: 0.9375rem;
  }
}

@media (min-width: 48em) and (max-width: 64em) {
  .how-we-work__grid {
    flex-wrap: wrap;
    gap: 2rem;
  }

  /*.how-we-work__item {*/
  /*  flex: 0 0 calc(50% - 1rem);*/
  /*}*/

  /*.how-we-work__item--bottom {*/
  /*  margin-top: 0;*/
  /*}*/

  /*.how-we-work__arrow {*/
  /*  display: none;*/
  /*}*/
}

.features-tabs {
  margin-bottom: 7.5rem;
  overflow: hidden;
}

.features-tabs__nav {
  display: flex;
  align-items: center;
  gap: 1.375rem;
  background: #fff;
  border: 1px solid #00000026;
  border-radius: 6.25rem;
  width: 100%;
}

.features-tabs__btn {
  padding: 0.625rem 2rem;
  border-radius: 6.25rem;
  border: none;
  background: transparent;
  color: var(--secondary);
  font-size: 1.125rem;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  letter-spacing: 1%;
}

.features-tabs__btn:hover {
  color: var(--default-color);
}

.features-tabs__btn--active {
  background: var(--accent-color);
  color: #fff !important;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0%;
}

.features-tabs__content {
  display: none;
  margin-top: 1rem;
}

.features-tabs__content--active {
  display: block;
}

.features-tabs__title {
  margin-bottom: 1.5rem;
  color: var(--default-color);
}


.transfer-banner {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 4rem;
  position: relative;
  z-index: -1;
}
.marg-top {
  margin-top: 2.5rem;
}
.transfer-banner__content {
  flex: 1;
  max-width: 62.75rem;
}

.transfer-banner__title {
  color: var(--default-color);
  margin: 0 0 1.5rem 0;
  width: 36.438rem;
}

.transfer-banner__text {
  color: var(--default-color);
  margin: 0 0 1.5rem 0;
}

.transfer-banner .news__btn-all {
  margin-top: 0;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.transfer-banner__image {
  flex: 1;
  max-width: 28rem;
}
.transfer-banner .hero__image-wrapper {
  max-width: 55.188rem;
  height: 27.01rem;
}
.transfer-banner .hero__photo {
  height: 38.813rem;
  object-position: 20% 168%;
}
.transfer-banner__image img {
  width: 100%;
  height: auto;
  display: block;
}

.features-tabs__subtitle {
  margin-bottom: 1.5rem;
  color: var(--default-color);
}

.features-tabs__grid {
  display: flex;
  gap: 2rem;
}

.features-tabs__col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.features-tabs__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.features-tabs__icon {
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.features-tabs__item p {
  color: var(--default-color);
  margin: 0;
}

.features-tabs__item p strong {
  color: var(--accent-color);
  font-weight: 700;
}

.features-tabs__item p a {
  color: #0085eb;
  text-decoration: none;
}

.features-tabs__item p a:hover {
  text-decoration: underline;
}


@media (max-width: 48em) {
  .features-tabs {
    margin-bottom: 4rem;
  }

  .features-tabs__nav {
    flex-wrap: wrap;
    border-radius: 1.2rem;
    width: 100%;
    gap: 0.5rem;
  }

  .features-tabs__btn {
    font-size: 0.875rem;
    padding: 0.625rem 1rem;
    flex: 1 0 auto;
    text-align: center;
    border-radius: 1.4rem;
  }
  .transfer-banner__content {
    order: 2;
  }
  .transfer-banner {
    flex-direction: column;
    gap: 1.5rem;
  }
  .features-tabs__content {
    margin-top: 1.5rem;
  }
  .transfer-banner__title {
    font-size: 1.625rem;
    width: auto;
  }
  .marg-top {
    margin-top: 2.5rem;
  }
  .transfer-banner__image {
    order: -1;
    max-width: 100%;
  }

  .features-tabs__subtitle,
  .features-tabs__title {
    font-size: 1.25rem;
  }

  .features-tabs__grid {
    flex-direction: column;
    gap: 1rem;
  }

  .features-tabs__col {
    gap: 1rem;
  }
  .transfer-banner .hero__image-wrapper {
    height: 18.438rem;
    width: 25.188rem;
    margin-right: -3rem;
  }
  .transfer-banner .hero__photo {
    height: 22.438rem;
    margin-top: -3.4rem;
    width: 63rem;
    object-position: 14% 68%;
    mask-size: 109%;
    mask-position: 3% 74%;
    object-size: 100%;
    transform: rotate(4deg);
  }
}


/* Тарифы */
.price-block-wrapper .pb-container * {
  box-sizing: border-box !important;
  margin: 0;
  padding: 0;
  line-height: 1.4;
}

.price-block-wrapper {
  width: 100%;
  padding: 2rem 1rem;
}

.price-block-wrapper .pb-container {
  max-width: 82rem;
  margin: 0 auto;
  width: 100%;
}

.price-block-wrapper .pb-title {
  margin-bottom: 1.5rem;
}

.price-block-wrapper .pb-switcher {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2rem;
  overflow-x: auto;
  flex-wrap: wrap;
}

.price-block-wrapper .pb-switcher-btn {
  padding: 0.5rem 1.5rem;
  border: 1px solid #e2e8f0;
  background: #fff;
  border-radius: 100px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 500;
  white-space: nowrap;
  transition: all 0.2s ease;
  color: #333;
}

.price-block-wrapper .pb-switcher-btn.pb-active {
  border-color: #0076ff;
  color: #0076ff;
  box-shadow: 0 2px 8px rgba(0, 118, 255, 0.1);
}




.price-block-wrapper .pb-grid {
  display: none;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  align-items: stretch;
}

.price-block-wrapper .pb-grid.pb-visible {
  display: grid;
}

.price-block-wrapper .pb-card {
  background: #f7f7f7;
  border-radius: 24px;
  padding: 2rem 1.5rem;
  border: 1px solid #f1f5f9;
  box-shadow: 0 4px 18px rgba(0,0,0,0.02);
  position: relative;
  display: flex;
  flex-direction: column;
}

.price-block-wrapper .pb-card.pb-popular {
  background: #e5f3fd;
  border-color: #d0e4ff;
}

.price-block-wrapper .pb-badge-top {
  position: absolute;
  top: -0.6rem;
  left: 85%;
  transform: translateX(-50%);
  background: #0076ff;
  color: white;
  padding: 0.2rem 0.8rem;
  font-size: 0.7rem;
  font-weight: bold;
  border-radius: 10px;
  text-transform: uppercase;
}

.price-block-wrapper .pb-card-title {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #000;
}

.price-block-wrapper .pb-card-price {
  font-size: 3rem;
  font-weight: 700;
  color: #0076ff;
  line-height: 1;
}

.price-block-wrapper .pb-currency {
  font-size: 0.8rem;
  font-weight: 600;
  vertical-align: super;
}

.price-block-wrapper .pb-card-subtitle {
  font-size: 0.8rem;
  color: #0076ff;
  opacity: 0.8;
  margin-top: 0.3rem;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.price-block-wrapper .pb-discount {
  background: #e1efff;
  padding: 0.1rem 0.3rem;
  border-radius: 4px;
  font-weight: 700;
}

.price-block-wrapper .pb-features-list {
  list-style: none;
  margin-bottom: 2rem;
}

.price-block-wrapper .pb-features-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.3rem 0;
  font-size: 0.7rem;
  color: #64748b;
  position: relative;
}
.price-block-wrapper .pb-features-list li::before {
  border-bottom: 1px solid #c3cfd7;
  display: block;
  height: 1px;
  width: 100%;
  position: absolute;
  bottom: 8px;
  left: 0;
  content: "";
  z-index: 1;
}
.price-block-wrapper .pb-features-list li span {
  z-index: 2;
  padding-right: 0.5rem;
  background: linear-gradient(90deg, transparent 0, #f7f7f7 3px, #f7f7f7 100%);
}

.price-block-wrapper .pb-features-list li strong {
  color: #0f172a;
  padding-left: 0.5rem;
  z-index: 2;
  background: linear-gradient(90deg, #f7f7f7 0, #f7f7f7 97%, transparent 100%);
}

.price-block-wrapper .pb-popular .pb-features-list li span {
  z-index: 2;
  padding-right: 12px;
  background: linear-gradient(90deg, transparent 0, #e5f3fd 3px, #e5f3fd 100%);
}

.price-block-wrapper .pb-popular .pb-features-list li strong {
  color: #0f172a;
  padding-left: 12px;
  z-index: 2;
  background: linear-gradient(90deg, #e5f3fd 0, #e5f3fd 97%, transparent 100%);
}

.price-block-wrapper .pb-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.price-block-wrapper .pb-controls button {
  border: none;
  background: #e2e8f0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: #000;
}

.price-block-wrapper .pb-card-tags {
  background: #fff;
  padding: 1rem;
  margin-bottom: 2rem;
  flex-grow: 1;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.price-block-wrapper .pb-popular .pb-card-tags {
  background: #f2f9fe;
}

.price-block-wrapper .pb-tag {
  font-size: 0.8rem;
  color: #94a3b8;
  position: relative;
  padding-left: 1rem;
  text-align: left;
  font-weight: 500;
}

.price-block-wrapper .pb-tag::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0.6rem;
  height: 0.6rem;
  background-image: url('/local/templates/redesign_2026/assets/img-newBlock/qweqweqweStroke.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.price-block-wrapper .pb-card-actions {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.price-block-wrapper .pb-btn {
  width: 100%;
  padding: 0.7rem;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
}

.price-block-wrapper .pb-btn-order {
  background: #f97316;
  color: white;
  border: none;
}

.price-block-wrapper .pb-btn-order:hover {
  background: #ea580c;
}

.price-block-wrapper .pb-btn-test {
  background: transparent;
  color: #0076ff;
  border: 1px solid #0076ff;
}

.price-block-wrapper .pb-popular .pb-btn-test {
  background: #fff;
}

.price-block-wrapper .pb-btn-test:hover {
  background: rgba(0, 118, 255, 0.05);
}


/*sms*/
.sms-modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  padding: 1rem;
}

.sms-modal__overlay.active {
  display: flex;
}

.sms-modal__box {
  background: #ffffff;
  border-radius: 2.813rem;
  padding: 2rem;
  max-width: 25rem;
  width: 100%;
  position: relative;
  box-shadow: 0 1.25rem 2.5rem rgba(0, 0, 0, 0.15);
  animation: smsFadeIn 0.3s ease;
}

@keyframes smsFadeIn {
  from { opacity: 0; transform: translateY(-1.25rem); }
  to { opacity: 1; transform: translateY(0); }
}

.sms-modal__close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  width: 1rem;
  height: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  transition: color 0.3s;
  background: none;
  border: none;
  padding: 0;
}

.sms-modal__close:hover {
  color: var(--default-color);
}

.sms-modal__phone-wrap {
  display: flex;
  align-items: center;
  background: var(--bg-light);
  border-radius: 0.75rem;
  padding: 0 1rem;
}

.sms-modal__phone-wrap .feedback__input {
  background: transparent;
  flex: 1;
}
.feedback__input-group.bg-color_update-sms .feedback__input{
  background-color: #F0F5FF;
  padding-left: 1.563rem;
  font-size: 1.25rem;
}
.feedback__input-group.bg-color_update-sms .feedback__input::placeholder{
  color: #AAB7C6;
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 1.2;
}
.sms-modal__prefix {
  color: var(--secondary);
  margin-right: 0.5rem;
  font-weight: 600;
}

.sms-modal__success-icon {
  width: 3.25rem;
  height: 2.688rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
}

.sms-modal__success-icon img {
  width: 3.25rem;
  height: 2.688rem;
}
.sms-modal__checkbox-wrap {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.813rem;
  color: #6B7280;
  margin-top: 1.375rem;
  cursor: pointer;
}

.sms-modal__checkbox-wrap input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.sms-modal__checkbox-wrap .sms-modal__checkbox-visual {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  background: #F0F5FF;
  border-radius: 0.313rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
  margin-top: 0.063rem;
}

.sms-modal__checkbox-wrap .sms-modal__checkbox-visual svg {
  width: 0.75rem;
  height: 0.75rem;
  color: #F97316;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.sms-modal__checkbox-wrap input[type="checkbox"]:checked + .sms-modal__checkbox-visual svg {
  opacity: 1;
  transform: scale(1);
}

.sms-modal__checkbox-wrap label {
  flex: 1;
  cursor: pointer;
  line-height: 1.4;
}

.sms-modal__consent-error {
  display: none;
  color: #ff4444;
  font-size: 0.75rem;
  margin-top: 0.375rem;
  padding-left: 2rem;
}

.sms-modal__title {
  margin-bottom: 0.75rem;
  font-size: 1.375rem;
  color: #1F2937;
}

.sms-modal__desc {
  margin-bottom: 1rem;
  color: #6B7280;
  font-size: 0.813rem;
}

.btn.sms-modal__btn-full {
  width: 100%;
  margin-top: 0.938rem;
}

.sms-modal__text-center {
  text-align: center;
  margin-bottom: 1.438rem;
}
.feedback__input-group .error-message {
  display: none;
  color: #ff4444;
  font-size: 0.75rem;
  margin-top: 0.25rem;
}

.feedback__input--error {
  border-color: #ff4444 !important;
}

.feedback__input--error + .error-message {
  display: block;
}
.vec-arr_sms{
  width: 4.228rem;
  height: 3.82rem;
  position: absolute;
  right: -.3rem;
  top: 5.7rem;
}
.sms-link-agree {
  color: #ff6b35;
  text-decoration: underline;
}