:root {
    --safe-top: env(safe-area-inset-top, 0px);
    --safe-right: env(safe-area-inset-right, 0px);
    --safe-bottom: env(safe-area-inset-bottom, 0px);
    --safe-left: env(safe-area-inset-left, 0px);
    --app-height: 100svh;
    --bg: #0f141c;
    --bg-strong: #19202b;
    --surface: rgba(255, 255, 255, 0.74);
    --surface-strong: rgba(255, 255, 255, 0.9);
    --surface-dark: #181d26;
    --ink: #141922;
    --ink-soft: #5a6472;
    --line: rgba(20, 25, 34, 0.1);
    --line-strong: rgba(20, 25, 34, 0.16);
    --accent: #db3f35;
    --accent-hover: #c8352c;
    --accent-soft: rgba(219, 63, 53, 0.12);
    --dark-btn: #1f2631;
    --dark-btn-hover: #171d27;
    --pill: rgba(255, 255, 255, 0.68);
    --shadow-soft: 0 18px 48px rgba(15, 21, 31, 0.08);
    --shadow-mid: 0 18px 40px rgba(15, 21, 31, 0.14);
    --shadow-glass: 0 12px 30px rgba(15, 21, 31, 0.08);
    --radius-lg: 32px;
    --radius-md: 24px;
    --radius-sm: 18px;
    --container: 1180px;
    --font: "Segoe UI Variable", "Segoe UI", "Trebuchet MS", sans-serif;
    --transition: 0.24s ease;
}

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

* {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

*::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(88px + var(--safe-top));
    overscroll-behavior-y: contain;
}

body {
    margin: 0;
    min-height: var(--app-height);
    font-family: var(--font);
    color: var(--ink);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -webkit-tap-highlight-color: transparent;
    background:
        radial-gradient(circle at top left, rgba(219, 63, 53, 0.16), transparent 20%),
        radial-gradient(circle at bottom right, rgba(68, 82, 103, 0.2), transparent 24%),
        linear-gradient(180deg, #0d1219 0%, #111823 42%, #151d29 100%);
}

body.body--menu-open {
    overflow: hidden;
}

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

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

button,
input {
    font: inherit;
}

a,
button,
input {
    touch-action: manipulation;
}

a:focus-visible,
button:focus-visible,
input:focus-visible {
    outline: 3px solid rgba(219, 63, 53, 0.32);
    outline-offset: 3px;
}

main {
    min-height: calc(var(--app-height) - var(--safe-top));
}

.container {
    width: min(100% - 32px, var(--container));
    margin: 0 auto;
    padding-left: max(0px, calc(var(--safe-left) * 0.35));
    padding-right: max(0px, calc(var(--safe-right) * 0.35));
}

.hidden {
    display: none !important;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 220;
    padding-top: var(--safe-top);
    background: rgba(13, 18, 25, 0.62);
    backdrop-filter: blur(20px) saturate(140%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.06);
}

.site-header__inner {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.site-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 0;
}

.site-logo__image {
    width: min(236px, 60vw);
    height: auto;
}

.site-nav {
    position: relative;
    z-index: 140;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    width: fit-content;
    max-width: calc(100% - 32px);
    margin: 14px auto 0;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    background: rgba(17, 23, 32, 0.72);
    backdrop-filter: blur(18px) saturate(150%);
    box-shadow: 0 16px 30px rgba(5, 9, 15, 0.2);
}

.site-nav__link {
    display: flex;
    align-items: center;
    min-height: 52px;
    padding: 0 16px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.9);
    font-weight: 800;
    transition: transform var(--transition), background var(--transition), color var(--transition);
}

.site-nav__link:hover,
.site-nav__link.is-active {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.12);
}

.site-header__backdrop {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 230;
    padding: 0;
    border: 0;
    background: rgba(4, 7, 12, 0.62);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
}

.app-main--tabs {
    padding: 16px 0 56px;
}

.app-main--tabs::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(circle at 20% 12%, rgba(219, 63, 53, 0.08), transparent 18%),
        radial-gradient(circle at 80% 74%, rgba(255, 255, 255, 0.04), transparent 18%);
    pointer-events: none;
}

.app-tabs,
.app-tabs__viewport {
    position: relative;
}

