:root {
    --bg-top: #07131d;
    --bg-mid: #0c2033;
    --bg-light: #f3f6fb;
    --surface: rgba(11, 24, 39, 0.58);
    --surface-solid: rgba(8, 18, 30, 0.9);
    --surface-soft: rgba(255, 255, 255, 0.08);
    --surface-border: rgba(255, 255, 255, 0.14);
    --text: #eef4fb;
    --muted: #abc0d4;
    --accent: #49d5c4;
    --accent-strong: #ffb76e;
    --dark-text: #082033;
    --shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
    --radius-xl: 30px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --max-width: 1240px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: "Segoe UI Variable Text", "Trebuchet MS", sans-serif;
    color: var(--text);
    background: #08111b;
}

body.menu-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

[hidden] {
    display: none !important;
}

button {
    font: inherit;
}

.page-shell {
    min-height: 100vh;
    background:
        radial-gradient(circle at top left, rgba(73, 213, 196, 0.22), transparent 32%),
        radial-gradient(circle at 90% 12%, rgba(255, 183, 110, 0.18), transparent 22%),
        linear-gradient(180deg, var(--bg-top) 0%, var(--bg-mid) 58%, var(--bg-light) 58%, #f7f8fb 100%);
}

.content-stage__card{
    border:1px solid rgba(73,213,196,.18);
    border-radius:24px;
    background:#fff;
    color:#082033;
    box-shadow:0 12px 32px rgba(22,49,84,.08);
}

.content-stage__card strong{
    display:inline-block;
    padding:4px 10px;
    border-radius:999px;
    background:#49d5c4;
    color:#082033;
}

.content-stage__card--editor strong{
    display:inline;
    padding:0;
    border-radius:0;
    background:transparent;
    color:inherit;
}

.content-stage__card--editor h1{
    font-size:clamp(2rem,3vw,3rem) !important;
    line-height:1.2;
    max-width:none;
}

.content-stage--document .content-stage__card--editor h1,
.content-stage--document .content-stage__intro-card h1{
    font-size:clamp(1.6rem,2vw,2.2rem) !important;
    line-height:1.3 !important;
    max-width:none !important;
    color:#123455;
}

.content-stage__card img{
    display:block;
    width:100% !important;
    max-width:none;
    height:280px;
    margin:0 0 16px;
    object-fit:cover;
    border-radius:16px;
}

.content-stage__card .content-stage__button{
    display:inline-flex;
    width:auto;
    min-height:36px;
    padding:8px 16px;
    font-size:.9rem;
}

.promotion-detail h1{
    font-size:clamp(1.8rem,2.5vw,2.8rem) !important;
    line-height:1.2 !important;
    max-width:none !important;
}

.site-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 100;
    padding: 20px 18px 0;
}

.site-header__shell {
    display: grid;
    grid-template-columns: auto minmax(320px, 1fr) auto;
    align-items: center;
    gap: 22px;
    max-width: 1560px;
    margin: 0 auto;
    padding: 12px 16px;
    border: 1px solid rgba(23, 68, 125, 0.08);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(18px);
    box-shadow: 0 18px 44px rgba(22, 49, 84, 0.08);
    animation: header-reveal 0.72s ease both;
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.site-header[data-scrolled='true'] .site-header__shell {
    background: var(--surface-solid);
    border-color: rgba(73, 213, 196, 0.2);
    transform: translateY(-4px);
}

.site-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
    flex-shrink: 0;
}

.site-brand__mark {
    display: grid;
    place-items: center;
    width: 56px;
    height: 56px;
    padding: 10px;
    border-radius: 20px;
    background: linear-gradient(160deg, rgba(73, 213, 196, 0.2), rgba(255, 183, 110, 0.22));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.site-brand__mark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.site-brand__copy {
    display: grid;
    gap: 3px;
}

.site-brand__copy strong {
    font-family: "Bahnschrift", "Segoe UI Variable Display", sans-serif;
    font-size: 1.08rem;
    letter-spacing: 0.08em;
}

.site-brand__copy span {
    color: var(--muted);
    font-size: 0.82rem;
}

.site-nav--desktop {
    flex: 1 1 auto;
    display: flex;
    justify-content: center;
    min-width: 0;
}

.site-nav__surface {
    display: inline-flex;
    align-items: center;
    padding: 6px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.site-nav__list {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-nav__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 18px;
    border-radius: 999px;
    color: var(--muted);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.site-nav__link:hover,
.site-nav__link:focus-visible {
    color: var(--text);
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-1px);
}

.site-nav__link.is-active {
    color: var(--text);
    background: linear-gradient(135deg, rgba(73, 213, 196, 0.22), rgba(255, 255, 255, 0.1));
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
}

.site-header__info {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: auto;
    flex-shrink: 0;
}

.site-header__desktop-rail {
    display: flex;
    align-items: center;
    gap: 14px;
}

.site-header__service {
    display: grid;
    justify-items: start;
    gap: 4px;
}

.site-header__service-title,
.site-header__service-hours,
.site-header__service-phones {
    margin: 0;
}

.site-header__service-title {
    color: var(--muted);
    font-size: 0.84rem;
    font-weight: 700;
    line-height: 1.3;
}

.site-header__service-hours,
.site-header__service-phones {
    color: #d8e6f2;
    font-size: 0.82rem;
    font-weight: 600;
    line-height: 1.45;
}

.site-header__service-phones a {
    color: inherit;
}

.site-header__meta {
    display: grid;
    justify-items: end;
    gap: 8px;
}

.site-header__meta-label {
    color: var(--muted);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.site-header__meta-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px;
}

.site-header__service-chips {
    flex-wrap: nowrap;
}

.payme-payment {
    padding: 180px 20px 120px;
}

.payme-payment__shell {
    display: grid;
    grid-template-columns: minmax(280px, 420px) minmax(320px, 520px);
    gap: 32px;
    align-items: start;
    max-width: 1100px;
    margin: 0 auto;
}

.payme-payment__intro,
.payme-payment__card {
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 30px;
    background: rgba(8, 18, 30, 0.78);
    backdrop-filter: blur(18px);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
}

.payme-payment__intro {
    padding: 38px;
}

.payme-payment__eyebrow {
    display: inline-block;
    margin-bottom: 18px;
    color: var(--accent);
    letter-spacing: 0.16em;
    font-size: 0.72rem;
    font-weight: 700;
}

.payme-payment__intro h1 {
    margin: 0 0 16px;
    font-size: clamp(2rem, 4vw, 3.4rem);
}

.payme-payment__intro p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.payme-payment__card {
    padding: 38px;
}

.payme-payment__form {
    display: grid;
    gap: 22px;
}

.payme-payment__field {
    display: grid;
    gap: 10px;
}

.payme-payment__field span {
    color: #dbe7f4;
    font-size: 0.92rem;
    font-weight: 600;
}

.payme-payment__field input {
    width: 100%;
    min-height: 58px;
    padding: 0 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text);
    font-size: 1rem;
}

.payme-payment__field input:focus {
    outline: none;
    border-color: rgba(73, 213, 196, 0.6);
    box-shadow: 0 0 0 4px rgba(73, 213, 196, 0.14);
}

.payme-payment__submit,
.payme-payment__checkout {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    padding: 0 24px;
    border: 0;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--accent), #58e0ff);
    color: #032133;
    font-size: 1rem;
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.payme-payment__submit:hover,
.payme-payment__checkout:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 32px rgba(73, 213, 196, 0.24);
}

.payme-payment__result {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.payme-payment__result p {
    margin: 0 0 18px;
    color: var(--muted);
}

@media (max-width: 900px) {
    .payme-payment__shell {
        grid-template-columns: 1fr;
    }
}

.site-header__meta-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    color: #d8e6f2;
    font-size: 0.84rem;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
}

.site-header__meta-item--hours {
    color: var(--accent);
    background: rgba(73, 213, 196, 0.1);
    border-color: rgba(73, 213, 196, 0.18);
}

.site-header__meta-item--phone {
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.site-header__meta-item--phone:hover,
.site-header__meta-item--phone:focus-visible {
    transform: translateY(-1px);
    border-color: rgba(255, 183, 110, 0.24);
    background: rgba(255, 183, 110, 0.1);
}

.account-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 18px;
    border: 1px solid rgba(255, 183, 110, 0.25);
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(255, 183, 110, 0.18), rgba(73, 213, 196, 0.14));
    color: var(--text);
    font-weight: 800;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 12px 24px rgba(0, 0, 0, 0.18);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    white-space: nowrap;
}

.account-link:hover,
.account-link:focus-visible {
    transform: translateY(-2px);
    border-color: rgba(255, 183, 110, 0.42);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), 0 16px 28px rgba(0, 0, 0, 0.22);
}

.account-link.is-placeholder {
    pointer-events: none;
    color: #314252;
    background: linear-gradient(135deg, #d6e0e9, #edf2f8);
    box-shadow: none;
    opacity: 0.78;
}

.menu-toggle {
    display: none;
    align-items: center;
    gap: 10px;
    margin-left: auto;
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.06);
    color: var(--text);
    cursor: pointer;
}

.menu-toggle__icon {
    display: inline-grid;
    gap: 4px;
}

.menu-toggle__icon span {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
}

.menu-toggle__label {
    width: auto;
    height: auto;
    font-size: 0.86rem;
    color: var(--muted);
}

.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 90;
    display: grid;
    align-items: start;
    justify-items: end;
    background: rgba(4, 12, 20, 0.45);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.mobile-menu__backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: transparent;
}

.mobile-menu__panel {
    position: relative;
    width: min(420px, 100%);
    min-height: 100vh;
    padding: 112px 22px 30px;
    background: rgba(7, 16, 26, 0.96);
    backdrop-filter: blur(28px);
    box-shadow: -18px 0 48px rgba(0, 0, 0, 0.35);
    transform: translateX(100%);
    transition: transform 0.32s ease;
}

body.menu-open .mobile-menu {
    opacity: 1;
    pointer-events: auto;
}

body.menu-open .mobile-menu__panel {
    transform: translateX(0);
}

.mobile-menu__nav .site-nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
}

.mobile-menu__nav .site-nav__item {
    border-bottom: 1px solid rgba(20, 49, 88, 0.08);
}

.mobile-menu__nav .site-nav__item:last-child {
    border-bottom: 0;
}

.mobile-menu__nav .site-nav__link {
    display: flex;
    width: 100%;
    justify-content: flex-start;
    min-height: 0;
    padding: 18px 0;
    border-radius: 0;
    background: transparent;
    font-size: 1.04rem;
    box-shadow: none;
}

.mobile-menu__nav .site-nav__link.is-active {
    background: transparent;
    box-shadow: none;
}

.mobile-menu__footer {
    display: grid;
    gap: 16px;
    margin-top: 26px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.14);
}

.site-header__service--mobile {
    width: 100%;
    gap: 8px;
}

.account-link--mobile {
    width: 100%;
}

body.lead-modal-open {
    overflow: hidden;
}

.lead-modal {
    position: fixed;
    inset: 0;
    z-index: 140;
    display: grid;
    place-items: center;
    padding: 24px 16px;
    background: rgba(10, 27, 48, 0.38);
    backdrop-filter: blur(14px);
}

.lead-modal__backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: transparent;
}

.lead-modal__dialog {
    position: relative;
    width: min(100%, 560px);
    border-radius: 34px;
    background:
        radial-gradient(circle at top right, rgba(255, 205, 84, 0.18), transparent 30%),
        linear-gradient(180deg, #f8fbff 0%, #eef5fc 100%);
    box-shadow: 0 28px 64px rgba(18, 44, 77, 0.24);
    border: 1px solid rgba(19, 61, 111, 0.08);
    overflow: hidden;
}

.lead-modal__close {
    position: absolute;
    top: 18px;
    right: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 999px;
    background: rgba(15, 101, 211, 0.08);
    color: #173b63;
    cursor: pointer;
}

.lead-modal__close span {
    font-size: 1.5rem;
    line-height: 1;
}

.lead-modal__content {
    display: grid;
    gap: 18px;
    padding: 34px 32px 30px;
    color: #173b63;
}

.lead-modal__eyebrow {
    margin: 0;
    color: #0f65d3;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.lead-modal__content h2 {
    margin: 0;
    font-family: "Bahnschrift", "Segoe UI Variable Display", sans-serif;
    font-size: clamp(2rem, 4vw, 2.6rem);
    line-height: 1;
}

.lead-modal__lead {
    margin: 0;
    color: #5c7695;
    line-height: 1.65;
}

.lead-form {
    display: grid;
    gap: 16px;
}

.lead-form__selected-tariff {
    display: grid;
    gap: 6px;
    padding: 14px 16px;
    border: 1px solid rgba(15, 101, 211, 0.12);
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(15, 101, 211, 0.05), rgba(255, 217, 113, 0.16));
}

.lead-form__selected-tariff span {
    color: #5c7695;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.lead-form__selected-tariff strong {
    color: #173b63;
    font-size: 1rem;
}

.lead-form__trap {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0 0 0 0);
    border: 0;
}

.lead-form__field {
    display: grid;
    gap: 8px;
}

.lead-form__field label {
    font-size: 0.92rem;
    font-weight: 700;
}

.lead-form__field input {
    min-height: 56px;
    padding: 0 18px;
    border: 1px solid rgba(19, 61, 111, 0.12);
    border-radius: 18px;
    background: #ffffff;
    color: #173b63;
    font-size: 1rem;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.lead-form__field input:focus-visible {
    outline: 2px solid rgba(15, 101, 211, 0.24);
    outline-offset: 2px;
    border-color: rgba(15, 101, 211, 0.2);
}

.lead-form__error {
    min-height: 1.2em;
    color: #c74a3d;
    font-size: 0.86rem;
}

.lead-form__feedback {
    min-height: 1.4em;
    margin: 0;
    color: #5c7695;
    font-size: 0.92rem;
}

.lead-form__feedback[data-state='error'] {
    color: #c74a3d;
}

.lead-form__submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, #ffd971, #ffbe39);
    color: #4b3100;
    font-size: 1rem;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 18px 28px rgba(39, 65, 109, 0.16);
}

.lead-form__submit:disabled {
    cursor: wait;
    opacity: 0.72;
}

.live-chat-launcher {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 170;
    display: inline-grid;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, #0f65d3, #1a86ff 58%, #4fb0ff);
    color: #ffffff;
    box-shadow: 0 18px 34px rgba(15, 101, 211, 0.3);
    cursor: pointer;
    animation: live-chat-launcher-float 3.2s ease-in-out infinite;
}

.live-chat-launcher::before {
    content: "";
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(79, 176, 255, 0.3), rgba(79, 176, 255, 0));
    z-index: -1;
}

.live-chat-launcher svg {
    width: 28px;
    height: 28px;
}

.live-chat-launcher:hover,
.live-chat-launcher:focus-visible {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 22px 40px rgba(15, 101, 211, 0.36);
}

.scroll-top-button {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 170;
    width: 64px;
    height: 64px;
    border: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, #0f65d3, #2a88ff);
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 18px 34px rgba(15, 101, 211, 0.3);
    transition: transform .2s ease, box-shadow .2s ease;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.scroll-top-button.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.scroll-top-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 24px 42px rgba(15, 101, 211, 0.38);
}

.live-chat-launcher:focus-visible {
    outline: 3px solid rgba(79, 176, 255, 0.28);
    outline-offset: 3px;
}

.live-chat {
    position: fixed;
    right: 24px;
    bottom: 104px;
    z-index: 169;
    width: min(92vw, 380px);
}

@keyframes live-chat-launcher-float {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-4px);
    }
}

.live-chat__panel {
    display: grid;
    gap: 16px;
    border-radius: 28px;
    padding: 20px;
    background: linear-gradient(180deg, rgba(248, 251, 255, 0.98), rgba(237, 245, 255, 0.98));
    border: 1px solid rgba(15, 101, 211, 0.12);
    box-shadow: 0 24px 60px rgba(14, 45, 79, 0.22);
}

.live-chat__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.live-chat__eyebrow {
    margin: 0 0 4px;
    color: #0f65d3;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.live-chat__header h2 {
    margin: 0;
    color: #173b63;
    font-size: 1.12rem;
}

.live-chat__close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 999px;
    background: rgba(15, 101, 211, 0.08);
    color: #173b63;
    cursor: pointer;
}

.live-chat__body,
.live-chat__start,
.live-chat__conversation,
.live-chat__send {
    display: grid;
    gap: 14px;
}

.live-chat__field {
    display: grid;
    gap: 6px;
}

.live-chat__field label {
    color: #173b63;
    font-size: 0.82rem;
    font-weight: 700;
}

.live-chat__field input,
.live-chat__field textarea {
    width: 100%;
    padding: 13px 15px;
    border: 1px solid rgba(23, 59, 99, 0.12);
    border-radius: 16px;
    background: #ffffff;
    color: #173b63;
    font: inherit;
}

.live-chat__field input:focus-visible,
.live-chat__field textarea:focus-visible {
    outline: 3px solid rgba(15, 101, 211, 0.18);
    border-color: rgba(15, 101, 211, 0.32);
}

.live-chat__messages {
    display: grid;
    gap: 10px;
    max-height: 280px;
    overflow-y: auto;
    padding-right: 6px;
}

.live-chat__message {
    display: grid;
    gap: 4px;
    max-width: 88%;
    padding: 12px 14px;
    border-radius: 18px;
    background: rgba(15, 101, 211, 0.08);
    color: #173b63;
}

