/* Product Card Styles */
.product-card {
    box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.1);
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    border: none;
    overflow: hidden;
}

@media (hover: hover) and (pointer: fine) {
    .product-card:hover {
        transform: translateY(-0.25rem);
        box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    }
}

/* Right action buttons */
.right-items {
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
    pointer-events: none;
}

.product-card:hover .right-items {
    opacity: 1;
    pointer-events: auto;
}

/* Price section */
.host-cost h2 {
    font-size: 1.5rem;
    color: var(--bs-dark);

}

.host-cost .text-muted.fs-5.fw-normal {
    color: #5f666d !important;
}

.cost-year {
    color: var(--bs-gray-600);
    font-size: 0.95rem;
}

.bg-div {
    background-color: rgba(var(--bs-primary-rgb), 0.1);
    color: var(--bs-primary);
    border-radius: 0.25rem;
    font-size: 0.8125rem;
    padding: 0.25rem 0.5rem;
    display: inline-block;
    margin-bottom: 0.25rem;
}

/* Buttons styles */
.zakaz-btn {
    padding: 0.5rem;
    font-size: 1rem;
    border-radius: 2rem;
    transition: all 0.2s ease;
    letter-spacing: 0.5px;
}

.korzina-btn {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50% !important;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.zakaz-btn:hover,
.korzina-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Specifications section */
.host-info-border {
    border-top: 1px solid var(--bs-border-color);
    padding-top: 0.75rem;
}

.host-md-text {
    font-size: 0.95rem;
    margin-bottom: 0.4rem;
    color: var(--bs-body-color);
}

.host-text-start {
    font-weight: 500;
    color: var(--bs-gray-800);
}

.host-text-end {
    color: var(--bs-gray-700);
    font-weight: 400;
}

.host-sm-text {
    font-size: 0.875rem;
    color: var(--bs-gray-600);
    margin-bottom: 0.5rem;
}

/* Tooltip icon */
.bi-question-circle {
    color: var(--bs-gray-500);
    font-size: 0.9rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .product-card {
        margin-bottom: 1rem;
    }

    .right-items {
        opacity: 1;
        pointer-events: auto;
    }

    .zakaz-btn {
        font-size: 0.9rem;
        padding: 0.4rem;
    }

    .host-md-text {
        font-size: 0.9rem;
    }
}
.custom-tooltip {
    pointer-events: none;
}
/* Custom Tooltip Styles */
.custom-tooltip .tooltip-inner {
    background-color: #fff;
    color: #000;
    border: 1px solid #dee2e6;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    padding: 8px 12px;
    font-size: 14px;
    max-width: 300px;
    text-align: left;
}

.custom-tooltip.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before,
.custom-tooltip.bs-tooltip-top .tooltip-arrow::before {
    border-top-color: #fff;
    filter: drop-shadow(0 2px 1px rgba(0, 0, 0, 0.1));
}

.custom-tooltip.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow::before,
.custom-tooltip.bs-tooltip-right .tooltip-arrow::before {
    border-right-color: #fff;
    filter: drop-shadow(2px 0 1px rgba(0, 0, 0, 0.1));
}

.custom-tooltip.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow::before,
.custom-tooltip.bs-tooltip-bottom .tooltip-arrow::before {
    border-bottom-color: #fff;
    filter: drop-shadow(0 -2px 1px rgba(0, 0, 0, 0.1));
}

.custom-tooltip.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow::before,
.custom-tooltip.bs-tooltip-left .tooltip-arrow::before {
    border-left-color: #fff;
    filter: drop-shadow(-2px 0 1px rgba(0, 0, 0, 0.1));
}

.action-btn1 {
    width: 3em;
    height: 3rem;
    border-radius: 50%;
    background: var(--surface-color);
    border: none;
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    transform: translateX(20px);
    animation: slideIn 0.3s ease forwards;
    opacity: 0;
}


.action-btn1:nth-child(2) {
    animation-delay: 0.1s;
}

.action-btn1:hover {
    background: var(--accent-color);
    color: var(--contrast-color);
    transform: translateY(-2px);
}

.action-btn1 i {
    font-size: 1.25rem;
}
.buy-now-btn1 {

    flex: 1;
    border: 1px solid color-mix(in srgb, var(--accent-color), transparent 42%);
    color: var(--accent-color);
    background-color: transparent;
    box-shadow: none;
    text-decoration: none;
}

.buy-now-btn1:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--contrast-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px color-mix(in srgb, var(--accent-color), transparent 70%);
}

/* Catalog: secondary "Details" outline uses brand accent color (not default Bootstrap primary) */
.btn-outline-brand {
    color: var(--accent-color);
    border-color: color-mix(in srgb, var(--accent-color), transparent 42%);
    background-color: transparent;
}

.btn-outline-brand:hover,
.btn-outline-brand:focus {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--contrast-color);
}

.btn-outline-brand:focus-visible {
    box-shadow: 0 0 0 0.2rem color-mix(in srgb, var(--accent-color), transparent 65%);
}

.action-fast-icon {

    width: 1.5em;
    height: 1.5rem;
    border-radius: 50%;
    background: var(--surface-color);
    border: none;
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    transform: translateX(20px);
    animation: slideIn 0.3s ease forwards;
    opacity: 0;
}


.action-fast-icon:nth-child(2) {
    animation-delay: 0.1s;
}

.action-fast-icon:hover {
    background: var(--accent-color);
    color: var(--contrast-color);
    transform: translateY(-2px);
}

.action-fast-icon i {
    font-size: 1.25rem;
}

.product-info h4
{
    font-size:18px;
    font-family: var(--heading-font);
}