.app-screen {
    display: none;
    will-change: transform, opacity;
}

.app-screen.is-active,
.app-screen.is-entering-forward,
.app-screen.is-entering-backward,
.app-screen.is-leaving-forward,
.app-screen.is-leaving-backward {
    display: block;
}

.app-screen.is-leaving-forward,
.app-screen.is-leaving-backward {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.app-screen.is-entering-forward {
    animation: screenEnterForward 0.42s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.app-screen.is-entering-backward {
    animation: screenEnterBackward 0.42s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.app-screen.is-leaving-forward {
    animation: screenExitForward 0.34s ease both;
}

.app-screen.is-leaving-backward {
    animation: screenExitBackward 0.34s ease both;
}

.hero {
    position: relative;
    overflow: visible;
    min-height: 0;
    border-radius: 0;
    color: #fff;
    background: transparent;
    box-shadow: none;
}

.hero::before,
.hero::after,
.hero__bg-track,
.hero__overlay {
    display: none;
}

.hero__content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(var(--app-height) - 280px - var(--safe-top));
    padding: clamp(24px, 4vw, 46px) 0 28px;
}

.hero__copy {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.hero__badge,
.section-head__eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0 14px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 12px 24px rgba(7, 10, 16, 0.14);
    font-size: 0.84rem;
    font-weight: 800;
    letter-spacing: 0.01em;
}

.section-head__eyebrow {
    border-color: rgba(20, 25, 34, 0.08);
    background: rgba(255, 255, 255, 0.7);
    box-shadow: var(--shadow-glass);
    color: var(--ink);
}

.hero__title {
    margin: 18px 0 18px;
    font-size: clamp(3rem, 6vw, 5.1rem);
    line-height: 0.92;
    letter-spacing: -0.06em;
}

.hero__subtitle {
    margin: 0;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.08rem;
    line-height: 1.66;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.hero__actions--tabs {
    width: min(100%, 560px);
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hero__actions--tabs .btn {
    min-width: 0;
    width: 100%;
}

.hero__support {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 30px;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.hero-note {
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: space-between;
    min-height: 142px;
    padding: 22px 20px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 26px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(18px);
    box-shadow: 0 18px 32px rgba(7, 10, 16, 0.18);
}

.hero-note__title {
    margin: 0;
    font-size: clamp(1.12rem, 1.8vw, 1.42rem);
    font-weight: 900;
    line-height: 1.04;
    letter-spacing: -0.04em;
}

.hero-note__text {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.92rem;
    line-height: 1.5;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 20px;
    border: 1px solid transparent;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 800;
    text-align: center;
    transition: transform var(--transition), background var(--transition), color var(--transition), border-color var(--transition), box-shadow var(--transition);
}

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

.btn[disabled],
.btn.is-disabled {
    cursor: default;
    opacity: 0.7;
    transform: none;
    box-shadow: none;
}

.btn--primary {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 16px 32px rgba(219, 63, 53, 0.22);
}

.btn--primary:hover {
    background: var(--accent-hover);
}

.btn--secondary {
    background: var(--dark-btn);
    color: #fff;
    box-shadow: 0 16px 30px rgba(15, 21, 31, 0.16);
}

.btn--secondary:hover {
    background: var(--dark-btn-hover);
}

.btn--outline {
    border-color: rgba(20, 25, 34, 0.12);
    background: transparent;
    color: var(--ink);
}

.btn--outline:hover {
    background: rgba(20, 25, 34, 0.05);
}

.btn--light {
    background: rgba(20, 25, 34, 0.06);
    color: var(--ink);
}

.btn--light:hover {
    background: rgba(20, 25, 34, 0.1);
}

.btn--glass {
    border-color: rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.btn--glass:hover {
    background: rgba(255, 255, 255, 0.14);
}

.btn--small {
    min-height: 44px;
    padding: 0 16px;
    font-size: 0.92rem;
}

.app-panel {
    padding-top: 18px;
}

.app-panel__surface {
    padding: clamp(24px, 4vw, 36px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 34px;
    background:
        radial-gradient(circle at top right, rgba(219, 63, 53, 0.08), transparent 28%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(246, 248, 251, 0.82));
    backdrop-filter: blur(20px) saturate(160%);
    box-shadow: 0 22px 54px rgba(4, 7, 12, 0.22);
}

.app-panel__surface--accent {
    background:
        radial-gradient(circle at top right, rgba(219, 63, 53, 0.12), transparent 32%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.76));
}

.app-panel__head {
    margin-bottom: 28px;
}

.app-panel__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.section-head__title {
    margin: 12px 0 10px;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.03;
    letter-spacing: -0.05em;
}

.section-head {
    max-width: 720px;
}

.section-head__text {
    margin: 0;
    max-width: 62ch;
    color: var(--ink-soft);
    line-height: 1.72;
}

.program-rules {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 22px;
}

.program-rule {
    display: grid;
    gap: 8px;
    padding: 18px;
    border: 1px solid rgba(20, 25, 34, 0.08);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.62);
}

.program-rule strong {
    font-size: 1.5rem;
    line-height: 1;
    letter-spacing: -0.04em;
}

.program-rule span {
    color: var(--ink-soft);
}

.program-qualifier {
    margin-bottom: 24px;
    padding: 20px;
    border: 1px solid rgba(20, 25, 34, 0.08);
    border-radius: 24px;
    background: rgba(20, 25, 34, 0.03);
}

.program-qualifier__title {
    margin: 0 0 14px;
    font-size: 1rem;
}

.program-qualifier__list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.program-qualifier__item {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(20, 25, 34, 0.08);
    font-weight: 700;
}

.program-promo {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 14px;
    align-items: center;
    padding: 16px 18px;
    border: 1px solid rgba(20, 25, 34, 0.08);
    border-radius: 22px;
    background:
        radial-gradient(circle at top right, rgba(219, 63, 53, 0.08), transparent 32%),
        rgba(255, 255, 255, 0.68);
    box-shadow: 0 14px 32px rgba(15, 21, 31, 0.08);
}

.program-promo-list {
    display: grid;
    gap: 14px;
    margin-top: 18px;
}

.program-promo__title {
    margin: 0 0 4px;
    font-size: 0.98rem;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.program-promo__text {
    margin: 0;
    color: var(--ink-soft);
    font-size: 0.9rem;
    line-height: 1.56;
}

.status-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    align-items: end;
}

.status-card {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 18px;
    min-height: 100%;
    padding: 24px 22px 22px;
    border: 1px solid rgba(20, 25, 34, 0.08);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: var(--shadow-soft);
    transition: transform var(--transition), box-shadow var(--transition);
}

.status-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
}

.status-card--tier-1 {
    margin-top: 54px;
}

.status-card--tier-2 {
    margin-top: 28px;
}

.status-card--tier-3 {
    background:
        radial-gradient(circle at top right, rgba(38, 197, 98, 0.12), transparent 34%),
        rgba(255, 255, 255, 0.9);
    box-shadow: 0 24px 56px rgba(15, 21, 31, 0.18);
}

.status-card--tier-1::before {
    background: linear-gradient(90deg, #ff4d4d, #ff8d78);
}

.status-card--tier-2::before {
    background: linear-gradient(90deg, #e3a62f, #ffd86e);
}

.status-card--tier-3::before {
    background: linear-gradient(90deg, #16b85b, #60de92);
}

.status-card__stage {
    margin: 0;
    font-size: 1rem;
    font-weight: 900;
    line-height: 1.06;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.status-card__headline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    min-height: 134px;
    align-items: stretch;
    padding: 0;
    border: 1px solid rgba(20, 25, 34, 0.06);
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(20, 25, 34, 0.04), rgba(20, 25, 34, 0.015));
}

.status-card__headline::before {
    content: "";
    position: absolute;
    top: 18px;
    bottom: 18px;
    left: 50%;
    width: 1px;
    background: rgba(20, 25, 34, 0.08);
    transform: translateX(-50%);
}

.status-card__headline--single {
    grid-template-columns: 1fr;
}

.status-card__headline--single::before {
    display: none;
}

.status-card__half {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 8px;
    min-height: 134px;
    padding: 14px 16px 12px;
}

.status-card__half--main {
    position: relative;
    align-items: flex-start;
    text-align: left;
    padding-left: 14px;
    padding-right: 18px;
}

.status-card__half--season {
    align-items: flex-end;
    text-align: right;
    padding-left: 18px;
    padding-right: 14px;
}

.status-card__main {
    position: relative;
    z-index: 1;
    display: grid;
    justify-items: start;
    gap: 0;
    white-space: nowrap;
    font-size: clamp(2.12rem, 2.7vw, 3.05rem);
    font-weight: 900;
    line-height: 0.88;
    letter-spacing: -0.06em;
}

.status-card__main-prefix {
    position: absolute;
    top: 16px;
    left: 14px;
    z-index: 0;
    display: block;
    font-size: clamp(0.62rem, 0.82vw, 0.76rem);
    line-height: 1;
    font-weight: 500;
    letter-spacing: 0.12em;
    color: #ef4f49;
    opacity: 1;
    transform: translateY(-4px);
    text-transform: uppercase;
    pointer-events: none;
}

.status-card__main-value {
    display: block;
}

.status-card__connector {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 1;
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(20, 25, 34, 0.1);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 10px 18px rgba(15, 21, 31, 0.08);
    transform: translate(-50%, -50%);
    font-size: 0.92rem;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
}

.status-card__season {
    display: inline-flex;
    align-items: flex-start;
    justify-content: flex-end;
}

.status-card__season-value {
    display: inline-block;
    white-space: nowrap;
    font-size: clamp(2.12rem, 2.7vw, 3.05rem);
    font-weight: 900;
    line-height: 0.88;
    letter-spacing: -0.06em;
}

.status-card__caption {
    width: 100%;
    font-size: 0.8rem;
    line-height: 1.08;
    font-weight: 900;
    text-transform: uppercase;
    color: rgba(20, 25, 34, 0.74);
    text-align: inherit;
}

.status-card--tier-1 .status-card__stage,
.status-card--tier-1 .status-card__main,
.status-card--tier-1 .status-card__season-value {
    color: #ef4f49;
}

.status-card--tier-2 .status-card__stage,
.status-card--tier-2 .status-card__main,
.status-card--tier-2 .status-card__season-value {
    color: #cf961e;
}

.status-card--tier-3 .status-card__stage,
.status-card--tier-3 .status-card__main,
.status-card--tier-3 .status-card__season-value {
    color: #15b35a;
}

.status-card__list {
    margin: 0;
    padding: 0;
    list-style: none;
    color: var(--ink-soft);
    display: grid;
    gap: 10px;
}

.status-card__list li {
    position: relative;
    padding-left: 16px;
    line-height: 1.5;
}

.status-card__list li::before {
    content: "-";
    position: absolute;
    left: 0;
    top: 0;
    color: currentColor;
    font-weight: 900;
}

.status-card__conditions {
    margin: auto 0 0;
    padding-top: 14px;
    border-top: 1px solid rgba(20, 25, 34, 0.08);
    color: var(--ink-soft);
    font-size: 0.88rem;
    line-height: 1.58;
}

.service-list {
    display: grid;
    gap: 18px;
}

.service-card {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr) auto;
    gap: 18px;
    align-items: center;
    padding: 22px 24px;
    border: 1px solid rgba(20, 25, 34, 0.08);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: var(--shadow-soft);
    transition: transform var(--transition), box-shadow var(--transition);
}

.service-card::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.72), transparent);
}

.status-card:hover,
.service-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-mid);
}