.live-chat__message--site {
    justify-self: end;
    background: linear-gradient(135deg, #0f65d3, #1a86ff);
    color: #ffffff;
}

.live-chat__message--operator {
    justify-self: start;
    background: rgba(23, 59, 99, 0.08);
}

.live-chat__message-author {
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.live-chat__message-text,
.live-chat__status,
.live-chat__feedback {
    margin: 0;
    line-height: 1.55;
}

.live-chat__status {
    color: #5c7695;
    font-size: 0.9rem;
}

.live-chat__feedback {
    min-height: 1.4em;
    color: #d14b39;
    font-size: 0.88rem;
}

.live-chat__feedback[data-state='warning'] {
    color: #ad7a12;
}

.live-chat__actions {
    display: flex;
    justify-content: flex-start;
}

.live-chat__submit {
    min-height: 48px;
    border: 0;
    border-radius: 16px;
    background: linear-gradient(135deg, #0f65d3, #1a86ff);
    color: #ffffff;
    font-size: 0.94rem;
    font-weight: 800;
    cursor: pointer;
}

.live-chat__submit:disabled {
    opacity: 0.7;
    cursor: wait;
}

.live-chat__reset {
    min-height: 42px;
    padding: 0 18px;
    border: 1px solid rgba(23, 59, 99, 0.12);
    border-radius: 14px;
    background: rgba(15, 101, 211, 0.08);
    color: #173b63;
    font: inherit;
    font-weight: 700;
    cursor: pointer;
}

.live-chat__reset[hidden] {
    display: none;
}

.live-chat__error {
    min-height: 1.2em;
    color: #d14b39;
    font-size: 0.8rem;
}

.live-chat__trap,
.live-chat__sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.lead-form__success {
    display: grid;
    gap: 12px;
    padding: 22px 24px;
    border: 1px solid rgba(18, 56, 108, 0.08);
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 18px 32px rgba(20, 49, 88, 0.08);
}

.lead-form__success-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    width: fit-content;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(15, 101, 211, 0.08);
    color: #0f65d3;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.lead-form__success p {
    margin: 0;
    color: #173b63;
    line-height: 1.65;
}

.page-home .page-shell {
    background:
        radial-gradient(circle at 50% 0, rgba(14, 94, 205, 0.08), transparent 30%),
        linear-gradient(180deg, #eef5fb 0%, #f9fbfe 52%, #f5f7fb 100%);
}

.page-home .site-header__shell {
    display: grid;
    grid-template-columns: auto minmax(320px, 1fr) auto;
    align-items: center;
    gap: 22px;
    max-width: 1560px;
    border-color: rgba(23, 68, 125, 0.08);
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(18px);
    box-shadow: 0 18px 44px rgba(22, 49, 84, 0.08);
}

.page-home .hero__wrap {
    max-width: 1560px;
}

.page-home .site-header[data-scrolled='true'] .site-header__shell {
    background: rgba(255, 255, 255, 0.94);
    border-color: rgba(23, 68, 125, 0.12);
}

.page-home .site-brand__copy strong,
.page-home .site-brand__copy span,
.page-home .site-nav__link,
.page-home .site-header__meta-label,
.page-home .site-header__meta-item,
.page-home .account-link,
.page-home .menu-toggle {
    color: #173b63;
}

.page-home .site-brand__mark {
    background: linear-gradient(160deg, rgba(16, 101, 212, 0.1), rgba(255, 206, 84, 0.18));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.page-home .site-nav__surface {
    width: min(100%, 560px);
    border-color: rgba(19, 61, 111, 0.08);
    background: rgba(255, 255, 255, 0.74);
    box-shadow: none;
}

.page-home .site-nav--desktop {
    justify-content: center;
}

.page-home .site-nav__list {
    gap: 4px;
}

.page-home .site-nav__link {
    min-height: 46px;
    padding: 0 16px;
    font-size: 0.92rem;
}

.page-home .site-nav__link:hover,
.page-home .site-nav__link:focus-visible {
    color: #0d2c52;
    background: rgba(16, 101, 212, 0.08);
}

.page-home .site-nav__link.is-active {
    color: #ffffff;
    background: linear-gradient(135deg, #0f65d3, #2b8aff);
    box-shadow: 0 12px 24px rgba(15, 101, 211, 0.26);
}

.page-home .site-header__meta {
    gap: 6px;
}

.page-home .site-header__desktop-rail {
    display: grid;
    grid-template-columns: auto auto;
    align-items: center;
    gap: 16px;
    margin-left: 0;
    justify-content: end;
}

.page-home .site-header__service {
    min-width: 300px;
    gap: 2px;
}

.page-home .site-header__service-title {
    color: #173b63;
    font-size: 0.84rem;
}

.page-home .site-header__service-hours {
    color: #516c8d;
    font-size: 0.78rem;
}

.page-home .site-header__service-phones {
    color: #173b63;
    font-size: 0.96rem;
    font-weight: 800;
    line-height: 1.5;
}

.page-home .site-header__service-phones a {
    color: #0f65d3;
    font-weight: inherit;
    white-space: nowrap;
}

.page-home .account-link {
    min-height: 46px;
    padding: 0 20px;
    border-color: rgba(19, 61, 111, 0.1);
    background: #ffffff;
    box-shadow: 0 12px 22px rgba(25, 48, 83, 0.08);
}

.page-home .account-link:hover,
.page-home .account-link:focus-visible {
    border-color: rgba(15, 101, 211, 0.16);
    box-shadow: 0 14px 26px rgba(25, 48, 83, 0.12);
}

.page-home .menu-toggle {
    border-color: rgba(19, 61, 111, 0.08);
    background: rgba(255, 255, 255, 0.92);
}

.page-home .mobile-menu {
    background: rgba(229, 238, 248, 0.48);
    justify-items: stretch;
    align-items: start;
    padding: 88px 12px 0;
}

.page-home .mobile-menu__panel {
    width: 100%;
    min-height: auto;
    margin: 0;
    padding: 20px;
    border-radius: 32px;
    background:
        radial-gradient(circle at top right, rgba(255, 205, 84, 0.14), transparent 26%),
        linear-gradient(180deg, #f3f8fd 0%, #eef4fb 100%);
    box-shadow: -18px 0 44px rgba(30, 58, 97, 0.16);
    transform: translateY(-18px);
}

body.menu-open .page-home .mobile-menu__panel {
    transform: translateY(0);
}

.page-home .mobile-menu__nav .site-nav__link {
    color: #173b63;
    background: transparent;
    box-shadow: none;
}

.page-home .mobile-menu__nav .site-nav__link.is-active {
    color: #0f65d3;
    background: transparent;
}

.page-home .mobile-menu__footer {
    border-color: rgba(19, 61, 111, 0.08);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 14px 28px rgba(20, 49, 88, 0.06);
}

.page-home .site-header__service--mobile .site-header__service-title,
.page-home .site-header__service--mobile .site-header__service-hours,
.page-home .site-header__service--mobile .site-header__service-phones,
.page-home .account-link--mobile {
    color: #173b63;
}

.page-home .site-header__service--mobile .site-header__service-phones a {
    color: #173b63;
}

.page-home .account-link--mobile {
    background: linear-gradient(135deg, #ffd971, #ffbe39);
    border-color: rgba(255, 205, 84, 0.4);
    color: #4b3100;
}

.site-header__shell {
    display: grid;
    grid-template-columns: auto minmax(320px, 1fr) auto;
    align-items: center;
    gap: 22px;
    max-width: 1560px;
    border-color: rgba(23, 68, 125, 0.08);
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(18px);
    box-shadow: 0 18px 44px rgba(22, 49, 84, 0.08);
}

.site-header[data-scrolled='true'] .site-header__shell {
    background: rgba(255, 255, 255, 0.94);
    border-color: rgba(23, 68, 125, 0.12);
}

.site-brand__copy strong,
.site-brand__copy span,
.site-nav__link,
.site-header__meta-label,
.site-header__meta-item,
.account-link,
.menu-toggle {
    color: #173b63;
}

.site-brand__mark {
    background: linear-gradient(160deg, rgba(16, 101, 212, 0.1), rgba(255, 206, 84, 0.18));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.site-nav__surface {
    width: min(100%, 560px);
    border-color: rgba(19, 61, 111, 0.08);
    background: rgba(255, 255, 255, 0.74);
    box-shadow: none;
}

.site-nav__list {
    gap: 4px;
}

.site-nav__link {
    min-height: 46px;
    padding: 0 16px;
    color: #173b63;
    font-size: 0.92rem;
}

.site-nav__link:hover,
.site-nav__link:focus-visible {
    color: #0d2c52;
    background: rgba(16, 101, 212, 0.08);
}

.site-nav__link.is-active {
    color: #ffffff;
    background: linear-gradient(135deg, #0f65d3, #2b8aff);
    box-shadow: 0 12px 24px rgba(15, 101, 211, 0.26);
}

.site-header__desktop-rail {
    display: grid;
    grid-template-columns: auto auto;
    align-items: center;
    gap: 16px;
    margin-left: 0;
    justify-content: end;
}

.site-header__service {
    min-width: 300px;
    gap: 2px;
}

.site-header__service-title {
    color: #173b63;
    font-size: 0.84rem;
}

.site-header__service-hours {
    color: #516c8d;
    font-size: 0.78rem;
}

.site-header__service-phones {
    color: #173b63;
    font-size: 0.96rem;
    font-weight: 800;
    line-height: 1.5;
}

.site-header__service-phones a {
    color: #0f65d3;
    font-weight: inherit;
    white-space: nowrap;
}

.account-link {
    min-height: 46px;
    padding: 0 20px;
    border-color: rgba(19, 61, 111, 0.1);
    background: #ffffff;
    box-shadow: 0 12px 22px rgba(25, 48, 83, 0.08);
}

.account-link:hover,
.account-link:focus-visible {
    border-color: rgba(15, 101, 211, 0.16);
    box-shadow: 0 14px 26px rgba(25, 48, 83, 0.12);
}

.menu-toggle {
    border-color: rgba(19, 61, 111, 0.08);
    background: rgba(255, 255, 255, 0.92);
}

.mobile-menu {
    background: rgba(229, 238, 248, 0.48);
    justify-items: stretch;
    align-items: start;
    padding: 88px 12px 0;
}

.mobile-menu__panel {
    width: 100%;
    min-height: auto;
    margin: 0;
    padding: 20px;
    border-radius: 32px;
    background:
        radial-gradient(circle at top right, rgba(255, 205, 84, 0.14), transparent 26%),
        linear-gradient(180deg, #f3f8fd 0%, #eef4fb 100%);
    box-shadow: -18px 0 44px rgba(30, 58, 97, 0.16);
    transform: translateY(-18px);
}

body.menu-open .mobile-menu__panel {
    transform: translateY(0);
}

.mobile-menu__nav .site-nav__link {
    color: #173b63;
    background: transparent;
    box-shadow: none;
}

.mobile-menu__nav .site-nav__link.is-active {
    color: #0f65d3;
    background: transparent;
}

.hero,
.page-intro {
    position: relative;
    padding-left: 18px;
    padding-right: 18px;
}

.hero {
    display: flex;
    align-items: center;
    min-height: 100vh;
    padding-top: 180px;
    padding-bottom: 120px;
}

.page-home .hero {
    align-items: flex-start;
    min-height: auto;
    padding-top: 132px;
    padding-bottom: 84px;
}

.page-home .hero__surface {
    background:
        linear-gradient(110deg, rgba(7, 18, 32, 0.82) 0%, rgba(11, 50, 110, 0.72) 42%, rgba(10, 74, 174, 0.6) 100%),
        radial-gradient(circle at 22% 22%, rgba(255, 255, 255, 0.14), transparent 22%),
        url("../img/background.png") center center / cover no-repeat;
}

.hero__wrap {
    display: grid;
    gap: 28px;
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
}

.hero__surface {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    gap: 24px;
    align-items: stretch;
    padding: 54px 56px;
    border-radius: 38px;
    background:
        radial-gradient(circle at 22% 22%, rgba(255, 255, 255, 0.14), transparent 22%),
        linear-gradient(135deg, #0d62d2 0%, #0d56bf 55%, #0b49ae 100%);
    box-shadow: 0 32px 60px rgba(9, 65, 143, 0.22);
    overflow: hidden;
}

.hero__surface::before,
.hero__surface::after {
    content: "";
    position: absolute;
    inset: auto auto 0 0;
    width: 420px;
    height: 420px;
    border: 24px solid rgba(255, 207, 92, 0.9);
    border-right-color: transparent;
    border-bottom-color: transparent;
    border-radius: 50%;
    transform: translate(-34%, 52%) rotate(12deg);
    pointer-events: none;
}

.hero__surface::after {
    inset: -190px -120px auto auto;
    width: 340px;
    height: 340px;
    border-width: 18px;
    border-left-color: transparent;
    border-bottom-color: transparent;
    border-right-color: rgba(255, 207, 92, 0.76);
    border-top-color: rgba(255, 207, 92, 0.76);
    transform: rotate(28deg);
}

.hero__content {
    display: grid;
    gap: 26px;
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    animation: hero-rise 0.9s ease both;
}

.page-home .hero__content {
    position: relative;
    z-index: 2;
    max-width: 620px;
    margin: 0;
}

.hero__visual {
    position: relative;
    min-height: 320px;
    z-index: 2;
}

.hero__arc {
    position: absolute;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(255, 216, 117, 0.92), rgba(255, 182, 48, 0.92));
    box-shadow: 0 20px 32px rgba(8, 56, 121, 0.2);
}

.hero__arc--large {
    right: 10px;
    bottom: 42px;
    width: 190px;
    height: 190px;
    border-radius: 190px 190px 0 190px;
    transform: rotate(32deg);
}

.hero__arc--medium {
    right: 130px;
    top: 30px;
    width: 118px;
    height: 118px;
    border-radius: 118px 118px 0 118px;
    opacity: 0.92;
    transform: rotate(18deg);
}

.hero__arc--small {
    right: 56px;
    top: 118px;
    width: 74px;
    height: 74px;
    border-radius: 74px 74px 0 74px;
    opacity: 0.82;
    transform: rotate(18deg);
}

.hero-promos {
    position: absolute;
    right: 26px;
    bottom: 16px;
    left: 92px;
    display: grid;
    gap: 14px;
    justify-items: end;
    z-index: 2;
}

.hero-promo {
    width: min(100%, 272px);
    padding: 18px 20px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 22px;
    background: linear-gradient(160deg, rgba(9, 28, 61, 0.72), rgba(255, 255, 255, 0.16));
    backdrop-filter: blur(16px);
    box-shadow: 0 18px 30px rgba(6, 36, 82, 0.2);
}

.hero-promo--link {
    display: block;
    color: inherit;
    text-decoration: none;
    cursor: pointer;
}

.hero-promo--link:hover {
    border-color: rgba(255, 255, 255, 0.36);
    box-shadow: 0 22px 36px rgba(6, 36, 82, 0.24);
}

.hero-promo--link:focus-visible {
    outline: 3px solid rgba(255, 216, 107, 0.92);
    outline-offset: 3px;
}

.hero-promo:nth-child(2) {
    transform: translateX(-24px);
}

.hero-promo:nth-child(3) {
    transform: translateX(-48px);
}

.hero-promo__eyebrow,
.hero-promo__title,
.hero-promo__text {
    display: block;
}

.hero-promo__eyebrow {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.hero-promo__title {
    margin-top: 8px;
    color: #ffffff;
    font-size: 1.02rem;
    line-height: 1.15;
}

.hero-promo__text {
    margin-top: 8px;
    color: rgba(235, 244, 255, 0.86);
    font-size: 0.9rem;
    line-height: 1.52;
}

.hero__eyebrow,
.page-intro__eyebrow {
    margin: 0;
    color: var(--accent);
    font-size: 0.84rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero h1,
.page-intro h1 {
    margin: 0;
    max-width: 780px;
    font-family: "Bahnschrift", "Segoe UI Variable Display", sans-serif;
    line-height: 0.96;
    letter-spacing: 0.02em;
}

.hero h1 {
    font-size: clamp(2.9rem, 6vw, 5.5rem);
}

.hero__lead,
.page-intro p,
.page-intro li {
    color: var(--muted);
    line-height: 1.72;
}

.hero__lead {
    max-width: 680px;
    margin: 0;
    font-size: 1.08rem;
}

.page-home .hero__eyebrow {
    color: rgba(235, 244, 255, 0.74);
}

.page-home .hero h1,
.page-home .hero__lead {
    color: #ffffff;
}

.page-home .hero h1 {
    max-width: 680px;
    font-size: clamp(2.8rem, 5vw, 4.7rem);
}

.page-home .hero__lead {
    max-width: 540px;
    font-size: 1.12rem;
    color: rgba(235, 244, 255, 0.84);
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.hero__primary,
.hero__secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 24px;
    border-radius: 999px;
    font-weight: 700;
    transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.hero__primary {
    background: linear-gradient(135deg, var(--accent-strong), #ffcf8d);
    color: #3a2204;
}

.page-home .hero__primary {
    min-height: 58px;
    padding: 0 30px;
    background: linear-gradient(135deg, #ffd971, #ffbe39);
    color: #4b3100;
    box-shadow: 0 18px 28px rgba(39, 65, 109, 0.2);
}

.hero__secondary {
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.06);
}

.hero__primary:hover,
.hero__secondary:hover,
.hero__primary:focus-visible,
.hero__secondary:focus-visible {
    transform: translateY(-2px);
}

.hero__highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 4px 0 0;
    padding: 0;
    list-style: none;
}

.hero__highlights li {
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: #dce7f1;
}

.hero-tariffs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.hero-tariff-card {
    position: relative;
    padding: 28px 28px 24px;
    border: 1px solid rgba(18, 56, 108, 0.08);
    border-radius: 28px;
    background: #ffffff;
    color: #16375f;
    box-shadow: 0 18px 40px rgba(20, 49, 88, 0.08);
    overflow: hidden;
}

.hero-tariff-card::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle at top right, rgba(255, 205, 84, 0.42), transparent 62%);
    pointer-events: none;
}

.hero-tariff-card__speed,
.hero-tariff-card__price,
.hero-tariff-card__description {
    margin: 0;
}

.hero-tariff-card__speed {
    color: #0f65d3;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero-tariff-card h2 {
    margin: 14px 0 8px;
    font-family: "Bahnschrift", "Segoe UI Variable Display", sans-serif;
    font-size: 2rem;
    line-height: 1;
}

.hero-tariff-card__price {
    color: #f0a100;
    font-size: 1.08rem;
    font-weight: 800;
}

.hero-tariff-card__description {
    margin-top: 14px;
    color: #56708f;
    line-height: 1.68;
}

.hero-tariff-card__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    margin-top: 20px;
    padding: 0 18px;
    border-radius: 999px;
    background: rgba(15, 101, 211, 0.08);
    color: #0f65d3;
    font-weight: 700;
}

.tariff-tabs {
    padding: 0 18px 110px;
}

.tariff-showcase {
    padding: 0 12px 110px;
}

.tariff-showcase__frame {
    position: relative;
    overflow: hidden;
    max-width: min(1520px, calc(100vw - 24px));
    margin: 0 auto;
    padding: 34px 34px 28px;
    border: 1px solid rgba(213, 225, 244, 0.98);
    border-radius: 42px;
    background:
        radial-gradient(circle at 100% 0%, rgba(185, 212, 255, 0.34), transparent 28%),
        radial-gradient(circle at 0% 100%, rgba(226, 236, 252, 0.58), transparent 24%),
        linear-gradient(180deg, rgba(250, 252, 255, 0.98), rgba(235, 242, 252, 0.94));
    color: #21427c;
    box-shadow: 0 34px 64px rgba(67, 97, 146, 0.14);
}

.tariff-showcase__frame::before,
.tariff-showcase__frame::after {
    content: "";
    position: absolute;
    pointer-events: none;
}

.tariff-showcase__frame::before {
    inset: auto -140px -96px auto;
    width: 420px;
    height: 420px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(219, 232, 252, 0.54), rgba(219, 232, 252, 0.08) 64%, transparent 68%);
    opacity: 0.76;
}

.tariff-showcase__frame::after {
    inset: 0;
    background:
        linear-gradient(132deg, transparent 0%, transparent 70%, rgba(218, 231, 251, 0.84) 70.5%, transparent 71.2%) 100% 100% / 260px 260px no-repeat,
        linear-gradient(132deg, transparent 0%, transparent 74%, rgba(226, 236, 252, 0.74) 74.5%, transparent 75.2%) 100% 100% / 340px 340px no-repeat,
        linear-gradient(90deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0));
}

.tariff-showcase__stage {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.14fr) minmax(360px, 0.86fr);
    gap: 28px;
    align-items: center;
    margin-bottom: 20px;
}

.tariff-showcase__copy {
    display: grid;
    gap: 18px;
}

.tariff-showcase,
.tariff-showcase button,
.tariff-showcase a {
    font-family: "Segoe UI Variable Text", "Trebuchet MS", sans-serif;
}

.tariff-showcase__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    min-height: 36px;
    padding: 0 18px;
    border: 1px solid rgba(206, 220, 243, 0.96);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.82);
    color: #2351a3;
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: 0 10px 22px rgba(155, 180, 224, 0.16);
}

.tariff-showcase__eyebrow::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: #2c78f6;
    box-shadow: 0 0 0 6px rgba(44, 120, 246, 0.1);
}

.tariff-showcase__headline {
    display: grid;
    grid-template-columns: minmax(0, 1.24fr) minmax(300px, 0.76fr);
    gap: 24px;
    align-items: start;
}

.tariff-showcase__headline h2,
.tariff-showcase__lead,
.tariff-showcase__lead strong,
.tariff-showcase__lead span,
.tariff-showcase__footnote-list {
    margin: 0;
}

.tariff-showcase__headline h2 {
    font-family: "Segoe UI Variable Display", "Segoe UI Variable Text", sans-serif;
    color: #163d8f;
    font-size: clamp(3rem, 4.7vw, 4.55rem);
    font-weight: 800;
    line-height: 0.92;
    letter-spacing: -0.04em;
    max-width: 9.5ch;
}

.tariff-showcase__lead {
    display: grid;
    gap: 6px;
    padding-top: 12px;
    color: #5c76a7;
    line-height: 1.56;
}

.tariff-showcase__lead strong {
    color: #47659e;
    font-size: 1.08rem;
    font-weight: 800;
}

.tariff-showcase__art {
    position: relative;
    align-self: stretch;
    display: grid;
    align-items: center;
    justify-items: end;
}

.tariff-showcase__art--reference {
    min-height: 226px;
    border-radius: 28px;
    background:
        linear-gradient(90deg, rgba(249, 251, 255, 1) 0%, rgba(249, 251, 255, 0.98) 14%, rgba(249, 251, 255, 0.12) 58%),
    url("../img/block-2.png") right top / 980px auto no-repeat;
}

.tariff-showcase__art--reference::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 28% 12%, rgba(199, 220, 255, 0.34), transparent 18%),
        linear-gradient(90deg, rgba(249, 251, 255, 0.92), rgba(249, 251, 255, 0) 70%);
}

.tariff-showcase__art svg {
    display: none;
}

.tariff-showcase .tariff-showcase__nav {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    margin-bottom: 22px;
    border: 1px solid rgba(214, 226, 247, 0.96);
    border-radius: 22px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 18px 34px rgba(177, 196, 230, 0.18);
}

.tariff-showcase .tariff-showcase__tab {
    position: relative;
    flex: 1 1 260px;
    gap: 12px;
    justify-content: flex-start;
    min-height: 64px;
    padding: 0 26px;
    border: 0;
    border-right: 1px solid rgba(224, 233, 249, 0.96);
    border-radius: 0;
    background: rgba(255, 255, 255, 0.82);
    color: #284a89;
    font-size: 1.02rem;
    font-weight: 800;
    box-shadow: none;
}

.tariff-showcase .tariff-showcase__tab:last-child {
    border-right: 0;
}

.tariff-showcase .tariff-showcase__tab:hover,
.tariff-showcase .tariff-showcase__tab:focus-visible {
    background: rgba(255, 255, 255, 0.95);
    color: #173f83;
    transform: none;
}

.tariff-showcase .tariff-showcase__tab.is-active {
    color: #163f85;
    background: #ffffff;
    box-shadow: inset 0 -2px 0 #f7c426;
}

.tariff-showcase .tariff-showcase__tab.is-active::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -1px;
    width: 28px;
    height: 6px;
    border-radius: 999px 999px 0 0;
    background: #f7c426;
    transform: translateX(-50%);
}

.tariff-showcase__tab-icon {
    display: inline-flex;
    width: 24px;
    height: 24px;
    color: #284a89;
}

.tariff-showcase .tariff-showcase__tab.is-active .tariff-showcase__tab-icon {
    color: #f0b90b;
}

.tariff-showcase__tab-icon svg {
    width: 24px;
    height: 24px;
}

.tariff-showcase__panel {
    position: relative;
    z-index: 1;
}

.tariff-showcase__viewport {
    overflow-x: auto;
    overflow-y: visible;
    padding-top: 18px;
    padding-bottom: 12px;
    margin-bottom: -12px;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.tariff-showcase__viewport::-webkit-scrollbar {
    display: none;
}

.tariff-showcase__track {
    display: flex;
    gap: 16px;
    width: max-content;
    min-width: 100%;
}

.tariff-card--showcase {
    position: relative;
    display: flex;
    flex-direction: column;
    align-content: initial;
    flex: 0 0 max(246px, calc((100% - 64px) / 5));
    min-width: 246px;
    min-height: 526px;
    padding: 28px 22px 22px;
    border: 1px solid rgba(31, 98, 232, 0.24);
    border-radius: 24px;
    background: linear-gradient(180deg, #1660e2 0%, #0a47c3 56%, #0a43bb 100%);
    box-shadow: 0 22px 38px rgba(21, 82, 191, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.12);
    color: #ffffff;
    scroll-snap-align: start;
}

.tariff-card--showcase::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 26%, transparent 100%);
    pointer-events: none;
}

.tariff-card__popular {
    position: absolute;
    top: -16px;
    left: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0 18px;
    border-radius: 999px;
    background: linear-gradient(180deg, #ffd139, #ffba1e);
    color: #2f3950;
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    box-shadow: 0 12px 24px rgba(215, 172, 26, 0.26);
    white-space: nowrap;
    transform: translateX(-50%);
}

.tariff-card__popular::before {
    content: "★";
    margin-right: 8px;
    font-size: 0.76rem;
}

.tariff-card__showcase-signal,
.tariff-card__showcase-title,
.tariff-card__showcase-label,
.tariff-card__showcase-list,
.tariff-card__showcase-list li,
.tariff-card__showcase-speed,
.tariff-card__showcase-speed-label,
.tariff-card__showcase-link {
    position: relative;
    z-index: 1;
    margin: 0;
}

.tariff-card__showcase-signal {
    display: grid;
    place-items: center;
    width: 78px;
    height: 78px;
    margin: 0 auto 16px;
    border-radius: 999px;
    background: radial-gradient(circle at 50% 48%, rgba(9, 54, 156, 0.96), rgba(13, 73, 195, 0.36));
    color: #ffca31;
    box-shadow: inset 0 0 0 1px rgba(164, 195, 250, 0.14);
}

.tariff-card__showcase-signal svg {
    width: 80px;
    height: 80px;
}

.tariff-card--showcase .tariff-card__showcase-title {
    font-family: "Segoe UI Variable Display", "Segoe UI Variable Text", sans-serif;
    max-width: none;
    min-height: 0;
    margin: 0 auto;
    color: #ffffff;
    font-size: clamp(1.64rem, 1.46vw, 2rem);
    font-weight: 780;
    line-height: 1.08;
    text-align: center;
}

.tariff-card__showcase-label {
    margin-top: 10px;
    color: #cfe3ff;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-align: center;
    text-transform: uppercase;
}

.tariff-card__showcase-price-label {
    margin-top: 18px;
}

.tariff-card__showcase-list {
    display: grid;
    gap: 16px;
    padding: 0;
    margin-top: 22px;
    list-style: none;
}

.tariff-card__showcase-list li {
    display: grid;
    grid-template-columns: 22px minmax(0, 1fr);
    align-items: center;
    gap: 14px;
    color: #ffffff;
    line-height: 1.45;
}

.tariff-card__showcase-list li span:last-child {
    min-width: 0;
}

.tariff-card__showcase-feature {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: baseline;
    gap: 12px;
    flex: 1 1 auto;
    min-width: 0;
    padding: 0;
    background: none;
}

.tariff-card__showcase-feature-label {
    min-width: 0;
    color: #eef4ff;
    font-size: 0.98rem;
    line-height: 1.35;
}

.tariff-card__showcase-feature-value {
    justify-self: end;
    min-width: 0;
    color: #f4f8ff;
    font-size: 0.96rem;
    font-weight: 700;
    line-height: 1.35;
    text-align: right;
}

.tariff-card__showcase-feature-value--price {
    color: #ffca31;
    font-weight: 800;
}

.tariff-card__showcase-list-icon {
    display: inline-flex;
    width: 22px;
    height: 22px;
    min-width: 22px;
    color: #ffffff;
}

.tariff-card__showcase-list-icon svg {
    width: 22px;
    height: 22px;
}

.tariff-card__showcase-divider {
    position: relative;
    z-index: 1;
    height: 1px;
    margin: 24px 0 0;
    background: linear-gradient(90deg, rgba(122, 184, 255, 0), rgba(139, 189, 255, 0.52), rgba(122, 184, 255, 0));
}

.tariff-card__showcase-price-row {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    width: 100%;
}

.tariff-card__showcase-speed {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    min-width: 0;
}

.tariff-card__showcase-speed-icon {
    align-self: center;
    margin-top: 0;
}

.tariff-card__showcase-speed-heading {
    margin: 0;
    color: #eef4ff;
    font-size: 0.98rem;
    line-height: 1.35;
    white-space: nowrap;
}

.tariff-card__showcase-speed-value {
    margin: 0;
    margin-left: auto;
    min-width: 0;
    color: #f4f8ff;
    font-size: 0.98rem;
    font-weight: 700;
    line-height: 1.35;
    text-align: right;
    white-space: nowrap;
}

.tariff-card__showcase-price-value {
    display: block;
    width: 100%;
    font-size: clamp(1.44rem, 2.45vw, 1.625rem);
    font-weight: 800;
    line-height: 1.18;
    text-align: center;
    white-space: nowrap;
}

.tariff-card__showcase-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    width: 100%;
    margin-top: auto;
    gap: 12px;
    border-radius: 18px;
    border: 1px solid rgba(176, 206, 255, 0.58);
    background: linear-gradient(180deg, rgba(32, 98, 225, 0.86), rgba(17, 73, 194, 0.92));
    color: #ffffff;
    font-size: 1rem;
    font-weight: 800;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.tariff-card__showcase-link::after {
    content: "→";
    font-size: 1.28rem;
    line-height: 1;
}

.tariff-card__showcase-link:hover,
.tariff-card__showcase-link:focus-visible {
    transform: translateY(-1px);
    filter: brightness(1.04);
}

.tariff-card--showcase.is-featured {
    border: 1px solid rgba(243, 193, 38, 0.92);
    box-shadow: 0 24px 42px rgba(21, 82, 191, 0.2), 0 0 0 2px rgba(243, 193, 38, 0.58);
}

.tariff-card--showcase.is-featured .tariff-card__showcase-link {
    border-color: rgba(248, 200, 43, 0.8);
    background: linear-gradient(180deg, #ffd53f, #f1bc10);
    color: #1e3d73;
}

.tariff-showcase__controls {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 16px;
    margin-top: 20px;
}

.tariff-showcase__arrow {
    display: inline-grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(196, 214, 244, 0.92);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.86);
    color: #5371a8;
    font-size: 2rem;
    line-height: 1;
    box-shadow: 0 14px 24px rgba(192, 207, 234, 0.22);
}

.tariff-showcase__arrow:disabled {
    opacity: 0.45;
}

.tariff-showcase__panel[data-showcase-overflow='false'] .tariff-showcase__controls {
    display: none;
}

.tariff-showcase__dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.tariff-showcase__dot {
    width: 12px;
    height: 12px;
    border: 0;
    border-radius: 999px;
    background: rgba(182, 202, 239, 0.9);
    transition: transform 0.2s ease, background 0.2s ease, opacity 0.2s ease;
}

.tariff-showcase__dot.is-active,
.tariff-showcase__dot[aria-current='true'] {
    background: #ffca31;
    transform: scale(1.08);
}

.tariff-showcase__dot:disabled {
    opacity: 0.45;
}

.tariff-showcase__footnotes {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 76px 1fr;
    gap: 18px;
    margin-top: 18px;
    padding: 22px 26px;
    border: 1px solid rgba(214, 226, 247, 0.92);
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(243, 247, 253, 0.9));
    box-shadow: 0 18px 38px rgba(180, 196, 224, 0.16);
}

.tariff-showcase__footnote-icon {
    display: grid;
    place-items: center;
    width: 64px;
    height: 64px;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(222, 235, 255, 0.96), rgba(206, 224, 251, 0.94));
    color: #2c67c7;
    font-family: "Segoe UI Variable Display", "Segoe UI Variable Text", sans-serif;
    font-size: 3rem;
    font-weight: 500;
}

