/**
 * /business — B2B лендинг (по макету)
 */
html {
    scroll-behavior: smooth;
}

.business-page {
    --biz-red: #f93f20;
    --biz-red-soft: #fde8e4;
    --biz-red-border: #f7c4ba;
    --biz-text: #1a1a1a;
    --biz-muted: #6b7280;
    --biz-line: #eceef2;
    --biz-radius: 16px;
    --biz-btn-radius: 10px;
    box-sizing: border-box;
    color: var(--biz-text);
    background: #fff;
    padding: 0 0 80px;
}

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

.business-page__inner {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (min-width: 768px) {
    .business-page {
        padding: 0 0 80px;
    }

    .business-page__inner {
        padding: 0 40px;
    }
}

/* ========== HERO ========== */
.business-hero {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: center;
    margin-bottom: 30px;
}

@media (min-width: 960px) {
    .business-hero {
        grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
        gap: 48px;
        margin-bottom: 30px;
    }
}

.business-hero__title,
.business-page h1.business-hero__title {
    margin: 0 0 18px;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.18;
    letter-spacing: -0.025em;
    color: var(--biz-text);
    text-transform: none;
}

@media (min-width: 768px) {
    .business-hero__title,
    .business-page h1.business-hero__title {
        font-size: 40px;
        margin-bottom: 20px;
    }
}

@media (min-width: 1124px) {
    .business-hero__title,
    .business-page h1.business-hero__title {
        font-size: 44px;
    }
}

.business-hero__accent {
    color: var(--biz-red);
}

.business-hero__text {
    margin: 0 0 28px;
    max-width: 480px;
    font-size: 16px;
    line-height: 1.55;
    color: var(--biz-muted);
}

@media (min-width: 768px) {
    .business-hero__text {
        margin-bottom: 32px;
        font-size: 17px;
    }
}

.business-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.business-hero__media {
    min-width: 0;
    display: flex;
    justify-content: center;
}

@media (min-width: 960px) {
    .business-hero__media {
        justify-content: flex-end;
    }
}

.business-hero__image {
    display: block;
    width: 100%;
    max-width: 640px;
    height: auto;
}

/* ========== BUTTONS ========== */
.business-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    padding: 12px 20px;
    border-radius: var(--biz-btn-radius);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.2;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
    transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.business-btn__icon {
    flex-shrink: 0;
}

.business-btn--primary {
    background: var(--biz-red);
    border: 1px solid var(--biz-red);
    color: #fff;
}

.business-btn--primary:hover {
    background: #e03518;
    border-color: #e03518;
    color: #fff;
}

.business-btn--secondary {
    background: #fff;
    border: 1px solid #d1d5db;
    color: var(--biz-text);
}

.business-btn--secondary:hover {
    border-color: #9ca3af;
    color: var(--biz-text);
}

.business-btn--sm {
    min-height: 44px;
    padding: 10px 18px;
    font-size: 14px;
}

.business-btn--card {
    flex: 0 0 auto;
    min-width: 0;
    min-height: 48px;
    height: 48px;
    padding: 0 10px;
    font-size: 13px;
    justify-content: center;
    gap: 4px;
}

.business-btn--disabled {
    display: flex;
    width: 100%;
    min-height: 44px;
    background: #eef0f3;
    border: 1px solid #eef0f3;
    color: #8b929c;
    font-weight: 600;
    cursor: default;
    pointer-events: none;
}

/* ========== DIRECTIONS ========== */
.business-directions__head {
    text-align: center;
    margin: 0 0 28px;
}

@media (min-width: 768px) {
    .business-directions__head {
        margin-bottom: 36px;
    }
}

.business-directions__title,
.business-page h2.business-directions__title {
    margin: 0 0 10px;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.25;
    color: var(--biz-text);
    text-transform: none;
}

@media (min-width: 768px) {
    .business-directions__title,
    .business-page h2.business-directions__title {
        font-size: 30px;
    }
}

.business-directions__subtitle {
    margin: 0;
    font-size: 15px;
    line-height: 1.45;
    color: var(--biz-muted);
}

/* ========== CARDS ========== */
.business-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    align-items: stretch;
}