.buttons-swipper button {
    box-shadow: 0px 5px 10px 0px rgba(0,0,0,0.1);
    background-color: white;
    color: color-mix(in srgb, var(--accent-color), transparent 0%);
    transition: all 0.3s ease;

}

.buttons-swipper button:active {
    background-color: color-mix(in srgb, var(--accent-color), transparent 0%);
    color: white;
    box-shadow: 0px 5px 10px 0px rgba(0,0,0,0.1);
}


/* Homepage plans strip: above sections below; swiper arrows not clipped */
.plans-swiper-product-list {
    position: relative;
    z-index: 6;
}

.plans-swiper {
    position: relative;
    width: 100%;
    padding: 10px 0 52px !important;
    overflow: hidden;
    /* pan-y: avoids vertical touch stealing horizontal swipe (swiper would feel stuck) */
    touch-action: pan-y;
}

.plans-swiper .plans-swiper-wrapper,
.plans-swiper .plans-swiper-slide {
    -webkit-user-select: none;
    user-select: none;
}

.plans-swiper .user-wysiwyg,
.plans-swiper input,
.plans-swiper textarea,
.plans-swiper select {
    -webkit-user-select: text;
    user-select: text;
}

.plans-swiper img,
.plans-swiper svg {
    -webkit-user-drag: none;
    user-select: none;
}

.plans-swiper-wrapper {
    align-items: stretch;
}