.tariff-showcase__footnote-list {
    display: grid;
    gap: 10px;
    padding-left: 18px;
    color: #506a9b;
    line-height: 1.6;
}

.services-hub {
    padding: 0 12px 120px;
}

.services-hub,
.services-hub a,
.services-hub button,
.services-hub input {
    font-family: "Segoe UI Variable Text", "Trebuchet MS", sans-serif;
}

.services-hub__frame {
    position: relative;
    overflow: hidden;
    max-width: min(1520px, calc(100vw - 24px));
    margin: 0 auto;
    padding: 40px 36px 36px;
    border: 1px solid rgba(213, 225, 244, 0.98);
    border-radius: 42px;
    background:
        linear-gradient(180deg, rgba(250, 252, 255, 0.97), rgba(238, 244, 252, 0.95)),
        url("../img/block-3.png") center center / cover no-repeat;
    box-shadow: 0 34px 64px rgba(67, 97, 146, 0.14);
}

.services-hub__frame::before,
.services-hub__frame::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.services-hub__frame::before {
    background:
        radial-gradient(circle at 8% 10%, rgba(255, 255, 255, 0.76), transparent 18%),
        radial-gradient(circle at 92% 12%, rgba(255, 255, 255, 0.72), transparent 14%),
        linear-gradient(90deg, rgba(255, 255, 255, 0.26), rgba(255, 255, 255, 0));
}

.services-hub__frame::after {
    inset: 12px;
    border-radius: 34px;
    border: 1px solid rgba(255, 255, 255, 0.42);
}

.services-hub__heading,
.services-hub__grid {
    position: relative;
    z-index: 1;
}

.services-hub__heading {
    margin-bottom: 24px;
}

.services-hub__heading h2 {
    margin: 0;
    color: #163d8f;
    font-family: "Segoe UI Variable Display", "Segoe UI Variable Text", sans-serif;
    font-size: clamp(3rem, 4.7vw, 4.55rem);
    font-weight: 800;
    line-height: 0.92;
    letter-spacing: -0.04em;
}

.services-hub__grid {
    display: grid;
    grid-template-columns: minmax(320px, 1.02fr) minmax(320px, 1.06fr) minmax(250px, 0.82fr);
    grid-template-areas:
        "payment speed cabinet"
        "payment speed support"
        "payment instructions faq";
    gap: 18px;
    align-items: stretch;
}

.services-hub__card {
    position: relative;
    min-width: 0;
    padding: 28px 26px;
    border: 1px solid rgba(214, 226, 247, 0.98);
    border-radius: 30px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 250, 255, 0.95));
    box-shadow: 0 20px 40px rgba(96, 122, 170, 0.12);
}

.services-hub__card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.34), transparent 48%);
    pointer-events: none;
}

.services-hub__payment-card {
    grid-area: payment;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.services-hub__speed-card {
    grid-area: speed;
    display: grid;
    grid-template-columns: minmax(0, 0.84fr) minmax(250px, 1.16fr);
    align-items: center;
    gap: 18px;
    padding-right: 20px;
}

.services-hub__service-card--cabinet {
    grid-area: cabinet;
}

.services-hub__service-card--support {
    grid-area: support;
}

.services-hub__service-card--instructions {
    grid-area: instructions;
}

.services-hub__service-card--faq {
    grid-area: faq;
}

.services-hub__copy,
.services-hub__speed-copy {
    display: grid;
    gap: 14px;
    align-content: start;
}

.services-hub__copy h3,
.services-hub__speed-copy h3 {
    margin: 0;
    color: #143b8e;
    font-family: "Segoe UI Variable Display", "Segoe UI Variable Text", sans-serif;
    font-size: clamp(1.72rem, 2.2vw, 2.36rem);
    font-weight: 760;
    line-height: 1.04;
}

.services-hub__speed-copy p {
    margin: 0;
    max-width: 22ch;
    color: #5c76a7;
    line-height: 1.6;
}

.services-hub__payment-fields {
    display: grid;
    gap: 14px;
}

.services-hub__field {
    display: grid;
    gap: 8px;
}

.services-hub__field-label {
    color: #7189b7;
    font-size: 0.88rem;
    font-weight: 700;
    line-height: 1.3;
}

.services-hub__field-input {
    width: 100%;
    min-height: 60px;
    padding: 0 18px;
    border: 1px solid rgba(224, 232, 247, 0.98);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.98);
    color: #1f3f7d;
    font-size: 1rem;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.84);
}

.services-hub__field-input::placeholder {
    color: #9aaecd;
}