@media (min-width: 960px) {
    .business-cards {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 20px;
    }

    .business-card--shops .business-btn--card {
        padding: 0 8px;
        font-size: 12px;
        gap: 4px;
    }
}

.business-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    background: #fff;
    border: 1px solid var(--biz-line);
    border-radius: var(--biz-radius);
    padding: 24px;
    overflow: hidden;
}

@media (min-width: 768px) {
    .business-card {
        padding: 28px;
    }
}

.business-card--shops,
.business-card--sto {
    border-color: var(--biz-red-border);
    padding: 28px 24px 24px;
    overflow: visible;
}

@media (min-width: 768px) {
    .business-card--shops,
    .business-card--sto {
        padding: 32px 28px 28px;
    }
}

.business-card--soon {
    background: #fafbfc;
}

.business-card--soon::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.35);
    pointer-events: none;
    z-index: 1;
}

.business-card--soon > * {
    position: relative;
    z-index: 2;
}

.business-card__title,
.business-page h3.business-card__title {
    margin: 0 0 12px;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--biz-text);
    text-transform: none;
}

.business-card--shops .business-card__title,
.business-card--sto .business-card__title {
    position: relative;
    z-index: 2;
    max-width: 100%;
    margin-bottom: 10px;
    font-size: 20px;
    letter-spacing: -0.02em;
}

@media (min-width: 1124px) {
    .business-card--shops .business-card__title,
    .business-card--sto .business-card__title {
        font-size: 22px;
    }
}

.business-card--soon .business-card__title {
    margin-bottom: 16px;
    color: #4b5563;
}

.business-card__desc {
    position: relative;
    z-index: 2;
    margin: 0 0 20px;
    font-size: 14px;
    line-height: 1.5;
    color: var(--biz-muted);
}

.business-card--shops .business-card__desc,
.business-card--sto .business-card__desc {
    max-width: 100%;
    margin-bottom: 22px;
}

.business-card__mid {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    min-width: 0;
}

.business-card__list {
    margin: 0;
    padding: 0;
    list-style: none;
    flex: 1 1 auto;
    min-width: 0;
    max-width: 100%;
}

.business-card--shops .business-card__list,
.business-card--sto .business-card__list {
    max-width: 100%;
    width: 100%;
}

.business-card__item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 0 0 11px;
    font-size: 14px;
    line-height: 1.35;
    color: #333;
}

.business-card__item:last-child {
    margin-bottom: 0;
}

.business-card__check {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    margin-top: 1px;
}

.business-card__check svg {
    display: block;
}

.business-card__parts {
    position: relative;
    z-index: 1;
    width: 100%;
    margin: 20px 0 0;
    pointer-events: none;
}

.business-card__parts img {
    display: block;
    width: 100%;
    height: auto;
}

.business-card__foot {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 10px;
    margin-top: 22px;
}

.business-card__price {
    display: inline-flex;
    align-items: center;
    flex: 1 1 auto;
    box-sizing: border-box;
    height: 48px;
    min-height: 48px;
    padding: 0 14px;
    border-radius: var(--biz-btn-radius);
    background: var(--biz-red-soft);
    font-size: 16px;
    line-height: 1;
    color: var(--biz-text);
    white-space: nowrap;
    gap: 0;
}

.business-card--sto .business-card__price {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
}

.business-card__price b {
    margin: 0 4px;
    font-size: 26px;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1;
}

.business-card__price .nbrb-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 3px 0 1px;
    font-size: 26px;
    line-height: 1;
    height: 1em;
    position: relative;
    top: -2px;
}

.business-card__price-note {
    position: relative;
    z-index: 2;
    margin-top: 8px;
    font-size: 13px;
    line-height: 1.3;
    color: var(--biz-muted);
}

/* soon cards */
.business-card__soon-art {
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 140px;
    margin: 4px 0 20px;
    opacity: 0.45;
    filter: grayscale(0.35) blur(1.5px);
}

