.main-hero {
    position: relative;
    min-height: 28.25rem;
    background: #f7f7f7;
    overflow: hidden;
    padding: 4rem 0;
    margin-bottom: 5rem;
}

.main-hero__inner {
    display: flex;
    align-items: center;
    position: relative;
    justify-content: space-between;
}

.main-hero__content {
    width: 39rem;
    padding-right: 2rem;
    position: relative;
    z-index: 2;
}

.main-hero__logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.main-hero__logo-text {
    font-size: 1rem;
    font-weight: 500;
    color: var(--accent-link);
}

.main-hero__title {
    margin-bottom: 1rem;
    max-width: 50rem;
}

.main-hero__subtitle {
    font-size: 1.125rem;
    line-height: 1.4;
    color: var(--default-color);
    margin-bottom: 2.5rem;
    max-width: 22rem;
}

.main-hero__buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.main-hero__visual {
    width: 36.633rem;
    position: relative;
    height: 100%;
}

.main-hero__cloud-bg {
    position: absolute;
    right: -70%;
    top: 10%;
    transform: translateY(-47%);
    width: 180%;
    z-index: 1;
}

.main-hero__cloud-bg img {
    width: 59.633rem;
    height: 84.047rem;
}

.main-hero__features {
    position: absolute;
    right: 1rem;
    top: 0%;
    transform: translateY(-50%);
    z-index: 3;
    display: flex;
    gap: 2.5rem;
}

.feature-card {
    background: #ffffff63;
    backdrop-filter: blur(2px);
    border-radius: 2rem;
    padding: 2rem;
    width: 14.188rem;
    height: fit-content;
}

.feature-card:nth-child(2) {
    margin-top: 7.313rem;
}

.feature-card__icon {
    width: 4rem;
    height: 4rem;
    margin-bottom: 0.875rem;
    color: var(--accent-link);
}

.feature-card__icon img {
    width: 100%;
    height: 100%;
}

.feature-card__text {
    font-size: 1.125rem;
    line-height: 1.4;
    color: var(--default-color);
    font-weight: 400;
}

