:root {
    --font-sans: "Manrope", sans-serif;
    --bg-dark: #0a1728;
    --bg-dark-soft: #12243e;
    --bg-dark-deep: #081321;
    --bg-light: #f6f8fb;
    --bg-white: #ffffff;
    --bg-surface: #f1f4f8;
    --text-main: #122033;
    --text-muted: #66768a;
    --text-light: #dce8ff;
    --text-white: #ffffff;
    --border-light: rgba(15, 35, 64, 0.08);
    --border-dark: rgba(255, 255, 255, 0.1);
    --accent: #5da9ff;
    --accent-strong: #9dd8ff;
    --accent-deep: #2d68c8;
    --accent-warm: #ff9a1f;
    --shadow-soft: 0 10px 24px rgba(10, 24, 41, 0.04), 0 2px 8px rgba(10, 24, 41, 0.03);
    --shadow-card: 0 24px 56px rgba(10, 24, 41, 0.08);
    --shadow-dark: 0 24px 64px rgba(4, 13, 25, 0.24);
    --shadow-glow: 0 18px 42px rgba(45, 104, 200, 0.16);
    --radius-lg: 24px;
    --radius-md: 18px;
    --radius-sm: 12px;
    --container: 1160px;
    --container-wide: 1280px;
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-md: 1.0625rem;
    --text-lg: clamp(1.125rem, 1.4vw, 1.3rem);
    --text-xl: clamp(1.35rem, 1.9vw, 1.7rem);
    --text-2xl: clamp(1.85rem, 3vw, 2.55rem);
    --text-3xl: clamp(2.45rem, 4.4vw, 4rem);
    --section-space: 5.35rem;
    --header-stack-height: 88px;
    --first-screen-min-height: calc(100vh - var(--header-stack-height));
    --page-hero-block-padding-home: clamp(1.35rem, 3vh, 2.6rem);
    --page-hero-block-padding-inner: clamp(1.25rem, 2.8vh, 2.3rem);
}

@supports (height: 100svh) {
    :root {
        --first-screen-min-height: calc(100svh - var(--header-stack-height));
    }
}

@supports (height: 100dvh) {
    :root {
        --first-screen-min-height: calc(100dvh - var(--header-stack-height));
    }
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    font-family: var(--font-sans);
    font-size: var(--text-base);
    color: var(--text-main);
    background: linear-gradient(180deg, #fbfcfe 0%, #f5f7fb 100%);
    line-height: 1.62;
    text-rendering: optimizeLegibility;
}

body.menu-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 3px solid rgba(71, 168, 255, 0.32);
    outline-offset: 3px;
}

img {
    display: block;
    max-width: 100%;
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

svg {
    display: block;
}

.container {
    width: min(var(--container), calc(100% - 2rem));
    margin: 0 auto;
}

.container--wide {
    width: min(var(--container-wide), calc(100% - 2rem));
}

.site-main {
    overflow: hidden;
    overflow: clip;
}

.section {
    padding: var(--section-space) 0;
}

.section--light {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at top left, rgba(93, 169, 255, 0.08), transparent 28%),
        linear-gradient(180deg, var(--bg-light) 0%, #ffffff 100%);
}

.section--surface {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 100% 0, rgba(157, 216, 255, 0.08), transparent 22%),
        linear-gradient(180deg, #ffffff 0%, var(--bg-surface) 100%);
}

.section--cta {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #ffffff 0%, var(--bg-dark) 100%);
    padding-top: 0;
}

.section--dark-simple {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, var(--bg-dark) 0%, #102341 100%);
    color: var(--text-light);
}

.section--light > .container,
.section--surface > .container,
.section--cta > .container,
.section--dark-simple > .container,
.contact-card-section > .container {
    position: relative;
    z-index: 1;
}

.section--dark-simple::before,
.section--cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("../img/site/bg-hex-pattern.png") center / cover no-repeat;
    opacity: 0.08;
    mix-blend-mode: screen;
    pointer-events: none;
}

.contact-card-section {
    position: relative;
    overflow: hidden;
}

.contact-card-section--map::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("../img/site/bg-world-map.png") center / cover no-repeat;
    opacity: 0.1;
    pointer-events: none;
}

.contact-card-section--map::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 18%, rgba(71, 168, 255, 0.16), transparent 28%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(244, 248, 255, 0.96) 100%);
    pointer-events: none;
}

.section-heading {
    max-width: 46rem;
    margin: 0 auto 2.7rem;
    text-align: center;
}

.section-heading--left {
    margin-inline: 0;
    text-align: left;
}

.section-heading--compact {
    max-width: 36rem;
}

.section__kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    color: #6a88ad;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.section__kicker::before {
    content: "";
    width: 1.35rem;
    height: 1px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--accent-deep), rgba(45, 104, 200, 0.18));
}

.section__kicker--dark {
    color: rgba(220, 232, 255, 0.8);
}

.section__kicker--dark::before {
    background: linear-gradient(90deg, var(--accent-strong), rgba(157, 216, 255, 0.14));
}

.section__title {
    margin: 0.95rem 0 0.85rem;
    font-size: var(--text-2xl);
    line-height: 1.08;
    letter-spacing: -0.045em;
    color: var(--text-main);
}

.section__title--light {
    color: var(--text-white);
}

.section__lead {
    margin: 0;
    color: var(--text-muted);
    max-width: 39rem;
    font-size: 1.02rem;
    line-height: 1.72;
}

.section__lead--light {
    color: rgba(220, 232, 255, 0.85);
}

.button-row,
.cta-banner__actions,
.detail-plan__actions,
.stacked-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.button-row {
    margin-top: 1.55rem;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    min-height: 3rem;
    padding: 0.82rem 1.2rem;
    border: 1px solid transparent;
    border-radius: 1rem;
    overflow: hidden;
    isolation: isolate;
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    line-height: 1.15;
    text-align: center;
    transition:
        transform 0.22s ease,
        box-shadow 0.22s ease,
        background-color 0.22s ease,
        border-color 0.22s ease,
        color 0.22s ease;
}

.button::after {
    content: "";
    position: absolute;
    top: -35%;
    bottom: -35%;
    left: -28%;
    width: 28%;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.18) 48%, transparent 100%);
    transform: translateX(-180%) rotate(18deg);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.6s ease, opacity 0.28s ease;
}

.button:hover {
    transform: translateY(-1px);
}

.button:hover::after,
.button:focus-visible::after {
    opacity: 0.78;
    transform: translateX(380%) rotate(18deg);
}

.button:hover,
.button:focus-visible {
    box-shadow: 0 16px 34px rgba(10, 24, 41, 0.12);
}

.button--full {
    width: 100%;
}

.button--small {
    min-height: 2.4rem;
    padding-inline: 0.9rem;
    font-size: 0.84rem;
}

.button--primary {
    color: var(--text-white);
    background: linear-gradient(180deg, #2f72d6 0%, #245fbb 100%);
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 16px 34px rgba(36, 95, 187, 0.26);
}

.button--secondary {
    color: var(--bg-dark);
    background: var(--bg-white);
    border-color: rgba(15, 35, 64, 0.08);
    box-shadow: 0 14px 30px rgba(10, 24, 41, 0.12);
}

.button--ghost-dark {
    color: var(--text-main);
    background: rgba(19, 40, 72, 0.03);
    border-color: rgba(19, 40, 72, 0.1);
}

.button--ghost-light {
    color: var(--text-white);
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.14);
}

.hero-link {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0;
    border-bottom: 1px solid rgba(220, 232, 255, 0.3);
    color: rgba(220, 232, 255, 0.82);
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.4;
    transition: color 0.22s ease, border-color 0.22s ease;
}

.hero-link:hover,
.hero-link:focus-visible {
    color: var(--text-white);
    border-color: rgba(255, 255, 255, 0.5);
}

.hero-context-line {
    display: inline-flex;
    align-items: center;
    gap: 0.48rem;
    flex-wrap: wrap;
    margin: 0 0 0.7rem;
    max-width: 30rem;
    color: rgba(220, 232, 255, 0.78);
    font-size: 0.85rem;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.01em;
}

.hero-context-line::before {
    content: "";
    width: 1rem;
    height: 1px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(157, 216, 255, 0.78), rgba(157, 216, 255, 0.14));
    flex-shrink: 0;
}