.business-card__soon-art img {
    display: block;
    width: 100%;
    max-width: 240px;
    height: auto;
    object-fit: contain;
}

.business-card__soon-foot {
    margin-top: auto;
}

#business-shops,
#business-sto,
#business-directions {
    scroll-margin-top: 96px;
}

/* ========== TARIFF CALCULATOR ========== */
.business-page--tariff {
    background: #f4f5f7;
    padding-bottom: 48px;
}

@media (min-width: 768px) {
    .business-page--tariff {
        padding-bottom: 72px;
    }
}

.tariff-head {
    text-align: center;
    margin: 0 0 24px;
}

@media (min-width: 768px) {
    .tariff-head {
        margin-bottom: 32px;
    }
}

.tariff-head__title,
.business-page h1.tariff-head__title {
    margin: 0 0 8px;
    font-size: 26px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--biz-text);
    text-align: center;
    text-transform: none;
}

@media (min-width: 768px) {
    .tariff-head__title,
    .business-page h1.tariff-head__title {
        font-size: 32px;
    }
}

.tariff-head__subtitle {
    margin: 0 auto;
    max-width: 560px;
    font-size: 15px;
    line-height: 1.45;
    color: var(--biz-muted);
    text-align: center;
}

.tariff {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    align-items: start;
}

@media (min-width: 960px) {
    .tariff {
        grid-template-columns: minmax(0, 1fr) 320px;
        gap: 20px;
    }
}

@media (min-width: 1124px) {
    .tariff {
        grid-template-columns: minmax(0, 1fr) 340px;
        gap: 24px;
    }
}

.tariff-card,
.tariff-summary {
    background: #fff;
    border: 1px solid #e8eaef;
    border-radius: var(--biz-radius);
    box-shadow: 0 6px 20px rgba(22, 28, 45, 0.05);
}

.tariff-card {
    padding: 8px 16px 4px;
}

@media (min-width: 768px) {
    .tariff-card {
        padding: 8px 24px 4px;
    }
}

.tariff-sliders {
    display: flex;
    flex-direction: column;
    margin: 0;
}

.tariff-slider {
    padding: 16px 0;
    border-bottom: 1px solid var(--biz-line);
}

.tariff-slider:last-child {
    border-bottom: 0;
}

.tariff-slider__label {
    display: block;
    margin: 0 0 12px;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--biz-text);
}

.tariff-slider__row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    align-items: start;
}

@media (min-width: 768px) {
    .tariff-slider__row {
        grid-template-columns: 120px minmax(0, 1fr) minmax(180px, 220px);
        gap: 16px 24px;
        align-items: start;
    }
}

.tariff-stepper {
    display: grid;
    grid-template-columns: 36px 48px 36px;
    width: 120px;
    max-width: 120px;
    border: 1px solid #d7dbe3;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
}

.business-page--tariff .tariff-stepper__btn,
.business-page--tariff button.tariff-stepper__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    min-width: 36px;
    max-width: 36px;
    height: 36px;
    min-height: 36px;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: #fff;
    color: #374151;
    font-size: 18px;
    font-weight: 500;
    line-height: 1;
    cursor: pointer;
    transition: background-color 0.15s ease, color 0.15s ease;
}

.business-page--tariff .tariff-stepper__btn:hover:not(:disabled),
.business-page--tariff button.tariff-stepper__btn:hover:not(:disabled) {
    background: #f3f4f6;
    color: var(--biz-text);
}

.business-page--tariff .tariff-stepper__btn:disabled,
.business-page--tariff button.tariff-stepper__btn:disabled {
    background: #fff;
    color: #c4c9d2;
    opacity: 1;
    cursor: default;
}

.business-page--tariff .tariff-stepper__btn:active,
.business-page--tariff button.tariff-stepper__btn:active {
    color: #374151;
}