.mobile-fixed-bar {
    display: none;
}
.mobile-fixed-bar__btn--order,
.mobile-fixed-bar__btn--test {
    display: none;
}
.main-hero__buttons .btn--outline {
    margin-top: 0;
}
@media (max-width: 48em) {
    .main-hero {
        min-height: auto;
        /* padding-top: 3rem; */
        padding-top: 4.5rem;
        padding-bottom: 0;
        margin-bottom: 4rem;
        padding-left: 1.25rem;
        padding-right: 1.25rem;
        background: white;
    }

    .main-hero__inner {
        flex-direction: column;
        min-height: auto;
    }

    .main-hero__content {
        flex: none;
        padding-right: 0;
        margin-bottom: 0;
        width: 100%;
    }

    .main-hero__logo {
        margin-bottom: 0.75rem;
    }

    .main-hero__title {
        font-size: 2.5rem;
        margin-bottom: 0.75rem;
        max-width: 100%;
    }

    .main-hero__subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        max-width: 100%;
    }

    .main-hero__buttons {
        flex-direction: column;
    }
    .main-hero__buttons a {
        width: 100%;
    }
    .main-hero__visual {
        flex: none;
        width: 100%;
        min-height: auto;
        position: relative;
        height: 21.813rem;
    }

    .main-hero__cloud-bg {
        right: auto;
        top: 0;
        transform: translateY(-22%);
        width: 160%;
        margin-left: -27%;
    }
    .main-hero__buttons .btn {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }
    .main-hero__features {
        position: absolute;
        right: auto;
        left: 50%;
        top: 55%;
        transform: translate(-50%, -50%);
        width: 100%;
        padding: 0 0rem;
        flex-direction: row;
        justify-content: center;
        gap: 0;
    }

    .feature-card {
        width: auto;
        flex: 1;
        max-width: 12.188rem;
        padding: 1rem;
        border-radius: 1rem;
        backdrop-filter: blur(1px);
    }
    .feature-card:nth-child(1) {
        order: 2;
    }
    .feature-card:nth-child(2) {
        margin-top: 10.313rem;
        margin-right: -3rem;
        order: 1;
    }

    .feature-card__icon {
        width: 2.5rem;
        height: 2.5rem;
        margin-bottom: 0.875rem;
    }

    .feature-card__text {
        font-size: 1rem;
    }

    .mobile-fixed-bar {
        display: none;
        position: fixed;
        bottom: 1rem;
        left: 1rem;
        right: 1rem;
        z-index: 100;
        align-items: center;
        gap: 0.75rem;
        transform: translateY(200%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .mobile-fixed-bar__btn--order,
    .mobile-fixed-bar__btn--test {
        display: none;
    }

    .mobile-fixed-bar.visible {
        display: flex;
        transform: translateY(0);
    }

    .mobile-fixed-bar__btn--order,
    .mobile-fixed-bar__btn--test {
        display: none;
    }

    .mobile-fixed-bar__btn--order.active,
    .mobile-fixed-bar__btn--test.active {
        display: flex;
        flex: 1;
        align-items: center;
        justify-content: center;
        padding: 1rem 1.5rem;
        background: var(--accent-color);
        color: #ffffff;
        border-radius: 3rem;
        font-weight: 600;
        font-size: 1rem;
        text-align: center;
    }

    .mobile-fixed-bar__btn:hover {
        background: #e06a15;
    }

    .mobile-fixed-bar__chat {
        width: 3.375rem;
        height: 3.375rem;
        min-width: 3.375rem;
        background: var(--accent-link);
        color: #ffffff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .mobile-fixed-bar__chat img {
        width: 2.188rem;
        height: 2.188rem;
    }
    .main-hero__cloud-bg img {
        width: 59.633rem;
        height: auto;
    }
}

.tasks-block {
    background: #ffffff;
    margin-bottom: 7.5rem;
    padding-top: 2.5rem;
}

.tasks-block__title {
    font-size: 3.75rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 2.5rem;
    color: var(--default-color);
}

.tasks-block__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.task-card {
    border: 1px solid #00000026;
    border-radius: 1.5rem;
    padding: 1.5rem;
    background: #ffffff;
    transition:
            border-color 0.3s ease,
            box-shadow 0.3s ease;
}

.task-card:hover {
    border-color: rgba(0, 133, 235, 0.3);
    box-shadow: 0 4px 20px rgba(0, 133, 235, 0.08);
}

.task-card__icon {
    width: 4rem;
    height: 4rem;
    margin-bottom: 1rem;
    color: var(--accent-link);
}

.task-card__icon svg {
    width: 100%;
    height: 100%;
}

.task-card__text {
    color: var(--default-color);
    font-weight: 400;
}

@media (max-width: 48em) {
    .tasks-block {
        padding: 0rem 1.5rem;
        margin-bottom: 4rem;
    }

    .tasks-block__title {
        font-size: 1.625rem;
        margin-bottom: 1.5rem;
    }

    .tasks-block__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .task-card {
        border-radius: 1rem;
        padding: 1rem;
    }

    .task-card__icon {
        width: 2.5rem;
        height: 2.5rem;
        margin-bottom: 0.75rem;
    }

    .task-card__text {
        font-size: 1rem;
    }
}
.iaas-dashboard {
    background: #ffffff;
    overflow: hidden;
    margin-bottom: 7.5rem;
}

.iaas-dashboard__inner {
    display: flex;
    flex-direction: column;
}

.iaas-dashboard__top {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    position: relative;
    margin-bottom: 2.5rem;
}

.iaas-dashboard__left {
    width: 44.375rem;
}

.iaas-dashboard__title {
    margin-bottom: 2rem;
    color: var(--default-color);
}
.iaas-dashboard__left .iaas-dashboard__btn {
    font-size: 1.25rem;
    font-weight: 500;
}
.iaas-dashboard__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    background: var(--accent-color);
    color: #ffffff;
    border-radius: 2rem;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-bottom: 2rem;
}

.iaas-dashboard__btn:hover {
    background: #e06a15;
}

.iaas-dashboard__features {
    display: flex;
    flex-direction: column;
    width: 16.138rem;
}
.iaas-dashboard__left .iaas-dashboard__btn {
    margin-top: 0;
}

.iaas-dashboard__feature {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 1rem;
    line-height: 1.4;
    color: #0085eb;
    font-weight: 500;
}

.iaas-dashboard__feature::before {
    content: "";
    width: 0.375rem;
    height: 0.375rem;
    min-width: 0.375rem;
    background: var(--accent-link);
    border-radius: 50%;
    margin-top: 0.5rem;
}

.iaas-dashboard__right {
    flex: 0 0 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1.625rem;
}

.iaas-dashboard__arrow {
    width: 4.862rem;
    height: 2.687rem;
    margin-top: -0.5rem;
}

.iaas-dashboard__arrow img {
    width: 100%;
    height: 100%;
}

.iaas-dashboard__swiper {
    width: 100%;
    overflow: visible !important;
}

.iaas-dashboard__swiper .swiper-wrapper {
    align-items: stretch;
}

.iaas-dashboard__slide {
    width: auto;
    height: auto;
}

.iaas-dashboard__slide video {
    width: 100%;
    height: 27.563rem;
    border-radius: 2.5rem;
    border: 1px solid #00000026;
}

.iaas-dashboard__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.iaas-dashboard__nav-btn {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.iaas-dashboard__nav-btn:hover {
    border-color: var(--accent-link);
    background: rgba(0, 133, 235, 0.05);
}

.iaas-dashboard__nav-btn svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--default-color);
}