.site-header {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 30;
    background: linear-gradient(180deg, rgba(8, 19, 34, 0.96) 0%, rgba(10, 23, 40, 0.94) 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
    box-shadow: 0 14px 34px rgba(4, 13, 25, 0.16);
}

.site-header.is-scrolled {
    background: linear-gradient(180deg, rgba(7, 18, 32, 0.98) 0%, rgba(9, 21, 36, 0.98) 100%);
    box-shadow: 0 18px 40px rgba(4, 13, 25, 0.2);
}

.site-header__topbar {
    padding: 0.26rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.site-header__topbar-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
    gap: 0.9rem;
    min-height: 2.9rem;
}

.site-header__nav-row {
    position: relative;
    display: none;
    align-items: center;
    gap: 0.62rem;
    padding: 0.2rem 0 0.44rem;
    overflow: visible;
}

.site-header__brand-block,
.top-contact-list,
.top-account-list,
.site-nav,
.site-nav__desktop,
.site-nav__cluster,
.site-header__actions {
    display: flex;
    align-items: center;
}

.site-header__brand-block {
    gap: 0.85rem;
    min-width: 0;
}

.site-header__mobile-shortcuts {
    display: none;
    align-items: center;
    gap: 0.5rem;
}

.top-contact-list {
    gap: 0.6rem;
    min-width: 0;
    flex-wrap: wrap;
}

.top-account-list {
    gap: 0.5rem;
    min-width: 0;
    justify-content: flex-end;
    justify-self: end;
    margin-left: 0;
}

.site-nav__desktop {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
    justify-self: center;
    gap: 0.82rem;
    width: min(100%, 54rem);
    max-width: 100%;
}

.site-nav__cluster {
    gap: 0.1rem;
    min-width: 0;
    flex-wrap: wrap;
}

.site-nav__cluster--left {
    justify-content: flex-end;
}

.site-nav__cluster--right {
    justify-content: flex-start;
}

.site-nav__link--home {
    justify-self: center;
    min-width: 6.2rem;
    color: rgba(236, 244, 255, 0.96);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025));
    box-shadow: inset 0 0 0 1px rgba(157, 216, 255, 0.12);
}

.site-nav__link--home:hover,
.site-nav__link--home.is-active {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.05));
}

.site-nav {
    gap: 0.1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.site-header__actions {
    position: static;
    justify-content: flex-end;
}

.site-nav--mobile {
    display: none;
}

.top-contact {
    color: rgba(220, 232, 255, 0.84);
    font-size: 0.78rem;
    font-weight: 600;
    padding: 0.08rem 0.16rem 0.08rem 0;
    transition: color 0.22s ease;
}

.top-contact {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

.top-contact svg {
    width: 0.96rem;
    height: 0.96rem;
    stroke: currentColor;
    opacity: 0.88;
}

.top-contact .icon-badge {
    width: 1.48rem;
    height: 1.48rem;
    padding: 0;
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.06);
}

.top-contact--icon {
    justify-content: center;
    width: 2.08rem;
    height: 2.08rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.top-account-link {
    min-height: 1.92rem;
    padding-inline: 0.82rem;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    box-shadow: none;
}

.top-account-link.button--ghost-light {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.12);
}

.top-account-link.button--primary {
    box-shadow: 0 12px 26px rgba(36, 95, 187, 0.22);
}

.top-account-link:hover,
.top-account-link:focus-visible {
    box-shadow: 0 12px 24px rgba(7, 19, 36, 0.12);
}

.top-account-link.button--ghost-light:hover,
.top-account-link.button--ghost-light:focus-visible {
    background: rgba(255, 255, 255, 0.1);
}

.top-account-link.button--primary:hover,
.top-account-link.button--primary:focus-visible {
    box-shadow: 0 16px 30px rgba(36, 95, 187, 0.26);
}

.site-nav__link {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.38rem;
    min-height: 2.14rem;
    padding: 0.5rem 0.72rem 0.6rem;
    border-radius: 0.9rem;
    color: rgba(220, 232, 255, 0.84);
    font-size: 0.77rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    line-height: 1;
    white-space: nowrap;
    background: rgba(255, 255, 255, 0);
    transition:
        color 0.22s ease,
        background-color 0.22s ease,
        box-shadow 0.22s ease;
}

.site-nav__link::after {
    content: "";
    position: absolute;
    left: 0.92rem;
    right: 0.92rem;
    bottom: 0.5rem;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--accent-strong), var(--accent));
    opacity: 0;
    transform: scaleX(0.5);
    transition: opacity 0.22s ease, transform 0.22s ease;
}

.top-contact:hover,
.site-nav__link:hover,
.site-nav__link.is-active {
    color: var(--text-white);
}

.site-nav__link:hover {
    background: rgba(255, 255, 255, 0.04);
}

.site-nav__link.is-active {
    background: rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 0 0 1px rgba(157, 216, 255, 0.12), 0 10px 24px rgba(7, 19, 36, 0.12);
}

.site-nav__link:hover::after,
.site-nav__link.is-active::after {
    opacity: 1;
    transform: scaleX(1);
}

.site-nav__group {
    position: relative;
    min-width: 0;
}

.site-nav__summary {
    list-style: none;
    cursor: pointer;
}

.site-nav__summary::-webkit-details-marker {
    display: none;
}

.site-nav__summary::marker {
    content: "";
}

.site-nav__summary::after {
    content: "";
    display: block;
    width: 0.48rem;
    height: 0.48rem;
    margin-left: 0.34rem;
    flex: 0 0 auto;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: translateY(-0.05rem) rotate(45deg);
    transition: transform 0.22s ease;
}

.site-nav__group[open] > .site-nav__summary::after {
    transform: translateY(0.02rem) rotate(-135deg);
}

.site-nav__group[open] > .site-nav__summary,
.site-nav__group.is-active > .site-nav__summary {
    color: var(--text-white);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 0 0 1px rgba(157, 216, 255, 0.12), 0 10px 24px rgba(7, 19, 36, 0.12);
}

.site-nav__group[open] > .site-nav__summary::after,
.site-nav__group.is-active > .site-nav__summary::after {
    border-color: var(--accent-strong);
}

.site-nav__dropdown {
    display: grid;
    gap: 0.35rem;
}

.site-nav__group--desktop .site-nav__dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    min-width: 12.75rem;
    padding: 0.65rem;
    border-radius: calc(var(--radius-md) + 0.05rem);
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(180deg, rgba(8, 19, 34, 0.99) 0%, rgba(12, 28, 49, 0.98) 100%);
    box-shadow: var(--shadow-dark);
}

.site-nav__dropdown-link {
    display: block;
    padding: 0.7rem 0.85rem;
    border-radius: 0.85rem;
    color: rgba(220, 232, 255, 0.8);
    font-size: 0.8rem;
    font-weight: 700;
    line-height: 1.35;
    transition: color 0.22s ease, background-color 0.22s ease;
}

.site-nav__dropdown-link:hover,
.site-nav__dropdown-link:focus-visible,
.site-nav__dropdown-link.is-active {
    color: var(--text-white);
    background: rgba(255, 255, 255, 0.06);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.72rem;
    min-width: 0;
}

.brand__logo {
    width: 2.5rem;
    height: 2.5rem;
    flex-shrink: 0;
}

.brand__logo--wide {
    display: block;
    width: 5.2rem;
    height: auto;
    object-fit: contain;
    object-position: center;
}

.brand__logo--mark {
    width: 2.15rem;
    height: 2.15rem;
    object-fit: contain;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 10px 18px rgba(4, 13, 25, 0.2));
    transition: transform 0.28s ease, filter 0.28s ease;
}

.brand__mark-shell {
    position: relative;
    display: inline-grid;
    place-items: center;
    width: 2.7rem;
    height: 2.7rem;
    border-radius: 0.95rem;
    overflow: hidden;
    isolation: isolate;
}

.brand__mark-shell::before,
.brand__mark-shell::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.brand__mark-shell::before {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgba(14, 35, 64, 0.6) 100%);
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 16px 28px rgba(4, 13, 25, 0.22);
}

.brand__mark-shell::after {
    inset: -20%;
    background: url("../img/site/brand-glow.svg") center / cover no-repeat;
    opacity: 0.16;
    filter: blur(18px);
    transform: scale(1.08);
    mix-blend-mode: screen;
    animation: logoAuraPulse 9s ease-in-out infinite;
}

.brand__mark-shell--footer::before {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, rgba(15, 37, 68, 0.55) 100%);
}

.brand__text {
    display: grid;
    gap: 0.08rem;
}

.brand__text--header {
    align-items: flex-start;
    text-align: left;
}

.brand--header-mobile {
    display: none;
}

.brand--header-desktop {
    position: relative;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    min-width: 2.5rem;
    height: 2.5rem;
    flex-shrink: 0;
}

.site-header .brand {
    justify-self: center;
    justify-content: center;
    gap: 0;
    text-align: center;
}

.brand--header-mobile .brand__home-label {
    color: rgba(220, 232, 255, 0.72);
    font-size: 0.52rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    line-height: 1;
    text-transform: uppercase;
}

.brand--header-desktop .brand__mark-shell {
    width: 2.5rem;
    height: 2.5rem;
}

.brand--header-desktop .brand__logo--mark {
    width: 1.98rem;
    height: 1.98rem;
}

.brand--header-desktop::after {
    content: none;
}

.site-header .brand__mark-shell {
    transform: translateY(1px);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.site-header .brand:hover .brand__mark-shell,
.site-header .brand:focus-visible .brand__mark-shell {
    transform: translateY(-1px) scale(1.03);
}

.site-header .brand:hover .brand__logo--mark,
.site-header .brand:focus-visible .brand__logo--mark {
    transform: scale(1.05);
    filter: drop-shadow(0 14px 22px rgba(71, 168, 255, 0.2));
}

.site-header .brand--header-mobile.is-active .brand__home-label,
.site-header .brand--header-mobile:hover .brand__home-label,
.site-header .brand--header-mobile:focus-visible .brand__home-label,
.site-header .brand--header-desktop.is-active::after,
.site-header .brand--header-desktop:hover::after,
.site-header .brand--header-desktop:focus-visible::after {
    color: var(--text-white);
}

.site-header .brand.is-active .brand__mark-shell::before {
    border-color: rgba(157, 216, 255, 0.22);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14), 0 18px 30px rgba(4, 13, 25, 0.24);
}