.tariff-stepper__input {
    box-sizing: border-box;
    width: 48px;
    min-width: 48px;
    max-width: 48px;
    height: 36px;
    margin: 0;
    padding: 0;
    border: 0;
    border-left: 1px solid #d7dbe3;
    border-right: 1px solid #d7dbe3;
    border-radius: 0;
    background: #fff;
    text-align: center;
    font-size: 15px;
    font-weight: 600;
    line-height: 36px;
    color: var(--biz-text);
    -moz-appearance: textfield;
}

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

.tariff-slider__track-wrap {
    min-width: 0;
    padding-top: 8px;
}

.tariff-slider__range {
    --progress: 0%;
    -webkit-appearance: none;
    appearance: none;
    display: block;
    width: 100%;
    height: 20px;
    margin: 0;
    background: transparent;
    outline: none;
    cursor: pointer;
}

.tariff-slider__range::-webkit-slider-runnable-track {
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(
        to right,
        var(--biz-red) 0%,
        var(--biz-red) var(--progress),
        #e5e7eb var(--progress),
        #e5e7eb 100%
    );
}

.tariff-slider__range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    margin-top: -6px;
    border-radius: 50%;
    background: var(--biz-red);
    border: 0;
    box-shadow: 0 1px 3px rgba(249, 63, 32, 0.35);
    cursor: pointer;
}

.tariff-slider__range::-moz-range-track {
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(
        to right,
        var(--biz-red) 0%,
        var(--biz-red) var(--progress),
        #e5e7eb var(--progress),
        #e5e7eb 100%
    );
}

.tariff-slider__range::-moz-range-thumb {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--biz-red);
    border: 0;
    box-shadow: 0 1px 3px rgba(249, 63, 32, 0.35);
    cursor: pointer;
}

.tariff-slider__bounds {
    display: flex;
    justify-content: space-between;
    margin-top: 6px;
    font-size: 12px;
    line-height: 1;
    color: #9ca3af;
}

.tariff-slider__hint {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

@media (min-width: 768px) {
    .tariff-slider__hint {
        text-align: left;
        align-self: start;
        padding-top: 2px;
    }
}

.tariff-slider__hint-main {
    font-size: 13px;
    font-weight: 500;
    line-height: 1.35;
    color: var(--biz-text);
}

.tariff-slider__hint-price {
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    color: var(--biz-red);
}

.business-page--tariff .nbrb-icon {
    display: inline-block;
    margin: 0 0.04em;
    padding: 0;
    font-style: normal;
    font-weight: normal;
    font-size: 1.2em;
    line-height: 1;
    vertical-align: baseline;
    height: auto;
    width: auto;
}

.tariff-slider__hint-sub {
    font-size: 12px;
    line-height: 1.35;
    color: var(--biz-muted);
}

.tariff-features {
    margin-top: 0;
    padding-top: 4px;
    border-top: 1px solid var(--biz-line);
}

.tariff-features__title,
.business-page h2.tariff-features__title {
    margin: 0;
    padding: 16px 0 8px;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--biz-text);
    text-align: center;
    text-transform: none;
}

.tariff-features__list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.tariff-feature {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid var(--biz-line);
}

.tariff-feature:last-child {
    border-bottom: 0;
}

.tariff-feature__text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.tariff-feature__title {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-width: 0;
}

.tariff-feature__name {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--biz-text);
}

.tariff-feature__desc {
    font-size: 13px;
    line-height: 1.4;
    color: var(--biz-muted);
}