.services-hub__payment-actions {
    display: grid;
    gap: 14px;
    margin-top: 22px;
}

.services-hub__payment-button {
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 62px;
    padding: 0 16px;
    border: 0;
    border-radius: 20px;
    background: linear-gradient(180deg, #1a71f8, #0c55d8);
    color: #ffffff;
    text-align: left;
    box-shadow: 0 18px 34px rgba(32, 97, 225, 0.18);
}

.services-hub__payment-button[disabled] {
    opacity: 1;
}

.services-hub__payment-button.is-placeholder {
    cursor: default;
}

.services-hub__payment-logo-shell {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 92px;
    min-width: 92px;
    min-height: 36px;
    padding: 0 12px;
    border-radius: 999px;
    background: #ffffff;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.services-hub__payment-logo {
    display: block;
    width: auto;
    max-width: 100%;
    max-height: 22px;
    object-fit: contain;
}

.services-hub__payment-logo--click {
    width: 28px;
    height: 28px;
    max-height: none;
}

.services-hub__payment-button-text {
    flex: 1 1 auto;
    min-width: 0;
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.3;
}

.services-hub__service-arrow {
    display: inline-grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    font-size: 1.14rem;
    line-height: 1;
}

.services-hub__payment-button-arrow-image {
    display: block;
    width: 34px;
    height: 34px;
    object-fit: contain;
}

.services-hub__payment-note {
    display: flex;
    gap: 12px;
    margin: auto 0 0;
    padding-top: 6px;
    color: #6981ad;
    font-size: 0.94rem;
    line-height: 1.56;
}

.services-hub__payment-note-icon {
    display: inline-grid;
    place-items: center;
    width: 22px;
    height: 22px;
    min-width: 22px;
    color: #2568d5;
}

.services-hub__payment-note-icon svg,
.services-hub__service-icon svg {
    width: 22px;
    height: 22px;
}

.services-hub__speed-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    min-height: 44px;
    padding: 0 16px 0 14px;
    border-radius: 14px;
    background: linear-gradient(180deg, #1a71f8, #0b54d8);
    color: #ffffff;
    font-size: 0.96rem;
    font-weight: 800;
    white-space: nowrap;
    text-decoration: none;
    box-shadow: 0 14px 24px rgba(32, 97, 225, 0.2);
}

.services-hub__speed-link-icon {
    display: block;
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    object-fit: contain;
}

@media (min-width: 901px) {
    .services-hub__speed-link {
        gap: 12px;
        padding: 0 20px 0 18px;
    }
}

.services-hub__speed-gauge {
    min-height: 350px;
    background: url("../img/block-3-speed.png") center center / contain no-repeat;
}

.services-hub__service-card {
    display: grid;
    grid-template-columns: 60px minmax(0, 1fr) auto;
    align-items: center;
    gap: 18px;
    min-height: 148px;
    color: #173972;
    text-decoration: none;
}

.services-hub__service-card:hover,
.services-hub__service-card:focus-visible,
.services-hub__speed-link:hover,
.services-hub__speed-link:focus-visible {
    transform: translateY(-1px);
    filter: brightness(1.02);
}

.services-hub__service-card--instructions,
.services-hub__service-card--faq {
    min-height: 172px;
}

.services-hub__service-card--cabinet .services-hub__service-copy span,
.services-hub__service-card--support .services-hub__service-copy span {
    display: none;
}

.services-hub__service-icon {
    display: inline-grid;
    place-items: center;
    width: 58px;
    height: 58px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(242, 246, 255, 0.98), rgba(228, 237, 252, 0.96));
    color: #1c63dc;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.services-hub__service-copy {
    display: grid;
    gap: 8px;
    min-width: 0;
}

.services-hub__service-copy strong {
    color: #173c84;
    font-family: "Segoe UI Variable Display", "Segoe UI Variable Text", sans-serif;
    font-size: 1.28rem;
    font-weight: 760;
    line-height: 1.08;
}

.services-hub__service-copy span {
    color: #627aa6;
    font-size: 0.95rem;
    line-height: 1.55;
}

.services-hub__service-arrow {
    color: #1f63dd;
}

@media (max-width: 1260px) {
    .services-hub__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-areas:
            "payment payment"
            "speed speed"
            "cabinet support"
            "instructions faq";
    }
}

.contact-cta {
    padding: 0 12px 112px;
}

.contact-cta__frame {
    max-width: 1500px;
    margin: 0 auto;
}

.contact-cta__surface {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 0.96fr) minmax(340px, 0.94fr);
    align-items: center;
    gap: 28px;
    overflow: hidden;
    padding: 56px 54px 42px;
    border-radius: 36px;
    background:
        radial-gradient(circle at top right, rgba(48, 110, 255, 0.2), transparent 34%),
        radial-gradient(circle at left center, rgba(255, 255, 255, 0.05), transparent 42%),
        linear-gradient(135deg, #0f2235, #08131f 72%);
    box-shadow: 0 34px 64px rgba(12, 24, 42, 0.14);
}

.contact-cta__surface::before,
.contact-cta__surface::after {
    content: "";
    position: absolute;
    pointer-events: none;
}

.contact-cta__surface::before {
    inset: 0;
    background:
        linear-gradient(140deg, rgba(255, 255, 255, 0.02), transparent 42%),
        linear-gradient(0deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0));
}

.contact-cta__surface::after {
    top: -140px;
    right: -100px;
    width: 320px;
    height: 320px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(47, 116, 255, 0.22), transparent 70%);
}

.contact-cta__copy,
.contact-cta__visual {
    position: relative;
    z-index: 1;
}

.contact-cta__copy {
    display: grid;
    gap: 36px;
    align-content: center;
}

.contact-cta__action {
    position: relative;
    width: fit-content;
}

.contact-cta__copy h2 {
    margin: 0;
    color: #ffffff;
    font-family: "Segoe UI Variable Display", "Segoe UI Variable Text", sans-serif;
    font-size: clamp(3.2rem, 4.6vw, 5rem);
    font-weight: 820;
    line-height: 0.96;
    letter-spacing: -0.04em;
}

.contact-cta__copy h2 span {
    display: block;
}

.contact-cta__button {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    width: min(100%, 450px);
    min-height: 96px;
    padding: 0 32px 0 30px;
    border-radius: 24px;
    background: linear-gradient(180deg, #1a67ff, #0a46d7);
    color: #ffffff;
    font-size: clamp(1.5rem, 2vw, 1.9rem);
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    box-shadow: 0 22px 40px rgba(22, 88, 255, 0.3);
}

.contact-cta__button-arrow {
    font-size: 2.5rem;
    line-height: 1;
    transform: translateY(-2px);
}

.contact-cta__button:hover,
.contact-cta__button:focus-visible {
    transform: translateY(-1px);
    filter: brightness(1.03);
}

.contact-cta__visual {
    min-height: 420px;
}

.contact-cta__visual-primary,
.contact-cta__visual-hand {
    position: absolute;
    display: block;
    max-width: none;
    object-fit: contain;
}

.contact-cta__visual-primary {
    right: -10px;
    bottom: 22px;
    width: min(100%, 620px);
}

.contact-cta__visual-hand {
    right: -22px;
    bottom: -38px;
    width: 124px;
    z-index: 2;
}

.page-tariffs .page-shell {
    background:
        radial-gradient(circle at top center, rgba(12, 86, 188, 0.1), transparent 26%),
        linear-gradient(180deg, #eff5fb 0%, #f7fafc 42%, #eef4fb 100%);
}

.page-content .page-shell,
.page-tariff-detail .page-shell {
    background:
        radial-gradient(circle at top center, rgba(12, 86, 188, 0.1), transparent 26%),
        radial-gradient(circle at 92% 8%, rgba(255, 205, 84, 0.18), transparent 20%),
        linear-gradient(180deg, #eff5fb 0%, #f7fafc 42%, #eef4fb 100%);
}

.content-stage {
    padding: 164px 18px 96px;
}

.content-stage__inner {
    display: grid;
    gap: 24px;
    max-width: var(--max-width);
    margin: 0 auto;
}

.content-stage__intro {
    display: grid;
    grid-template-columns: minmax(0, 1.14fr) minmax(300px, 0.86fr);
    gap: 22px;
}

.content-stage__intro--single {
    grid-template-columns: 1fr;
}

.content-stage__intro-card,
.content-stage__spotlight,
.content-stage__card {
    position: relative;
    overflow: hidden;
    padding: 34px;
    border: 1px solid rgba(18, 56, 108, 0.08);
    border-radius: 34px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 250, 255, 0.92));
    box-shadow: 0 24px 48px rgba(20, 49, 88, 0.08);
}

.content-stage__intro-card::before,
.content-stage__spotlight::before,
.content-stage__card::before {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 999px;
    pointer-events: none;
}

.content-stage__intro-card::before {
    top: -100px;
    right: -80px;
    background: radial-gradient(circle, rgba(15, 101, 211, 0.14), transparent 70%);
}

.content-stage__spotlight::before {
    bottom: -120px;
    left: -70px;
    background: radial-gradient(circle, rgba(255, 201, 71, 0.22), transparent 70%);
}

.content-stage__card::before {
    top: -128px;
    right: -96px;
    background: radial-gradient(circle, rgba(15, 101, 211, 0.12), transparent 72%);
}

.content-stage__intro-card {
    display: grid;
    gap: 20px;
}

.content-stage__intro-card h1,
.content-stage__spotlight h2,
.content-stage__spotlight p,
.content-stage__card h2,
.content-stage__card p,
.content-stage__lead {
    margin: 0;
}

.content-stage__intro-card h1 {
    font-family: "Bahnschrift", "Segoe UI Variable Display", sans-serif;
    font-size: clamp(2.8rem, 5vw, 4.8rem);
    line-height: 0.96;
    color: #123455;
    max-width: 13ch;
}

.content-stage__lead {
    max-width: 58ch;
    color: #55708f;
    line-height: 1.78;
}

.content-stage__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.content-stage__chip {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 16px;
    border-radius: 999px;
    background: rgba(15, 101, 211, 0.07);
    color: #0f65d3;
    font-size: 0.88rem;
    font-weight: 800;
}

.content-stage__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.content-stage__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 20px;
    border: 1px solid rgba(19, 61, 111, 0.08);
    border-radius: 999px;
    background: rgba(15, 101, 211, 0.04);
    color: #33597f;
    font-weight: 800;
    transition: transform 0.22s ease, background 0.22s ease, color 0.22s ease, box-shadow 0.22s ease;
}

.content-stage__button:hover,
.content-stage__button:focus-visible {
    transform: translateY(-1px);
    background: rgba(15, 101, 211, 0.08);
}

.content-stage__button.is-primary {
    background: linear-gradient(135deg, #0f65d3, #2b8aff);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 18px 28px rgba(39, 65, 109, 0.18);
}

.content-stage__spotlight {
    display: grid;
    gap: 18px;
    align-content: start;
}

.content-stage__spotlight h2,
.content-stage__card h2 {
    color: #123455;
    font-family: "Bahnschrift", "Segoe UI Variable Display", sans-serif;
    font-size: clamp(1.48rem, 2vw, 1.92rem);
    line-height: 1.02;
}

.content-stage__spotlight p,
.content-stage__card p,
.content-stage__card-link {
    color: #55708f;
    line-height: 1.72;
}

.content-stage__card--editor :where(h2, h3, h4, h5, h6) {
    color: #123455;
}

.content-stage__card--editor :where(p, li, td, th, blockquote, figcaption, strong, em) {
    color: #35597f;
}

.content-stage__card--editor :where(ul, ol) {
    color: #35597f;
}

.content-stage__card--editor img,
.content-stage__card--editor figure img {
    display: block;
    width: auto;
    max-width: min(420px, 100%);
    height: auto;
    margin: 24px auto;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(18, 52, 85, 0.12);
}

.content-stage__card--editor figure {
    margin: 24px 0;
    text-align: center;
}

.paid-services-content {
    display: grid;
    gap: 30px;
}

.paid-services-content__lead {
    max-width: 760px;
    font-size: 1.04rem;
}

.paid-services-section {
    display: grid;
    gap: 16px;
}

.paid-services-section h2 {
    margin: 0;
}

.paid-services-list {
    display: grid;
    overflow: hidden;
    border: 1px solid rgba(18, 56, 108, 0.08);
    border-radius: 18px;
    background: rgba(247, 250, 255, 0.74);
}

.paid-services-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(160px, auto);
    gap: 18px;
    align-items: center;
    padding: 16px 18px;
    border-bottom: 1px solid rgba(18, 56, 108, 0.08);
}

.paid-services-row:last-child {
    border-bottom: 0;
}

.paid-services-row span {
    color: #35597f;
    line-height: 1.52;
}

.paid-services-row strong {
    color: #123455;
    font-weight: 900;
    line-height: 1.38;
    text-align: right;
}

.paid-services-hero {
    padding: 24px 0 48px;
}

.paid-services-hero .content-stage__intro-card {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg,#123455 0%,#1a82ff 100%);
}

.paid-services-hero .content-stage__intro-card h1,
.paid-services-hero .content-stage__intro-card .content-stage__lead {
    color: #fff;
}

.paid-services-hero__icon {
    font-size: 3rem;
    margin-bottom: 12px;
}

.paid-services-nav {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 18px;
}

.paid-services-nav a {
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,.14);
    color: #ffffff;
    border: 1px solid rgba(255,255,255,.18);
    font-weight: 700;
    text-decoration: none;
    transition: all .2s ease;
}

.paid-services-nav a:hover {
    background: rgba(255,255,255,.28);
    color: #fff;
}

html {
    scroll-behavior: smooth;
}

.paid-services-overview {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 16px;
    margin-top: 24px;
}

.paid-services-overview__card {
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 18px;
    padding: 18px;
    text-align: center;
}

.paid-services-overview__card strong {
    display: block;
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.paid-services-overview__card span {
    color: rgba(255,255,255,.85);
}

@media (max-width: 768px) {
    .paid-services-overview {
        grid-template-columns: 1fr;
    }
}

.paid-services-modern {
    max-width: none;
}

.paid-services-modern h2 {
    margin-top: 32px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(26,130,255,.12);
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.paid-services-modern h2::before {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg,#1a82ff,#00b3ff);
    color: #fff;
    font-size: 1.25rem;
}

.paid-services-modern h2:nth-of-type(1)::before { content: "📶"; }
.paid-services-modern h2:nth-of-type(2)::before { content: "📺"; }
.paid-services-modern h2:nth-of-type(3)::before { content: "🔧"; }
.paid-services-modern h2:nth-of-type(4)::before { content: "📦"; }

.paid-services-modern > div {
    display: grid;
    gap: 24px;
}

.paid-services-modern > div > div {
    display: grid;
    gap: 16px;
    margin-bottom: 8px;
}

.paid-services-category {
    margin-top: 36px;
}

.paid-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
    gap: 18px;
    margin-top: 20px;
}

.paid-service-item {
    background: #fff;
    border: 1px solid rgba(18,56,108,.08);
    border-radius: 22px;
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    min-height: 180px;
    box-shadow: 0 15px 35px rgba(18,52,85,.06);
}

.paid-service-item__name {
    color: #123455;
    font-weight: 700;
    line-height: 1.5;
}

.paid-service-item__price {
    margin-top: auto;
    display: inline-flex;
    align-self: flex-start;
    padding: 10px 16px;
    border-radius: 999px;
    background: linear-gradient(135deg,#1a82ff,#00b3ff);
    color: #fff;
    font-weight: 800;
}

.paid-services-modern > div > div > div {
    background: #ffffff;
    border: 1px solid rgba(18,56,108,.08);
    border-radius: 20px;
    padding: 18px 20px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
    box-shadow: 0 10px 30px rgba(18,52,85,.05);
    transition: transform .18s ease, box-shadow .18s ease;
}

.paid-services-modern > div > div > div:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(18,52,85,.10);
}

.paid-services-modern > div > div > div::after {
    content: "Заказать";
    position: absolute;
    right: 20px;
    bottom: -10px;
    opacity: 0;
}

.paid-services-modern > div > div > div {
    position: relative;
}

.paid-services-hero .content-stage__chip {
    background: rgba(255,255,255,.14);
    color: #fff;
    border: 1px solid rgba(255,255,255,.18);
}

.paid-services-modern strong {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    border-radius: 999px;
    background: linear-gradient(135deg,#1a82ff,#00b3ff);
    color: #fff;
    white-space: nowrap;
    font-weight: 800;
    min-width: 140px;
}

.paid-services-modern > div > div > div:first-child strong,
.paid-services-modern strong[title="free"] {
    background: linear-gradient(135deg,#12b76a,#32d583);
}

.paid-services-cta {
    margin-top: 32px;
    padding: 36px;
    border-radius: 28px;
    background: linear-gradient(135deg,#123455,#1a82ff);
    color: #fff;
    text-align: center;
}

.paid-services-cta h2,
.paid-services-cta p {
    color: #fff;
}

.paid-services-cta__actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.paid-services-cta .content-stage__button:not(.is-primary) {
    background: #ffffff;
    color: #123455;
    border: 2px solid #ffffff;
}

.paid-services-cta .content-stage__button:not(.is-primary):hover,
.paid-services-cta .content-stage__button:not(.is-primary):focus-visible {
    background: #eef6ff;
    color: #0f2f4d;
}

.paid-services-modern strong:is(:contains("бесплатно")) {
    background: linear-gradient(135deg,#00b56a,#28d17c);
}

.paid-services-modern strong:first-letter {
    text-transform: uppercase;
}

@media (max-width: 768px) {
    html {
        font-size: 15px;
    }

    .hero {
        padding-top: 110px;
        padding-bottom: 48px;
    }

    .content-stage {
        padding: 120px 14px 56px;
    }

    .content-stage__intro-card,
    .content-stage__card,
    .content-stage__spotlight {
        padding: 24px;
        border-radius: 24px;
    }

    .content-stage__intro-card h1 {
        font-size: clamp(2rem, 8vw, 2.8rem);
        max-width: none;
    }

    .content-stage__lead {
        line-height: 1.6;
    }

    .content-stage__actions,
    .content-stage__chips {
        gap: 10px;
    }

    .content-stage__actions .content-stage__button {
        width: 100%;
        justify-content: center;
    }

    .content-stage__cards {
        gap: 16px;
    }

    .hero-tariff-card,
    .tariff-card--showcase {
        padding: 20px;
    }

    .hero-tariff-card__price,
    .tariff-card__showcase-speed {
        font-size: clamp(2rem, 9vw, 2.8rem);
    }

    .content-stage__button,
    .lead-form__submit {
        min-height: 48px;
        padding: 12px 18px;
    }

    .paid-services-grid,
    .paid-services-overview,
    .contacts-page__grid,
    .contacts-grid {
        grid-template-columns: 1fr;
    }

    .support-faq__contacts,
    .paid-services-cta {
        padding: 20px;
    }

    .promotion-card__media img {
        height: 190px;
    }

    .promotion-card h2 {
        font-size: 1.1rem;
        min-height: auto;
    }

    .scroll-top-button {
        width: 56px;
        height: 56px;
        font-size: 24px;
        right: 16px;
        bottom: 16px;
    }

    .paid-services-modern > div > div > div {
        flex-direction: column;
        align-items: flex-start;
    }

    .paid-services-modern strong {
        white-space: normal;
    }
}

@media (max-width: 480px) {
    .content-stage {
        padding-left: 12px;
        padding-right: 12px;
    }

    .content-stage__intro-card,
    .content-stage__card {
        padding: 20px;
    }

    .content-stage__intro-card h1 {
        font-size: 1.9rem;
    }

    .content-stage__button {
        width: 100%;
    }
}

.paid-services-modern ul {
    display: grid;
    gap: 16px;
    list-style: none;
    padding: 0;
}

.paid-services-modern li {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 18px;
    border-radius: 18px;
    background: #f8fbff;
    border: 1px solid rgba(18,56,108,.08);
}

.content-stage__spotlight-list {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.content-stage__spotlight-list li {
    padding: 14px 16px;
    border: 1px solid rgba(18, 56, 108, 0.08);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.82);
    color: #35597f;
    line-height: 1.62;
}

.content-stage__cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(272px, 1fr));
    gap: 20px;
}

.content-stage__cards--two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.content-stage__card {
    display: grid;
    gap: 14px;
    align-content: start;
    min-height: 100%;
}

.content-stage__card-link {
    margin-top: auto;
    color: #0f65d3;
    font-weight: 800;
}

.content-stage__card-link:hover,
.content-stage__card-link:focus-visible {
    color: #0b43b6;
}

.support-faq-page__inner,
.contacts-page__inner {
    gap: 28px;
}

.support-faq-page .content-stage__intro {
    grid-template-columns: 1fr;
}

.support-faq-page .content-stage__intro-card h1 {
    max-width: none;
}

.page-id .content-stage__intro-card h1 {
    max-width: none;
}

body.page-id-12 .content-stage__intro {
    grid-template-columns: 1fr;
}

body.page-id-12 .content-stage__intro-card {
    max-width: 100%;
}

body.page-id-12 .content-stage__intro-card h1 {
    max-width: none;
}

.support-faq__layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.42fr);
    gap: 22px;
    align-items: start;
}

.support-faq__list {
    display: grid;
    gap: 14px;
}

.support-faq__item,
.support-faq__contacts,
.contacts-page__card,
.contacts-page__support {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(18, 56, 108, 0.08);
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 250, 255, 0.94));
    box-shadow: 0 20px 42px rgba(20, 49, 88, 0.08);
}