.site-header .brand__logo--wide {
    width: 8.5rem;
    filter: drop-shadow(0 8px 18px rgba(4, 13, 25, 0.2));
}

.brand__title {
    font-size: 0.96rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: var(--text-white);
}

.site-header .brand__title {
    font-size: 0.92rem;
    letter-spacing: -0.03em;
}

.brand__subtitle {
    color: rgba(220, 232, 255, 0.72);
    font-size: 0.58rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.site-header .brand__subtitle {
    font-size: 0.5rem;
    letter-spacing: 0.14em;
    color: rgba(220, 232, 255, 0.64);
}

.menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0.35rem;
    width: 3rem;
    height: 3rem;
    padding: 0.7rem 0.6rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.04);
    transition: transform 0.22s ease, background-color 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    border-radius: 999px;
    background: var(--text-white);
    transform-origin: center;
    transition: transform 0.24s ease, opacity 0.24s ease, background-color 0.24s ease;
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
    transform: translateY(-1px);
    border-color: rgba(157, 216, 255, 0.16);
    box-shadow: 0 12px 24px rgba(4, 13, 25, 0.14);
}

body.menu-open .menu-toggle {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(157, 216, 255, 0.18);
    box-shadow: 0 14px 26px rgba(4, 13, 25, 0.16);
}

body.menu-open .menu-toggle span:nth-child(1) {
    transform: translateY(0.47rem) rotate(45deg);
}

body.menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0.4);
}

body.menu-open .menu-toggle span:nth-child(3) {
    transform: translateY(-0.47rem) rotate(-45deg);
}

.page-hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 0, rgba(93, 169, 255, 0.12), transparent 34%),
        radial-gradient(circle at 82% 18%, rgba(157, 216, 255, 0.05), transparent 24%),
        linear-gradient(180deg, #081321 0%, #10213a 58%, #132645 100%);
    color: var(--text-light);
}

.page-hero::before {
    content: "";
    position: absolute;
    inset: -10% -6%;
    background: url("../img/site/bg-network.png") center / cover no-repeat;
    opacity: 0.07;
    filter: blur(12px);
    transform: scale(1.06);
    pointer-events: none;
    animation: heroDrift 18s ease-in-out infinite alternate;
}

.page-hero::after {
    content: none;
}

.page-hero--home::after {
    display: none;
}

.page-hero--home {
    padding: 2.45rem 0 2.7rem;
}

.page-hero--inner {
    padding: 2.3rem 0 2.45rem;
}

.page-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(19rem, 0.92fr);
    gap: clamp(1.7rem, 2.6vw, 2.5rem);
    align-items: start;
}

.page-hero__content,
.page-hero__aside {
    position: relative;
    z-index: 1;
}

.page-hero__content {
    display: flex;
    flex-direction: column;
    max-width: 37rem;
    justify-self: start;
}

.page-hero__content-main,
.page-hero__content-secondary {
    width: 100%;
}

.page-hero__content-main {
    display: grid;
    align-content: start;
    justify-items: start;
}

.page-hero__content-secondary {
    width: 100%;
}

.page-hero__content-main > .section__kicker {
    animation: fadeUp 0.55s ease both;
}

.page-hero__title {
    animation: fadeUp 0.65s ease 0.08s both;
}

.page-hero__lead {
    animation: fadeUp 0.75s ease 0.16s both;
}

.page-hero .button-row {
    animation: fadeUp 0.82s ease 0.24s both;
}

.page-hero__aside {
    width: 100%;
    max-width: 29rem;
    justify-self: stretch;
    align-self: start;
}

.page--privacy .page-hero__grid,
.page--offer .page-hero__grid,
.page--sla .page-hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.82fr);
    gap: 2rem;
}

.page--privacy .page-hero__content,
.page--offer .page-hero__content,
.page--sla .page-hero__content {
    max-width: 32rem;
}

.page--privacy .page-hero__title,
.page--offer .page-hero__title,
.page--sla .page-hero__title {
    max-width: 10ch;
    overflow-wrap: anywhere;
}

.page--privacy .page-hero__aside,
.page--offer .page-hero__aside,
.page--sla .page-hero__aside {
    max-width: 27rem;
}

.page--privacy .page-hero__aside .info-card,
.page--offer .page-hero__aside .info-card,
.page--sla .page-hero__aside .info-card {
    background: rgba(255, 255, 255, 0.98);
}

.page-hero__aside .info-card {
    animation: fadeUp 0.78s ease 0.18s both;
}

.page-hero--viewport .page-hero__grid {
    align-items: start;
}

.page-hero__title {
    margin: 0.75rem 0 0.9rem;
    font-size: var(--text-3xl);
    line-height: 1.02;
    letter-spacing: -0.05em;
    color: var(--text-white);
    overflow-wrap: anywhere;
}

.page-hero__lead {
    max-width: 34rem;
    margin: 0;
    color: rgba(220, 232, 255, 0.8);
    font-size: 1.03rem;
    line-height: 1.72;
}

.hero-stat-stage {
    position: relative;
    width: min(100%, 33rem);
    margin-top: 1.4rem;
    margin-inline: auto;
    padding: 0.1rem 0 0.32rem;
}

.hero-stat-stage::before,
.hero-stat-stage::after {
    content: "";
    position: absolute;
    left: 50%;
    pointer-events: none;
}

.hero-stat-stage::before {
    content: none;
}

.hero-stat-stage::after {
    top: -0.35rem;
    width: 8.25rem;
    height: 8.25rem;
    transform: translateX(-50%) scale(1.08);
    background: url("../img/site/brand-glow.svg") center / cover no-repeat;
    opacity: 0.07;
    filter: blur(22px);
    mix-blend-mode: screen;
    animation: heroGlowPulse 11s ease-in-out infinite;
}

.page--home .hero-stat-stage {
    margin-top: 1.85rem;
    animation: fadeUp 0.9s ease 0.28s both;
}

.page--home .page-hero .button-row {
    column-gap: 1rem;
    row-gap: 0.85rem;
    align-items: center;
}

.page-hero__content-secondary .hero-stat-stage {
    margin-top: 0;
}

.hero-stat-list {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 10rem));
    gap: 0.85rem;
    width: auto;
    max-width: 100%;
    margin-top: 0;
}

.page--home .hero-stat-list {
    width: 100%;
}

.hero-stat {
    padding: 1rem 0.9rem;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    text-align: center;
    transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.hero-stat:hover {
    transform: translateY(-1px);
    border-color: rgba(157, 216, 255, 0.18);
    box-shadow: 0 14px 28px rgba(71, 168, 255, 0.08);
}

.hero-stat strong {
    display: block;
    margin-top: 0.65rem;
    color: var(--text-white);
    font-size: 1.18rem;
    line-height: 1.1;
    letter-spacing: -0.04em;
}

.hero-stat span:last-child {
    display: block;
    margin-top: 0.18rem;
    color: rgba(220, 232, 255, 0.68);
    font-size: 0.84rem;
    line-height: 1.4;
}

.icon-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 0.95rem;
    background: rgba(93, 169, 255, 0.08);
    border: 1px solid rgba(93, 169, 255, 0.12);
    color: var(--accent-deep);
    flex-shrink: 0;
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease, background-color 0.24s ease;
}

.icon-badge--soft {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.06);
    color: var(--text-light);
}

.icon-badge--dark {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.12);
    color: var(--text-light);
}

.icon-badge--small {
    width: 2.3rem;
    height: 2.3rem;
    border-radius: 0.9rem;
}

.icon-badge__svg {
    display: inline-flex;
}

.icon-badge svg {
    width: 1.14rem;
    height: 1.14rem;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.85;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.info-card,
.icon-card,
.benefit-card,
.category-card,
.promo-panel,
.detail-plan,
.offer-card,
.contact-method,
.footer-contact {
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    background: var(--bg-white);
    box-shadow: var(--shadow-card);
    transition:
        transform 0.24s ease,
        box-shadow 0.24s ease,
        border-color 0.24s ease,
        background-color 0.24s ease;
}

.info-card {
    padding: 1.55rem;
    position: relative;
    overflow: hidden;
    display: grid;
    align-content: start;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(249, 251, 254, 0.98) 100%);
}