.tariff-feature__side {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.tariff-feature__price {
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    color: #6b7280;
    white-space: nowrap;
}

.tariff-feature__free {
    font-size: 13px;
    font-weight: 700;
    color: #16a34a;
    white-space: nowrap;
}

.tariff-feature__check {
    display: flex;
    width: 22px;
    height: 22px;
    color: #16a34a;
}

.tariff-feature__check svg {
    display: block;
}

.tariff-feature--conditional .tariff-feature__free,
.tariff-feature--conditional .tariff-feature__check {
    color: #f59e0b;
}

.business-page--tariff .tariff-feature__hint,
.business-page--tariff button.tariff-feature__hint {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    min-width: 22px;
    max-width: 22px;
    height: 22px;
    min-height: 22px;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: transparent;
    color: #9ca3af;
    cursor: pointer;
    transition: color 0.15s ease;
}

.business-page--tariff .tariff-feature__hint:hover,
.business-page--tariff button.tariff-feature__hint:hover {
    background: transparent;
    color: #6b7280;
}

.business-page--tariff .tariff-feature__hint:active,
.business-page--tariff button.tariff-feature__hint:active {
    color: #6b7280;
}

.tariff-feature__hint svg {
    display: block;
}

body.tariff-hint-modal-open {
    overflow: hidden;
}

.tariff-hint-modal {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.tariff-hint-modal[hidden] {
    display: none;
}

.tariff-hint-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(17, 19, 24, 0.45);
}

.tariff-hint-modal__dialog {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 640px;
    max-height: calc(100vh - 40px);
    overflow: auto;
    padding: 28px 24px 24px;
    border-radius: var(--biz-radius);
    background: #fff;
    box-shadow: 0 16px 48px rgba(22, 28, 45, 0.18);
}

.tariff-hint-modal__close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 32px;
    height: 32px;
    min-width: 32px;
    min-height: 32px;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 8px;
    background: #f3f4f6;
    cursor: pointer;
}

.business-page--tariff .tariff-hint-modal__close,
.business-page--tariff button.tariff-hint-modal__close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    min-width: 32px;
    max-width: 32px;
    height: 32px;
    min-height: 32px;
    padding: 0;
    border: 0;
    border-radius: 8px;
    background: #f3f4f6;
    color: #6b7280;
    line-height: 1;
}

.business-page--tariff .tariff-hint-modal__close:hover,
.business-page--tariff button.tariff-hint-modal__close:hover {
    background: #e5e7eb;
    color: #374151;
}

.tariff-hint-modal__close::before,
.tariff-hint-modal__close::after {
    content: "";
    position: absolute;
    width: 14px;
    height: 1.5px;
    background: currentColor;
    border-radius: 1px;
}

.tariff-hint-modal__close::before {
    transform: rotate(45deg);
}

.tariff-hint-modal__close::after {
    transform: rotate(-45deg);
}

.tariff-hint-modal__title,
.business-page h3.tariff-hint-modal__title {
    margin: 0 36px 14px 0;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--biz-text);
    text-transform: none;
}

.tariff-hint-modal__body {
    color: #4b5563;
    font-size: 16px;
    line-height: 1.55;
}

.tariff-hint-modal__body p {
    margin: 0 0 18px;
}

.tariff-hint-modal__body p:last-child {
    margin-bottom: 0;
}

.tariff-hint-modal__lead {
    color: var(--biz-text);
    font-size: 15px;
    font-weight: 500;
    line-height: 1.5;
}

.tariff-hint-modal__path {
    display: inline;
    padding: 1px 6px;
    border-radius: 6px;
    background: #f3f4f6;
    color: #111827;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
}