.support-faq__item summary {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 18px;
    align-items: center;
    min-height: 76px;
    padding: 0 24px;
    color: #123455;
    cursor: pointer;
    font-family: "Bahnschrift", "Segoe UI Variable Display", sans-serif;
    font-size: clamp(1.16rem, 1.8vw, 1.42rem);
    font-weight: 800;
    line-height: 1.12;
    list-style: none;
}

.support-faq__item summary::-webkit-details-marker {
    display: none;
}

.support-faq__marker {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 14px;
    background: rgba(15, 101, 211, 0.08);
    color: #0f65d3;
    transition: transform 0.22s ease, background 0.22s ease;
}

.support-faq__item[open] .support-faq__marker {
    transform: rotate(45deg);
    background: rgba(15, 101, 211, 0.14);
}

.support-faq__answer {
    padding: 0 24px 24px;
    color: #55708f;
    line-height: 1.72;
}

.support-faq__answer p,
.support-faq__contacts h2,
.support-faq__contacts p,
.contacts-page__card h2,
.contacts-page__card p,
.contacts-page__support h2,
.contacts-page__support p {
    margin: 0;
}

.instruction-card__link {
    display: inline-flex;
    align-items: center;
    margin-top: 16px;
    font-weight: 700;
    color: #0f65d3;
    text-decoration: none;
}

.instruction-card__link:hover {
    text-decoration: underline;
}

.promotion-card__meta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    align-self: flex-start;
    margin: 0;
    padding: 10px 16px;
    border: 1px solid rgba(15, 101, 211, 0.12);
    border-radius: 999px;
    background: linear-gradient(135deg, #eef6ff 0%, #dcecff 100%);
    color: #123455;
    font-weight: 700;
    font-size: .9rem;
    line-height: 1;
    white-space: nowrap;
    box-shadow: 0 10px 20px rgba(15, 101, 211, 0.10);
}

.promotion-card__meta--active {
    background: linear-gradient(135deg, #e8fff1 0%, #d4f8e3 100%);
    border-color: rgba(28, 158, 92, 0.18);
    color: #137247;
}

.promotion-card__meta--dated {
    background: linear-gradient(135deg, #eef6ff 0%, #dcecff 100%);
}

.promotion-card__meta-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: .95rem;
}

.promotion-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: transform .25s ease, box-shadow .25s ease;
}

.promotion-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 32px 56px rgba(20, 49, 88, 0.14);
}

.promotion-card__media {
    position: relative;
    margin: -34px -34px 4px;
    overflow: hidden;
    border-radius: 34px 34px 20px 20px;
}

.promotion-card__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10,24,46,.15), rgba(10,24,46,.55));
    pointer-events: none;
}

.promotion-card__media img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 34px 34px 20px 20px;
}

.promotion-card__badge {
    position: absolute;
    top: 16px;
    left: 16px;
    margin: 0;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(18, 52, 85, 0.82);
    backdrop-filter: blur(12px);
    color: #fff;
    font-size: .8rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    font-weight: 800;
    z-index: 2;
    border: 1px solid rgba(255,255,255,.18);
}

.promotion-card__meta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.promotion-card__meta-value {
    font-size: .9rem;
    font-weight: 700;
    color: #5e748d;
}

.promotion-card__meta-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex: 0 0 auto;
}

.promotion-card__meta--active .promotion-card__meta-dot {
    background: #1dbf73;
    box-shadow: 0 0 0 4px rgba(29,191,115,.15);
}

.promotion-card__meta--dated .promotion-card__meta-dot {
    background: #0f65d3;
    box-shadow: 0 0 0 4px rgba(15,101,211,.12);
}

@media (max-width: 640px) {
    .promotion-card__badge {
        top: 12px;
        left: 12px;
        padding: 8px 12px;
        font-size: .72rem;
    }

    .promotion-card__meta-value {
        font-size: .85rem;
    }
}

.promotion-card__media::before {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 45%;
    background: linear-gradient(to top, rgba(6,17,34,.75), transparent);
    z-index: 1;
}

.promotion-card h2 {
    font-size: 1.25rem;
    line-height: 1.3;
    color: #123455;
}

.promotion-card__button {
    background: linear-gradient(135deg, #0f65d3, #2d86ff);
    border: 0;
}

.promotion-card__button:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(15,101,211,.35);
}

.promotion-card__button {
    margin-top: auto;
    justify-content: center;
    width: 100%;
    box-shadow: 0 14px 28px rgba(15, 101, 211, 0.28);
    font-weight: 800;
}

.content-stage__cards > .promotion-card:first-child {
    border-color: rgba(15, 101, 211, .18);
    box-shadow: 0 36px 72px rgba(15, 101, 211, .14);
}

.promotion-card h2 {
    min-height: 3.2em;
}

.support-faq__contacts {
    display: grid;
    gap: 18px;
    padding: 28px;
}

.support-faq__contacts h2,
.contacts-page__support h2 {
    color: #123455;
    font-family: "Bahnschrift", "Segoe UI Variable Display", sans-serif;
    font-size: clamp(1.44rem, 2.3vw, 2.12rem);
    line-height: 1.04;
}

.support-faq__contacts p,
.support-faq__contact-card span,
.contacts-page__card p,
.contacts-page__subtitle,
.contacts-page__support p {
    color: #55708f;
    line-height: 1.68;
}

.support-faq__contact-list {
    display: grid;
    gap: 12px;
}

.support-faq__contact-card {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 6px 12px;
    align-items: start;
    padding: 14px;
    border: 1px solid rgba(18, 56, 108, 0.08);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.78);
}

.support-faq__contact-icon {
    grid-row: span 4;
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border-radius: 14px;
    background: rgba(15, 101, 211, 0.08);
    color: #0f65d3;
}

.support-faq__contact-icon svg,
.contacts-page__icon svg {
    width: 22px;
    height: 22px;
}

.support-faq__contact-card strong,
.contacts-page__card h2 {
    color: #123455;
}

.support-faq__contact-card a,
.contacts-page__card a {
    color: #0f65d3;
    font-weight: 800;
}

.support-faq__instructions,
.contacts-page__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(272px, 1fr));
    gap: 20px;
}

.contacts-page__direct-grid {
    align-items: stretch;
}

.contacts-page__hero,
.contacts-page__address-band {
    position: relative;
    overflow: hidden;
    display: grid;
    border: 1px solid rgba(18, 56, 108, 0.08);
    border-radius: 38px;
    box-shadow: 0 26px 54px rgba(20, 49, 88, 0.1);
}

.contacts-page__hero {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.46fr);
    gap: 24px;
    align-items: stretch;
    padding: 38px;
    background:
        radial-gradient(circle at 86% 12%, rgba(255, 217, 113, 0.36), transparent 24%),
        linear-gradient(135deg, #0d62d2 0%, #0b4db8 62%, #083a91 100%);
}

.contacts-page__hero::before {
    content: "";
    position: absolute;
    right: -90px;
    bottom: -120px;
    width: 340px;
    height: 340px;
    border: 22px solid rgba(255, 217, 113, 0.64);
    border-left-color: transparent;
    border-top-color: transparent;
    border-radius: 999px;
    transform: rotate(18deg);
}

.contacts-page__hero-copy,
.contacts-page__primary-channel {
    position: relative;
    z-index: 1;
}

.contacts-page__hero-copy {
    display: grid;
    gap: 22px;
    align-content: center;
}

.contacts-page__hero .page-intro__eyebrow,
.contacts-page__hero h1,
.contacts-page__hero .content-stage__lead {
    color: #ffffff;
}

.contacts-page__hero h1 {
    max-width: 11ch;
    margin: 0;
    font-family: "Bahnschrift", "Segoe UI Variable Display", sans-serif;
    font-size: clamp(2.9rem, 5.4vw, 5.4rem);
    line-height: 0.92;
}

.contacts-page__hero .content-stage__lead {
    max-width: 58ch;
    opacity: 0.88;
}

.contacts-page__primary-channel {
    display: grid;
    gap: 12px;
    align-content: center;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.14);
    color: #ffffff;
    backdrop-filter: blur(18px);
}

.contacts-page__primary-icon {
    display: grid;
    place-items: center;
    width: 64px;
    height: 64px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.16);
    color: #ffd971;
}

.contacts-page__primary-icon svg {
    width: 34px;
    height: 34px;
}

.contacts-page__primary-label,
.contacts-page__primary-note {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-weight: 700;
}

.contacts-page__primary-link {
    color: #ffffff;
    font-family: "Bahnschrift", "Segoe UI Variable Display", sans-serif;
    font-size: clamp(1.64rem, 3vw, 2.58rem);
    font-weight: 800;
    line-height: 1;
}

.contacts-page__direct-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.contacts-page__card,
.contacts-page__place-card {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 18px;
    padding: 26px;
}

.contacts-page__icon {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    border-radius: 18px;
    background: rgba(15, 101, 211, 0.08);
    color: #0f65d3;
}

.contacts-page__copy {
    display: grid;
    gap: 8px;
    min-width: 0;
}

.contacts-page__copy h2 {
    font-family: "Bahnschrift", "Segoe UI Variable Display", sans-serif;
    font-size: clamp(1.22rem, 1.9vw, 1.64rem);
    line-height: 1.05;
}

.contacts-page__address-band {
    grid-template-columns: minmax(0, 0.52fr) minmax(0, 1fr);
    gap: 24px;
    align-items: start;
    padding: 32px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 250, 255, 0.94));
}

.contacts-page__address-copy {
    display: grid;
    gap: 12px;
}

.contacts-page__address-copy h2,
.contacts-page__support h2 {
    margin: 0;
    color: #123455;
    font-family: "Bahnschrift", "Segoe UI Variable Display", sans-serif;
    font-size: clamp(1.62rem, 2.6vw, 2.5rem);
    line-height: 1;
}

.contacts-page__address-copy p {
    margin: 0;
    color: #55708f;
    line-height: 1.7;
}

.contacts-page__place-grid {
    display: grid;
    gap: 14px;
}

.contacts-page__place-card {
    border: 1px solid rgba(18, 56, 108, 0.08);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.78);
}

.contacts-page__support {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 18px;
    align-items: center;
    padding: 30px;
}

.contact-section {
    padding: clamp(58px, 7vw, 80px) 24px;
    background: #ffffff;
    color: #1f2d3d;
    text-align: center;
}

.contact-section h2 {
    margin: 0 0 10px;
    color: #1b589e;
    font-family: "Unbounded", "Bahnschrift", "Segoe UI Variable Display", sans-serif;
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    line-height: 1.14;
}

.contact-section .subtitle {
    margin: 0 0 clamp(36px, 5vw, 60px);
    color: #555555;
    font-family: "Montserrat", "Segoe UI", sans-serif;
    font-size: 1.05rem;
    line-height: 1.6;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
}

.contact-card {
    flex: 1 1 48%;
    min-width: min(450px, 100%);
    padding: clamp(26px, 4vw, 40px);
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
    font-family: "Montserrat", "Segoe UI", sans-serif;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

.contact-card h3 {
    margin: 0 0 20px;
    color: #1b589e;
    font-family: "Unbounded", "Bahnschrift", "Segoe UI Variable Display", sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.25;
}

.contact-form form {
    display: grid;
}

.contact-form label {
    display: block;
    margin-top: 15px;
    color: #222222;
    font-weight: 600;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    margin-top: 6px;
    padding: 12px 15px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    background: #fafafa;
    color: #111111;
    font-family: inherit;
    font-size: 0.95rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.contact-form textarea {
    min-height: 126px;
    resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #00bfff;
    outline: none;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(0, 191, 255, 0.2);
}

.contact-form button {
    width: 100%;
    min-height: 52px;
    margin-top: 25px;
    border: 0;
    border-radius: 8px;
    background: linear-gradient(90deg, #0047ff, #00bfff);
    color: #ffffff;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: background 0.3s ease, opacity 0.3s ease;
}

.contact-form button:hover,
.contact-form button:focus-visible {
    background: linear-gradient(90deg, #ff6b00, #ff8c42);
}

.contact-form button:disabled {
    cursor: wait;
    opacity: 0.68;
}

.contact-form__error,
.contact-form__feedback {
    display: block;
    min-height: 1.2em;
    margin: 6px 0 0;
    color: #c73d2f;
    font-size: 0.86rem;
    line-height: 1.35;
}

.contact-form__feedback[data-state="success"] {
    color: #157a46;
}

.contact-info p {
    margin: 8px 0;
    color: #1f2d3d;
    font-size: 0.98rem;
    line-height: 1.55;
}

.contact-info strong {
    color: #111111;
    font-weight: 600;
}

.contact-info a {
    color: #0047ff;
    font-weight: 500;
    text-decoration: none;
}

.contact-info a:hover,
.contact-info a:focus-visible {
    text-decoration: underline;
}

.map-container {
    max-width: 1200px;
    margin: 70px auto 0;
}

.map-container iframe {
    width: 100%;
    height: 420px;
    border: 0;
    border-radius: 14px;
}

.public-offer__content {
    display: grid;
    gap: 24px;
}

.public-offer__text {
    color: #35597f;
    overflow-wrap: break-word;
}

.public-offer__preamble {
    display: grid;
    gap: 8px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(18, 56, 108, 0.08);
}

.public-offer__doc-title,
.public-offer__doc-subtitle,
.public-offer__section-title,
.public-offer__subsection-title,
.public-offer__paragraph,
.public-offer__list {
    margin: 0;
}

.public-offer__doc-title {
    color: #123455;
    font-family: "Bahnschrift", "Segoe UI Variable Display", sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.public-offer__doc-subtitle {
    color: #55708f;
    line-height: 1.7;
}

.public-offer__section {
    display: grid;
    gap: 14px;
}

.public-offer__section + .public-offer__section {
    padding-top: 24px;
    border-top: 1px solid rgba(18, 56, 108, 0.08);
}

.public-offer__section-title {
    color: #123455;
    font-family: "Bahnschrift", "Segoe UI Variable Display", sans-serif;
    font-size: 1.18rem;
    font-weight: 800;
    line-height: 1.2;
}

.public-offer__subsection-title {
    color: #173f67;
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.45;
}

.public-offer__paragraph {
    color: #35597f;
    line-height: 1.8;
    text-align: justify;
}

.public-offer__clause {
    color: #294a6e;
    font-weight: 600;
}

.public-offer__list {
    display: grid;
    gap: 10px;
    padding-left: 1.3rem;
    color: #35597f;
}

.public-offer__list li {
    line-height: 1.75;
}

.tariff-detail-stage .content-stage__inner {
    gap: 20px;
}

.tariff-detail__card h1 {
    max-width: none;
}

.tariff-catalog-stage {
    padding: 164px 18px 24px;
}

.tariff-catalog-stage__inner {
    display: grid;
    grid-template-columns: minmax(0, 1.14fr) minmax(300px, 0.86fr);
    gap: 22px;
    max-width: var(--max-width);
    margin: 0 auto;
}

.tariff-catalog-stage__summary,
.tariff-catalog-stage__spotlight {
    position: relative;
    overflow: hidden;
    padding: 34px;
    border: 1px solid rgba(18, 56, 108, 0.08);
    border-radius: 34px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 250, 255, 0.92));
    box-shadow: 0 24px 48px rgba(20, 49, 88, 0.08);
}

.tariff-catalog-stage__summary::before,
.tariff-catalog-stage__spotlight::before {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 999px;
    pointer-events: none;
}

.tariff-catalog-stage__summary::before {
    top: -100px;
    right: -80px;
    background: radial-gradient(circle, rgba(15, 101, 211, 0.14), transparent 70%);
}

.tariff-catalog-stage__spotlight::before {
    bottom: -120px;
    left: -70px;
    background: radial-gradient(circle, rgba(255, 201, 71, 0.22), transparent 70%);
}

.tariff-catalog-stage__summary {
    display: grid;
    gap: 20px;
}

.tariff-catalog-stage__summary h1,
.tariff-catalog-stage__summary p,
.tariff-catalog-stage__spotlight p {
    margin: 0;
}

.tariff-catalog-stage__summary h1 {
    font-family: "Bahnschrift", "Segoe UI Variable Display", sans-serif;
    font-size: clamp(2.8rem, 5vw, 4.8rem);
    line-height: 0.96;
    color: #123455;
    max-width: 13ch;
}

.tariff-catalog-stage__summary p {
    max-width: 58ch;
    color: #55708f;
    line-height: 1.78;
}

.tariff-catalog-stage__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tariff-catalog-stage__chip {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 16px;
    border-radius: 999px;
    background: rgba(15, 101, 211, 0.07);
    color: #0f65d3;
    font-size: 0.88rem;
    font-weight: 800;
}

.tariff-catalog-stage__spotlight {
    display: grid;
    gap: 22px;
    align-content: space-between;
}

.tariff-catalog-stage__metrics {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.tariff-catalog-stage__metric {
    display: grid;
    gap: 8px;
    padding: 18px 18px 16px;
    border: 1px solid rgba(18, 56, 108, 0.08);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.8);
}

.tariff-paid-services {
    padding: 0 18px 88px;
}

.tariff-paid-services__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    align-items: center;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 30px;
    border: 1px solid rgba(18, 56, 108, 0.08);
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(241, 247, 255, 0.92));
    box-shadow: 0 22px 48px rgba(20, 49, 88, 0.08);
}

.tariff-paid-services__copy {
    display: grid;
    gap: 12px;
}

.tariff-paid-services__copy h2,
.tariff-paid-services__copy p {
    margin: 0;
}

.tariff-paid-services__copy h2 {
    color: #123455;
    font-family: "Bahnschrift", "Segoe UI Variable Display", sans-serif;
    font-size: clamp(1.55rem, 2.5vw, 2.35rem);
    line-height: 1.05;
}

.tariff-paid-services__copy p:not(.page-intro__eyebrow) {
    max-width: 680px;
    color: #55708f;
    line-height: 1.68;
}

.tariff-paid-services__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 24px;
    border-radius: 999px;
    background: #0f65d3;
    color: #ffffff;
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 16px 32px rgba(15, 101, 211, 0.2);
}