.info-card--dark {
    background: linear-gradient(180deg, #10213a 0%, #15304f 100%);
    border-color: var(--border-dark);
    color: var(--text-light);
    box-shadow: var(--shadow-dark);
}

.page--home .page-hero__aside .info-card::after {
    content: "";
    position: absolute;
    right: -1.4rem;
    bottom: -1.1rem;
    width: 10.5rem;
    height: 10.5rem;
    background: url("../img/site/brand-glow.svg") center / cover no-repeat;
    opacity: 0.14;
    filter: blur(16px);
    mix-blend-mode: screen;
    pointer-events: none;
}

.page--home .page-hero__aside .info-card > * {
    position: relative;
    z-index: 1;
}

.info-card__eyebrow {
    display: inline-flex;
    color: #6b89ae;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.info-card--dark .info-card__eyebrow {
    color: rgba(220, 232, 255, 0.72);
}

.info-card__title {
    margin: 0.75rem 0 0.55rem;
    color: var(--text-main);
    font-size: var(--text-xl);
    line-height: 1.18;
    letter-spacing: -0.03em;
    overflow-wrap: anywhere;
}

.info-card__text {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.96rem;
    line-height: 1.68;
}

.info-card--dark .info-card__title {
    color: var(--text-white);
}

.info-card--dark .info-card__text {
    color: rgba(220, 232, 255, 0.82);
}

.feature-list {
    display: grid;
    gap: 0;
    padding: 0;
    margin: 1rem 0 0;
    list-style: none;
}

.page--home .page-hero__aside .feature-list {
    margin-top: 0.85rem;
}

.feature-list li {
    position: relative;
    padding: 0.8rem 0;
    color: var(--text-muted);
    font-size: 0.93rem;
    line-height: 1.6;
}

.feature-list li + li {
    border-top: 1px solid rgba(15, 35, 64, 0.08);
}

.feature-list li::before {
    display: none;
}

.feature-list--light li {
    color: rgba(220, 232, 255, 0.84);
}

.feature-list--light li + li {
    border-top-color: rgba(255, 255, 255, 0.08);
}

.card-grid {
    display: grid;
    gap: 1rem;
    align-items: stretch;
    grid-auto-rows: 1fr;
}

.card-grid--2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card-grid--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card-grid--4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.icon-card,
.benefit-card,
.promo-panel {
    display: block;
    padding: 1.45rem;
    height: 100%;
}

.icon-card .icon-badge,
.category-card .icon-badge,
.promo-panel .icon-badge,
.hero-stat .icon-badge {
    margin-inline: 0;
}

.icon-card {
    display: grid;
    align-content: start;
    gap: 0.45rem;
    text-align: left;
}

.benefit-card {
    display: grid;
    align-content: start;
    gap: 0.75rem;
    padding: 1.55rem;
    text-align: left;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.benefit-card__media {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    justify-self: center;
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    background: linear-gradient(180deg, rgba(93, 169, 255, 0.08) 0%, rgba(93, 169, 255, 0.02) 100%);
    border: 1px solid rgba(93, 169, 255, 0.12);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.benefit-card__media img {
    width: 2.8rem;
    height: 2.8rem;
    object-fit: contain;
    object-position: center center;
    margin: auto;
}

.icon-card--link,
.info-card,
.promo-panel,
.benefit-card,
.offer-card {
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.info-card:hover,
.info-card:focus-within,
.icon-card--link:hover,
.benefit-card:hover,
.promo-panel:hover,
.contact-method:hover,
.footer-contact:hover,
.offer-card:hover,
.offer-card:focus-within,
.detail-plan:hover,
.detail-plan:focus-within {
    transform: translateY(-2px);
    box-shadow: 0 24px 48px rgba(10, 24, 41, 0.1);
    border-color: rgba(93, 169, 255, 0.18);
}

.icon-card--link:hover .icon-badge,
.icon-card--link:focus-visible .icon-badge,
.info-card:hover .icon-badge,
.promo-panel:hover .icon-badge,
.benefit-card:hover .benefit-card__media,
.contact-method:hover .icon-badge,
.footer-contact:hover .icon-badge,
.hero-stat:hover .icon-badge,
.offer-card:hover .plan-badge,
.offer-card:focus-within .plan-badge,
.detail-plan:hover .plan-badge,
.detail-plan:focus-within .plan-badge {
    transform: translateY(-1px) scale(1.03);
    box-shadow: 0 10px 20px rgba(45, 104, 200, 0.12);
}

.icon-card--dark {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--border-dark);
    box-shadow: var(--shadow-dark);
}

.icon-card__title,
.benefit-card__title,
.category-card__title,
.promo-panel__title,
.detail-plan__title {
    margin: 0.3rem 0 0.15rem;
    font-size: 1.08rem;
    line-height: 1.26;
    letter-spacing: -0.03em;
}

.icon-card__text,
.benefit-card__text,
.category-card__text,
.promo-panel__text,
.detail-plan__description,
.site-footer__lead {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.68;
}

.icon-card--dark .icon-card__title,
.icon-card--dark .icon-card__text {
    color: var(--text-white);
}

.icon-card--dark .icon-card__text {
    color: rgba(220, 232, 255, 0.8);
}

.benefit-card__title {
    margin: 0.05rem 0 0;
}

.benefit-card__text {
    margin: 0;
}

.category-card {
    display: grid;
    align-content: start;
    justify-items: center;
    gap: 0.95rem;
    padding: 1.8rem;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    text-align: center;
}

.category-card__brand {
    position: relative;
    display: inline-grid;
    place-items: center;
    width: 4.2rem;
    height: 4.2rem;
    border-radius: 1rem;
    overflow: hidden;
    isolation: isolate;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(244, 248, 253, 0.92) 100%);
    border: 1px solid rgba(93, 169, 255, 0.12);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72), 0 16px 28px rgba(14, 34, 61, 0.06);
}

.category-card__brand::after {
    content: "";
    position: absolute;
    inset: -18%;
    background: url("../img/site/brand-glow.svg") center / cover no-repeat;
    opacity: 0.08;
    filter: blur(20px);
    mix-blend-mode: screen;
}

.category-card__brand--dark {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, rgba(28, 61, 105, 0.42) 100%);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 16px 28px rgba(4, 13, 25, 0.18);
}

.category-card__brand-image {
    position: relative;
    z-index: 1;
    width: 2.6rem;
    height: 2.6rem;
    object-fit: contain;
    object-position: center center;
    margin: auto;
}

.category-card__benefits {
    width: 100%;
    display: grid;
    gap: 0.55rem;
    margin-top: 0.1rem;
}

.category-card__benefit {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 3rem;
    padding: 0.78rem 0.95rem;
    border-radius: 0.9rem;
    background: rgba(15, 35, 64, 0.03);
    border: 1px solid rgba(15, 35, 64, 0.06);
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.55;
    text-align: center;
}

.category-card__benefits--dark .category-card__benefit {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.1);
    color: rgba(220, 232, 255, 0.86);
}

.category-card--dark {
    background: linear-gradient(180deg, #0f2442 0%, #17345e 100%);
    border-color: var(--border-dark);
    box-shadow: var(--shadow-dark);
}

.category-card--dark .category-card__title,
.category-card--dark .category-card__text {
    color: var(--text-white);
}

.category-card--dark .category-card__text {
    color: rgba(220, 232, 255, 0.82);
}

.category-card .button,
.detail-plan .button {
    margin-top: auto;
}

.split-panel {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(19rem, 0.92fr);
    gap: 1.25rem;
    align-items: stretch;
}

.split-panel__content,
.split-panel__aside {
    display: grid;
}

.contact-methods {
    display: grid;
    gap: 0.95rem;
    margin-top: 1.35rem;
}

.contact-method,
.footer-contact {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 1.05rem 1.1rem;
}

.contact-method__body,
.footer-contact__body {
    display: grid;
    gap: 0.18rem;
    min-width: 0;
}

.contact-method__value,
.footer-contact__value {
    display: inline-flex;
    align-items: center;
    gap: 0.38rem;
    min-width: 0;
}

.contact-method__value-icon,
.footer-contact__value-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 0.95rem;
    height: 0.95rem;
    color: var(--accent);
    flex-shrink: 0;
}

.contact-method__body strong,
.footer-contact__body strong {
    color: var(--text-main);
    font-size: 0.94rem;
    line-height: 1.35;
}

.contact-method__body span,
.footer-contact__body span {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.5;
    overflow-wrap: anywhere;
}

.contact-method__body small,
.footer-contact__body small {
    color: var(--text-muted);
    font-size: 0.78rem;
    line-height: 1.5;
    overflow-wrap: anywhere;
}

.stacked-actions {
    margin-top: 1.4rem;
    flex-direction: column;
}

.stacked-actions--single {
    align-items: center;
}

.contact-card__aside-card {
    height: 100%;
    align-content: start;
}

.contact-card__note {
    margin: 0.95rem 0 0;
    color: rgba(220, 232, 255, 0.74);
    font-size: 0.88rem;
    line-height: 1.55;
    text-align: center;
}

.contact-card__details {
    display: grid;
    gap: 0.7rem;
    margin-top: 1rem;
}