.iaas-dashboard__nav-btn.swiper-button-disabled {
    opacity: 0.4;
    cursor: not-allowed;
}
.iaas-dashboard__nav-btn--prev,
.iaas-dashboard__nav-btn--next {
    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;
    display: flex;
    align-items: center;
    justify-content: center;
}
.iaas-dashboard__nav-btn--prev:hover,
.iaas-dashboard__nav-btn--next:hover {
    background: rgba(254, 140, 0, 1);
    border-color: transparent;
}
.iaas-dashboard__nav-btn--prev:hover img,
.iaas-dashboard__nav-btn--next:hover img {
    filter: brightness(0) invert(1);
}
.iaas-dashboard__nav-btn--next:after,
.iaas-dashboard__nav-btn--prev:after {
    display: none;
}
.iaas-dashboard__nav-btn--next img,
.iaas-dashboard__nav-btn--prev img {
    width: 1.25rem;
    height: 1.25rem;
    transition: all 0.3s ease;
}
.iaas-dashboard__nav-btn--prev:focus,
.iaas-dashboard__nav-btn--next:focus,
.iaas-dashboard__nav-btn--prev:active,
.iaas-dashboard__nav-btn--next:active {
    outline: none !important;
}
.iaas-dashboard__nav-btn--prev,
.iaas-dashboard__nav-btn--next {
    -webkit-tap-highlight-color: transparent;
    user-select: none;
}
.iaas-dashboard__nav-btn--prev::after,
.iaas-dashboard__nav-btn--next::after {
    background-color: transparent !important;
}
.iaas-dashboard__nav-btn--prev.swiper-button-disabled,
.iaas-dashboard__nav-btn--next.swiper-button-disabled {
    opacity: 0.35;
    cursor: auto;
    pointer-events: none;
}
.ai-block_content {
    display: grid;
    grid-template-columns: 1fr 19rem;
    gap: 2.25rem;
}
.ai-block_left {
    width: 100%;
}
.ai-block_right {
    background: #0085eb1a;
    padding: 2.5rem;
    border-radius: 2.5rem;
    width: 19rem;
    display: grid;
    justify-content: space-between;
}
.ai-block_right h3 {
    margin-bottom: 1rem;
}
.ai-block_right-btn {
    display: flex;
    align-items: flex-end;
}
.ai-block_right-btn .news__btn-all {
    width: 100%;
}
@media (max-width: 48em) {
    .iaas-dashboard {
        padding: 0rem 1.5rem;
        margin-bottom: 4rem;
    }
    .ai-block_content {
        grid-template-columns: 1fr;
        gap: 1.125rem;
    }
    .ai-block_right h3 {
        font-size: 1.625rem;
    }
    .ai-block_right-btn .news__btn-all {
        margin-top: 2rem;
    }
    .ai-block_right {
        width: 91%;
        margin: 0 1rem;
        padding: 1.5rem;
        border-radius: 2rem;
    }
    .iaas-dashboard__top {
        flex-direction: column;
        gap: 1rem;
    }

    .iaas-dashboard__left {
        flex: none;
        width: 100%;
    }

    .iaas-dashboard__title {
        font-size: 1.625rem;
        margin-bottom: 1.5rem;
        max-width: 100%;
    }

    .iaas-dashboard__btn {
        width: 100%;
        padding: 0.875rem 1.5rem;
        font-size: 0.9375rem;
        margin-bottom: 1.5rem;
    }

    .iaas-dashboard__features {
        gap: 0;
    }

    .iaas-dashboard__right {
        flex: none;
        width: 100%;
        justify-content: flex-start;
    }

    .iaas-dashboard__arrow {
        position: absolute;
        right: 0;
        transform: scaleX(-1);
        top: 0;
        width: 4.183rem;
        height: 3.419rem;
        margin-top: 0;
    }

    .iaas-dashboard__slide video {
        border-radius: 1.5rem;
        height: 11.438rem;
    }

    .iaas-dashboard__nav {
        margin-top: 1.5rem;
    }

    .iaas-dashboard__nav-btn {
        width: 2.5rem;
        height: 2.5rem;
    }
}
.faq-block {
    /* padding: 5rem 0; */
    margin-bottom: 7.5rem;
    background: #ffffff;
}

.faq-block__title {
    font-size: 3.75rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 2.5rem;
    color: var(--default-color);
}

.faq-block__list {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.faq-block__item {
    background: #00000008;
    overflow: hidden;
    transition: background 0.3s ease;
}
.faq-block__item:last-child {
    border-radius: 0 0 2rem 2rem;
}
.faq-block__item:first-child {
    border-radius: 2rem 2rem 0 0;
}

.faq-block__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.5rem 2.5rem;
    cursor: pointer;
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.4;
    color: var(--default-color);
    transition: color 0.3s ease;
}

.faq-block__icon {
    width: 2.5rem;
    height: 2.5rem;
    min-width: 2.5rem;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    transition:
            transform 0.3s ease,
            border-color 0.3s ease,
            background 0.3s ease;
}

.faq-block__icon svg {
    width: 0.55rem;
    height: 0.55rem;
    color: var(--default-color);
    transition: color 0.3s ease;
}

.faq-block__item.active .faq-block__icon {
    transform: rotate(180deg);
}