.tariff-paid-services__link:hover,
.tariff-paid-services__link:focus-visible {
    background: #123455;
}

@media (max-width: 760px) {
    .tariff-paid-services__inner,
    .paid-services-row {
        grid-template-columns: 1fr;
    }

    .paid-services-row strong {
        text-align: left;
    }
}

.tariff-catalog-stage__metric strong {
    color: #123455;
    font-family: "Bahnschrift", "Segoe UI Variable Display", sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    line-height: 0.94;
}

.tariff-catalog-stage__metric span,
.tariff-catalog-stage__lead {
    color: #55708f;
    line-height: 1.7;
}

.tariff-tabs--catalog {
    padding-top: 0;
}

.tariff-tabs--catalog .tariff-tabs__inner {
    border-radius: 40px;
}

.tariff-tabs__inner {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 38px;
    border: 1px solid rgba(18, 56, 108, 0.08);
    border-radius: 36px;
    background:
        radial-gradient(circle at top right, rgba(255, 205, 84, 0.18), transparent 30%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 250, 255, 0.94));
    color: #16375f;
    box-shadow: 0 24px 48px rgba(20, 49, 88, 0.08);
}

.tariff-tabs__inner::before,
.tariff-tabs__inner::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
    z-index: -1;
}

.tariff-tabs__inner::before {
    top: -140px;
    right: -120px;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(15, 101, 211, 0.14), transparent 68%);
}

.tariff-tabs__inner::after {
    bottom: -180px;
    left: -90px;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(255, 201, 71, 0.22), transparent 66%);
}

.tariff-tabs__header {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
    gap: 24px;
    align-items: end;
    margin-bottom: 26px;
}

.tariff-tabs__copy h2 {
    margin: 0;
    font-family: "Bahnschrift", "Segoe UI Variable Display", sans-serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.04;
}

.tariff-tabs__aside {
    justify-self: end;
    max-width: 360px;
    padding: 22px 24px;
    border: 1px solid rgba(15, 101, 211, 0.08);
    border-radius: 26px;
    background: linear-gradient(135deg, rgba(15, 101, 211, 0.06), rgba(255, 217, 113, 0.18));
}

.tariff-tabs__subtitle,
.tariff-tabs__subtitle-secondary {
    margin: 0;
}

.tariff-tabs__subtitle {
    color: #16375f;
    font-size: 1.02rem;
    font-weight: 800;
    line-height: 1.55;
}

.tariff-tabs__subtitle-badge {
    margin-right: 6px;
}

.tariff-tabs__subtitle-secondary {
    margin-top: 6px;
    color: #56708f;
    line-height: 1.6;
}

.tariff-tabs__nav {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
}

.tariff-tabs__tab {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 20px;
    border: 1px solid rgba(19, 61, 111, 0.08);
    border-radius: 999px;
    background: rgba(15, 101, 211, 0.04);
    color: #33597f;
    font: inherit;
    font-weight: 700;
    transition: transform 0.22s ease, background 0.22s ease, color 0.22s ease, box-shadow 0.22s ease;
}

.tariff-tabs__tab:hover,
.tariff-tabs__tab:focus-visible {
    transform: translateY(-1px);
    background: rgba(15, 101, 211, 0.08);
}

.tariff-tabs__tab.is-active {
    background: linear-gradient(135deg, #0f65d3, #2b8aff);
    color: #ffffff;
    box-shadow: 0 18px 28px rgba(39, 65, 109, 0.18);
}

.tariff-tabs__panel.is-active {
    animation: tariff-panel-reveal 0.36s ease both;
}

.tariff-tabs__note {
    margin: 0 0 18px;
    color: #56708f;
    font-size: 0.98rem;
    line-height: 1.7;
}

.tariff-tabs__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(272px, 1fr));
    gap: 20px;
    align-items: stretch;
}

.tariff-card {
    --tariff-accent: #0f65d3;
    --tariff-accent-soft: rgba(15, 101, 211, 0.12);
    --tariff-link-end: #2b8aff;
    --tariff-shadow: rgba(15, 101, 211, 0.28);
    position: relative;
    overflow: hidden;
    display: grid;
    align-content: start;
    grid-template-rows: auto auto auto auto auto 1fr auto;
    gap: 14px;
    min-height: 100%;
    padding: 26px;
    border: 1px solid rgba(18, 56, 108, 0.08);
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 255, 0.96));
    box-shadow: 0 18px 40px rgba(20, 49, 88, 0.06);
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.tariff-card::before,
.tariff-card::after {
    content: "";
    position: absolute;
    inset: auto;
    pointer-events: none;
}

.tariff-card::before {
    top: -48px;
    right: -32px;
    width: 160px;
    height: 160px;
    border-radius: 999px;
    background: radial-gradient(circle, var(--tariff-accent-soft), transparent 72%);
}

.tariff-card::after {
    inset: 0;
    border-radius: inherit;
    border: 1px solid rgba(255, 255, 255, 0.4);
    opacity: 0;
    transition: opacity 0.24s ease;
}

.tariff-card:hover,
.tariff-card:focus-within {
    transform: translateY(-4px);
    border-color: rgba(15, 101, 211, 0.14);
    box-shadow: 0 28px 48px rgba(20, 49, 88, 0.12);
}

.tariff-card:hover::after,
.tariff-card:focus-within::after {
    opacity: 1;
}

.tariff-card[data-tariff-surface='home'] {
    --tariff-accent: #0f65d3;
    --tariff-accent-soft: rgba(15, 101, 211, 0.16);
}

.tariff-card[data-tariff-surface='retail'] {
    --tariff-accent: #e47d1a;
    --tariff-accent-soft: rgba(228, 125, 26, 0.16);
    --tariff-link-end: #f29f2f;
    --tariff-shadow: rgba(228, 125, 26, 0.28);
}

.tariff-card[data-tariff-surface='business'] {
    --tariff-accent: #0d8f7b;
    --tariff-accent-soft: rgba(13, 143, 123, 0.16);
    --tariff-link-end: #1bb19b;
    --tariff-shadow: rgba(13, 143, 123, 0.28);
}

.tariff-card__media {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}

.tariff-card__heading {
    display: grid;
    gap: 8px;
    min-width: 0;
}

.tariff-card__eyebrow {
    margin: 0;
    color: var(--tariff-accent);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.tariff-card__icon {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    min-width: 60px;
    height: 60px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), var(--tariff-accent-soft));
    color: var(--tariff-accent);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: transform 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
}

.tariff-card__icon svg {
    width: 30px;
    height: 30px;
}

.tariff-card__accent {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    width: fit-content;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    background: var(--tariff-accent-soft);
    color: var(--tariff-accent);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.tariff-card h3,
.tariff-card__eyebrow,
.tariff-card__pricing-title,
.tariff-card__primary-label,
.tariff-card__speed,
.tariff-card__description,
.tariff-card__list,
.tariff-card__list li,
.tariff-card__cta-note {
    margin: 0;
}

.tariff-card h3 {
    position: relative;
    z-index: 1;
    font-family: "Bahnschrift", "Segoe UI Variable Display", sans-serif;
    font-size: clamp(1.56rem, 2vw, 1.9rem);
    line-height: 0.96;
    color: #14365d;
}

.tariff-card__name {
    min-width: 0;
    max-width: 11ch;
    min-height: 3.2rem;
    word-break: break-word;
}

.tariff-card__primary {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 8px;
    padding: 18px 18px 16px;
    border: 1px solid rgba(18, 56, 108, 0.08);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.78);
}

.tariff-card__primary-label {
    color: #587391;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.tariff-card__value {
    color: #14365d;
    font-family: "Bahnschrift", "Segoe UI Variable Display", sans-serif;
    font-size: clamp(1.18rem, 2vw, 1.68rem);
    line-height: 1.02;
    word-break: break-word;
}

.tariff-card__value--small {
    font-family: inherit;
    font-size: 1rem;
    line-height: 1.35;
}

.tariff-card__value--inline {
    font-size: 1.02rem;
    line-height: 1.45;
}

.tariff-card__pricing {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 8px;
}

.tariff-card__pricing-title {
    color: var(--tariff-accent);
    font-size: 0.84rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.tariff-card__list {
    display: grid;
    gap: 10px;
    padding: 0;
    list-style: none;
}

.tariff-card__list li {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 14px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(18, 56, 108, 0.08);
    color: #56708f;
}

.tariff-card__list li span {
    min-width: 0;
    line-height: 1.55;
}

.tariff-card__list li strong {
    color: #16375f;
    text-align: right;
}

.tariff-card__stats {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tariff-card__stat {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(19, 61, 111, 0.06);
    color: #355a7d;
    font-size: 0.84rem;
    font-weight: 700;
    border: 1px solid rgba(19, 61, 111, 0.05);
}

.tariff-card__speed {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 4px;
    min-height: 52px;
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.74);
    color: var(--tariff-accent);
    font-weight: 800;
    line-height: 1.6;
}

.tariff-card__speed-label {
    min-width: 0;
    line-height: 1.32;
}

.tariff-card__speed-legacy {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0 0 0 0);
    border: 0;
}

.tariff-card__description {
    position: relative;
    z-index: 1;
    color: #5a7393;
    min-height: 3.44em;
    line-height: 1.72;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.tariff-card__cta {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 12px;
    margin-top: auto;
    padding-top: 6px;
}

.tariff-card__cta-note {
    max-width: none;
    color: #5a7393;
    font-size: 0.84rem;
    font-weight: 700;
    line-height: 1.45;
}

.tariff-card__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    width: 100%;
    padding: 0 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--tariff-accent), var(--tariff-link-end));
    color: #ffffff;
    font-weight: 700;
    box-shadow: 0 14px 24px var(--tariff-shadow);
    transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
}

.tariff-card__link:hover,
.tariff-card__link:focus-visible {
    transform: translateY(-1px);
    filter: brightness(1.04);
    box-shadow: 0 18px 28px var(--tariff-shadow);
}

.tariff-card:hover .tariff-card__icon,
.tariff-card:focus-within .tariff-card__icon {
    transform: translateY(-2px) rotate(-4deg) scale(1.03);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.86), 0 14px 22px rgba(20, 49, 88, 0.12);
}

.tariff-tabs__panel.is-active .tariff-card {
    animation: tariff-card-reveal 0.52s ease both;
}

.tariff-tabs__panel.is-active .tariff-card:nth-child(2) {
    animation-delay: 0.05s;
}

.tariff-tabs__panel.is-active .tariff-card:nth-child(3) {
    animation-delay: 0.1s;
}

.tariff-tabs__panel.is-active .tariff-card:nth-child(4) {
    animation-delay: 0.15s;
}

.tariff-tabs__panel.is-active .tariff-card:nth-child(5) {
    animation-delay: 0.2s;
}

.tariff-tabs__panel.is-active .tariff-card:nth-child(6) {
    animation-delay: 0.25s;
}

.tariff-tabs__footnotes {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 14px;
    margin-top: 26px;
    padding-top: 24px;
    border-top: 1px solid rgba(18, 56, 108, 0.08);
}

.tariff-tabs__footnotes-mark {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 16px;
    background: rgba(15, 101, 211, 0.08);
    font-size: 1.2rem;
}

.tariff-tabs__footnotes ol {
    margin: 0;
    padding-left: 20px;
    color: #56708f;
    line-height: 1.72;
}