.service-card--accent {
    background:
        radial-gradient(circle at top right, rgba(219, 63, 53, 0.12), transparent 34%),
        rgba(255, 255, 255, 0.86);
}

.service-card__eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(20, 25, 34, 0.08), rgba(20, 25, 34, 0.03));
    font-size: 1.15rem;
}

.service-card__title {
    margin: 0 0 6px;
    font-size: 1.24rem;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.service-card__body {
    min-width: 0;
}

.service-card__text {
    margin: 0;
    color: var(--ink-soft);
    line-height: 1.72;
}

.service-card__actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.service-card__actions .btn {
    min-width: 220px;
}

.objects-toolbar,
.objects-empty,
.legal-page__content {
    border: 1px solid rgba(20, 25, 34, 0.08);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: var(--shadow-soft);
}

.objects-toolbar {
    margin-bottom: 22px;
    padding: 22px;
}

.objects-toolbar__top {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 16px;
    align-items: end;
}

.objects-toolbar__result {
    margin: 18px 0 0;
    color: var(--ink-soft);
    font-weight: 800;
}

.search-field__label {
    display: block;
    margin-bottom: 10px;
    font-size: 0.92rem;
    font-weight: 800;
}

.search-field__control {
    position: relative;
}

.search-field__icon {
    position: absolute;
    left: 18px;
    top: 50%;
    width: 14px;
    height: 14px;
    border: 2px solid rgba(20, 25, 34, 0.28);
    border-radius: 50%;
    transform: translateY(-50%);
}

.search-field__icon::after {
    content: "";
    position: absolute;
    right: -6px;
    bottom: -5px;
    width: 7px;
    height: 2px;
    border-radius: 999px;
    background: rgba(20, 25, 34, 0.28);
    transform: rotate(45deg);
}

.input {
    width: 100%;
    min-height: 56px;
    padding: 0 18px 0 50px;
    font-size: 16px;
    border: 1px solid rgba(20, 25, 34, 0.12);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.94);
    color: var(--ink);
    outline: none;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.input::placeholder {
    color: rgba(90, 100, 114, 0.72);
}

.input:focus {
    border-color: rgba(219, 63, 53, 0.34);
    box-shadow: 0 0 0 4px rgba(219, 63, 53, 0.08);
}

.objects-list {
    display: grid;
    gap: 18px;
}

.object-card {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 18px;
    padding: 18px;
    border: 1px solid rgba(20, 25, 34, 0.08);
    border-radius: 30px;
    background:
        radial-gradient(circle at top right, rgba(219, 63, 53, 0.05), transparent 34%),
        rgba(255, 255, 255, 0.84);
    box-shadow: var(--shadow-soft);
    transition: transform var(--transition), box-shadow var(--transition);
}

.object-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-mid);
}