.contact-card__details-title {
    margin: 0;
    color: var(--text-white);
    font-size: 0.84rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.contact-card__details-list {
    display: grid;
    gap: 0.65rem;
}

.contact-card__detail-item {
    display: grid;
    gap: 0.28rem;
    padding: 0.88rem 0.95rem;
    border-radius: 0.95rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
}

.contact-card__detail-item strong {
    color: var(--text-white);
    font-size: 0.9rem;
    line-height: 1.35;
}

.contact-card__detail-item span {
    color: rgba(220, 232, 255, 0.74);
    font-size: 0.84rem;
    line-height: 1.52;
}

.contact-card__primary-action {
    min-width: min(100%, 16rem);
}

.promo-panel {
    height: 100%;
}

.promo-panel__title {
    color: var(--text-main);
}

.media-card-grid {
    display: grid;
    gap: 1.2rem;
    align-items: stretch;
    grid-auto-rows: 1fr;
}

.media-card-grid--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.media-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 1.4rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    box-shadow: var(--shadow-card);
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.media-card:hover,
.media-card:focus-visible {
    transform: translateY(-2px);
    border-color: rgba(93, 169, 255, 0.18);
    box-shadow: 0 24px 48px rgba(10, 24, 41, 0.1);
}

.media-card__art {
    display: grid;
    place-items: center;
    min-height: 10.5rem;
    padding: 0.85rem;
    border-radius: calc(var(--radius-md) + 0.1rem);
    background:
        radial-gradient(circle at 30% 20%, rgba(71, 168, 255, 0.16), transparent 30%),
        linear-gradient(180deg, rgba(9, 25, 49, 0.02) 0%, rgba(9, 25, 49, 0.06) 100%);
}

.media-card__art img {
    width: min(100%, 9rem);
    height: min(100%, 9rem);
    object-fit: contain;
    object-position: center center;
    justify-self: center;
    align-self: center;
    margin: auto;
    transition: transform 0.3s ease;
}

.media-card:hover .media-card__art img,
.media-card:focus-visible .media-card__art img {
    transform: scale(1.04);
}

.media-card__body {
    display: grid;
    gap: 0.6rem;
    margin-top: 1rem;
    text-align: left;
}

.media-card__title,
.brand-panel__title,
.mini-benefit__title {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.24;
    letter-spacing: -0.025em;
    color: var(--text-main);
}

.media-card__text,
.brand-panel__text,
.mini-benefit__text {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.58;
}

.promo-timer-section {
    padding-top: 2rem;
}

.promo-timer-panel {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) auto;
    gap: 1.5rem;
    align-items: center;
    padding: 1.7rem 1.85rem;
    border-radius: calc(var(--radius-lg) + 0.1rem);
    border: 1px solid var(--border-light);
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    box-shadow: var(--shadow-card);
}

.promo-timer__content {
    max-width: 34rem;
}

.promo-timer__title {
    margin: 0.95rem 0 0.55rem;
    color: var(--text-main);
    font-size: clamp(1.35rem, 2.4vw, 2.1rem);
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.promo-timer__text {
    margin: 0;
    max-width: 32rem;
    color: var(--text-muted);
    font-size: 0.98rem;
    line-height: 1.68;
}

.promo-timer__stage {
    display: grid;
    gap: 0.85rem;
    justify-items: end;
}

.promo-timer__items {
    display: grid;
    grid-template-columns: repeat(4, minmax(5.2rem, 1fr));
    gap: 0.75rem;
}

.promo-timer__item {
    display: grid;
    gap: 0.35rem;
    min-width: 5.2rem;
    padding: 0.95rem 0.85rem;
    border-radius: 1rem;
    border: 1px solid rgba(15, 35, 64, 0.08);
    background: rgba(15, 35, 64, 0.03);
    text-align: center;
}

.promo-timer__item strong {
    color: var(--text-main);
    font-size: 1.75rem;
    line-height: 1;
    letter-spacing: -0.06em;
}

.promo-timer__item span {
    color: #6a88ad;
    font-size: 0.74rem;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.promo-timer__meta {
    margin: 0;
    max-width: 24rem;
    color: var(--text-muted);
    font-size: 0.82rem;
    line-height: 1.55;
    text-align: right;
}

.promo-timer-panel.is-finished .promo-timer__item {
    border-color: rgba(93, 169, 255, 0.16);
    background: rgba(93, 169, 255, 0.05);
}

.advantages-showcase {
    display: grid;
    gap: 1rem;
    margin-top: 1.25rem;
}

.brand-panel {
    display: grid;
    grid-template-columns: minmax(16rem, 0.9fr) minmax(0, 1.1fr);
    gap: 1.35rem;
    padding: 1.45rem;
    border-radius: calc(var(--radius-lg) + 0.15rem);
    border: 1px solid var(--border-light);
    background: linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
    box-shadow: var(--shadow-card);
}

.brand-panel__visual {
    display: grid;
    place-items: center;
    padding: 1rem;
    border-radius: var(--radius-md);
    background:
        radial-gradient(circle at top left, rgba(71, 168, 255, 0.18), transparent 34%),
        linear-gradient(180deg, rgba(11, 27, 51, 0.92) 0%, rgba(13, 33, 59, 0.96) 100%);
    overflow: hidden;
}

.brand-panel__visual img {
    width: 100%;
    max-width: 22rem;
    height: auto;
    object-fit: contain;
    object-position: center center;
    justify-self: center;
    margin-inline: auto;
    animation: floatGlow 12s ease-in-out infinite;
}

.brand-panel__body {
    display: grid;
    align-content: start;
    gap: 0.7rem;
}

.mini-benefit-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.9rem;
    align-items: stretch;
    grid-auto-rows: 1fr;
}

.mini-benefit {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    padding: 1rem 1.05rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow-soft);
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.mini-benefit:hover {
    transform: translateY(-1px);
    border-color: rgba(93, 169, 255, 0.16);
    box-shadow: 0 16px 34px rgba(10, 24, 41, 0.08);
}

.mini-benefit__icon {
    width: 3.15rem;
    height: 3.15rem;
    object-fit: contain;
    object-position: center center;
    align-self: center;
    flex-shrink: 0;
}

.mini-benefit__body {
    display: grid;
    gap: 0.35rem;
}

.mini-benefit__title {
    font-size: 0.96rem;
}

.mini-benefit__text {
    font-size: 0.9rem;
    line-height: 1.55;
}

.offer-grid {
    display: grid;
    gap: 1rem;
    align-items: stretch;
    grid-auto-rows: 1fr;
}

.offer-grid--2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.offer-grid--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.offer-grid--4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.offer-card {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    padding: 1.45rem;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.offer-card::before,
.offer-card::after {
    content: "";
    position: absolute;
    pointer-events: none;
}

.offer-card::before {
    content: none;
}

.offer-card::after {
    left: auto;
    right: -2rem;
    top: -1.2rem;
    width: 8.5rem;
    height: 8.5rem;
    background: var(--offer-glow, url("../img/site/brand-glow.svg")) center / cover no-repeat;
    opacity: 0.08;
    filter: blur(22px);
    mix-blend-mode: screen;
    transform: rotate(-8deg);
    animation: offerGlowFloat 13s ease-in-out infinite;
}

.offer-card__content {
    position: relative;
    z-index: 1;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    gap: 1rem;
}

.offer-card__header {
    display: grid;
    gap: 0.6rem;
}

.offer-card__topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.55rem;
    flex-wrap: wrap;
}

.offer-card__price-prefix {
    color: var(--accent-deep);
    font-size: 0.78rem;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.offer-card__title {
    margin: 0;
    color: var(--text-main);
    font-size: 1.16rem;
    line-height: 1.18;
    letter-spacing: -0.03em;
}

.offer-card__summary {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.58;
}

.offer-card__pricing {
    padding: 0.95rem 1rem;
    border-radius: calc(var(--radius-md) - 0.1rem);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(246, 248, 251, 0.96) 100%);
    border: 1px solid rgba(15, 35, 64, 0.08);
    transition: transform 0.24s ease, box-shadow 0.24s ease, background-color 0.24s ease, border-color 0.24s ease;
}

.offer-card:hover .offer-card__pricing,
.offer-card:focus-within .offer-card__pricing {
    transform: translateY(-1px);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(246, 248, 251, 1) 100%);
    border-color: rgba(93, 169, 255, 0.14);
    box-shadow: 0 14px 26px rgba(10, 24, 41, 0.06);
}

.offer-card__price-row {
    display: flex;
    align-items: flex-end;
    gap: 0.35rem;
    flex-wrap: wrap;
}

.offer-card__currency {
    color: var(--accent-deep);
    font-size: 1rem;
    font-weight: 800;
    line-height: 1;
}

.offer-card__price {
    color: var(--text-main);
    font-size: 2.12rem;
    line-height: 1;
    letter-spacing: -0.05em;
}

.offer-card__period {
    color: var(--text-muted);
    font-size: 0.88rem;
    font-weight: 700;
    line-height: 1.35;
}

.offer-card__annual {
    display: grid;
    gap: 0.18rem;
    margin: 0.6rem 0 0;
    color: var(--text-main);
    font-size: 0.84rem;
    line-height: 1.45;
}

.offer-card__annual span {
    color: var(--text-muted);
}

.offer-card__annual strong {
    color: var(--text-main);
}

.offer-card__spec-list {
    display: grid;
    gap: 0.45rem;
}