.tariff-showcase .tariff-card--showcase {
    overflow: visible;
    display: flex;
    flex-direction: column;
    align-content: initial;
    grid-template-rows: none;
    gap: 0;
    min-height: 526px;
    padding: 28px 22px 22px;
    border: 1px solid rgba(31, 98, 232, 0.24);
    border-radius: 24px;
    background: linear-gradient(180deg, #1660e2 0%, #0a47c3 56%, #0a43bb 100%);
    box-shadow: 0 22px 38px rgba(21, 82, 191, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.tariff-showcase .tariff-card__popular {
    top: -14px;
    z-index: 4;
}

.tariff-showcase .tariff-card--showcase::before {
    top: auto;
    right: auto;
    width: auto;
    height: auto;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 26%, transparent 100%);
}

.tariff-showcase .tariff-card--showcase::after {
    display: none;
}

.tariff-showcase .tariff-card--showcase:hover,
.tariff-showcase .tariff-card--showcase:focus-within {
    border-color: rgba(31, 98, 232, 0.24);
    box-shadow: 0 26px 44px rgba(21, 82, 191, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.tariff-showcase .tariff-card--showcase.is-featured {
    border: 1px solid rgba(243, 193, 38, 0.92);
    box-shadow: 0 24px 42px rgba(21, 82, 191, 0.2), 0 0 0 2px rgba(243, 193, 38, 0.58);
}

.tariff-showcase .tariff-card--showcase.is-featured:hover,
.tariff-showcase .tariff-card--showcase.is-featured:focus-within {
    box-shadow: 0 28px 46px rgba(21, 82, 191, 0.22), 0 0 0 2px rgba(243, 193, 38, 0.72);
}

.tariff-detail {
    position: relative;
}

.tariff-detail__card {
    display: grid;
    gap: 24px;
}

.tariff-detail__stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 16px;
}

.tariff-detail__stat {
    display: grid;
    gap: 8px;
    padding: 20px 22px;
    border: 1px solid rgba(18, 56, 108, 0.08);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.82);
}

.tariff-detail__stat span,
.tariff-detail__body p {
    color: #56708f;
}

.tariff-detail__stat strong {
    color: #16375f;
    font-size: 1.12rem;
}

.tariff-detail__body-card {
    color: #35597f;
}

.tariff-detail__body-card :where(p, li, h3, h4, strong) {
    color: #35597f;
}

.tariff-detail__body-card :where(h2, h3, h4) {
    color: #123455;
}

.tariff-detail__body-card :where(ul, ol) {
    display: grid;
    gap: 10px;
    margin: 0;
    padding-left: 1.2rem;
}

.tariff-detail__body p {
    margin: 0;
    line-height: 1.8;
}

@keyframes tariff-panel-reveal {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes tariff-card-reveal {
    from {
        opacity: 0;
        transform: translateY(22px) scale(0.985);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.page-intro {
    padding-top: 176px;
    padding-bottom: 96px;
}

.page-intro__inner {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(280px, 0.88fr);
    gap: 24px;
    max-width: var(--max-width);
    margin: 0 auto;
}

.page-intro__inner--stacked {
    grid-template-columns: 1fr;
}

.page-intro__card,
.page-intro__aside {
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    background: rgba(9, 20, 32, 0.72);
    box-shadow: var(--shadow);
}

.page-intro__card h1 {
    font-size: clamp(2.4rem, 5vw, 4.4rem);
}

.page-intro__card p,
.page-intro__aside p {
    margin: 0;
}

.page-intro__aside {
    display: grid;
    gap: 18px;
    align-content: start;
}

.page-intro__aside ul {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.page-intro__aside li {
    padding: 14px 16px;
    border-radius: var(--radius-md);
    background: var(--surface-soft);
}

.page-builder-block__image {
    display: block;
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    object-fit: cover;
}

.mega-footer {
    padding: 0 12px 28px;
    color: #10284c;
}

.mega-footer__shell {
    max-width: min(1620px, calc(100vw - 24px));
    margin: 0 auto;
    overflow: hidden;
    border-radius: 38px;
    background: #ffffff;
    box-shadow: 0 24px 60px rgba(25, 57, 104, 0.08);
}

.mega-footer__panel {
    padding: 44px 52px 36px;
    background:
        radial-gradient(circle at top left, rgba(33, 91, 228, 0.08), transparent 28%),
        radial-gradient(circle at 88% 14%, rgba(33, 91, 228, 0.06), transparent 20%),
        linear-gradient(180deg, #ffffff, #fbfcff);
}

.mega-footer__layout {
    display: grid;
    grid-template-columns: minmax(0, 1.32fr) minmax(360px, 0.92fr);
    gap: 38px;
}

.mega-footer__main {
    display: grid;
    gap: 30px;
}

.mega-footer__brand {
    display: inline-flex;
    align-items: center;
    width: fit-content;
}

.mega-footer__brand-logo {
    width: clamp(220px, 22vw, 286px);
    height: auto;
    object-fit: contain;
}

.mega-footer__columns {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 26px;
}

.mega-footer__column {
    display: grid;
    align-content: start;
    gap: 18px;
}

.mega-footer__column h2,
.mega-footer__contacts h2,
.mega-footer__promo h3 {
    margin: 0;
    color: #122955;
    font-family: "Segoe UI Variable Display", "Segoe UI Variable Text", sans-serif;
    font-size: clamp(1.5rem, 1.9vw, 2rem);
    font-weight: 760;
    line-height: 1.08;
}

.mega-footer__column-list {
    display: grid;
    gap: 18px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.mega-footer__column-list a,
.mega-footer__item-label {
    display: inline-grid;
    grid-template-columns: 22px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    color: #354c72;
    font-size: 0.97rem;
    line-height: 1.45;
}

.mega-footer__column-list a:hover,
.mega-footer__column-list a:focus-visible {
    color: #1458d9;
}

.mega-footer__item-icon,
.mega-footer__contact-icon,
.mega-footer__strip-icon {
    display: inline-grid;
    place-items: center;
}

.mega-footer__item-icon {
    width: 22px;
    height: 22px;
    color: #172f55;
}

.mega-footer__item-icon svg,
.mega-footer__contact-icon svg,
.mega-footer__strip-icon svg {
    width: 100%;
    height: 100%;
}

.mega-footer__promo {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(240px, 0.86fr);
    align-items: center;
    gap: 20px;
    min-height: 230px;
    padding: 34px 36px;
    border: 1px solid rgba(220, 228, 243, 0.92);
    border-radius: 28px;
    background:
        radial-gradient(circle at 74% 24%, rgba(37, 101, 231, 0.08), transparent 18%),
        linear-gradient(180deg, #fbfdff, #f4f7fd);
}

.mega-footer__promo-copy {
    display: grid;
    gap: 18px;
}

.mega-footer__promo h3 {
    font-size: clamp(2rem, 2.8vw, 2.72rem);
}

.mega-footer__promo h3 span {
    display: block;
}

.mega-footer__promo p {
    margin: 0;
    max-width: 30ch;
    color: #516988;
    font-size: 1rem;
    line-height: 1.62;
}

.mega-footer__promo-image {
    justify-self: end;
    width: min(100%, 320px);
    height: auto;
    object-fit: contain;
}

.mega-footer__contacts {
    display: grid;
    align-content: start;
    gap: 28px;
    padding-left: 38px;
    border-left: 1px solid rgba(220, 228, 243, 0.92);
}

.mega-footer__contacts-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 26px;
}

.mega-footer__contact-card {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    align-items: start;
    gap: 14px;
    min-width: 0;
}

.mega-footer__contact-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: linear-gradient(180deg, #f7f9ff, #eef3fd);
    color: #1d60df;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.94);
}

.mega-footer__contact-copy {
    display: grid;
    gap: 8px;
    min-width: 0;
}

.mega-footer__contact-copy strong {
    color: #182f58;
    font-size: 0.98rem;
    font-weight: 760;
    line-height: 1.4;
}

.mega-footer__contact-copy p,
.mega-footer__contact-link-row span,
.mega-footer__strip-copy span,
.mega-footer__strip-copy a,
.mega-footer__strip-policy,
.mega-footer__strip-copyright span {
    margin: 0;
    color: #566d8f;
    font-size: 0.94rem;
    line-height: 1.55;
}

.mega-footer__contact-subtitle {
    color: #687f9f;
}

.mega-footer__contact-links {
    display: grid;
    gap: 8px;
}

.mega-footer__contact-links.is-stacked {
    gap: 10px;
}

.mega-footer__contact-link-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 16px;
}

.mega-footer__contact-link-row a,
.mega-footer__strip-copy a,
.mega-footer__strip-policy {
    color: #155ae0;
    font-weight: 700;
}

.mega-footer__contact-link-row a:hover,
.mega-footer__contact-link-row a:focus-visible,
.mega-footer__strip-copy a:hover,
.mega-footer__strip-copy a:focus-visible,
.mega-footer__strip-policy:hover,
.mega-footer__strip-policy:focus-visible {
    color: #0b43b6;
}

.mega-footer__strip {
    background: linear-gradient(90deg, #1458e0, #0d46d1 48%, #0b3fbf 100%);
}

.mega-footer__strip-inner {
    display: grid;
    grid-template-columns: auto auto auto auto;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
}

.mega-footer__strip-logos,
.mega-footer__strip-items {
    display: flex;
    align-items: center;
}

.mega-footer__strip-logos {
    flex-wrap: wrap;
}

.mega-footer__strip-items {
    flex-wrap: nowrap;
    min-width: max-content;
}

.mega-footer__strip-logo,
.mega-footer__strip-item,
.mega-footer__strip-policy,
.mega-footer__strip-copyright {
    position: relative;
}

.mega-footer__strip-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 96px;
    min-width: 96px;
}

.mega-footer__strip-logo,
.mega-footer__strip-item {
    padding: 0 14px;
}

.mega-footer__strip-logo::after,
.mega-footer__strip-item::after,
.mega-footer__strip-policy::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 1px;
    height: 36px;
    background: rgba(255, 255, 255, 0.24);
    transform: translateY(-50%);
}

.mega-footer__strip-logo:first-child {
    padding-left: 0;
}

.mega-footer__strip-logo img {
    width: auto;
    height: auto;
    max-width: 86px;
    max-height: 34px;
    object-fit: contain;
    filter: none;
}

.mega-footer__strip-item {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 10px;
}

.mega-footer__strip-icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
}

.mega-footer__strip-copy {
    display: grid;
    gap: 2px;
    min-width: 0;
}

.mega-footer__strip-copy span,
.mega-footer__strip-copy a,
.mega-footer__strip-copyright span {
    color: #ffffff;
    white-space: nowrap;
    font-size: 0.84rem;
    line-height: 1.3;
}

.mega-footer__strip-policy {
    max-width: 176px;
    padding: 0 14px;
    color: #ffffff;
    white-space: normal;
    font-size: 0.78rem;
    line-height: 1.26;
}

.mega-footer__strip-copyright {
    display: grid;
    gap: 4px;
    padding-left: 14px;
    text-align: left;
}

@keyframes header-reveal {
    from {
        opacity: 0;
        transform: translateY(-24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes hero-rise {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1280px) {
    .site-header__info .site-header__meta-label {
        display: none;
    }
    .mega-footer__panel {
        padding: 36px 32px 30px;
    }
    .mega-footer__layout {
        grid-template-columns: 1fr;
    }
    .mega-footer__contacts {
        padding-left: 0;
        padding-top: 28px;
        border-left: 0;
        border-top: 1px solid rgba(220, 228, 243, 0.92);
    }
    .mega-footer__columns {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px 28px;
    }
    .mega-footer__promo {
        grid-template-columns: minmax(0, 1fr) minmax(220px, 0.78fr);
    }
    .mega-footer__strip-inner {
        grid-template-columns: 1fr;
        grid-template-areas: none;
        justify-items: start;
        gap: 18px;
    }
    .mega-footer__strip-logos,
    .mega-footer__strip-items,
    .mega-footer__strip-policy,
    .mega-footer__strip-copyright {
        grid-area: auto;
        justify-self: stretch;
    }
    .mega-footer__strip-logo,
    .mega-footer__strip-item,
    .mega-footer__strip-policy,
    .mega-footer__strip-copyright {
        padding-left: 0;
    }
    .mega-footer__strip-logo::after,
    .mega-footer__strip-item::after,
    .mega-footer__strip-policy::after {
        display: none;
    }
    .mega-footer__strip-copyright {
        padding-left: 0;
    }
    .mega-footer__strip-items {
        width: 100%;
        flex-wrap: wrap;
    }
    .mega-footer__strip-policy,
    .mega-footer__strip-copyright {
        width: 100%;
        max-width: none;
        padding-top: 16px;
        border-top: 1px solid rgba(255, 255, 255, 0.18);
    }
}

@media (max-width: 1200px) {
    .site-header__info .site-header__meta {
        display: none;
    }

    .page-home .site-header__shell {
        grid-template-columns: auto minmax(0, 1fr) auto;
    }

    .page-home .site-header__desktop-rail {
        grid-template-columns: auto;
    }
}

@media (max-width: 1040px) {
    .site-nav--desktop,
    .site-header__info,
    .site-header__desktop-rail {
        display: none;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .site-header__shell {
        display: flex;
        padding: 12px 14px;
    }

    .page-home .site-nav--desktop,
    .page-home .site-header__desktop-rail {
        display: none;
    }

    .page-home .site-header__shell {
        display: flex;
    }

    .hero__surface {
        grid-template-columns: 1fr;
        padding: 42px 34px;
    }

    .hero__visual {
        min-height: 220px;
    }

    .hero-tariffs {
        grid-template-columns: 1fr;
    }

    .tariff-showcase__stage,
    .tariff-showcase__headline {
        grid-template-columns: 1fr;
    }

    .tariff-showcase__art {
        display: none;
    }

    .tariff-catalog-stage__inner {
        grid-template-columns: 1fr;
    }

    .content-stage__intro,
    .content-stage__cards--two {
        grid-template-columns: 1fr;
    }

    .content-stage__intro-card h1 {
        max-width: none;
    }

    .services-hub__frame {
        padding: 32px 24px 26px;
    }

    .services-hub__grid {
        grid-template-columns: 1fr;
        grid-template-areas:
            "payment"
            "speed"
            "cabinet"
            "support"
            "instructions"
            "faq";
    }

    .services-hub__speed-card {
        grid-template-columns: 1fr;
        padding-right: 26px;
    }

    .services-hub__speed-copy p {
        max-width: none;
    }

    .services-hub__service-card {
        min-height: 132px;
    }

    .contact-cta {
        padding-bottom: 92px;
    }

    .contact-cta__surface {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 38px 30px 30px;
    }

    .contact-cta__copy {
        gap: 26px;
    }

    .contact-cta__action {
        max-width: 100%;
    }

    .contact-cta__visual {
        min-height: 300px;
    }

    .contact-cta__visual-primary {
        right: 0;
        bottom: 10px;
        width: min(100%, 430px);
    }

    .contact-cta__visual-hand {
        right: -18px;
        bottom: -30px;
        width: 94px;
    }

    .tariff-tabs__header {
        grid-template-columns: 1fr;
    }

    .tariff-tabs__aside {
        justify-self: stretch;
        max-width: none;
    }
}

@media (min-width: 1041px) {
    .mobile-menu {
        display: none !important;
    }

    .tariff-showcase__headline {
        gap: 42px;
        align-items: center;
    }

    .tariff-showcase__lead {
        max-width: 20ch;
        padding-top: 0;
    }
}

@media (min-width: 1041px) and (max-width: 1180px) {
    .tariff-showcase__headline {
        grid-template-columns: 1fr;
        gap: 14px;
        align-items: start;
    }

    .tariff-showcase__lead {
        max-width: 24ch;
    }
}

@media (min-width: 901px) and (max-width: 1040px) {
    .tariff-showcase__stage {
        grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
        gap: 20px;
        align-items: start;
    }

    .tariff-showcase__headline {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .tariff-showcase__headline h2 {
        max-width: 8ch;
        font-size: clamp(2.9rem, 5.1vw, 3.95rem);
    }

    .tariff-showcase__lead {
        max-width: 28ch;
        padding-top: 0;
    }

    .tariff-showcase__art {
        display: grid;
        width: 100%;
        min-width: 0;
    }

    .tariff-showcase__art--reference {
        min-height: 198px;
        background-position: left center, right center;
        background-size: auto, 700px auto;
    }

    .contact-cta__surface {
        grid-template-columns: minmax(0, 0.98fr) minmax(280px, 0.82fr);
        gap: 28px;
        padding: 58px 48px 46px;
    }

    .contact-cta__copy {
        gap: 34px;
    }

    .contact-cta__copy h2 {
        font-size: clamp(2.58rem, 5.35vw, 3.85rem);
    }

    .contact-cta__button {
        width: min(100%, 360px);
        min-height: 84px;
        padding: 0 26px 0 24px;
        font-size: clamp(1.26rem, 2.5vw, 1.6rem);
    }

    .contact-cta__visual {
        min-height: 384px;
    }

    .contact-cta__visual-primary {
        right: -12px;
        bottom: 14px;
        width: 440px;
    }

    .contact-cta__visual-hand {
        right: -18px;
        bottom: -26px;
        width: 92px;
    }
}

@media (min-width: 641px) and (max-width: 900px) {
    .hero__visual {
        min-height: auto;
    }

    .hero-promos {
        position: static;
        margin-top: 8px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        align-items: stretch;
        justify-items: stretch;
    }

    .hero-promo,
    .hero-promo:nth-child(2),
    .hero-promo:nth-child(3) {
        width: 100%;
        transform: none;
    }

    .hero-promo:nth-child(3) {
        grid-column: 1 / -1;
    }
}

@media (max-width: 780px) {
    .live-chat-launcher {
        right: 16px;
        bottom: 16px;
        width: 58px;
        height: 58px;
    }

    .live-chat {
        right: 16px;
        left: 16px;
        bottom: 88px;
        width: auto;
    }

    .site-header {
        padding-left: 12px;
        padding-right: 12px;
    }

    .hero {
        padding-top: 156px;
        padding-bottom: 92px;
    }

    .hero h1 {
        font-size: clamp(2.3rem, 13vw, 3.9rem);
    }

    .page-home .hero {
        padding-top: 116px;
        padding-bottom: 64px;
    }

    .tariff-showcase {
        padding: 0 10px 84px;
    }

    .services-hub {
        padding: 0 10px 84px;
    }

    .contact-cta {
        padding: 0 10px 84px;
    }

    .services-hub__frame {
        padding: 26px 16px 18px;
        border-radius: 28px;
    }

    .contact-cta__surface {
        padding: 28px 18px 24px;
        border-radius: 28px;
    }

    .contact-cta__copy {
        gap: 22px;
    }

    .contact-cta__action {
        width: min(100%, 340px);
    }

    .contact-cta__copy h2 {
        font-size: clamp(2.5rem, 10vw, 3.9rem);
    }

    .contact-cta__button {
        min-height: 74px;
        padding: 0 22px 0 24px;
        border-radius: 20px;
        font-size: clamp(1.18rem, 5.4vw, 1.48rem);
    }

    .contact-cta__button-arrow {
        font-size: 2rem;
    }

    .contact-cta__visual {
        min-height: 232px;
    }

    .contact-cta__visual-primary {
        right: -10px;
        bottom: 0;
        width: min(100%, 320px);
    }

    .contact-cta__visual-hand {
        width: 78px;
        right: -4px;
        bottom: -24px;
    }

    .services-hub__heading {
        margin-bottom: 18px;
    }

    .services-hub__heading h2 {
        font-size: clamp(2.6rem, 11vw, 3.8rem);
    }

    .services-hub__card {
        padding: 22px 18px;
        border-radius: 24px;
    }

    .services-hub__copy h3,
    .services-hub__speed-copy h3 {
        font-size: clamp(1.52rem, 7vw, 1.9rem);
    }

    .services-hub__speed-gauge {
        min-height: 250px;
    }

    .services-hub__service-card {
        grid-template-columns: 54px minmax(0, 1fr);
    }

    .services-hub__service-arrow {
        display: none;
    }

    .services-hub__payment-logo-shell {
        min-width: 82px;
    }

    .services-hub__payment-button {
        min-height: 56px;
        padding: 0 14px;
    }

    .tariff-showcase__frame {
        padding: 24px 16px 22px;
        border-radius: 28px;
    }

    .tariff-showcase__frame::before,
    .tariff-showcase__frame::after {
        display: none;
    }

    .tariff-showcase__copy {
        gap: 18px;
    }

    .tariff-showcase__headline h2 {
        max-width: 9ch;
        font-size: clamp(2.6rem, 11vw, 3.8rem);
    }

    .tariff-showcase__lead {
        padding-top: 0;
    }

    .tariff-showcase .tariff-showcase__nav {
        display: grid;
        gap: 10px;
        border: 0;
        background: none;
        box-shadow: none;
        overflow: visible;
    }

    .tariff-showcase .tariff-showcase__tab {
        justify-content: flex-start;
        min-height: 58px;
        padding: 0 18px;
        border: 1px solid rgba(214, 226, 247, 0.96);
        border-radius: 18px;
        background: rgba(255, 255, 255, 0.88);
    }

    .tariff-showcase .tariff-showcase__tab:last-child {
        border-bottom: 1px solid rgba(214, 226, 247, 0.96);
    }

    .tariff-showcase .tariff-showcase__tab.is-active::after {
        display: none;
    }

    .tariff-card--showcase {
        flex-basis: calc(100vw - 72px);
        min-width: calc(100vw - 72px);
        min-height: 0;
        padding: 24px 18px 20px;
    }

    .tariff-card--showcase .tariff-card__showcase-title {
        font-size: clamp(1.66rem, 6.4vw, 1.94rem);
    }

    .tariff-card__showcase-signal {
        width: 72px;
        height: 72px;
        margin-bottom: 16px;
    }

    .tariff-card__showcase-signal svg {
        width: 72px;
        height: 72px;
    }

    .tariff-card__showcase-list {
        gap: 14px;
        margin-top: 24px;
    }

    .tariff-showcase__footnotes {
        grid-template-columns: 1fr;
        padding: 20px 18px;
    }

    .tariff-showcase__controls {
        grid-template-columns: 44px 1fr 44px;
        gap: 10px;
    }

    .tariff-showcase__arrow {
        width: 44px;
        height: 44px;
    }

    .hero__surface {
        padding: 34px 24px;
        border-radius: 30px;
        gap: 18px;
    }

    .hero__visual {
        min-height: 180px;
    }

    .hero-promos {
        position: static;
        margin-top: 12px;
        gap: 12px;
        justify-items: stretch;
    }

    .hero-promo,
    .hero-promo:nth-child(2),
    .hero-promo:nth-child(3) {
        width: 100%;
        transform: none;
    }

    .hero__surface::before {
        width: 300px;
        height: 300px;
        border-width: 16px;
    }

    .hero__surface::after {
        width: 230px;
        height: 230px;
        border-width: 14px;
    }

    .site-brand__copy span {
        display: none;
    }

    .site-brand__mark {
        width: 52px;
        height: 52px;
    }

    .page-intro {
        padding-top: 150px;
        padding-bottom: 72px;
    }

    .content-stage {
        padding-top: 150px;
        padding-bottom: 72px;
    }

    .tariff-catalog-stage {
        padding-top: 138px;
        padding-bottom: 18px;
    }

    .content-stage__intro-card,
    .content-stage__spotlight,
    .content-stage__card,
    .tariff-catalog-stage__summary,
    .tariff-catalog-stage__spotlight {
        padding: 26px 22px;
        border-radius: 28px;
    }

    .content-stage__intro-card h1,
    .tariff-catalog-stage__summary h1 {
        max-width: none;
        font-size: clamp(2.4rem, 10vw, 3.6rem);
    }

    .tariff-catalog-stage__metrics {
        grid-template-columns: 1fr;
    }

    .page-intro__inner {
        grid-template-columns: 1fr;
    }

    .page-intro__card,
    .page-intro__aside,
    .mega-footer__panel {
        padding: 22px;
    }

    .tariff-tabs {
        padding-bottom: 84px;
    }

    .tariff-tabs__inner {
        padding: 28px 22px;
        border-radius: 30px;
    }

    .tariff-tabs__footnotes {
        grid-template-columns: 1fr;
    }

    .lead-modal {
        padding: 12px;
    }

    .lead-modal__content {
        padding: 28px 22px 24px;
    }
}

@media (max-width: 620px) {
    .tariff-showcase__headline h2 {
        max-width: none;
    }

    .tariff-card--showcase {
        flex: 0 0 calc(100vw - 56px);
        min-width: calc(100vw - 56px);
        max-width: calc(100vw - 56px);
        padding: 20px 16px 18px;
        border-radius: 24px;
    }

    .tariff-showcase__track {
        gap: 12px;
    }

    .tariff-card__showcase-speed-value {
        font-size: clamp(1.8rem, 8vw, 2.4rem);
    }

    .tariff-card__showcase-feature {
        min-width: 0;
    }

    .tariff-card__showcase-feature-value {
        word-break: break-word;
    }

    .mega-footer {
        padding-bottom: 18px;
    }
    .mega-footer__columns,
    .mega-footer__contacts-grid {
        grid-template-columns: 1fr;
    }
    .mega-footer__promo {
        grid-template-columns: 1fr;
        justify-items: start;
    }
    .mega-footer__promo-image {
        justify-self: center;
    }
    .content-stage__cards {
        grid-template-columns: 1fr;
    }
    .mega-footer__strip-logos,
    .mega-footer__strip-items {
        gap: 12px;
    }
    .mega-footer__strip-item {
        padding: 0;
    }

    .tariff-card__popular {
        top: -14px;
        max-width: calc(100% - 24px);
    }

    .tariff-card__showcase-feature {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .tariff-card__showcase-feature-value {
        justify-self: start;
        text-align: left;
    }
}

@media (max-width: 560px) {
    .site-brand__copy strong {
        font-size: 0.98rem;
    }

    .page-home .hero {
        padding-top: 108px;
        padding-bottom: 44px;
    }

    .mega-footer {
        padding: 0 10px 16px;
    }
    .mega-footer__shell {
        border-radius: 28px;
    }
    .mega-footer__panel {
        padding: 26px 18px 22px;
    }
    .mega-footer__brand-logo {
        width: min(100%, 230px);
    }
    .content-stage {
        padding: 138px 10px 56px;
    }
    .mega-footer__columns {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .content-stage__inner,
    .content-stage__intro {
        gap: 18px;
    }
    .content-stage__intro-card,
    .content-stage__spotlight,
    .content-stage__card {
        padding: 22px 18px;
        border-radius: 24px;
    }
    .content-stage__button {
        width: 100%;
    }
    .content-stage__chip {
        font-size: 0.82rem;
    }
    .mega-footer__column h2,
    .mega-footer__contacts h2 {
        font-size: clamp(1.4rem, 6vw, 1.8rem);
    }
    .mega-footer__promo {
        min-height: auto;
        padding: 22px 18px;
        border-radius: 24px;
    }
    .mega-footer__promo h3 {
        font-size: clamp(1.72rem, 7vw, 2.1rem);
    }
    .mega-footer__promo-image {
        width: min(100%, 250px);
    }
    .mega-footer__contacts {
        gap: 22px;
        padding-top: 22px;
    }
    .mega-footer__contact-card {
        grid-template-columns: 40px minmax(0, 1fr);
        gap: 12px;
    }
    .mega-footer__contact-icon,
    .mega-footer__strip-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }
    .mega-footer__strip-inner {
        padding: 18px 18px 20px;
    }
    .mega-footer__strip-logo {
        width: 84px;
        min-width: 84px;
    }
    .mega-footer__strip-logo img {
        width: auto;
        height: auto;
        max-width: 74px;
        max-height: 28px;
    }
    .mega-footer__strip-policy {
        max-width: none;
        padding: 0;
    }

    .menu-toggle__label {
        display: none;
    }

    .hero__actions,
    .hero__primary,
    .hero__secondary,
    .tariff-card__link {
        width: 100%;
    }

    .mobile-menu__panel {
        padding-left: 16px;
        padding-right: 16px;
    }

    .page-home .mobile-menu {
        padding-top: 82px;
        padding-left: 10px;
        padding-right: 10px;
    }

    .page-home .mobile-menu__panel {
        padding: 16px;
        border-radius: 26px;
    }

    .page-home .hero h1 {
        font-size: clamp(1.94rem, 11vw, 2.86rem);
    }

    .page-home .hero__content {
        gap: 18px;
    }

    .page-home .hero__lead {
        font-size: 0.98rem;
        line-height: 1.58;
    }

    .tariff-tabs__nav {
        display: grid;
    }

    .tariff-tabs__tab {
        width: 100%;
    }

    .tariff-card {
        padding: 20px;
    }

    .tariff-card__media,
    .tariff-card__cta {
        flex-direction: column;
        align-items: flex-start;
    }

    .tariff-card__name {
        max-width: none;
        min-height: 0;
    }

    .tariff-card__icon {
        width: 54px;
        min-width: 54px;
        height: 54px;
    }

    .tariff-card__stats {
        display: grid;
    }

    .tariff-card__list li {
        grid-template-columns: 1fr;
        align-items: flex-start;
    }

    .tariff-card__list li strong {
        text-align: left;
    }

    .lead-modal__dialog {
        border-radius: 26px;
    }

    .lead-modal__content h2 {
        font-size: 1.82rem;
    }

    .lead-form__submit {
        width: 100%;
    }
    .tariff-showcase__controls {
        margin-top: 18px;
    }

    .hero__surface {
        padding: 24px 16px;
        gap: 14px;
    }

    .tariff-showcase__frame {
        padding: 20px 14px 20px;
        border-radius: 24px;
    }

    .tariff-showcase__eyebrow {
        min-height: 32px;
        padding: 0 16px;
        font-size: 0.84rem;
    }

    .tariff-showcase__headline h2 {
        font-size: clamp(2.3rem, 12.5vw, 3.2rem);
    }

    .tariff-showcase__lead {
        gap: 4px;
        font-size: 0.98rem;
    }

    .tariff-showcase__tab {
        min-height: 54px;
        padding: 0 16px;
        font-size: 0.94rem;
    }

    .tariff-showcase__footnote-icon {
        width: 58px;
        height: 58px;
        font-size: 2.7rem;
    }

    .tariff-card__showcase-speed {
        gap: 8px;
    }

    .hero__visual {
        min-height: 160px;
    }

    .hero__arc--large {
        width: 132px;
        height: 132px;
    }

    .hero__arc--medium {
        right: 94px;
        width: 84px;
        height: 84px;
    }

    .hero__arc--small {
        right: 30px;
        top: 94px;
        width: 56px;
        height: 56px;
    }

    .hero-promos {
        position: static;
        margin-top: 10px;
        gap: 10px;
        justify-items: stretch;
    }

    .hero-promo,
    .hero-promo:nth-child(2),
    .hero-promo:nth-child(3) {
        width: 100%;
        transform: none;
    }

    .hero-promo {
        padding: 14px 14px 13px;
        border-radius: 18px;
    }

    .hero-promo__eyebrow {
        font-size: 0.66rem;
    }

    .hero-promo__title {
        margin-top: 6px;
        font-size: 0.94rem;
    }

    .hero-promo__text {
        margin-top: 6px;
        font-size: 0.84rem;
        line-height: 1.42;
    }

    .hero-promo:nth-child(n + 3) {
        display: none;
    }

    .hero__highlights {
        flex-direction: column;
    }
}

.page-admin-auth,
.page-admin {
    min-height: 100vh;
    background:
        radial-gradient(circle at top left, rgba(255, 205, 84, 0.18), transparent 28%),
        radial-gradient(circle at bottom right, rgba(15, 101, 211, 0.12), transparent 32%),
        linear-gradient(180deg, #edf5fc 0%, #e7eef7 100%);
    color: #153960;
}

.admin-auth {
    display: grid;
    place-items: center;
    min-height: 100vh;
    padding: 32px 18px;
}

.admin-auth__card,
.admin-panel {
    border: 1px solid rgba(18, 56, 108, 0.08);
    border-radius: 28px;
    background:
        radial-gradient(circle at top right, rgba(255, 205, 84, 0.16), transparent 30%),
        rgba(255, 255, 255, 0.94);
    box-shadow: 0 24px 48px rgba(20, 49, 88, 0.1);
}

.admin-auth__card {
    width: min(100%, 480px);
    padding: 34px 32px;
}

.admin-auth__eyebrow,
.admin-shell__eyebrow,
.admin-panel__eyebrow {
    margin: 0 0 10px;
    color: #0f65d3;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.admin-auth__card h1,
.admin-shell__header h1,
.admin-panel h2 {
    margin: 0;
    color: #153960;
    font-family: "Bahnschrift", "Segoe UI Variable Display", sans-serif;
}

.admin-auth__lead,
.admin-panel p,
.admin-shell__user span,
.admin-empty-state {
    color: #5b7290;
}

.admin-auth__error,
.admin-notice {
    margin: 0 0 18px;
    padding: 14px 16px;
    border-radius: 18px;
    font-size: 0.94rem;
}

.admin-auth__error,
.admin-notice--error {
    background: rgba(190, 37, 48, 0.08);
    color: #8d1f2d;
}

.admin-notice--success {
    background: rgba(20, 140, 92, 0.1);
    color: #0f6c49;
}

.admin-auth__form,
.admin-form {
    display: grid;
    gap: 16px;
}

.admin-auth__field,
.admin-field {
    display: grid;
    gap: 8px;
}

.admin-auth__field span,
.admin-field span {
    font-size: 0.92rem;
    font-weight: 700;
    color: #193f69;
}

.admin-auth__field input,
.admin-field input,
.admin-field textarea,
.admin-field select {
    width: 100%;
    min-height: 52px;
    padding: 0 16px;
    border: 1px solid rgba(19, 61, 111, 0.12);
    border-radius: 18px;
    background: #f8fbff;
    color: #153960;
    font: inherit;
}

.admin-field textarea {
    min-height: 120px;
    padding: 14px 16px;
    resize: vertical;
}

.admin-auth__field input:focus,
.admin-field input:focus,
.admin-field textarea:focus,
.admin-field select:focus {
    outline: none;
    border-color: rgba(15, 101, 211, 0.3);
    box-shadow: 0 0 0 4px rgba(15, 101, 211, 0.08);
}

.admin-auth__submit,
.admin-button,
.admin-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 22px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, #ffd971, #ffbe39);
    color: #4b3100;
    font-weight: 800;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
    box-shadow: 0 18px 28px rgba(39, 65, 109, 0.18);
}

.admin-auth__submit:hover,
.admin-auth__submit:focus-visible,
.admin-button:hover,
.admin-button:focus-visible,
.admin-link:hover,
.admin-link:focus-visible {
    transform: translateY(-1px);
    box-shadow: 0 20px 32px rgba(39, 65, 109, 0.22);
}

.admin-button--secondary {
    background: rgba(15, 101, 211, 0.08);
    color: #173b63;
    box-shadow: none;
}

.admin-button--secondary:hover,
.admin-button--secondary:focus-visible {
    box-shadow: 0 12px 20px rgba(39, 65, 109, 0.12);
}

.admin-shell {
    width: min(100%, 1280px);
    margin: 0 auto;
    padding: 26px 18px 42px;
}

.admin-shell__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px;
}

.admin-shell__user {
    display: grid;
    justify-items: end;
    gap: 4px;
    padding: 18px 20px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.84);
    box-shadow: 0 16px 32px rgba(20, 49, 88, 0.08);
}

.admin-shell__user a {
    color: #0f65d3;
    font-weight: 700;
}

.admin-shell__nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 22px;
}

.admin-shell__nav a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.78);
    color: #173b63;
    font-weight: 700;
    box-shadow: 0 12px 24px rgba(20, 49, 88, 0.06);
}

.admin-shell__nav a.is-active {
    background: linear-gradient(135deg, #0f65d3, #2b8aff);
    color: #ffffff;
}

.admin-main {
    display: grid;
    gap: 20px;
}

.admin-grid {
    display: grid;
    gap: 20px;
}

.admin-grid--cards {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.admin-grid--two,
.admin-grid--two-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.admin-panel {
    padding: 26px;
}

.admin-panel--hero {
    background:
        radial-gradient(circle at top right, rgba(255, 205, 84, 0.22), transparent 30%),
        linear-gradient(135deg, rgba(15, 101, 211, 0.08), rgba(255, 255, 255, 0.94));
}

.admin-panel__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.admin-hero-promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
}

.admin-hero-promo-card {
    display: grid;
    gap: 12px;
    padding: 18px;
    border: 1px solid rgba(19, 61, 111, 0.1);
    border-radius: 20px;
    background: rgba(248, 251, 255, 0.86);
}

.admin-content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
}

.admin-content-card {
    display: grid;
    gap: 14px;
    padding: 18px;
    border: 1px solid rgba(19, 61, 111, 0.1);
    border-radius: 20px;
    background: rgba(248, 251, 255, 0.86);
}

.admin-content-card h3 {
    margin: 0;
    color: #173b63;
    font-size: 1rem;
    font-weight: 800;
}

.admin-hero-promo-card__title {
    margin: 0;
    color: #0f65d3;
    font-size: 0.84rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.admin-hero-promo-card__actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.admin-hero-promo-card__move-group {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 8px;
}

.admin-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #193f69;
    font-size: 0.92rem;
    font-weight: 700;
}

.admin-toggle input {
    width: 18px;
    height: 18px;
    margin: 0;
}

.admin-link--secondary {
    min-height: 42px;
    padding: 0 16px;
    background: rgba(15, 101, 211, 0.08);
    color: #0f65d3;
    box-shadow: none;
}

.admin-link--secondary[disabled] {
    opacity: 0.45;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.admin-field--full {
    grid-column: 1 / -1;
}

.admin-form--stacked {
    gap: 22px;
}

.admin-form--inline {
    display: inline-flex;
    gap: 8px;
    margin-left: 8px;
}

.admin-form__actions {
    display: flex;
    justify-content: flex-start;
}

.admin-table-wrap {
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table th,
.admin-table td {
    padding: 14px 12px;
    border-bottom: 1px solid rgba(18, 56, 108, 0.08);
    text-align: left;
    white-space: nowrap;
}

.admin-table th {
    color: #173b63;
    font-size: 0.84rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.admin-chat-layout {
    align-items: start;
}

.admin-chat-toolbar {
    display: grid;
    gap: 6px;
    justify-items: end;
}

.admin-chat-toolbar__hint {
    margin: 0;
    color: #5b7290;
    font-size: 0.84rem;
    text-align: right;
}

.admin-chat-queue,
.admin-chat-detail {
    display: grid;
    gap: 18px;
}

.admin-chat-list {
    display: grid;
    gap: 10px;
}

.admin-chat-list__item {
    display: grid;
    gap: 4px;
    padding: 14px 16px;
    border: 1px solid rgba(19, 61, 111, 0.1);
    border-radius: 18px;
    background: #f8fbff;
    color: #173b63;
    text-decoration: none;
    transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.admin-chat-list__item:hover,
.admin-chat-list__item:focus-visible,
.admin-chat-list__item.is-active {
    border-color: rgba(15, 101, 211, 0.26);
    box-shadow: 0 16px 26px rgba(39, 65, 109, 0.1);
    transform: translateY(-1px);
}

.admin-chat-list__item strong {
    font-size: 0.95rem;
}

.admin-chat-list__item span,
.admin-chat-meta p,
.admin-chat-message span {
    color: #5b7290;
    font-size: 0.88rem;
}

.admin-chat-meta {
    display: grid;
    gap: 6px;
}

.admin-chat-meta p,
.admin-chat-message p {
    margin: 0;
}

.admin-chat-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.admin-chat-actions form {
    margin: 0;
}

.admin-chat-transcript {
    display: grid;
    gap: 12px;
}

.admin-chat-message {
    display: grid;
    gap: 6px;
    padding: 14px 16px;
    border-radius: 20px;
    background: rgba(15, 101, 211, 0.08);
    color: #173b63;
}

.admin-chat-message--site {
    border-left: 4px solid #0f65d3;
}

.admin-chat-message--operator {
    border-left: 4px solid #ffbe39;
    background: rgba(255, 217, 113, 0.16);
}

.admin-empty-state {
    padding: 18px 0 4px;
}

.admin-link--danger {
    background: rgba(190, 37, 48, 0.08);
    color: #8d1f2d;
    box-shadow: none;
}

@media (max-width: 900px) {
    .admin-grid--two,
    .admin-grid--two-columns,
    .admin-shell__header {
        grid-template-columns: 1fr;
        flex-direction: column;
        align-items: stretch;
    }

    .admin-chat-layout {
        gap: 18px;
    }

    .admin-chat-toolbar {
        justify-items: start;
    }

    .admin-chat-toolbar__hint {
        text-align: left;
    }

    .admin-shell__user {
        justify-items: start;
    }
}

@media (max-width: 640px) {
    .admin-auth__card,
    .admin-panel {
        padding: 22px;
        border-radius: 24px;
    }

    .admin-shell {
        padding-left: 14px;
        padding-right: 14px;
    }

    .admin-shell__nav a,
    .admin-auth__submit,
    .admin-button,
    .admin-link {
        width: 100%;
    }
}