.tariff-hint-modal__url {
    display: inline-flex;
    align-items: center;
    max-width: 100%;
    margin: 0 0 20px;
    padding: 10px 14px;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    background: linear-gradient(180deg, #fff 0%, #f9fafb 100%);
    color: #c2410c;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.35;
    text-decoration: none;
    word-break: break-all;
    transition: border-color 0.15s ease, background 0.15s ease;
}

.tariff-hint-modal__url:hover {
    border-color: #fdba74;
    background: #fff7ed;
    color: #9a3412;
}

.tariff-hint-modal__subtitle {
    margin: 16px 0 10px !important;
    color: var(--biz-text);
    font-size: 14px;
    font-weight: 700;
}

.tariff-hint-modal__list {
    margin: 0 0 24px;
    padding: 0;
    list-style: none;
}

.tariff-hint-modal__list li {
    margin: 0 0 10px;
    color: #374151;
    line-height: 1.45;
}

.tariff-hint-modal__list li:last-child {
    margin-bottom: 0;
}

.tariff-hint-modal__image {
    display: block;
    width: 100%;
    height: auto;
    margin: 62px 0 64px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 8px 24px rgba(22, 28, 45, 0.08);
    object-fit: cover;
}

.tariff-hint-modal__note {
    margin: 0 0 20px;
    padding: 14px 16px;
    border-radius: 12px;
    border-left: 3px solid #ea580c;
    background: #fff7ed;
}

.tariff-hint-modal__note p {
    margin: 0;
    color: #7c2d12;
}

.tariff-hint-modal__note p + p {
    margin-top: 8px;
}

.tariff-hint-modal__result {
    margin-bottom: 0 !important;
    padding-top: 2px;
    color: var(--biz-text);
    font-weight: 600;
}

.tariff-hint-modal__accent {
    color: var(--biz-red);
    font-weight: 700;
}

.tariff-hint-modal__table-wrap {
    margin: 0 0 8px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.tariff-hint-modal__table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
    font-size: 13px;
    line-height: 1.4;
}

.tariff-hint-modal__table th,
.tariff-hint-modal__table td {
    padding: 10px 12px;
    border: 1px solid #e5e7eb;
    text-align: left;
    vertical-align: top;
}

.tariff-hint-modal__table th {
    background: #f9fafb;
    color: var(--biz-text);
    font-weight: 700;
}

.tariff-hint-modal__table th:nth-child(1),
.tariff-hint-modal__table td:nth-child(1) {
    width: 18%;
    white-space: nowrap;
}

.tariff-hint-modal__table th:nth-child(2),
.tariff-hint-modal__table td:nth-child(2) {
    width: 12%;
    white-space: nowrap;
}

.tariff-hint-modal__table th:nth-child(3),
.tariff-hint-modal__table td:nth-child(3) {
    width: 18%;
    white-space: nowrap;
}

.tariff-hint-modal__table th:nth-child(4),
.tariff-hint-modal__table td:nth-child(4) {
    width: 52%;
}

.tariff-hint-modal__table td {
    color: #374151;
}

.tariff-hint-modal__table tbody tr:nth-child(even) {
    background: #fcfcfd;
}

.tariff-toggle {
    position: relative;
    display: inline-flex;
    width: 46px;
    height: 26px;
    cursor: pointer;
}

.tariff-toggle input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.tariff-toggle__ui {
    position: absolute;
    inset: 0;
    border-radius: 999px;
    background: #d1d5db;
    transition: background-color 0.18s ease;
}

.tariff-toggle__ui::after {
    content: "";
    position: absolute;
    top: 3px;
    left: 3px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.18);
    transition: transform 0.18s ease;
}

.tariff-toggle input:checked + .tariff-toggle__ui {
    background: #16a34a;
}

.tariff-toggle input:checked + .tariff-toggle__ui::after {
    transform: translateX(20px);
}

.tariff-toggle input:focus-visible + .tariff-toggle__ui {
    outline: 2px solid rgba(22, 163, 74, 0.35);
    outline-offset: 2px;
}

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

.tariff__summary {
    min-width: 0;
}

@media (min-width: 960px) {
    .tariff__summary {
        position: sticky;
        top: 96px;
    }
}

.tariff-summary {
    padding: 20px 18px 18px;
}

@media (min-width: 768px) {
    .tariff-summary {
        padding: 22px 20px 20px;
    }
}

.tariff-summary__title,
.business-page h2.tariff-summary__title {
    margin: 0 0 12px;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.25;
    color: var(--biz-text);
    text-transform: none;
}

.tariff-summary__list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.tariff-summary__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 9px 0;
}

.tariff-summary__label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    font-size: 14px;
    color: #374151;
}

.tariff-summary__icon {
    display: inline-flex;
    color: #9ca3af;
    flex-shrink: 0;
}

.tariff-summary__value {
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    color: var(--biz-text);
    white-space: nowrap;
}

.tariff-summary__total {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    margin-top: 6px;
    padding-top: 16px;
    border-top: 1px solid var(--biz-line);
}