.offer-card__spec {
    display: flex;
    align-items: center;
    min-height: 2.4rem;
    width: 100%;
    padding: 0.55rem 0.75rem;
    border-radius: 0.95rem;
    background: rgba(15, 35, 64, 0.03);
    border: 1px solid rgba(15, 35, 64, 0.06);
    color: var(--text-main);
    font-size: 0.8rem;
    font-weight: 700;
    line-height: 1.4;
}

.offer-card__fit {
    display: grid;
    gap: 0.55rem;
}

.offer-card__fit-label {
    color: #6a88ad;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.offer-card__fit-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.offer-card__fit-item {
    display: inline-flex;
    align-items: center;
    min-height: 2rem;
    padding: 0.38rem 0.62rem;
    border-radius: 999px;
    background: rgba(15, 35, 64, 0.04);
    border: 1px solid rgba(15, 35, 64, 0.08);
    color: var(--text-main);
    font-size: 0.76rem;
    font-weight: 700;
    line-height: 1.35;
}

.offer-card__feature-list {
    display: grid;
    gap: 0;
    padding: 0;
    margin: 0;
    list-style: none;
}

.offer-card__feature-list li {
    position: relative;
    padding: 0.72rem 0;
    color: var(--text-muted);
    font-size: 0.89rem;
    line-height: 1.58;
}

.offer-card__feature-list li + li {
    border-top: 1px solid rgba(15, 35, 64, 0.08);
}

.offer-card__feature-list li::before {
    display: none;
}

.offer-card__note {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.84rem;
    line-height: 1.5;
}

.offer-card__actions {
    margin-top: auto;
    display: flex;
}

.offer-card__actions .button {
    width: 100%;
    margin-top: 0;
}

.offer-card--dark {
    background: linear-gradient(180deg, #0e1f37 0%, #142b49 100%);
    border-color: var(--border-dark);
    box-shadow: var(--shadow-dark);
}

.offer-card--dark .offer-card__title,
.offer-card--dark .offer-card__price,
.offer-card--dark .offer-card__annual strong {
    color: var(--text-white);
}

.offer-card--dark .offer-card__summary,
.offer-card--dark .offer-card__period,
.offer-card--dark .offer-card__annual span,
.offer-card--dark .offer-card__note,
.offer-card--dark .offer-card__feature-list li {
    color: rgba(220, 232, 255, 0.82);
}

.offer-card--dark .offer-card__price-prefix {
    color: var(--accent-strong);
}

.offer-card--dark .plan-badge {
    background: rgba(255, 255, 255, 0.06);
    color: var(--accent-strong);
}

.offer-card--dark .offer-card__pricing {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.08);
}

.offer-card--dark:hover .offer-card__pricing,
.offer-card--dark:focus-within .offer-card__pricing {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(157, 216, 255, 0.16);
    box-shadow: 0 14px 26px rgba(4, 13, 25, 0.18);
}

.offer-card--dark:hover .offer-card__price,
.offer-card--dark:focus-within .offer-card__price,
.offer-card--dark:hover .offer-card__annual strong,
.offer-card--dark:focus-within .offer-card__annual strong {
    color: var(--text-white);
}

.offer-card--dark .offer-card__spec {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.08);
    color: var(--text-white);
}

.offer-card--dark .offer-card__fit-label {
    color: rgba(220, 232, 255, 0.74);
}

.offer-card--dark .offer-card__fit-item {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.08);
    color: var(--text-white);
}

.offer-card--dark .offer-card__feature-list li + li {
    border-top-color: rgba(255, 255, 255, 0.08);
}

.section--plans {
    padding: 4rem 0 4.5rem;
}

.section--plans .section-heading {
    margin-bottom: 1.5rem;
}

.plan-detail-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.9rem;
    align-items: stretch;
}

.detail-plan {
    padding: 1.2rem;
    background: linear-gradient(180deg, #ffffff 0%, #f2f7ff 100%);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.detail-plan--dark {
    background: linear-gradient(180deg, #102542 0%, #16335d 100%);
    border-color: var(--border-dark);
    color: var(--text-white);
    box-shadow: var(--shadow-dark);
}

.plan-badge {
    display: inline-flex;
    padding: 0.38rem 0.72rem;
    border-radius: 999px;
    background: rgba(15, 35, 64, 0.05);
    border: 1px solid rgba(15, 35, 64, 0.08);
    color: var(--accent-deep);
    font-size: var(--text-xs);
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: transform 0.24s ease, box-shadow 0.24s ease, background-color 0.24s ease;
}

.detail-plan--dark .plan-badge {
    background: rgba(255, 255, 255, 0.08);
    color: var(--accent-strong);
}

.detail-plan__header {
    display: grid;
    gap: 0.45rem;
}

.detail-plan__topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.45rem;
    flex-wrap: wrap;
}

.detail-plan__perk {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--text-muted);
}

.detail-plan__price {
    display: flex;
    align-items: flex-end;
    gap: 0.3rem;
}

.detail-plan__price span,
.detail-plan__price small {
    font-weight: 700;
    opacity: 0.72;
    font-size: 0.8rem;
}

.detail-plan__price strong {
    font-size: 1.68rem;
    line-height: 1;
    letter-spacing: -0.05em;
}

.detail-plan__description {
    margin: 0;
    min-height: 0;
    font-size: 0.89rem;
    line-height: 1.48;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.detail-plan__spec-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem;
    margin-top: 0.85rem;
}

.detail-plan__spec {
    display: grid;
    place-items: center;
    min-height: 2.95rem;
    padding: 0.55rem 0.5rem;
    border-radius: var(--radius-sm);
    background: rgba(71, 168, 255, 0.06);
    border: 1px solid rgba(71, 168, 255, 0.09);
    text-align: center;
    font-size: 0.79rem;
    font-weight: 700;
    line-height: 1.2;
}

.detail-plan__fit {
    margin-top: 0.75rem;
}

.detail-plan__fit h4 {
    margin: 0;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.detail-plan__fit-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    padding: 0;
    margin: 0.5rem 0 0;
    list-style: none;
}

.detail-plan__fit-list li {
    padding: 0.34rem 0.54rem;
    border-radius: 999px;
    background: rgba(19, 40, 72, 0.06);
    border: 1px solid rgba(19, 40, 72, 0.08);
    color: var(--text-main);
    font-size: 0.73rem;
    line-height: 1.25;
}

.detail-plan__hint {
    margin: 0.72rem 0 0;
    color: var(--text-muted);
    font-size: 0.82rem;
    line-height: 1.45;
}

.detail-plan--dark .detail-plan__description,
.detail-plan--dark .detail-plan__perk,
.detail-plan--dark .detail-plan__hint,
.detail-plan--dark .detail-plan__fit h4 {
    color: rgba(220, 232, 255, 0.84);
}

.detail-plan--dark .detail-plan__spec {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.08);
    color: var(--text-white);
}

.detail-plan--dark .detail-plan__fit-list li {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.08);
    color: var(--text-white);
}

.detail-plan__actions {
    display: flex;
    justify-content: center;
    margin-top: auto;
    padding-top: 0.85rem;
}

.detail-plan .button {
    min-width: 0;
    margin-top: 0;
    min-width: 12rem;
    padding-inline: 0.95rem;
    font-size: 0.84rem;
}

.cta-banner {
    display: grid;
    position: relative;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 1.25rem;
    align-items: center;
    padding: 2rem 2.05rem;
    border-radius: calc(var(--radius-lg) + 0.15rem);
    background: linear-gradient(135deg, #0e1f37 0%, #132b49 58%, #18406f 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-white);
    box-shadow: var(--shadow-dark);
    overflow: hidden;
    isolation: isolate;
}

.cta-banner::before,
.cta-banner::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
}

.cta-banner::before {
    top: -6rem;
    right: -4rem;
    width: 18rem;
    height: 18rem;
    background: radial-gradient(circle, rgba(121, 184, 255, 0.2) 0%, transparent 68%);
    animation: ambientOrb 18s ease-in-out infinite;
}

.cta-banner::after {
    left: -5rem;
    bottom: -7rem;
    width: 16rem;
    height: 16rem;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    animation: ambientOrb 22s ease-in-out infinite reverse;
}

.cta-banner > * {
    position: relative;
    z-index: 1;
}

.cta-banner__note {
    grid-column: 1 / -1;
    margin: -0.3rem 0 0;
    color: rgba(220, 232, 255, 0.66);
    font-size: 0.84rem;
    line-height: 1.6;
}

.faq-list {
    display: grid;
    gap: 0.8rem;
}