.object-card__media {
    position: relative;
    overflow: hidden;
    min-height: 220px;
    border-radius: 24px;
    background: linear-gradient(135deg, #212734, #3f4756);
}

.object-card__badges {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px;
}

.object-card__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(219, 63, 53, 0.96);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    box-shadow: 0 12px 24px rgba(15, 21, 31, 0.22);
    transition: transform var(--transition), background var(--transition), box-shadow var(--transition);
}

.object-card__badge:hover {
    transform: translateY(-1px);
    background: var(--accent-hover);
    box-shadow: 0 16px 28px rgba(15, 21, 31, 0.26);
}

.object-card__media img {
    width: 100%;
    height: 100%;
    min-height: 220px;
    object-fit: cover;
}

.object-card__body {
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-width: 0;
}

.object-card__content {
    display: grid;
    gap: 8px;
}

.object-card__title {
    margin: 0;
    font-size: 1.38rem;
    line-height: 1.1;
    letter-spacing: -0.04em;
}

.object-card__address,
.object-card__promo {
    margin: 0;
}

.object-card__address {
    color: var(--ink-soft);
}

.object-card__promo {
    font-weight: 700;
    color: var(--accent);
}

.object-card__call {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    padding: 14px 18px;
    border-radius: 22px;
    background: linear-gradient(180deg, #e2463d, #d53c32);
    color: #fff;
    box-shadow: 0 18px 30px rgba(219, 63, 53, 0.18);
}

.object-card__call-value {
    font-size: 1.02rem;
    font-weight: 900;
    letter-spacing: -0.02em;
}

.object-card__service-row,
.object-card__map-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.object-card__service-link,
.object-card__map-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 14px;
    border: 1px solid rgba(20, 25, 34, 0.1);
    border-radius: 20px;
    background: rgba(20, 25, 34, 0.05);
    color: var(--ink);
    font-weight: 800;
    text-align: center;
    transition: transform var(--transition), background var(--transition), border-color var(--transition);
}