/* Domains: Registration / Renewal tiles (/domains catalog, zone card, homepage swiper) */
.hosting-details-page .catalog-card__prices,
.domains-catalog-page .catalog-card__prices,
.domain-tariff-slide-card .catalog-card__prices {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

/* Деталь зоны: если цена продления не выводится — одна колонка на всю ширину */
.hosting-details-page .catalog-card__prices:has(> .catalog-price-box:only-child) {
    grid-template-columns: 1fr;
}

.hosting-details-page .catalog-price-box,
.domains-catalog-page .catalog-price-box,
.domain-tariff-slide-card .catalog-price-box {
    border: 1px solid rgba(93, 45, 230, 0.08);
    border-radius: 16px;
    background: #fcfbff;
    padding: 14px 16px;
}

@media (min-width: 768px) {
    .hosting-details-page .catalog-card__prices,
    .domains-catalog-page .catalog-card__prices,
    .domain-tariff-slide-card .catalog-card__prices {
        gap: 12px;
    }

    .hosting-details-page .catalog-price-box,
    .domains-catalog-page .catalog-price-box,
    .domain-tariff-slide-card .catalog-price-box {
        padding: 12px 14px;
    }
}

.hosting-details-page .catalog-price-box__label,
.domains-catalog-page .catalog-price-box__label,
.domain-tariff-slide-card .catalog-price-box__label {
    font-size: .88rem;
    color: #6b7280;
    margin-bottom: 4px;
}

.hosting-details-page .catalog-price-box__value,
.domains-catalog-page .catalog-price-box__value,
.domain-tariff-slide-card .catalog-price-box__value {
    font-size: 1.45rem;
    font-weight: 800;
    color: #2a1140;
}

.hosting-details-page .catalog-price-box__meta,
.domains-catalog-page .catalog-price-box__meta,
.domain-tariff-slide-card .catalog-price-box__meta {
    font-size: .9rem;
    color: #7b7693;
    margin-top: 4px;
}

/* Domain row + period picker: one row on wide screens (domain tariffs swiper, /domains catalog) */
.domain-card-periods-row {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.domain-card-domain-row {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/* Подписи «Период регистрации / продления»: на xl+ одна строка; на меньшей ширине при двух колонках — одинаковая высота под 2 строки */
.domain-period-picker__label {
    display: block;
    line-height: 1.25;
}

@media (max-width: 1199.98px) {
    .domain-card-periods-row--split .domain-period-picker__label {
        min-height: 2.75em;
    }
}

@media (min-width: 1200px) {
    .domain-card-periods-row--split .domain-period-picker__label {
        white-space: nowrap;
        font-size: 0.875rem;
    }
}

@media (min-width: 992px) {
    .domain-card-periods-row--split {
        flex-direction: row;
        align-items: stretch;
    }

    .domain-card-periods-row--split > .domain-card-periods-row__cell {
        display: flex;
        flex: 1 1 0;
        min-width: 0;
    }

    .domain-card-periods-row--split .domain-period-picker {
        flex: 1 1 auto;
        width: 100%;
        min-width: 0;
    }

    .domain-card-domain-row {
        flex-direction: row;
        align-items: flex-end;
    }

    .domain-card-domain-row > .domain-card-domain-row__cell {
        flex: 1 1 0;
        min-width: 0;
    }
}

/* "Check zone" button: same height as Details (buy-now-btn1) and .form-control; outline-secondary styling */
.domain-check-zone-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: calc(1.5em + 0.75rem + 2px);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.domain-check-zone-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px color-mix(in srgb, var(--bs-secondary), transparent 65%);
}

/* <=575px: rules in max-width media below. >=576px: width from Swiper slidesPerView; drop max 420 to fill track. */
/* Card gutter: slide padding 10+10 (mobile) / 12+12 (sm+). */
.plans-swiper-slide {
    --plans-card-max: 420px;
    --plans-card-min: 300px;
    display: flex;
    flex-direction: column;
    height: auto;
    box-sizing: border-box;
    width: min(100%, var(--plans-card-max));
    max-width: var(--plans-card-max);
    min-width: min(var(--plans-card-min), 100%);
    flex-shrink: 0;
    padding-left: 10px;
    padding-right: 10px;
}

@media (min-width: 576px) {
    .plans-swiper-slide {
        max-width: none;
        min-width: 0;
        width: auto;
        padding-left: 12px;
        padding-right: 12px;
    }
}

@media (max-width: 575.98px) {
    .plans-swiper-slide {
        width: 100%;
        /* Keep min-width 100% on xs: min-width 0 on both slides shrank them into one snap point;
           Swiper 11 stayed locked and nav felt dead */
        min-width: 100%;
        max-width: 100%;
    }
}

.plans-swiper-slide .product-item {
    min-width: 0;
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
}

.plans-swiper-slide .product-card {
    max-width: 100%;
}

.plans-swiper .hosting-swiper-card {
    border-radius: 14px !important;
    box-shadow: 0 12px 34px rgba(34, 13, 63, 0.08);
}

.plans-swiper .hosting-swiper-card .product-info {
    padding: 0.9rem;
}

.plans-swiper .hosting-swiper-card .card-title {
    padding-right: 4.1rem;
    font-size: 1.16rem;
    line-height: 1.25;
    margin-bottom: 0.35rem !important;
}

.plans-swiper .hosting-swiper-card .action-fast-icon {
    width: 32px;
    height: 32px;
}

.plans-swiper .hosting-swiper-card .hosting-tariff-badge {
    gap: 0.35rem;
    padding: 0.35rem 0.65rem;
    font-size: 0.82rem;
}

.plans-swiper .hosting-swiper-card .host-cost {
    margin-bottom: 0.45rem !important;
}

.plans-swiper .hosting-swiper-card .js-hosting-price-line {
    margin-bottom: 0.35rem !important;
}

.plans-swiper .hosting-swiper-card .hosting-period-picker:not(.hosting-period-picker--inline) .js-hosting-price-line {
    font-size: 1.45rem;
}

.plans-swiper .hosting-swiper-card .hosting-period-switch {
    padding: 3px;
}

.plans-swiper .hosting-swiper-card .hosting-period-switch__btn {
    min-height: 34px;
    padding: 6px 8px;
    font-size: 0.9rem;
    font-weight: 500;
}

.plans-swiper .service-extra-swiper-card .hosting-period-switch {
    padding: 3px;
}

.plans-swiper .service-extra-swiper-card .hosting-period-switch__btn {
    min-height: 34px;
    padding: 6px 8px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Домены в свайпере (local/api/domaintariffs): периоды как у хостинга, компактные пилюли */
.plans-swiper .domain-tariff-slide-card .domain-period-picker {
    padding: 0.5rem 0.75rem;
}

.plans-swiper .domain-tariff-slide-card .domain-period-picker__label {
    font-size: 0.92rem;
    margin-bottom: 0.35rem !important;
}

@media (min-width: 1200px) {
    .plans-swiper .domain-tariff-slide-card .domain-card-periods-row--split .domain-period-picker__label {
        font-size: 0.875rem;
    }
}

.plans-swiper .domain-tariff-slide-card .hosting-period-switch {
    padding: 3px;
}

.plans-swiper .domain-tariff-slide-card .hosting-period-switch__btn {
    min-height: 34px;
    padding: 6px 8px;
    font-size: 0.9rem;
    font-weight: 500;
}

.plans-swiper .hosting-swiper-card .js-hosting-saving-line,
.plans-swiper .hosting-swiper-card .js-hosting-total-hint {
    font-size: 0.82rem;
    margin-top: 0.2rem !important;
}

.plans-swiper .buy-host-row .action-btn1 {
    min-height: 38px;
    height: 38px;
    flex: 0 0 38px;
    width: 38px;
    padding: 0;
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

@media (width >= 768px) {

    .plans-swiper .buy-host-row .action-btn1 {
        min-height: 40px;
        height: 40px;
        width: 40px;
        flex: 0 0 40px;
    }
}

.plans-swiper .buy-host-row .btn.buy-now-btn1 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.38rem;
    min-height: 38px;
    padding: 0.45rem 0.72rem;
    font-size: 1rem;
    line-height: 1.25;
}

@media (width >= 768px) {

    .plans-swiper .buy-host-row .btn.buy-now-btn1 {
        font-size: 1rem;
        min-height: 40px;
    }
}

.plans-swiper .hosting-swiper-card .host-info-border {
    padding-top: 0.5rem !important;
}

.plans-swiper .hosting-swiper-card .host-md-text {
    font-size: 0.9rem;
    line-height: 1.35;
    margin-bottom: 0.25rem !important;
}

.plans-swiper .hosting-swiper-card .hosting-showcase__toolbar {
    margin-top: 0.25rem;
}

.plans-swiper .hosting-swiper-card .hosting-showcase__toggle,
.plans-swiper .hosting-swiper-card .hosting-showcase__benefits-toggle {
    font-size: 0.875rem;
}

.plans-swiper .hosting-swiper-resource-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.35rem;
    align-items: start;
}

.plans-swiper .hosting-swiper-resource-cell {
    min-width: 0;
}

.plans-swiper .hosting-swiper-card .hosting-resource-field {
    gap: 0.12rem;
}

.plans-swiper .hosting-swiper-card .hosting-resource-field__head {
    gap: 0.16rem;
    align-items: flex-start;
    min-height: 2.45rem;
}

.plans-swiper .hosting-swiper-card .hosting-resource-field__label {
    font-size: 0.82rem;
    line-height: 1.18;
    overflow-wrap: anywhere;
}

.plans-swiper .hosting-swiper-card .hosting-resource-field__hint-icon {
    margin-left: 0.12rem !important;
    font-size: 0.82rem;
}

.plans-swiper .hosting-swiper-card .hosting-resource-field__unit {
    font-size: 0.78rem;
    line-height: 1.15;
    white-space: nowrap;
}

.plans-swiper .hosting-swiper-card .hosting-resource-stepper {
    min-height: 32px;
    border-radius: 8px;
}

.plans-swiper .hosting-swiper-card .hosting-resource-stepper__btn {
    flex-basis: 30px;
    font-size: 1rem;
}

.plans-swiper .hosting-swiper-card .hosting-resource-stepper__input {
    padding: 0.2rem 0.12rem !important;
    font-size: 0.9rem;
}

.plans-swiper .hosting-swiper-card .hosting-resource-field__track {
    height: 3px;
}

.plans-swiper .ssl-swiper-card,
.plans-swiper .service-extra-swiper-card {
    width: 100%;
    border-radius: 14px !important;
    box-shadow: 0 12px 34px rgba(34, 13, 63, 0.08);
}

.plans-swiper .ssl-swiper-card h4,
.plans-swiper .service-extra-swiper-card h4 {
    font-size: 1.15rem;
    line-height: 1.28;
}

.plans-swiper .ssl-swiper-card .fs-2,
.plans-swiper .service-extra-swiper-card .fs-2 {
    font-size: 1.55rem !important;
    line-height: 1.15;
}

.plans-swiper .ssl-swiper-card .form-label,
.plans-swiper .ssl-swiper-card .form-control,
.plans-swiper .ssl-swiper-card .form-select,
.plans-swiper .ssl-swiper-card p,
.plans-swiper .service-extra-swiper-card .form-label,
.plans-swiper .service-extra-swiper-card .form-control,
.plans-swiper .service-extra-swiper-card .form-select,
.plans-swiper .service-extra-swiper-card p {
    font-size: 0.94rem;
}

.plans-swiper .ssl-swiper-card .btn:not(.buy-now-btn1),
.plans-swiper .service-extra-swiper-card .btn:not(.buy-now-btn1) {
    min-height: 38px;
    font-size: 0.875rem;
}

/* SSL swiper: Details stays buy-now-btn1 (taller than cart icon). ISPmanager licenses: two matched btn-sm (primary + outline-brand). */
.plans-swiper .ssl-swiper-card .btn.buy-now-btn1 {
    min-height: 38px;
    font-size: 0.9375rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.38rem;
}

@media (width >= 768px) {

    .plans-swiper .ssl-swiper-card .btn.buy-now-btn1 {
        font-size: 1rem;
        min-height: 40px;
    }
}

.plans-swiper-pagination.swiper-pagination {
    position: absolute;
    bottom: 12px;
    left: 0;
    width: 100%;
    display: none !important;
    justify-content: center;
    gap: 8px;
    z-index: 12;
    pointer-events: none;
}

.plans-swiper-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #ddd;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0.7;
    transition: all 0.3s;
}

.plans-swiper-pagination .swiper-pagination-bullet-active {
    background: #0d6efd;
    opacity: 1;
}

/* Arrows: swiper-button-* classes + swiper-bundle styles; tweak position and background */
.plans-swiper .plans-swiper-button-next.swiper-button-next,
.plans-swiper .plans-swiper-button-prev.swiper-button-prev {
    position: absolute;
    top: auto;
    bottom: 22px;
    margin-top: 0;
    width: 44px;
    height: 44px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
    z-index: 15;
    color: var(--accent-color, #6f42c1);
}

.plans-swiper .plans-swiper-button-next.swiper-button-next::after,
.plans-swiper .plans-swiper-button-prev.swiper-button-prev::after {
    font-size: 1rem;
    font-weight: 700;
}

.plans-swiper .plans-swiper-button-prev.swiper-button-prev {
    left: calc(50% - 52px);
    right: auto;
}

.plans-swiper .plans-swiper-button-next.swiper-button-next {
    right: calc(50% - 52px);
    left: auto;
}

.plans-swiper .swiper-button-disabled {
    opacity: 0.35;
    pointer-events: none;
}

.product-gallery-trigger {
    display: block;
    width: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: zoom-in;
}

.product-gallery-modal .modal-content {
    background: rgba(16, 18, 27, 0.96);
    border: 0;
}

.product-gallery-modal__image-wrap {
    min-height: min(72vh, 680px);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: auto;
}

.product-gallery-modal__image {
    max-width: 100%;
    max-height: 72vh;
    object-fit: contain;
}

.product-gallery-modal__nav {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.32);
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.product-gallery-modal__nav:hover {
    background: rgba(255, 255, 255, 0.22);
}

#clientAddress-upsert-modal .modal-dialog-scrollable .modal-content > form {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    min-height: 0;
}

#clientAddress-upsert-modal .modal-dialog-scrollable .modal-body {
    overflow-y: auto;
}