.faq-item {
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    background: rgba(255, 255, 255, 0.97);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.faq-item:hover {
    transform: translateY(-1px);
    border-color: rgba(93, 169, 255, 0.14);
    box-shadow: 0 18px 36px rgba(10, 24, 41, 0.06);
}

.faq-item[open] {
    border-color: rgba(93, 169, 255, 0.16);
    box-shadow: 0 20px 40px rgba(10, 24, 41, 0.08);
}

.faq-item__question {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.08rem 1.2rem;
    cursor: pointer;
    list-style: none;
    color: var(--text-main);
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.35;
    transition: color 0.22s ease, background-color 0.22s ease;
}

.faq-item:hover .faq-item__question {
    background: rgba(93, 169, 255, 0.03);
    color: var(--accent-deep);
}

.faq-item__question::-webkit-details-marker {
    display: none;
}

.faq-item__question::after {
    content: "+";
    flex-shrink: 0;
    color: var(--accent-deep);
    font-size: 1.15rem;
    line-height: 1;
}

.faq-item[open] .faq-item__question::after {
    content: "-";
}

.faq-item__answer {
    padding: 0 1.2rem 1.1rem;
}

.faq-item__answer p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.96rem;
    line-height: 1.65;
}

.legal-document {
    padding: 1.8rem 1.85rem;
    border-radius: calc(var(--radius-lg) + 0.15rem);
    border: 1px solid var(--border-light);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(249, 251, 254, 0.98) 100%);
    box-shadow: var(--shadow-card);
}

.legal-document__intro {
    display: grid;
    gap: 0.45rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-light);
}