.tariff-summary__total-label {
    font-size: 20px;
    font-weight: 700;
    color: var(--biz-text);
}

.tariff-summary__total-value {
    display: inline-flex;
    align-items: baseline;
    gap: 0.2em;
    color: var(--biz-red);
    white-space: nowrap;
}

.tariff-summary__total-amount {
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1;
    color: var(--biz-red);
}

.tariff-summary__total-amount .nbrb-icon {
    font-size: 1.15em;
    font-weight: normal;
    line-height: 1;
    vertical-align: baseline;
    margin: 0 0 0 0.06em;
}

.tariff-summary__total-period {
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    color: #6b7280;
}

.tariff-summary__note {
    margin: 8px 0 16px;
    font-size: 12px;
    line-height: 1.4;
    color: #9ca3af;
}

.tariff-summary__field {
    margin: 0 0 12px;
}

.tariff-summary__field-label {
    display: block;
    margin: 0 0 6px;
    font-size: 13px;
    font-weight: 600;
    color: #374151;
}

.tariff-summary__field-input {
    display: block;
    width: 100%;
    height: 44px;
    padding: 10px 12px;
    border: 1px solid #d1d5db;
    border-radius: var(--biz-btn-radius, 10px);
    background: #fff;
    color: #111827;
    font-size: 15px;
    line-height: 1.2;
    outline: none;
    transition: border-color .15s ease, box-shadow .15s ease;
}

.tariff-summary__field-input:focus {
    border-color: #f93f20;
    box-shadow: 0 0 0 3px rgba(249, 63, 32, .12);
}

.tariff-summary__field--invalid .tariff-summary__field-input {
    border-color: #dc2626;
}

.tariff-summary__field-error {
    display: block;
    margin-top: 6px;
    font-size: 12px;
    line-height: 1.3;
    color: #dc2626;
}

.tariff-summary__form-note {
    margin: 0 0 12px;
    font-size: 13px;
    line-height: 1.4;
}

.tariff-summary__form-note--error {
    color: #dc2626;
}

.tariff-summary__form-note--success {
    color: #15803d;
}

.business-page--tariff .tariff-summary__cta.is-loading {
    opacity: .75;
    cursor: wait;
}

.business-page--tariff .tariff-summary__cta,
.business-page--tariff button.tariff-summary__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-width: 0;
    max-width: none;
    height: auto;
    min-height: 48px;
    margin: 0;
    padding: 12px 16px;
    border: 0;
    border-radius: var(--biz-btn-radius);
    background: var(--biz-red);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.15s ease;
}

.business-page--tariff .tariff-summary__cta:hover,
.business-page--tariff button.tariff-summary__cta:hover {
    background: #e03518;
    color: #fff;
}

.business-page--tariff .tariff-summary__cta:active,
.business-page--tariff button.tariff-summary__cta:active {
    color: #fff;
}

@media (max-width: 959px) {
    .tariff-feature {
        align-items: flex-start;
    }

    .tariff-feature__side {
        flex-direction: column;
        align-items: flex-end;
        gap: 8px;
        padding-top: 2px;
    }
}

/* ========== MOBILE ========== */
@media (max-width: 599px) {
    .business-hero__actions {
        flex-direction: column;
    }

    .business-hero__actions .business-btn {
        width: 100%;
    }

    .business-card__foot {
        gap: 8px;
    }

    .business-card__price {
        padding: 0 12px;
        font-size: 15px;
    }

    .business-card__price b,
    .business-card__price .nbrb-icon {
        font-size: 22px;
    }

    .business-card__foot .business-btn--card {
        padding: 0 8px;
        font-size: 12px;
    }

    .tariff-slider {
        padding: 14px 0;
    }

    .tariff-slider__row {
        justify-items: stretch;
    }

    .tariff-stepper {
        justify-self: start;
    }

    .tariff-summary__total {
        flex-wrap: wrap;
    }

    .tariff-summary__total-amount {
        font-size: 28px;
    }
}