.object-card__service-link:only-child,
.object-card__map-link:only-child {
    grid-column: 1 / -1;
}

.object-card__service-link:hover,
.object-card__map-link:hover {
    transform: translateY(-1px);
    background: rgba(20, 25, 34, 0.09);
}

.object-card__service-link--primary {
    background: rgba(219, 63, 53, 0.12);
    border-color: rgba(219, 63, 53, 0.18);
    color: #b52e26;
}

.object-card__service-link--primary:hover {
    background: rgba(219, 63, 53, 0.16);
}

.objects-empty {
    padding: 20px 22px;
    color: var(--ink-soft);
}

.page-hero {
    padding: 58px 0 34px;
    color: #fff;
    background:
        radial-gradient(circle at top right, rgba(219, 63, 53, 0.16), transparent 26%),
        linear-gradient(180deg, #10151d 0%, #141a24 100%);
}

.page-hero__breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.92rem;
}

.page-hero__breadcrumbs a {
    color: rgba(255, 255, 255, 0.92);
}

.page-hero__title {
    margin: 0 0 12px;
    max-width: 880px;
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.04;
    letter-spacing: -0.05em;
}

.page-hero__text {
    margin: 0;
    max-width: 720px;
    color: rgba(255, 255, 255, 0.84);
    line-height: 1.68;
}