.faq-block__answer {
    max-height: 0;
    overflow: hidden;
    transition:
            max-height 0.4s ease,
            padding 0.4s ease;
}

.faq-block__item.active .faq-block__answer {
    max-height: 500px;
}

.faq-block__answer-inner {
    padding: 0 2.5rem 1.5rem;
    font-size: 1.125rem;
    line-height: 1.4;
    color: var(--default-color);
    width: 78rem;
}
.faq-block__answer-inner ul {
    list-style: revert;
    margin: revert;
    padding-left: revert;
}

@media (max-width: 48em) {
    .faq-block {
        /* padding: 3rem 0; */
        padding: 0 1rem;
        margin-bottom: 4rem;
    }

    .faq-block__title {
        font-size: 1.625rem;
        margin-bottom: 2rem;
    }

    .faq-block__question {
        padding: 1.5rem;
        font-size: 1rem;
    }

    .faq-block__icon {
        width: 2.5rem;
        height: 2.5rem;
        min-width: 2.5rem;
    }

    .faq-block__answer-inner {
        padding: 0 1.25rem 1rem;
        font-size: 0.875rem;
        width: 100%;
    }
}
/*.price-calc {
    margin-bottom: 7.5rem;
    background: #ffffff;
}

.price-calc__title {
    margin-bottom: 1rem;
    color: var(--default-color);
}

.price-calc__subtitle {
    color: var(--default-color);
    margin-bottom: 2.5rem;
    max-width: 40.438rem;
}
.price-calc__tooltip-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
}
.price-calc__slider-label,
.price-calc__section-title {
    position: relative;
    z-index: 1;
}
.price-calc__info-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.price-calc__tooltip {
    position: absolute;
    left: 50%;
    bottom: calc(100% + 0.75rem);
    transform: translateX(-50%);
    background: #ffffff;
    border-radius: 0.625rem;
    padding: 1rem;
    box-shadow: 0px 4px 14px 0px rgba(0, 0, 0, 0.13);
    font-size: 0.875rem;
    line-height: 1.4;
    font-weight: 500;
    color: var(--secondary) !important;
    max-width: 16rem;
    min-width: 14.375rem;
    display: none;
    z-index: 9999;
    pointer-events: none;
}

.price-calc__tooltip::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 0.5rem solid transparent;
    border-right: 0.5rem solid transparent;
    border-top: 0.5rem solid #ffffff;
}

.price-calc__info-wrap:hover .price-calc__tooltip {
    display: block;
}

.price-calc__subtitle .price-calc__tooltip,
.price-calc__subtitle:hover .price-calc__tooltip,
.price-calc__info-icon:hover + .price-calc__tooltip,
.price-calc__info-icon:hover ~ .price-calc__tooltip {
    display: none;
}

.price-calc__inner {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.price-calc__left {
    flex: 1;
    display: grid;
    gap: 0.125rem;
}

.price-calc__section {
    background: #f8f9fa;
    border-radius: 0;
    padding: 2rem 2.5rem;
}
.price-calc__section:last-child {
    padding-bottom: 2.5rem;
}
.price-calc__section:first-child {
    padding-top: 2.5rem;
}
.price-calc__section:first-child {
    border-radius: 1.5rem 1.5rem 0 0;
}
.price-calc__section:last-child {
    border-radius: 0 0 1.5rem 1.5rem;
}
.price-calc__section-title {
    font-size: 1.625rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.625rem;
}

.price-calc__info-icon {
    width: 1rem;
    height: 1rem;
    color: var(--secondary);
    cursor: pointer;
    position: relative;
}

.price-calc__os-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.price-calc__os-card {
    background: transparent;
    border: 1px solid #00000026;
    border-radius: 1rem;
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.price-calc__os-card:hover {
    border-color: var(--accent-link);
}

.price-calc__os-card.active {
    border-color: var(--accent-link);
    background: rgba(0, 133, 235, 0.04);
}

.price-calc__os-check {
    width: 1.5rem;
    height: 1.5rem;
    border: 1.5px solid rgba(0, 0, 0, 0.2);
    border-radius: 0.375rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.price-calc__os-card.active .price-calc__os-check {
    background: var(--accent-link);
    border-color: var(--accent-link);
}

.price-calc__os-check svg {
    width: 0.75rem;
    height: 0.75rem;
    color: #ffffff;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.price-calc__os-card.active .price-calc__os-check svg {
    opacity: 1;
}

.price-calc__os-info {
    flex: 1;
}

.price-calc__os-name {
    font-size: 1rem;
    font-weight: 500;
    color: var(--default-color);
    margin-bottom: 0.125rem;
}

.price-calc__os-price {
    font-size: 1rem;
    color: var(--accent-link);
    font-weight: 500;
}

.price-calc__os-logo {
    width: 1.5rem;
    height: 1.5rem;
}

.price-calc__config {
    margin-bottom: 1.5rem;
}
.price-calc__slider-group {
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 5;
}

.price-calc__config-title {
    font-size: 1.625rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.price-calc__slider-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 0.5rem;
    font-size: 1rem;
    color: var(--secondary);
}

.price-calc__slider-label span {
    color: var(--accent-link);
    font-weight: 500;
    line-height: 1.4;
}

.price-calc__slider-value {
    display: grid;
    align-items: center;
    justify-content: space-between;
    background: #ffffff;
    border-radius: 2.5rem;
    overflow: hidden;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.4;
    width: 100%;
}
.price-calc__slider-value_block {
    display: flex;
    justify-content: space-between;
    padding: 1.188rem 2.5rem 0.563rem;
    width: 47rem;
}

.price-calc__slider-input {
    border: none;
    background: transparent;
    font-size: 1rem;
    font-weight: 500;
    color: var(--default-color);
    width: 30rem;
    outline: none;
    -moz-appearance: textfield;
}
.price-calc__slider-input::-webkit-outer-spin-button,
.price-calc__slider-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.price-calc__slider-value span {
    color: #899aad;
    font-weight: 500;
    font-size: 1rem;
}
.price-calc__slider-wrap {
    position: relative;
    height: 0.625rem;
    display: flex;
    align-items: center;
    bottom: -0.26rem;
}

.price-calc__slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 0.125rem;
    background: rgba(0, 0, 0, 0.08);
    border-radius: 0.125rem;
    outline: none;
    margin: 0;
    position: relative;
    z-index: 2;
}

.price-calc__slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 1.55rem;
    height: 0.655rem;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='21' height='10' viewBox='0 0 21 10' fill='none'%3E%3Cpath d='M2.87632 1.23734C3.18519 0.488552 3.9152 0 4.72519 0H19.0204C20.0884 0 20.8143 1.08462 20.407 2.072L17.6471 8.76266C17.3382 9.51145 16.6082 10 15.7982 10H1.50307C0.434993 10 -0.290875 8.91538 0.116417 7.928L2.87632 1.23734Z' fill='%23F47721'/%3E%3C/svg%3E")
    no-repeat center;
    background-size: contain;
    cursor: pointer;
    border: none;
    position: relative;
    z-index: 3;
    top: -0.22rem;
    left: -0.1rem;
}

.price-calc__slider::-moz-range-thumb {
    width: 1.55rem;
    height: 0.655rem;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='21' height='10' viewBox='0 0 21 10' fill='none'%3E%3Cpath d='M2.87632 1.23734C3.18519 0.488552 3.9152 0 4.72519 0H19.0204C20.0884 0 20.8143 1.08462 20.407 2.072L17.6471 8.76266C17.3382 9.51145 16.6082 10 15.7982 10H1.50307C0.434993 10 -0.290875 8.91538 0.116417 7.928L2.87632 1.23734Z' fill='%23F47721'/%3E%3C/svg%3E")
    no-repeat center;
    background-size: contain;
    cursor: pointer;
    border: none;
}

.price-calc__slider-track-fill {
    position: absolute;
    left: -0.15rem;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 0.125rem;
    background: var(--accent-color, #f47721);
    border-radius: 0.125rem;
    pointer-events: none;
    z-index: 1;
}
.price-calc__slider-ticks {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 0.125rem;
    pointer-events: none;
    z-index: 2;
}
.price-calc__slider-tick {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 0.625rem;
    font-weight: 600;
    color: var(--accent-color, #f47721);
    background: #ffffff;
    padding: 0 0.125rem;
    line-height: 1;
    opacity: 0;
    transition: opacity 0.15s ease;
    white-space: nowrap;
}
.price-calc__slider-tick:first-child,
.price-calc__slider-tick:last-child {
    opacity: 1;
}
.price-calc__slider-tick.visible {
    opacity: 1;
}
.price-calc__slider-thumb-label {
    position: absolute;
    top: calc(50% + 1rem);
    left: 1rem;
    transform: translateX(-50%);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-color, #f47721);
    white-space: nowrap;
    pointer-events: none;
    z-index: 4;
    transition: none;
}

.price-calc__slider-marks {
    display: flex;
    justify-content: space-between;
    position: relative;
    height: 1.25rem;
    margin-top: 0.25rem;
    font-size: 0.75rem;
    color: var(--secondary);
    font-weight: 500;
    width: 45rem;
    margin-left: 1.25rem;
    margin-right: 1.25rem;
}
.price-calc__slider-mark {
    position: absolute;
    top: 0;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.15s ease;
    white-space: nowrap;
}
.price-calc__slider-mark.active {
    opacity: 1;
    color: #899aad;
    font-weight: 500;
    font-size: 0.875rem;
}
.price-calc__slider-mark:first-child,
.price-calc__slider-mark:last-child {
    opacity: 1;
}
.price-calc__slider-fill {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background: var(--accent-color);
    border-radius: 0.125rem;
}

.price-calc__slider-thumb {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 1rem;
    height: 1rem;
    background: var(--accent-color);
    border-radius: 0.25rem;
    cursor: pointer;
}

.price-calc__ip-header {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 1.625rem;
}

.price-calc__ip-title {
    font-size: 1.625rem;
    font-weight: 700;
    line-height: 1.2;
}
.price-calc__ip-title br {
    display: none;
}
.price-calc__ip-price {
    color: var(--accent-link);
    font-weight: 500;
    font-size: 1rem;
    line-height: 1.4;
}

.price-calc__counter {
    display: inline-flex;
    align-items: center;
    background: #ffffff;
    border-radius: 2rem;
    padding: 0.5rem;
    gap: 0.5rem;
    width: 13.75rem;
    height: 3.75rem;
    justify-content: space-evenly;
}

.price-calc__counter-btn {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    border: none;
    background: transparent;
    color: #aab7c6;
    font-size: 2.5rem;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease;
}

.price-calc__counter-btn:hover {
    background: rgba(0, 0, 0, 0.05);
}

.price-calc__counter-value {
    width: 3.25rem;
    height: 3.25rem;
    text-align: center;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 2.5rem;
    border: none;
    background: #00000008;
}

.price-calc__accordion-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    font-size: 1.625rem;
    font-weight: 700;
    line-height: 1.2;
}

.price-calc__accordion-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--secondary);
    transition: transform 0.3s ease;
}

.price-calc__accordion.active .price-calc__accordion-icon {
    transform: rotate(180deg);
}

.price-calc__accordion-body {
    max-height: 0;
    overflow: hidden;
    transition:
            max-height 0.3s ease,
            margin-top 0.6s;
}

.price-calc__accordion.active .price-calc__accordion-body {
    max-height: 100rem;
    margin-top: 2rem;
}

.price-calc__product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.price-calc__product-card {
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 1rem;
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.price-calc__product-card:hover {
    border-color: var(--accent-link);
}

.price-calc__product-card.active {
    border-color: var(--accent-link);
}

.price-calc__product-info {
    flex: 1;
    margin-left: 0.75rem;
    margin-right: 0.1rem;
}
.border-line {
    border-bottom: 1px solid #00000026;
    padding: 0 0 1rem 0;
    margin-bottom: 1rem !important;
}
.price {
    color: #0085eb !important;
}
.price-calc__product-name {
    font-size: 1rem;
    line-height: 1.4;
    font-weight: 500;
    color: var(--default-color);
    line-height: 1.3;
}

.price-calc__product-price {
    font-size: 1rem;
    line-height: 1.4;
    color: var(--accent-link);
    font-weight: 500;
}

.price-calc__product-logo {
    width: 1.5rem;
    height: 1.5rem;
    object-fit: contain;
}

.price-calc__service-list {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: 1fr 1fr;
}

.price-calc__service-card {
    border-radius: 1.5rem;
    padding: 1.5rem;
    cursor: pointer;
    border: 1px solid #00000026;
    transition: border-color 0.3s ease;
}
.price-calc__service-card:hover {
    border-color: var(--accent-link);
}

.price-calc__service-card.active {
    border-color: var(--accent-link);
}
.price-calc__service-header {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.price-calc__service-info {
    flex: 1;
}

.price-calc__service-name {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.4;
}

.price-calc__service-price {
    font-size: 1rem;
    line-height: 1.4;
    color: var(--accent-link);
    font-weight: 500;
}

.price-calc__service-features {
    list-style: none;
    padding-left: 1.75rem;
    margin-left: 0.5rem;
}

.price-calc__service-features li {
    font-size: 0.875rem;
    color: var(--secondary);
    line-height: 1.5;
    margin-bottom: 0.375rem;
    position: relative;
    font-weight: 500;
}

.price-calc__service-features li::before {
    content: "✓";
    position: absolute;
    left: -1.25rem;
    color: #aab7c6;
}

.price-calc__right {
    flex: 0 0 26rem;
    position: sticky;
    top: 5rem;
    margin-top: 3.75rem;
}

.price-calc__period-label {
    font-size: 0.875rem;
    color: #aab7c6;
    margin-bottom: 0.5rem;
}

.price-calc__period-input {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #ffffff;
    border: 1px solid #00000026;
    border-radius: 3.5rem;
    padding: 1.125rem 2.25rem;
    margin-bottom: 1.25rem;
    gap: 0.5rem;
    width: fit-content;
    width: 13rem;
}

.price-calc__period-input input {
    width: 1rem;
    border: none;
    background: transparent;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
}

.price-calc__period-input span {
    color: #aab7c6;
    font-size: 0.875rem;
}

.price-calc__total {
    color: var(--accent-link);
}

.price-calc__total span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--accent-link);
}

.price-calc__summary-list {
    margin: 1.25rem 0 2rem 0;
}

.price-calc__checkbox,
.price-calc__radio {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    pointer-events: none;
}

.price-calc__check-box {
    width: 1.5rem;
    height: 1.5rem;
    min-width: 1.5rem;
    min-height: 1.5rem;
    border: 1.5px solid rgba(0, 0, 0, 0.2);
    border-radius: 0.375rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.price-calc__checkbox:checked + .price-calc__check-box,
.price-calc__radio:checked + .price-calc__check-box {
    background: var(--accent-link);
    border-color: var(--accent-link);
}

.price-calc__check-box::after {
    content: "";
    width: 0.5rem;
    height: 0.75rem;
    border: solid #ffffff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg) translateY(-1px);
    opacity: 0;
    transition: opacity 0.3s ease;
    margin-bottom: 0.1rem;
}

.price-calc__checkbox:checked + .price-calc__check-box::after,
.price-calc__radio:checked + .price-calc__check-box::after {
    opacity: 1;
}
.price-calc__product-card,
.price-calc__service-card,
.price-calc__os-card {
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.price-calc__product-card:has(.price-calc__checkbox:checked),
.price-calc__service-card:has(.price-calc__checkbox:checked),
.price-calc__os-card:has(.price-calc__radio:checked) {
    border-color: var(--accent-link);
}

.price-calc__product-card.checked,
.price-calc__service-card.checked,
.price-calc__os-card.checked {
    border-color: var(--accent-link);
}
.price-calc__product-row,
.price-calc__service-row,
.price-calc__os-row {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    width: 100%;
}
.price-calc__os-check {
    display: none;
}

.price-calc__summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.25rem;
    font-size: 1rem;
    line-height: 1.4;
    font-weight: 500;
}

.price-calc__summary-label {
    color: #0000004d;
    font-size: 0.875rem;
    line-height: 1.4;
    font-weight: 500;
}

.price-calc__summary-value {
    font-weight: 600;
    color: var(--default-color);
}

.price-calc__summary-value.price {
    color: var(--accent-link);
}

.price-calc__btn-order {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 1rem;
    background: var(--accent-color);
    color: #ffffff;
    border-radius: 2rem;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    transition: background 0.3s ease;
    border: none;
    cursor: pointer;
}

.price-calc__btn-order:hover {
    background: #e06a15;
}

.price-calc__btn-test {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 1rem;
    background: transparent;
    color: var(--accent-link);
    border: 1.5px solid var(--accent-link);
    border-radius: 2rem;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.price-calc__btn-test:hover {
    background: var(--accent-link);
    color: #ffffff;
}

@media (max-width: 48em) {
    .price-calc {
        padding: 0;
        margin-bottom: 4rem;
        overflow: hidden;
    }
    .iaas-dashboard .iaas-dashboard__btn {
        display: none;
    }
    .price-calc__title {
        font-size: 1.625rem;
    }

    .price-calc__subtitle {
        font-size: 1rem;
    }
    .price-calc__config {
        margin-bottom: 0;
    }
    .price-calc__tooltip {
        left: 50%;
        transform: translateX(-50%);
        top: auto;
        bottom: calc(100% + 0.5rem);
    }
    .price-calc__product-name,
    .price-calc__service-name,
    .price-calc__os-name,
    .price-calc__os-price,
    .price-calc__product-price,
    .price-calc__service-price {
        font-weight: 600;
    }
    .price-calc__accordion-icon {
        width: 2rem;
        height: 2rem;
    }
    !* .price-calc__tooltip::after {
      bottom: auto;
      top: -0.5rem;
      border-top: none;
      border-bottom: 0.5rem solid #ffffff;
    } *!
    .price-calc__inner {
        flex-direction: column;
        gap: 1.5rem;
    }

    .price-calc__left {
        border-radius: 1.5rem;
        order: 2;
        gap: 0;
    }

    .price-calc__right {
        flex: none;
        width: 100%;
        position: static;
        order: 1;
    }

    .price-calc__os-grid {
        grid-template-columns: 1fr;
    }

    .price-calc__product-grid {
        grid-template-columns: 1fr;
    }

    .price-calc__total {
        font-size: 2.5rem;
    }

    .price-calc__slider-value {
        font-size: 0.875rem;
    }
    .price-calc__section {
        background: transparent;
        padding: 0;
    }
    .price-calc__section-title,
    .price-calc__config-title,
    .price-calc__ip-title,
    .price-calc__accordion-header {
        font-size: 1.25rem;
        margin-bottom: 1.5rem;
    }
    .price-calc__ip-title br {
        display: block;
    }
    .price-calc__product-card,
    .price-calc__service-card,
    .price-calc__os-card {
        border-color: #00000026;
    }
    .price-calc__btn-order,
    .price-calc__btn-test {
        padding: 0.875rem;
        font-size: 0.9375rem;
    }
    .price-calc__slider-value_block {
        width: 20.438rem;
    }
    .price-calc__slider-marks {
        width: 18.438rem;
        margin-left: 1.2rem;
    }
    .price-calc__service-list {
        grid-template-columns: 1fr;
    }
    .price-calc__section {
        padding-top: 0;
        padding-bottom: 2rem;
    }
    .price-calc__section:last-child {
        padding-bottom: 0;
    }
    .price-calc__slider-group:last-child {
        padding-bottom: 0;
    }
    .price-calc__section:first-child {
        padding-top: 0;
    }
    .price-calc__slider-input {
        width: 14rem;
    }
    .price-calc__slider-value span {
        font-size: 0.875rem;
    }
    .price-calc__slider-label {
        font-size: 0.875rem;
    }
    .price-calc__slider-label span {
        margin-bottom: 0;
    }
    .price-calc__ip-header {
        display: grid;
        gap: 0;
        margin-bottom: 1rem;
    }
    .price-calc__product-row,
    .price-calc__service-row,
    .price-calc__os-row {
        align-items: baseline;
        margin-bottom: 0.75rem;
    }
}
.price-calc__mobile-summary {
    display: none;
}*/
.swiper-button-next,
.swiper-button-prev {
    z-index: 2 !important;
}
/*@media (max-width: 48em) {
    !* .top-notification + .header + .price-calc .price-calc__mobile-summary{
      top: 5rem;
    } *!
    .price-calc__mobile-summary {
        position: fixed;
        top: 3rem;
        left: 0;
        right: 0;
        z-index: 6;
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        gap: 1rem;
        background: #ffffff;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
        box-shadow: 0px 14px 14px 0px #0000000d;
        padding: 0.25rem 1.25rem 0.75rem;
        border-radius: 0 0 1rem 1rem;
    }

    .price-calc__mobile-summary-inner {
        flex: 1;
        min-width: 0;
        overflow: hidden;
    }

    .price-calc__mobile-os {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 0.875rem;
        font-weight: 600;
        color: var(--default-color);
        margin-bottom: 0.25rem;
    }

    .price-calc__mobile-os img {
        width: 1.125rem;
        height: 1.125rem;
    }

    .price-calc__mobile-config {
        font-size: 0.875rem;
        font-weight: 500;
        color: var(--secondary);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .price-calc__mobile-total {
        font-size: 1.25rem;
        font-weight: 700;
        color: var(--accent-link);
        white-space: nowrap;
        flex-shrink: 0;
    }

    .price-calc__mobile-total span {
        font-size: 0.875rem;
        font-weight: 400;
    }
    .price-calc__right {
        display: none;
    }

    .price-calc__inner {
        flex-direction: column;
        gap: 1.5rem;
    }

    .price-calc__left {
        width: 100%;
        order: 2;
    }

    .price-calc {
        background: #00000008;
        border-radius: 1.5rem;
        padding: 1.5rem;
    }
}*/
.video-wrapper {
    position: relative;
    display: block;
    border-radius: 2.5rem;
    overflow: hidden;
    cursor: pointer;
}