.legal-document__meta {
    margin: 0;
    color: var(--accent-deep);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.legal-document__summary {
    margin: 0;
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.65;
}

.legal-document__toc {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-top: 1rem;
}

.legal-document__toc-link {
    display: inline-flex;
    align-items: center;
    min-height: 2.2rem;
    padding: 0.5rem 0.75rem;
    border-radius: 999px;
    background: rgba(15, 35, 64, 0.04);
    border: 1px solid rgba(15, 35, 64, 0.08);
    color: var(--accent-deep);
    font-size: 0.84rem;
    font-weight: 700;
    line-height: 1.35;
    transition: background-color 0.22s ease, border-color 0.22s ease, color 0.22s ease;
}

.legal-document__toc-link:hover,
.legal-document__toc-link:focus-visible {
    color: var(--accent-deep);
    background: rgba(93, 169, 255, 0.08);
    border-color: rgba(93, 169, 255, 0.16);
}

.legal-document__block {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(17, 57, 114, 0.1);
}

.legal-document__title {
    margin: 0 0 0.75rem;
    color: var(--text-main);
    font-size: 1.08rem;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.legal-document__paragraph {
    margin: 0.55rem 0 0;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.68;
}

.site-footer {
    padding: 2.55rem 0 1.45rem;
    background: linear-gradient(180deg, #091523 0%, #081321 100%);
    color: var(--text-light);
}

.site-footer__top {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) repeat(3, minmax(0, 0.78fr));
    gap: 1.25rem;
    align-items: start;
}

.site-footer__brand {
    max-width: 26rem;
    min-width: 0;
}

.site-footer__nav {
    min-width: 0;
}

.brand--footer {
    margin-bottom: 1rem;
}

.site-footer__lead {
    color: rgba(220, 232, 255, 0.76);
    font-size: 0.94rem;
    line-height: 1.72;
}

.site-footer__title {
    color: var(--text-white);
    margin-top: 0;
    font-size: 0.9rem;
    line-height: 1.3;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.footer-list {
    display: grid;
    gap: 0.7rem;
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-list a {
    color: rgba(220, 232, 255, 0.74);
    font-size: 0.9rem;
    overflow-wrap: anywhere;
    transition: color 0.22s ease;
}

.footer-list a:hover {
    color: var(--text-white);
}

.site-footer__contacts {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.85rem;
    margin-top: 1.45rem;
    align-items: stretch;
}

.footer-contact {
    height: 100%;
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.06);
    box-shadow: none;
}

.footer-contact__body strong,
.footer-contact__body span {
    color: var(--text-light);
}

.footer-contact__body small {
    color: rgba(220, 232, 255, 0.58);
    font-size: 0.78rem;
    line-height: 1.5;
}

.site-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.45rem;
    padding-top: 1.15rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.site-footer__copyright {
    margin: 0;
    color: rgba(220, 232, 255, 0.6);
}

.site-footer__payments {
    display: grid;
    justify-items: end;
    gap: 0.45rem;
}

.site-footer__payments-label {
    color: rgba(220, 232, 255, 0.6);
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1.3;
}

.payment-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.payment-pill {
    padding: 0.45rem 0.75rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-white);
    font-size: 0.78rem;
    font-weight: 700;
}

.back-to-top {
    position: fixed;
    left: 1rem;
    bottom: 1rem;
    z-index: 18;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.85rem;
    min-height: 2.85rem;
    padding: 0.85rem 1rem;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(11, 27, 51, 0.96) 0%, rgba(28, 67, 117, 0.98) 100%);
    color: var(--text-white);
    box-shadow: var(--shadow-dark);
    font-size: 0.9rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(0.8rem);
    transition: opacity 0.22s ease, visibility 0.22s ease, transform 0.22s ease;
}

.back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.reveal-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal-in.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes heroDrift {
    from {
        transform: scale(1.05) translate3d(-0.8%, -0.6%, 0);
    }

    to {
        transform: scale(1.08) translate3d(1%, 0.8%, 0);
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroCubeFloat {
    0%,
    100% {
        transform: translateX(-50%) translateY(0) scale(1);
    }

    50% {
        transform: translateX(-50%) translateY(-6px) scale(1.02);
    }
}

@keyframes heroGlowPulse {
    0%,
    100% {
        transform: translateX(-50%) scale(1.04);
        opacity: 0.08;
    }

    50% {
        transform: translateX(-50%) scale(1.1);
        opacity: 0.14;
    }
}

@keyframes floatGlow {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes logoAuraPulse {
    0%,
    100% {
        transform: scale(1.08);
        opacity: 0.1;
    }

    50% {
        transform: scale(1.12);
        opacity: 0.16;
    }
}

@keyframes offerGlowFloat {
    0%,
    100% {
        transform: rotate(-8deg) translate3d(0, 0, 0);
        opacity: 0.08;
    }

    50% {
        transform: rotate(-4deg) translate3d(-6px, 5px, 0);
        opacity: 0.12;
    }
}

@keyframes ambientOrb {
    0%,
    100% {
        transform: translate3d(0, 0, 0) scale(1);
        opacity: 0.2;
    }

    50% {
        transform: translate3d(-8px, 8px, 0) scale(1.05);
        opacity: 0.28;
    }
}

@supports not (overflow: clip) {
    .site-main {
        overflow: hidden;
    }
}

@supports not ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
    .site-header {
        background: linear-gradient(180deg, #081321 0%, #10213a 100%);
    }

    .hero-stat {
        background: rgba(255, 255, 255, 0.06);
    }
}

@media (min-width: 1121px) {
    .page-hero--viewport {
        --page-hero-block-padding: var(--page-hero-block-padding-inner);
        padding-block: var(--page-hero-block-padding);
    }

    .page-hero--home.page-hero--viewport {
        --page-hero-block-padding: var(--page-hero-block-padding-home);
    }

    .page-hero--viewport .page-hero__grid {
        min-height: max(0px, calc(var(--first-screen-min-height) - (var(--page-hero-block-padding) * 2)));
        align-content: start;
    }

    .page-hero--viewport .page-hero__content {
        min-height: 100%;
    }

    .page-hero--viewport .page-hero__content-secondary {
        margin-top: auto;
        padding-top: 1.35rem;
    }
}

@media (max-width: 1120px) {
    .top-contact-list {
        display: none;
    }

    .site-header__topbar-inner {
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 0.75rem;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .brand--header-mobile {
        display: inline-flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.24rem;
    }

    .brand--header-desktop,
    .site-nav__desktop {
        display: none;
    }

    .site-header__nav-row {
        display: grid;
        grid-template-columns: auto auto;
        justify-content: space-between;
        padding-top: 0.2rem;
    }

    .site-header__mobile-shortcuts {
        display: inline-flex;
    }

    .site-nav--mobile {
        position: absolute;
        top: calc(100% + 0.35rem);
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 0.95rem;
        border-radius: var(--radius-md);
        background: linear-gradient(180deg, rgba(8, 19, 34, 0.99) 0%, rgba(12, 28, 49, 0.98) 100%);
        border: 1px solid rgba(255, 255, 255, 0.06);
        box-shadow: var(--shadow-dark);
    }

    .site-nav--mobile.is-open {
        display: flex;
    }

    .site-nav--mobile .site-nav__link {
        width: 100%;
        justify-content: flex-start;
        padding: 0.85rem 1rem 1.08rem;
    }

    .site-nav--mobile .site-nav__link::after {
        left: 1rem;
        right: 1rem;
        bottom: 0.55rem;
    }

    .site-nav__group--mobile > .site-nav__summary {
        width: 100%;
        justify-content: space-between;
    }

    .site-nav__group--mobile .site-nav__dropdown {
        position: static;
        margin-left: 0.35rem;
        padding: 0.22rem 0 0.28rem 0.9rem;
        border-left: 1px solid rgba(255, 255, 255, 0.08);
        box-shadow: none;
        background: none;
    }

    .site-nav__group--mobile .site-nav__dropdown-link {
        padding: 0.6rem 0.72rem;
    }

    .card-grid--4,
    .site-footer__contacts,
    .media-card-grid--3,
    .mini-benefit-grid,
    .offer-grid--4,
    .offer-grid--3,
    .plan-detail-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .page-hero__grid,
    .split-panel,
    .site-footer__top,
    .brand-panel {
        grid-template-columns: 1fr;
    }

    .site-footer__top {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1rem 0.95rem;
    }

    .site-footer__brand {
        grid-column: 1 / -1;
        max-width: none;
    }

    .site-footer__nav {
        min-height: 100%;
        padding: 1rem 1.05rem;
        border-radius: var(--radius-md);
        border: 1px solid rgba(255, 255, 255, 0.06);
        background: rgba(255, 255, 255, 0.03);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
    }

    .page-hero__content,
    .page-hero__aside {
        max-width: none;
    }

    .page-hero__content {
        justify-self: stretch;
    }

    .page-hero .button-row {
        width: 100%;
        justify-content: center;
    }

    .hero-stat-list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        width: 100%;
    }

    .hero-stat-stage {
        width: 100%;
    }
}

@media (min-width: 1121px) and (max-height: 760px) {
    .site-header__topbar {
        padding: 0.14rem 0 0.1rem;
    }

    .site-header__topbar-inner {
        min-height: 2.58rem;
    }

    .site-nav__desktop {
        gap: 0.72rem;
    }

    .site-nav__link {
        min-height: 1.92rem;
        padding: 0.4rem 0.6rem 0.48rem;
        font-size: 0.74rem;
    }

    .top-contact {
        font-size: 0.74rem;
    }

    .top-account-link {
        min-height: 1.82rem;
        padding-inline: 0.74rem;
        font-size: 0.73rem;
    }

    .brand--header-desktop .brand__mark-shell {
        width: 2.22rem;
        height: 2.22rem;
    }

    .brand--header-desktop .brand__logo--mark {
        width: 1.74rem;
        height: 1.74rem;
    }

    .brand--header-desktop::after {
        font-size: 0.46rem;
        letter-spacing: 0.11em;
        top: calc(100% + 0.04rem);
    }

    .page-hero--viewport {
        --page-hero-block-padding: clamp(0.92rem, 2vh, 1.5rem);
    }

    .page-hero__grid {
        gap: 1.45rem;
    }

    .page-hero--viewport .page-hero__content-secondary {
        padding-top: 1rem;
    }

    .hero-context-line {
        margin-bottom: 0.5rem;
    }

    .button-row {
        margin-top: 1.2rem;
    }
}

@media (max-width: 920px) {
    .site-header__topbar {
        padding: 0.22rem 0 0.16rem;
    }

    .site-header__topbar-inner {
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: center;
        justify-items: stretch;
        gap: 0.55rem;
    }

    .site-header .brand {
        justify-self: start;
    }

    .top-account-list {
        width: auto;
        justify-content: flex-end;
        flex-wrap: nowrap;
        gap: 0.4rem;
    }

    .site-header__actions {
        width: auto;
        justify-content: flex-end;
    }

    .top-account-link {
        min-height: 2.1rem;
        padding-inline: 0.78rem;
        font-size: 0.74rem;
    }

    .site-header__nav-row {
        min-height: 2.2rem;
        gap: 0.45rem;
        padding: 0.06rem 0 0.18rem;
    }

    .top-contact--icon {
        width: 1.95rem;
        height: 1.95rem;
        border-radius: 0.8rem;
    }

    .menu-toggle {
        width: 2.85rem;
        height: 2.85rem;
        padding: 0.62rem 0.55rem;
        border-radius: 0.95rem;
    }

    .card-grid--3 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .card-grid--2,
    .offer-grid--2,
    .cta-banner {
        grid-template-columns: 1fr;
    }

    .promo-timer-panel {
        grid-template-columns: 1fr;
    }

    .promo-timer__stage {
        justify-items: start;
    }

    .promo-timer__meta {
        max-width: none;
        text-align: left;
    }

    .hero-stat-list {
        grid-template-columns: 1fr;
    }

    .hero-stat-stage::before {
        width: min(100%, 18rem);
        height: 10rem;
    }

    .hero-stat-stage::after {
        width: 8.5rem;
        height: 8.5rem;
    }

    .site-footer__lead {
        max-width: none;
        font-size: 0.9rem;
        line-height: 1.62;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(var(--container), calc(100% - 1.1rem));
    }

    .container--wide {
        width: min(var(--container-wide), calc(100% - 1.1rem));
    }

    .section {
        padding: 4rem 0;
    }

    .page-hero--home {
        padding: 2.75rem 0 2.55rem;
    }

    .page-hero--inner {
        padding: 2.95rem 0 2.7rem;
    }

    .page-hero__title {
        font-size: clamp(2rem, 9vw, 2.9rem);
        line-height: 1.04;
    }

    .page-hero__lead,
    .section__lead {
        font-size: 0.97rem;
    }

    .section__kicker::before {
        width: 1rem;
    }

    .hero-context-line {
        gap: 0.38rem;
        margin-bottom: 0.45rem;
        max-width: 23rem;
        font-size: 0.76rem;
        line-height: 1.42;
    }

    .hero-context-line::before {
        width: 0.8rem;
    }

    .button-row,
    .cta-banner__actions {
        flex-direction: column;
    }

    .page-hero .button-row {
        align-items: stretch;
    }

    .button-row .button,
    .cta-banner__actions .button {
        width: 100%;
    }

    .button-row .hero-link {
        width: auto;
    }

    .card-grid--4,
    .card-grid--3,
    .card-grid--2,
    .media-card-grid--3,
    .mini-benefit-grid,
    .offer-grid--4,
    .offer-grid--3,
    .offer-grid--2,
    .plan-detail-grid {
        grid-template-columns: 1fr;
    }

    .site-footer {
        padding: 2.1rem 0 1.15rem;
    }

    .site-footer__top {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.95rem 0.8rem;
    }

    .brand--footer {
        margin-bottom: 0.75rem;
    }

    .site-footer__lead {
        font-size: 0.87rem;
        line-height: 1.58;
    }

    .site-footer__title {
        font-size: 0.82rem;
        letter-spacing: 0.02em;
    }

    .site-footer__nav {
        padding: 0.9rem 0.95rem;
        border-radius: 1rem;
    }

    .footer-list {
        gap: 0.52rem;
    }

    .footer-list a {
        font-size: 0.84rem;
    }

    .site-footer__contacts {
        grid-template-columns: 1fr;
        gap: 0.7rem;
        margin-top: 1.05rem;
    }

    .footer-contact {
        padding: 0.95rem 1rem;
    }

    .footer-contact__body strong {
        font-size: 0.9rem;
    }

    .footer-contact__body span {
        font-size: 0.88rem;
    }

    .footer-contact__body small {
        font-size: 0.75rem;
    }

    .site-footer__bottom {
        align-items: flex-start;
        gap: 0.7rem;
        margin-top: 1.1rem;
        padding-top: 0.95rem;
    }

    .site-footer__payments {
        justify-items: start;
    }

    .site-header {
        border-bottom-color: rgba(119, 213, 255, 0.12);
    }

    .site-header__topbar {
        padding: 0.16rem 0 0.12rem;
    }

    .site-header__topbar-inner {
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 0.45rem;
    }

    .brand__mark-shell {
        width: 2.7rem;
        height: 2.7rem;
    }

    .brand__home-label {
        font-size: 0.5rem;
        letter-spacing: 0.12em;
    }

    .top-account-list {
        display: flex;
        width: auto;
        gap: 0.35rem;
    }

    .top-account-link {
        width: auto;
        min-width: 5.9rem;
        min-height: 2.02rem;
        padding-inline: 0.7rem;
        font-size: 0.72rem;
    }

    .site-header__nav-row {
        min-height: 2.05rem;
        padding: 0.04rem 0 0.14rem;
    }

    .site-header__mobile-shortcuts {
        gap: 0.3rem;
    }

    .top-contact--icon {
        width: 1.8rem;
        height: 1.8rem;
    }

    .menu-toggle {
        width: 2.7rem;
        height: 2.7rem;
        padding: 0.55rem 0.5rem;
    }

    .back-to-top {
        left: 0.75rem;
        bottom: 0.75rem;
    }

    .media-card__art {
        min-height: 8.5rem;
    }

    .icon-card,
    .benefit-card,
    .promo-panel,
    .media-card,
    .offer-card,
    .category-card {
        padding: 1.25rem;
    }

    .promo-timer-panel {
        padding: 1.25rem;
    }

    .promo-timer__items {
        width: 100%;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .promo-timer__item {
        min-width: 0;
    }

    .hero-stat-stage::before {
        width: min(100%, 15rem);
        height: 8.5rem;
        bottom: -1.2rem;
    }

    .hero-stat-stage::after {
        width: 6.75rem;
        height: 6.75rem;
        top: -0.25rem;
    }

    .detail-plan__actions {
        justify-content: stretch;
    }

    .detail-plan__actions .button {
        width: 100%;
    }

    .detail-plan__spec-list {
        grid-template-columns: 1fr 1fr;
    }

    .site-footer__bottom {
        align-items: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