.section {
    padding: 72px 0;
}

.legal-page__content {
    max-width: 980px;
    padding: clamp(24px, 4vw, 38px);
    border: 1px solid rgba(20, 25, 34, 0.08);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(249, 250, 252, 0.98));
    box-shadow: 0 26px 60px rgba(4, 7, 12, 0.26);
}

.legal-toc {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 28px;
}

.legal-toc a {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0 14px;
    border: 1px solid rgba(20, 25, 34, 0.08);
    border-radius: 999px;
    background: #f2f5f9;
    color: #1b2531;
    font-weight: 700;
    transition: transform var(--transition), background var(--transition);
}

.legal-toc a:hover {
    transform: translateY(-1px);
    background: rgba(20, 25, 34, 0.08);
}

.legal-page__content h2 {
    margin: 0 0 12px;
    font-size: 1.46rem;
    line-height: 1.12;
    letter-spacing: -0.03em;
    color: #10161f;
}

.legal-page__content h2:not(:first-child) {
    margin-top: 32px;
}

.legal-page__content p,
.legal-page__content li {
    color: #2e3948;
    line-height: 1.76;
}

.legal-page__content p {
    margin: 0 0 14px;
}

.legal-page__content ul + p,
.legal-page__content p + ul {
    margin-top: 16px;
}

.legal-page__content ul {
    padding-left: 20px;
}

.legal-page__content strong {
    color: var(--ink);
}

.legal-page__content a {
    color: #b62f26;
    font-weight: 700;
}

.site-footer {
    padding: 44px 0 calc(56px + var(--safe-bottom));
    color: #fff;
    background: linear-gradient(180deg, #181d26 0%, #131821 100%);
}

.site-footer__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 0.8fr) minmax(0, 0.8fr);
    gap: 28px;
}

.site-footer__brand {
    display: grid;
    gap: 12px;
}

.site-footer__logo {
    width: min(220px, 100%);
    height: auto;
}

.site-footer__title {
    margin-bottom: 12px;
    font-size: 0.98rem;
    font-weight: 900;
}

.site-footer__text,
.site-footer__links {
    margin: 0;
    padding: 0;
    list-style: none;
    color: rgba(255, 255, 255, 0.72);
}

.site-footer__links li + li {
    margin-top: 8px;
}

.site-footer a {
    color: rgba(255, 255, 255, 0.94);
}

.mobile-dock {
    display: none;
}

.consent-toast {
    position: fixed;
    left: 50%;
    bottom: calc(106px + var(--safe-bottom));
    z-index: 140;
    display: grid;
    gap: 14px;
    width: min(calc(100% - 24px), 540px);
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.54);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(18px) saturate(165%);
    box-shadow: var(--shadow-mid);
    transform: translate(-50%, 18px);
    opacity: 0;
    transition: opacity var(--transition), transform var(--transition);
}

.consent-toast.is-visible {
    transform: translate(-50%, 0);
    opacity: 1;
}

body.body--menu-open .consent-toast {
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, 18px);
}

.consent-toast__content {
    display: grid;
    gap: 6px;
}

.consent-toast__title {
    margin: 0;
    color: var(--ink);
    font-size: 1rem;
    font-weight: 900;
}

.consent-toast__text {
    margin: 0;
    color: var(--ink-soft);
}

.consent-toast__text a {
    color: var(--accent);
    font-weight: 800;
}