#clientAddress-upsert-modal .js-client-address-parts-toggle {
    cursor: pointer;
}

.hosting-period-switch {
    display: flex;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 4px;
    border-radius: 999px;
    background: color-mix(in srgb, var(--accent-color), transparent 92%);
    gap: 2px;
}

.hosting-period-switch__btn {
    flex: 1 1 auto;
    min-width: 0;
    border: 0;
    margin: 0;
    min-height: 32px;
    padding: 7px 10px;
    font-size: 0.9375rem;
    font-weight: 500;
    line-height: 1.2;
    border-radius: 999px;
    background: transparent;
    color: inherit;
    transition: background-color 0.2s ease, color 0.2s ease;
    cursor: pointer;
}

.hosting-period-switch__btn.is-active {
    background: var(--accent-color);
    color: var(--contrast-color, #fff);
    box-shadow: 0 2px 8px color-mix(in srgb, var(--accent-color), transparent 55%);
}

.hosting-period-switch__btn:focus-visible {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

.hosting-period-picker--inline .hosting-period-switch {
    margin-bottom: 0.25rem;
}

/* SSL detail: скрыть подсказки периода */
.ssl-detail-card .js-hosting-total-hint,
.ssl-detail-card .js-hosting-saving-line {
    display: none !important;
}

@media (min-width: 768px) {
    .ssl-detail-order-layout > .col-md-4,
    .ssl-detail-order-layout > .col-md-8 {
        align-self: flex-start;
    }
}

.ssl-dcv-extra-slot {
    display: flex;
    flex-direction: column;
}

.ssl-dcv-extra-body {
    position: relative;
    min-height: calc(1.5em + 0.75rem + 2px);
}

.ssl-dcv-extra-pane {
    width: 100%;
}

.ssl-dcv-hint-panel {
    display: flex;
    align-items: center;
    min-height: calc(1.5em + 0.75rem + 2px);
    padding: 0.45rem 0.75rem;
    background: color-mix(in srgb, var(--accent-color), transparent 93%);
    border-radius: 0.5rem;
}

.ssl-dcv-hint-panel__text {
    font-size: 0.875rem;
    line-height: 1.4;
    color: var(--bs-body-color);
}

.ssl-detail-card .js-ssl-dcv-picker .hosting-period-switch {
    display: flex;
    flex-wrap: nowrap;
    width: 100%;
    gap: 2px;
}

.ssl-detail-card .js-ssl-dcv-picker .hosting-period-switch__btn {
    flex: 1 1 0;
    min-width: 0;
    white-space: nowrap;
    padding-left: 0.65rem;
    padding-right: 0.65rem;
    font-size: 0.875rem;
}

@media (max-width: 575.98px) {
    .ssl-detail-card .js-ssl-dcv-picker .hosting-period-switch {
        flex-wrap: wrap;
    }

    .ssl-detail-card .js-ssl-dcv-picker .hosting-period-switch__btn {
        flex: 1 1 calc(50% - 2px);
        min-width: calc(50% - 2px);
    }
}

/* Детальные страницы: одна визуальная строка «сумма ₽ / период · НДС» */
.product-detail-price-heading__primary {
    max-width: 100%;
}

.product-detail-price-heading__slash {
    user-select: none;
    align-self: center;
    line-height: 1;
}

.product-detail-price-heading__tax {
    font-size: 0.8125rem;
    line-height: 1.35;
    white-space: nowrap;
}

.product-detail-price-heading__tax::before {
    content: '·';
    margin: 0 0.35em;
    opacity: 0.55;
    font-weight: 400;
}

.product-detail-price-heading__secondary {
    margin-top: 0.35rem;
    font-size: 0.8125rem;
    line-height: 1.35;
    color: var(--bs-secondary-color);
}

@media (max-width: 575.98px) {
    .product-detail-price-heading__tax {
        white-space: normal;
    }
}

/* Hosting plan tier badges (cards, swiper, detail page) */
.hosting-tariff-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.85rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.9375rem;
    line-height: 1.25;
}

.hosting-tariff-badge--secure {
    background: #f4ecff;
    color: #5d2de6;
}

.hosting-tariff-badge--basic {
    background: #eef0f3;
    color: #5c636a;
    border: 1px solid color-mix(in srgb, #5c636a, transparent 82%);
}

.hosting-tariff-badge--basic i {
    opacity: 0.9;
}

.hosting-period-picker:not(.hosting-period-picker--inline) .js-hosting-price-line {
    font-size: clamp(1.35rem, 2.6vw, 1.85rem);
    font-weight: 700;
    font-family: var(--default-font);
}

.hosting-card-unit-price {
    font-size: inherit;
    font-weight: inherit;
    font-family: inherit;
}

.currency-rub-inline svg {
    position: relative;
    top: 0.06em;
}

/* Hosting resource config: stepper UI instead of plain number input */
.hosting-resource-field {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    min-width: 0;
}

.hosting-resource-field__head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.5rem;
}

.hosting-resource-field__title {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    min-width: 0;
    gap: 0;
}

.hosting-resource-field__hint-icon {
    cursor: help;
    color: color-mix(in srgb, var(--default-color, #444), transparent 35%);
    font-size: 0.95em;
    vertical-align: -0.05em;
}

.hosting-resource-field__hint-icon:hover {
    color: var(--accent-color, #6f42c1);
}

.hosting-resource-field__label {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--heading-color, #212529);
    line-height: 1.25;
}

.hosting-resource-field__unit {
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: color-mix(in srgb, var(--accent-color), #555 35%);
    flex-shrink: 0;
}

.hosting-resource-stepper {
    display: flex;
    align-items: stretch;
    border-radius: 12px;
    border: 1px solid color-mix(in srgb, var(--default-color, #444), transparent 82%);
    background: #fafafa;
    overflow: hidden;
    min-height: 40px;
}

.hosting-resource-stepper__btn {
    flex: 0 0 40px;
    border: 0;
    margin: 0;
    padding: 0;
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1;
    color: var(--accent-color, #6f42c1);
    background: color-mix(in srgb, var(--accent-color), transparent 94%);
    cursor: pointer;
    transition: background-color 0.15s ease, color 0.15s ease, opacity 0.15s ease;
}

.hosting-resource-stepper__btn:hover:not(:disabled) {
    background: color-mix(in srgb, var(--accent-color), transparent 88%);
}

.hosting-resource-stepper__btn:focus-visible {
    outline: 2px solid var(--accent-color);
    outline-offset: -2px;
    z-index: 1;
}

.hosting-resource-stepper__btn:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

.hosting-resource-stepper__input {
    flex: 1 1 auto;
    min-width: 0;
    border: 0 !important;
    border-left: 1px solid color-mix(in srgb, var(--default-color, #444), transparent 88%) !important;
    border-right: 1px solid color-mix(in srgb, var(--default-color, #444), transparent 88%) !important;
    border-radius: 0 !important;
    margin: 0 !important;
    padding: 0.35rem 0.25rem !important;
    text-align: center;
    font-size: 0.95rem;
    font-weight: 600;
    font-variant-numeric: tabular-nums;
    background: #fff !important;
    box-shadow: none !important;
}

.hosting-resource-stepper__input:focus {
    box-shadow: inset 0 0 0 2px color-mix(in srgb, var(--accent-color), transparent 65%) !important;
    z-index: 1;
}

.hosting-resource-stepper__input::-webkit-outer-spin-button,
.hosting-resource-stepper__input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.hosting-resource-stepper__input[type="number"] {
    appearance: textfield;
    -moz-appearance: textfield;
}

.hosting-resource-field__track {
    height: 4px;
    border-radius: 999px;
    background: color-mix(in srgb, var(--default-color, #444), transparent 92%);
    overflow: hidden;
}

.hosting-resource-field__track-fill {
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(
        90deg,
        color-mix(in srgb, var(--accent-color), #fff 25%),
        var(--accent-color, #6f42c1)
    );
    transition: width 0.2s ease;
}

.hosting-resource-field--readonly .hosting-resource-readonly-input {
    border-radius: 10px;
    border: 1px solid color-mix(in srgb, var(--default-color, #444), transparent 82%) !important;
    background: #f8f9fa !important;
    font-weight: 600;
    text-align: center;
    padding: 0.45rem 0.5rem !important;
    cursor: default;
}

/* Showcase: flip between benefits vs specs (3D card) */
.hosting-showcase {
    --hosting-showcase-perspective: 1100px;
    --hosting-showcase-dur: 0.55s;
}

.hosting-showcase__stage {
    perspective: var(--hosting-showcase-perspective);
    -webkit-perspective: var(--hosting-showcase-perspective);
}

.hosting-showcase__inner {
    position: relative;
    transform-style: preserve-3d;
    -webkit-transform-style: preserve-3d;
    transition: transform var(--hosting-showcase-dur) ease;
    will-change: transform;
}

.hosting-showcase__inner.is-showing-specs {
    transform: rotateY(180deg);
}

.hosting-showcase__face {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.hosting-showcase__face--benefits {
    position: relative;
    width: 100%;
    transform: rotateY(0deg);
    z-index: 2;
}

.hosting-showcase__face--specs {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    width: 100%;
    transform: rotateY(180deg);
}

/* Only the visible face receives touches; hidden rotated face steals hit-testing on touch (WebKit). */
.hosting-showcase__inner:not(.is-showing-specs) .hosting-showcase__face--specs {
    pointer-events: none;
}

.hosting-showcase__inner.is-showing-specs .hosting-showcase__face--benefits {
    pointer-events: none;
}

.hosting-showcase__toolbar {
    margin-top: 0.5rem;
    text-align: right;
}

.hosting-showcase__toggle {
    text-decoration: none;
    font-weight: 600;
    font-size: 0.92rem;
}

.hosting-showcase__toggle:hover {
    text-decoration: underline;
}

.hosting-showcase__benefits.user-wysiwyg ul,
.hosting-showcase__benefits.user-wysiwyg ol {
    margin-bottom: 0.35rem;
    padding-left: 1.1rem;
}

.hosting-card_promo_snippet {
    margin: 0 auto;
    background: #fff;
    border-radius: 1rem;
    padding: 1rem;
    box-shadow: 0 8px 32px rgba(34, 13, 63, 0.08);
}

.hosting-card_promo_snippet__note {
    font-size: 0.85rem;
    color: #6c757d;
    margin: 0 0 0.5rem;
}

.hosting-card_promo_snippet__content {
    font-size: 0.9rem;
    color: #495057;
}

.hosting-card_promo_snippet__content p {
    margin: 0 0 0.5rem;
}

.hosting-card_promo_snippet__content ul {
    margin: 0;
    padding-left: 1.25rem;
}

/* Match ~4-line spec block in catalog: clamp + expand toggle (threshold set in PHP, >170 chars) */
.hosting-showcase__benefits-text--collapsible.is-collapsed {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
}

.hosting-showcase__benefits-toggle {
    display: block;
    width: 100%;
    text-align: left;
    margin-top: 0.25rem;
    padding: 0;
    border: 0;
    background: transparent;
    color: #5d2de6;
    font-weight: 600;
    font-size: 0.92rem;
}

.hosting-showcase__benefits-toggle:hover {
    text-decoration: underline;
}

@media (prefers-reduced-motion: reduce) {
    .hosting-showcase__inner {
        transition: none;
    }
}

.legal-document-page {
    --uhlegal-card: #ffffff;
    --uhlegal-text: #1f2937;
    --uhlegal-muted: #6b7280;
    --uhlegal-line: #dbe3ef;
    --uhlegal-accent: var(--accent-color, #5d2de6);
    --uhlegal-accent-soft: color-mix(in srgb, var(--uhlegal-accent), #ffffff 88%);
    --uhlegal-soft: #f8fafc;
    --uhlegal-warn-bg: #fffbea;
    --uhlegal-warn-line: #f5df8b;
    color: var(--uhlegal-text);
}

.legal-document-page .page-title,
.legal-document-page .uhlegal-doc,
.legal-documents-nav {
    border-radius: 8px;
}

.legal-documents-nav {
    position: sticky;
    top: 24px;
    background: #ffffff;
    border: 1px solid var(--uhlegal-line);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
    padding: 18px;
}

.legal-documents-nav h2 {
    color: #111827;
    font-size: 1.15rem;
    line-height: 1.3;
    margin: 0 0 1rem;
}

.legal-documents-nav-group + .legal-documents-nav-group {
    margin-top: 1.15rem;
    padding-top: 1rem;
    border-top: 1px solid var(--uhlegal-line);
}

.legal-documents-nav-title {
    color: var(--uhlegal-muted);
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 0.45rem;
}

.legal-documents-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.legal-documents-nav-list li + li {
    margin-top: 0.25rem;
}

.legal-documents-nav-list a {
    display: flex;
    gap: 0.55rem;
    align-items: flex-start;
    color: #4b5563;
    font-size: 0.92rem;
    line-height: 1.35;
    padding: 0.55rem 0.65rem;
    border-radius: 6px;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.legal-documents-nav-list a i {
    color: var(--uhlegal-accent);
    flex: 0 0 auto;
    margin-top: 0.05rem;
}

.legal-documents-nav-list a:hover,
.legal-documents-nav-list a.is-active {
    color: #1f2937;
    background: var(--uhlegal-accent-soft);
}

.legal-document-content .uhlegal-doc {
    background: var(--uhlegal-card);
    border: 1px solid var(--uhlegal-line);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
    overflow: hidden;
}

.legal-document-content .uhlegal-hero {
    padding: 2rem 1.75rem 1.6rem;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    border-bottom: 1px solid var(--uhlegal-line);
}

.legal-document-content .uhlegal-content {
    padding: 1.75rem;
    overflow-x: auto;
}

.legal-document-content .uhlegal-title {
    color: #111827;
    font-size: 2rem;
    line-height: 1.2;
    font-weight: 700;
    margin: 0 0 0.75rem;
}

.legal-document-content .uhlegal-subtitle {
    color: var(--uhlegal-muted);
    font-size: 1.18rem;
    line-height: 1.45;
    font-weight: 600;
    margin: 0;
}

.legal-document-content .uhlegal-section-title {
    color: #111827;
    font-size: 1.5rem;
    line-height: 1.3;
    font-weight: 700;
    margin: 2.25rem 0 0.9rem;
    padding-bottom: 0.65rem;
    border-bottom: 2px solid var(--uhlegal-line);
}

.legal-document-content .uhlegal-section-title-first {
    margin-top: 0;
}

.legal-document-content .uhlegal-heading2 {
    color: #111827;
    font-size: 1.5rem;
    line-height: 1.3;
    font-weight: 700;
}

.legal-document-content .uhlegal-heading3 {
    color: #111827;
    font-size: 1.18rem;
    line-height: 1.35;
    font-weight: 700;
    margin: 1.5rem 0 0.65rem;
}

.legal-document-content .uhlegal-p {
    margin: 0 0 0.75rem;
}

.legal-document-content .uhlegal-lead {
    font-size: 1.04rem;
    margin: 0 0 0.9rem;
}

.legal-document-content .uhlegal-list {
    margin: 0 0 1rem 1.35rem;
    padding: 0;
}

.legal-document-content .uhlegal-li {
    margin: 0 0 0.5rem;
}

.legal-document-content .uhlegal-link {
    color: var(--uhlegal-accent);
    text-decoration: none;
    overflow-wrap: anywhere;
}

.legal-document-content .uhlegal-link:hover {
    text-decoration: underline;
}

.legal-document-content .uhlegal-meta,
.legal-document-content .uhlegal-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
}

.legal-document-content .uhlegal-meta {
    margin-top: 1.5rem;
}

.legal-document-content .uhlegal-meta-item {
    padding: 0.9rem 1rem;
    background: var(--uhlegal-accent-soft);
    border: 1px solid color-mix(in srgb, var(--uhlegal-accent), #ffffff 75%);
    border-radius: 8px;
}

.legal-document-content .uhlegal-meta-item-title {
    display: block;
    color: var(--uhlegal-muted);
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 0.25rem;
}

.legal-document-content .uhlegal-note,
.legal-document-content .uhlegal-warning,
.legal-document-content .uhlegal-danger,
.legal-document-content .uhlegal-success,
.legal-document-content .uhlegal-ok {
    margin: 1.1rem 0;
    padding: 1rem 1.1rem;
    border-radius: 8px;
}

.legal-document-content .uhlegal-note {
    background: var(--uhlegal-warn-bg);
    border: 1px solid var(--uhlegal-warn-line);
}

.legal-document-content .uhlegal-warning,
.legal-document-content .uhlegal-danger {
    background: #fff7ed;
    border: 1px solid #fed7aa;
}

.legal-document-content .uhlegal-success,
.legal-document-content .uhlegal-ok {
    background: #ecfdf5;
    border: 1px solid #bbf7d0;
}

.legal-document-content .uhlegal-box,
.legal-document-content .uhlegal-links-box,
.legal-document-content .uhlegal-formula,
.legal-document-content .uhlegal-requisites {
    background: var(--uhlegal-soft);
    border: 1px solid var(--uhlegal-line);
    border-radius: 8px;
}

.legal-document-content .uhlegal-box,
.legal-document-content .uhlegal-links-box {
    padding: 1.1rem;
    margin: 1rem 0;
}

.legal-document-content .uhlegal-formula {
    padding: 1rem 1.1rem;
    margin: 0.9rem 0 1.1rem;
    font-weight: 700;
    overflow-wrap: anywhere;
}

.legal-document-content .uhlegal-requisites {
    padding: 1.2rem;
}

.legal-document-content .uhlegal-small {
    color: var(--uhlegal-muted);
    font-size: 0.88rem;
}

.legal-document-content .uhlegal-mono {
    font-family: Consolas, Monaco, "Courier New", monospace;
    overflow-wrap: anywhere;
}

.legal-document-content .uhlegal-table-wrap {
    overflow-x: auto;
}

.legal-document-content .uhlegal-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 720px;
    font-size: 0.94rem;
    margin: 0.9rem 0 1.15rem;
}

.legal-document-content .uhlegal-table-cell,
.legal-document-content .uhlegal-table-head {
    border: 1px solid var(--uhlegal-line);
    padding: 0.75rem 0.85rem;
    vertical-align: top;
    text-align: left;
}

.legal-document-content .uhlegal-table-head {
    background: var(--uhlegal-soft);
    color: #111827;
    font-weight: 700;
}

.legal-document-content .uhlegal-footer {
    margin-top: 1.75rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--uhlegal-line);
}

.legal-document-content .uhlegal-pill,
.legal-document-content .uhlegal-badge {
    display: inline-block;
    padding: 0.35rem 0.65rem;
    border-radius: 999px;
    background: #eef2ff;
    border: 1px solid #dbe3ff;
    color: #1e3a8a;
    font-size: 0.875rem;
    font-weight: 700;
}

@media (max-width: 991.98px) {
    .legal-documents-nav {
        position: static;
    }

    .legal-documents-nav-list {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.25rem;
    }

    .legal-documents-nav-list li + li {
        margin-top: 0;
    }
}

@media (max-width: 575.98px) {
    .legal-document-page .page-title {
        padding: 1.4rem 1rem;
    }

    .legal-documents-nav {
        padding: 1rem;
    }

    .legal-documents-nav-list,
    .legal-document-content .uhlegal-meta,
    .legal-document-content .uhlegal-grid {
        grid-template-columns: 1fr;
    }

    .legal-document-content .uhlegal-hero,
    .legal-document-content .uhlegal-content {
        padding: 1.15rem;
    }

    .legal-document-content .uhlegal-title {
        font-size: 1.6rem;
    }

    .legal-document-content .uhlegal-subtitle,
    .legal-document-content .uhlegal-heading3 {
        font-size: 1.05rem;
    }

    .legal-document-content .uhlegal-section-title,
    .legal-document-content .uhlegal-heading2 {
        font-size: 1.25rem;
    }

    .legal-document-content .uhlegal-table {
        min-width: 640px;
    }
}

.blog-pager {
    display: flex;
    justify-content: center;
}

.blog-pager__list {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.55rem;
    padding: 0.35rem;
    border: 1px solid color-mix(in srgb, var(--accent-color), transparent 84%);
    border-radius: 999px;
    background: color-mix(in srgb, var(--accent-color), #ffffff 96%);
    box-shadow: 0 12px 28px rgba(33, 37, 41, 0.07);
}

.blog-pager__page {
    min-width: 2.6rem;
    height: 2.6rem;
    padding: 0 0.85rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid color-mix(in srgb, var(--accent-color), transparent 62%);
    color: var(--accent-color);
    background: #fff;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    transition: all 0.2s ease;
}

.blog-pager__page:hover,
.blog-pager__page:focus {
    background: color-mix(in srgb, var(--accent-color), #ffffff 90%);
    border-color: var(--accent-color);
    color: var(--accent-color);
    transform: translateY(-1px);
    box-shadow: 0 8px 18px color-mix(in srgb, var(--accent-color), transparent 78%);
}

.blog-pager__page.is-active {
    border-color: var(--accent-color);
    background: var(--accent-color);
    color: var(--contrast-color);
    box-shadow: 0 10px 22px color-mix(in srgb, var(--accent-color), transparent 68%);
    pointer-events: none;
}

.partners-page .btn.buy-now-btn1 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    border-radius: 0.65rem;
    font-weight: 600;
    padding: 0.625rem 1rem;
}

.partners-page .d-grid .btn.buy-now-btn1 {
    width: 100%;
}

.partners-feature-icon {
    width: 2.75rem;
    height: 2.75rem;
    flex: 0 0 2.75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid color-mix(in srgb, var(--accent-color), transparent 76%);
    border-radius: 50%;
    color: var(--accent-color);
    background: color-mix(in srgb, var(--accent-color), #ffffff 88%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.partners-step-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2rem;
    height: 2rem;
    padding: 0 0.7rem;
    border-radius: 999px;
    color: var(--contrast-color);
    background: linear-gradient(135deg, #4f24b8 0%, var(--accent-color) 100%);
    font-weight: 700;
    box-shadow: 0 8px 18px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.partners-final-cta {
    overflow: hidden;
    border-radius: 1rem;
    background: linear-gradient(135deg, #4f24b8 0%, var(--accent-color) 58%, #8f57ff 100%);
    box-shadow: 0 18px 38px color-mix(in srgb, var(--accent-color), transparent 72%);
}

.partners-final-cta__body {
    position: relative;
    color: var(--contrast-color);
}

.partners-final-cta__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.74);
    border-radius: 0.65rem;
    color: var(--accent-color);
    background: #ffffff;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 10px 24px rgba(33, 37, 41, 0.16);
}

.partners-final-cta__button:hover,
.partners-final-cta__button:focus {
    color: var(--accent-color);
    background: color-mix(in srgb, #ffffff, var(--accent-color) 8%);
    transform: translateY(-1px);
}

@media (max-width: 575.98px) {
    .blog-pager__list {
        width: 100%;
        border-radius: 1rem;
    }

    .blog-pager__page {
        min-width: 2.45rem;
        height: 2.45rem;
    }
}
.uh-metrika-pixel {
    position: absolute;
    left: -9999px;
}

.header .main-header .header-actions .header-action-btn .badge {
    padding: 4px 2px !important;
}

.hero-content-offset {
    margin-top: -30px;
}