.video-wrapper iframe {
    width: 100%;
    max-width: 52.5rem;
    height: 27.563rem;
    display: block;
    object-fit: cover;
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition:
            opacity 0.3s ease,
            transform 0.2s ease;
    z-index: 2;
}

.video-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.video-play-btn svg {
    width: 1.5rem;
    height: 1.5rem;
    fill: #ffffff;
    margin-left: 0.25rem;
}

.video-wrapper[data-playing="true"] .video-play-btn {
    opacity: 0;
    pointer-events: none;
}

.video-wrapper[data-playing="true"]:hover .video-play-btn {
    opacity: 1;
    pointer-events: auto;
}

.video-wrapper[data-playing="true"]:hover .video-play-btn svg {
    margin-left: 0;
}

.video-wrapper[data-playing="true"]:hover .video-play-btn svg path {
    d: path("M6 4h4v16H6V4zm8 0h4v16h-4V4z");
}
.solutions__card {
    position: relative;
}
.solutions__card .fon-si {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}
.solutions__card .crug-si {
    width: 8.721rem;
    height: 3.87rem;
    position: absolute;
    top: 1rem;
    left: 1rem;
}

.old-price {
    text-decoration: line-through;
}
.discount__percent {
    border: 1px solid #ff6b35;
    padding: 2px 10px;
    color: #ff6b35;
    border-radius: 20px;
    font-size: 0.875rem;
    margin-left: 0.875rem;
}
.price-calc__wrap {
    position: relative;
}
.price-summ__wrap {
    position: absolute;
    top: 0;
    right: 0;
}


@media (max-width: 48em) {
    .solutions__card .crug-si {
        width: 7.721rem;
        height: 2.57rem;
        position: absolute;
        top: 0.8rem;
        left: 0.8rem;
    }
    .video-wrapper {
        border-radius: 0;
    }
    .video-wrapper video {
        width: 100%;
        height: 11.438rem;
        display: block;
        object-fit: cover;
    }
    .video-play-btn img {
        width: 2.688rem;
        height: 3.018rem;
    }
    .subscribe-box__text p {
        font-size: 0.875rem;
    }
    .subscribe-box__form .btn--orange {
        width: 100%;
    }
    .ai-search-bar textarea {
        width: 18.6rem;
        font-size: 1rem;
        min-height: 2.463rem;
    }
    .footer__subscribe {
        background: none;
        padding: 0;
        border-radius: 0;
    }
}