.consent-toast__actions {
    display: flex;
    gap: 10px;
}

.consent-toast__status {
    margin: 0;
    min-height: 1.4em;
    color: #138167;
    font-size: 0.9rem;
    font-weight: 700;
}

.keyboard-open .mobile-dock {
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, 18px);
}

@keyframes heroDrift {
    0% {
        transform: translate3d(-2%, -1%, 0) scale(1.02);
    }

    50% {
        transform: translate3d(3%, 2%, 0) scale(1.08);
    }

    100% {
        transform: translate3d(-1%, 4%, 0) scale(1.04);
    }
}

@keyframes heroPulse {
    0%,
    100% {
        opacity: 0.54;
        transform: scale(1);
    }

    50% {
        opacity: 0.82;
        transform: scale(1.06);
    }
}

@keyframes orbFloat {
    0% {
        transform: translate3d(0, 0, 0);
    }

    50% {
        transform: translate3d(14px, -20px, 0);
    }

    100% {
        transform: translate3d(-10px, 12px, 0);
    }
}

@keyframes screenEnterForward {
    0% {
        opacity: 0;
        transform: translate3d(44px, 0, 0) scale(0.985);
        filter: blur(8px);
    }

    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1);
        filter: blur(0);
    }
}

@keyframes screenEnterBackward {
    0% {
        opacity: 0;
        transform: translate3d(-44px, 0, 0) scale(0.985);
        filter: blur(8px);
    }

    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1);
        filter: blur(0);
    }
}

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

    100% {
        opacity: 0;
        transform: translate3d(-32px, 0, 0) scale(0.99);
    }
}

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

    100% {
        opacity: 0;
        transform: translate3d(32px, 0, 0) scale(0.99);
    }
}

@media (max-width: 1120px) {
    .status-grid,
    .site-footer__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .site-footer__grid > :last-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 980px) {
    .program-rules,
    .status-grid {
        grid-template-columns: 1fr;
        align-items: stretch;
    }

    .object-card {
        grid-template-columns: 220px minmax(0, 1fr);
    }

    .status-card--tier-1,
    .status-card--tier-2 {
        margin-top: 0;
    }

    .status-card__headline {
        min-height: 0;
    }

    .status-card__half {
        min-height: 0;
    }
}

@media (max-width: 860px) {
    .container {
        width: min(100% - 20px, var(--container));
    }

    .app-main--tabs {
        padding-top: 10px;
        padding-bottom: calc(132px + var(--safe-bottom));
    }

    .hero {
        min-height: auto;
        border-radius: 0;
    }

    .hero__content {
        min-height: auto;
        padding: 38px 0 48px;
    }

    .hero__title {
        font-size: clamp(3rem, 10vw, 3.45rem);
        margin-bottom: 18px;
    }

    .hero__subtitle {
        max-width: 100%;
        font-size: 1.1rem;
        line-height: 1.58;
    }

    .hero__actions--tabs {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        max-width: 100%;
        gap: 10px;
    }

    .hero__actions--tabs .btn {
        min-height: 48px;
        width: auto;
        min-width: min(100%, 232px);
        padding: 0 22px;
        font-size: 0.92rem;
        letter-spacing: -0.02em;
    }

    .hero__support {
        grid-template-columns: 1fr;
        gap: 12px;
        max-width: 100%;
    }

    .hero-note {
        min-height: 0;
        padding: 18px 16px;
        border-radius: 22px;
    }

    .hero-note__text {
        font-size: 0.88rem;
    }

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

    .program-promo .btn {
        width: 100%;
    }

    .status-card__caption {
        max-width: none;
    }

    .status-card__main {
        font-size: clamp(1.92rem, 7.6vw, 2.55rem);
    }

    .status-card__season-value {
        font-size: clamp(1.92rem, 7.6vw, 2.55rem);
    }

    .status-card__connector {
        width: 36px;
        height: 36px;
        font-size: 0.82rem;
    }

    .site-nav {
        position: fixed;
        right: max(12px, calc(var(--safe-right) + 12px));
        bottom: calc(104px + var(--safe-bottom));
        z-index: 240;
        width: min(calc(100vw - 20px), 340px);
        margin: 0;
        padding: 14px;
        border-radius: 28px;
        display: grid;
        justify-content: stretch;
        opacity: 0;
        visibility: hidden;
        transform: translate3d(0, 12px, 0) scale(0.98);
        transform-origin: bottom right;
        box-shadow: 0 24px 48px rgba(5, 9, 15, 0.34);
        transition: opacity var(--transition), visibility var(--transition), transform var(--transition);
    }

    .site-header__backdrop {
        display: block;
    }

    .body--menu-open .site-nav {
        opacity: 1;
        visibility: visible;
        transform: translate3d(0, 0, 0) scale(1);
    }

    .body--menu-open .site-header__backdrop {
        opacity: 1;
        pointer-events: auto;
    }

    .service-card {
        grid-template-columns: 48px minmax(0, 1fr);
        align-items: start;
    }

    .service-card__actions {
        grid-column: 1 / -1;
    }

    .service-card__actions .btn {
        width: 100%;
        min-width: 0;
    }

    .app-panel__surface,
    .objects-toolbar,
    .objects-empty,
    .legal-page__content {
        border-radius: 26px;
    }

    .objects-toolbar__top,
    .object-card,
    .site-footer__grid {
        grid-template-columns: 1fr;
    }

    .object-card__service-row,
    .object-card__map-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .object-card__media,
    .object-card__media img {
        min-height: 196px;
    }

    .site-footer {
        padding-bottom: calc(120px + var(--safe-bottom));
    }

    .mobile-dock {
        position: fixed;
        left: 50%;
        bottom: max(12px, calc(var(--safe-bottom) + 6px));
        z-index: 210;
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
        width: min(calc(100% - 20px), 520px);
        padding: 8px;
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 28px;
        background: rgba(17, 23, 32, 0.88);
        backdrop-filter: blur(18px) saturate(145%);
        box-shadow: 0 24px 44px rgba(4, 7, 12, 0.32);
        transform: translateX(-50%);
        transition: opacity var(--transition), transform var(--transition);
    }

    .mobile-dock__action {
        display: grid;
        place-items: center;
        gap: 6px;
        min-height: 74px;
        padding: 10px 8px;
        border: 0;
        border-radius: 22px;
        background: rgba(255, 255, 255, 0.06);
        color: rgba(255, 255, 255, 0.92);
        cursor: pointer;
        font-weight: 800;
        text-align: center;
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
    }

    .mobile-dock__action--accent {
        background: rgba(255, 255, 255, 0.08);
        color: #fff;
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
    }

    .mobile-dock__action--menu[aria-expanded="true"] {
        background: rgba(255, 255, 255, 0.14);
        color: #fff;
    }

    .mobile-dock__emoji {
        font-size: 1.35rem;
        line-height: 1;
    }

    .mobile-dock__label {
        font-size: 0.74rem;
        line-height: 1.08;
        word-break: break-word;
    }

    .consent-toast {
        bottom: calc(110px + var(--safe-bottom));
        width: min(calc(100% - 20px), 520px);
    }
}

@media (max-width: 680px) {
    .page-hero {
        padding: 46px 0 28px;
    }

    .page-hero__title,
    .section-head__title {
        font-size: 1.94rem;
    }

    .consent-toast__actions {
        flex-direction: column-reverse;
    }
}

@media (max-width: 520px) {
    .site-header__inner {
        min-height: 74px;
    }

    .site-logo__image {
        width: min(210px, 58vw);
    }

    .hero__title {
        font-size: 2.58rem;
    }

    .hero__subtitle {
        font-size: 1.02rem;
        line-height: 1.54;
    }

    .hero__copy {
        max-width: 100%;
    }

    .hero__actions--tabs {
        width: 100%;
        gap: 8px;
    }

    .hero__actions--tabs .btn {
        min-height: 46px;
        min-width: min(100%, 210px);
        padding: 0 18px;
        font-size: 0.88rem;
    }

    .object-card {
        padding: 14px;
        border-radius: 24px;
    }

    .object-card__service-row,
    .object-card__map-row {
        gap: 8px;
    }

    .object-card__service-link,
    .object-card__map-link {
        min-height: 48px;
        padding: 0 10px;
        font-size: 0.9rem;
    }

    .mobile-dock__action {
        min-height: 70px;
    }

}

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

    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
    }
}
