:root {
    --bg: #ffffff;
    --bg-soft: #f7f8fb;
    --line: #e9edf4;
    --line-strong: #c6ccd7;
    --text: #565655;
    --text-dark: #132561;
    --title: #2a327b;
    --blue: #3261ec;
    --blue-dark: #192e72;
    --blue-deep: #24318a;
    --green: #0f8044;
    --green-bg: #e5f9f0;
    --shadow: 0 2px 12px rgba(19, 37, 97, 0.06);
    --radius: 24px;
    --radius-lg: 16px;
    --radius-md: 12px;
    --radius-sm: 8px;
    --container: 1360px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: Inter, Arial, Helvetica, sans-serif;
    line-height: 1.45;
}

img {
    display: block;
    width: 100%;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input {
    font: inherit;
}

button {
    cursor: pointer;
    border: 0;
    background: none;
}

input {
    outline: none;
}

.container {
    width: min(100% - 32px, var(--container));
    margin-inline: auto;
}

.section {
    padding: 56px 0;
}

.section-muted {
    background: var(--bg-soft);
}

.section-title {
    margin: 0 0 24px;
    font-size: clamp(28px, 3vw, 32px);
    line-height: 1.2;
    font-weight: 400;
    color: var(--title);
}

.section-title span {
    color: #3261EC;
}

.section-subtitle {
    margin: -8px 0 32px;
    color: #566672;
    font-size: 16px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    font-size: 12px;
    letter-spacing: 0.04em;
    font-weight: 600;
    border: 1px solid #3261EC;
    margin-bottom: 24px;
}

.eyebrow-blue {
    color: var(--blue);
    background: rgba(50, 97, 236, 0.08);
}

.section-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 24px;
}

/* header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(198, 204, 215, 0.4);
}

.header-inner {
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    align-items: center;
    gap: 24px;
    min-height: 88px;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.logo-mark {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background:
            linear-gradient(135deg, transparent 0 45%, var(--blue) 45% 55%, transparent 55%),
            linear-gradient(180deg, #1d2f83, #3261ec);
    position: relative;
    overflow: hidden;
}

.logo-mark::before,
.logo-mark::after {
    content: "";
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
            90deg,
            rgba(255,255,255,0.9) 0 3px,
            transparent 3px 9px
    );
    opacity: 0.8;
}

.logo-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.logo-text strong {
    font-size: 15px;
    color: var(--title);
    line-height: 1;
}

.logo-text span {
    font-size: 11px;
    color: var(--title);
    opacity: 0.85;
    line-height: 1.1;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 28px;
    justify-self: center;
}

.main-nav a {
    font-size: 14px;
    color: #2f3441;
}

.header-contacts {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.header-contacts a {
    font-size: 12px;
    color: var(--text-dark);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.phone {
    padding: 12px 18px;
    border-radius: 8px;
    background: #ecf3f9;
    color: var(--text-dark);
    font-size: 14px;
    white-space: nowrap;
}

.burger {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    border: 1px solid var(--line);
}

.burger span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--title);
    margin: 4px auto;
}

/* buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 24px;
    border-radius: 10px;
    font-size: 14px;
    line-height: 1;
    transition: .2s ease;
    white-space: nowrap;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-primary {
    color: #fff;
    background: var(--blue);
}

.btn-primary:hover {
    background: var(--blue-deep);
}

.btn-outline {
    color: var(--blue);
    border: 1px solid var(--blue);
    background: #fff;
}

.btn-white {
    color: var(--blue);
    background: #fff;
}

.btn-sm {
    min-height: 38px;
    padding: 0 14px;
    font-size: 12px;
    border-radius: 8px;
}

.btn-arrow {
    display: inline-grid;
    place-items: center;
    width: 30px;
    height: 30px;
    margin-left: 10px;
    background: rgba(255,255,255,.22);
    border-radius: 999px;
}

/* breadcrumbs */
.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 13px;
    margin-bottom: 22px;
}

.breadcrumbs-light a,
.breadcrumbs-light span {
    color: rgba(255,255,255,.78);
}

.breadcrumbs-light span:last-child {
    color: #fff;
}

/* hero */
.map-hero {
    position: relative;
    overflow: hidden;
    padding: 28px 0 34px;
    background:
            radial-gradient(94.06% 225.05% at 25.96% 38.71%, #3261EC 0%, #ECF3F9 100%);
}

.map-hero::before {
    content: "";
    position: absolute;
    inset: auto -10% -40% auto;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: rgba(255,255,255,.12);
    filter: blur(8px);
}

.map-hero .breadcrumbs_wrapper .breadcrumbs {
    max-width: unset;
    padding-left: unset;
    padding-right: unset;
    margin-left: unset;
    margin-right: unset;
}

.map-hero .breadcrumbs_wrapper .breadcrumbs .breadcrumbs__link {
    color: #ffffff;
}

.map-hero__content {
    display: grid;
    grid-template-columns: 1.2fr auto;
    gap: 32px;
    align-items: end;
}

.map-hero__text {
    max-width: 620px;
}

.map-hero__text .eyebrow {
    margin-bottom: 16px;
    background: rgba(255,255,255,.12);
    color: rgba(255,255,255,.85);
    border: 1px solid rgba(255, 255, 255, 0.50);
}

.map-hero__text h1 {
    margin: 0 0 16px;
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.1;
    font-weight: 400;
    color: #fff;
}

.map-hero__text p {
    max-width: 520px;
    margin: 0 0 20px;
    font-size: 16px;
    color: rgba(255,255,255,.88);
}

.map-hero__stats {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.hero-stat {
    min-width: 150px;
    padding: 14px 16px;
    border: 1px solid rgba(255,255,255,.2);
    background: rgba(255,255,255,.12);
    border-radius: 10px;
    color: #fff;
}

.hero-stat strong {
    display: block;
    font-size: 16px;
    margin-bottom: 4px;
}

.hero-stat span {
    display: block;
    font-size: 12px;
    color: rgba(255,255,255,.8);
}

/* infra */
.infra-layout {
    display: grid;
    grid-template-columns: 1fr minmax(380px, 760px) 1fr;
    gap: 24px;
    align-items: center;
}

.infra-visual {
    border-radius: 20px;
    overflow: hidden;
}

.infra-visual img {
    aspect-ratio: 1.25 / 1;
    object-fit: cover;
}

.infra-note {
    display: grid;
    gap: 6px;
    font-size: 14px;
    color: #566672;
}

.infra-note strong {
    color: var(--text-dark);
    font-size: 16px;
    font-weight: 600;
}



/* footer */
.site-footer {
    background: #fff;
}

.footer-main {
    display: grid;
    grid-template-columns: 390px 1fr;
    gap: 48px;
    padding: 60px 0 40px;
}

.footer-logo {
    margin-bottom: 32px;
}

.footer-contacts {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer-contacts a {
    font-size: clamp(24px, 3vw, 40px);
    line-height: 1.2;
    color: var(--blue);
}

.footer-contacts small {
    margin-bottom: 10px;
    font-size: 11px;
    color: #090521;
}

.footer-company {
    margin: 24px 0 20px;
    max-width: 280px;
    color: var(--text);
    font-size: 16px;
}

.footer-media-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-dark);
    font-size: 15px;
}

.footer-nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    align-content: start;
}

.footer-col h3 {
    margin: 0 0 18px;
    font-size: 32px;
    font-weight: 400;
    color: var(--text-dark);
}

.footer-col a {
    display: block;
    margin-bottom: 10px;
    font-size: 15px;
    color: #2f3441;
}

.footer-bottom {
    background: var(--blue);
    color: #fff;
}

.footer-bottom-inner {
    min-height: 39px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 24px;
    padding: 12px 0;
    font-size: 12px;
}

.map-hero__text .theme-btn {
    max-width: 205px;
}

/* responsive */
@media (max-width: 1200px) {
    .header-inner {
        grid-template-columns: auto 1fr auto;
    }

    .header-contacts {
        display: none;
    }

    .map-hero__content,
    .footer-main {
        grid-template-columns: 1fr;
    }

    .map-layout {
        grid-template-columns: 280px 1fr;
    }

    .selection-grid,
    .benefits-grid,
    .footer-nav {
        grid-template-columns: 1fr 1fr;
    }

    .infra-layout {
        grid-template-columns: 1fr;
    }

    .infra-note {
        order: 2;
    }

    .infra-visual {
        order: 1;
    }
}

@media (max-width: 980px) {
    .main-nav,
    .header-actions {
        display: none;
    }

    .burger {
        display: block;
        justify-self: end;
    }

    .map-layout {
        grid-template-columns: 1fr;
    }

    .map-sidebar {
        order: 2;
        border-right: 0;
        border-top: 1px solid var(--line);
    }

    .selection-grid,
    .benefits-grid,
    .footer-nav {
        grid-template-columns: 1fr;
    }

    .footer-col h3 {
        font-size: 24px;
    }
}

@media (max-width: 767px) {
    body {
        font-size: 14px;
    }

    .container {
        width: 100%;
        padding-inline: 16px;
    }

    .section {
        padding: 32px 0;
    }

    .header-inner {
        grid-template-columns: 1fr auto;
        gap: 12px;
        min-height: 72px;
        padding-block: 8px;
    }

    .logo-mark {
        width: 32px;
        height: 32px;
        border-radius: 8px;
    }

    .logo-text strong {
        font-size: 11px;
    }

    .logo-text span {
        font-size: 8px;
    }

    .burger {
        display: inline-grid;
        place-items: center;
        width: 36px;
        height: 36px;
        border: 0;
        border-radius: 8px;
        background: var(--blue);
    }

    .burger span {
        width: 16px;
        height: 2px;
        background: #fff;
        margin: 2px auto;
    }

    .map-hero {
        padding: 12px 0 20px;
    }

    .breadcrumbs {
        margin-bottom: 10px;
        font-size: 11px;
    }

    .map-hero__content {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .map-hero__text {
        max-width: unset;
    }

    .map-hero__text .eyebrow {
        margin-bottom: 10px;
        font-size: 12px;
    }

    .map-hero__text .theme-btn {
        max-width: unset;
    }

    .btn {
        min-height: 40px;
        padding: 0 16px;
        font-size: 12px;
        border-radius: 8px;
    }

    .map-hero__stats {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        justify-content: stretch;
    }

    .map-layout-section {
        padding-bottom: 16px;
    }

    .map-layout {
        gap: 12px;
        border-bottom: 0;
    }

    .map-hint-top {
        display: none;
    }

    .map-tip {
        width: 126px;
        padding: 10px;
        border-radius: 10px;
    }

    .map-tip-left {
        left: 8px;
        top: 108px;
    }

    .map-tip-right {
        right: 12px;
        top: 98px;
    }

    .map-tip__title {
        font-size: 11px;
        margin-bottom: 6px;
    }

    .map-tip__status {
        margin-bottom: 6px;
        font-size: 10px;
    }

    .map-tip__action {
        min-height: 28px;
        font-size: 10px;
        padding: 0 8px;
    }

    .map-label,
    .map-road,
    .map-legend-pin {
        font-size: 9px;
    }

    .map-label-center {
        left: 60%;
        top: 48%;
    }

    .map-label-vertical {
        right: 8px;
        top: 46px;
    }

    .road-a112--1 {
        left: 54px;
        top: 216px;
    }

    .road-a112--2 {
        left: 166px;
        top: 194px;
    }

    .map-legend-pin {
        right: 48px;
        top: 170px;
    }

    .map-control,
    .map-expand {
        width: 32px;
        height: 32px;
        border-radius: 8px;
        font-size: 18px;
    }

    .map-controls {
        right: 8px;
        bottom: 8px;
        gap: 6px;
    }

    .map-expand {
        top: 8px;
        right: 8px;
        font-size: 14px;
    }

    /* compress plots */
    .p1 { left: 132px; top: 24px; width: 18px; height: 12px; }
    .p2 { left: 150px; top: 18px; width: 18px; height: 12px; }
    .p3 { left: 168px; top: 24px; width: 18px; height: 12px; }
    .p4 { left: 182px; top: 36px; width: 8px; height: 18px; }
    .p5 { left: 116px; top: 38px; width: 16px; height: 18px; }
    .p6 { left: 104px; top: 56px; width: 38px; height: 84px; }
    .p7 { left: 112px; top: 136px; width: 20px; height: 42px; }
    .p8 { left: 110px; top: 178px; width: 24px; height: 14px; }
    .p9 { left: 112px; top: 194px; width: 24px; height: 12px; }
    .p10 { left: 138px; top: 198px; width: 14px; height: 76px; }
    .p11 { left: 158px; top: 198px; width: 14px; height: 56px; }
    .p12 { left: 168px; top: 252px; width: 10px; height: 30px; }
    .p13 { left: 126px; top: 58px; width: 82px; height: 146px; }
    .p14 { left: 116px; top: 76px; width: 22px; height: 60px; }
    .p15 { left: 136px; top: 10px; width: 60px; height: 40px; }
    .p16 { left: 102px; top: 210px; width: 16px; height: 20px; }
    .p17 { left: 108px; top: 240px; width: 16px; height: 18px; }
    .p18 { left: 120px; top: 264px; width: 16px; height: 18px; }
    .p19 { left: 138px; top: 262px; width: 16px; height: 18px; }
    .p20 { left: 160px; top: 220px; width: 22px; height: 18px; }

    .park-tabs {
        margin-bottom: 0;
    }

    .park-tab {
        min-height: 36px;
        font-size: 11px;
    }

    .sidebar-card {
        padding: 12px;
    }

    .sidebar-park h2 {
        font-size: 18px;
    }

    .sidebar-title {
        margin-bottom: 10px;
        font-size: 12px;
    }

    .mini-grid {
        gap: 10px 12px;
    }

    .mini-grid__item span {
        font-size: 10px;
    }

    .mini-grid__item strong {
        font-size: 12px;
    }

    .switch-row {
        margin-bottom: 10px;
        font-size: 12px;
    }

    .switch {
        width: 36px;
        height: 20px;
    }

    .switch i {
        width: 14px;
        height: 14px;
    }

    .switch.is-on i {
        left: 19px;
    }

    .sidebar-btn {
        margin: 12px;
        width: calc(100% - 24px);
    }

    .section-title {
        margin-bottom: 16px;
        font-size: 24px;
    }

    .section-subtitle {
        font-size: 12px;
        margin: -6px 0 18px;
    }

    .section-row {
        margin-bottom: 14px;
    }

    .selection-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .selection-card {
        min-height: 44px;
        font-size: 12px;
        border-radius: 8px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .benefit-card {
        min-height: 132px;
        padding: 14px;
    }

    .benefit-num {
        font-size: 28px;
        top: 12px;
        right: 12px;
    }

    .benefit-card h3 {
        font-size: 14px;
    }

    .benefit-card p {
        font-size: 12px;
    }

    .infra-layout {
        gap: 14px;
    }

    .infra-note {
        gap: 4px;
        font-size: 12px;
    }

    .infra-note strong {
        font-size: 13px;
    }

    .infra-visual {
        border-radius: 14px;
    }



    .footer-main {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 32px 0 20px;
    }

    .footer-logo {
        margin-bottom: 20px;
    }

    .footer-nav {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer-contacts a {
        font-size: 16px;
        line-height: 1.35;
    }

    .footer-contacts small {
        font-size: 9px;
        margin-bottom: 6px;
    }

    .footer-company {
        margin-top: 12px;
        max-width: 220px;
        font-size: 11px;
    }

    .footer-col h3 {
        margin-bottom: 10px;
        font-size: 16px;
    }

    .footer-col a,
    .footer-media-link {
        margin-bottom: 6px;
        font-size: 11px;
    }

    .footer-bottom-inner {
        min-height: auto;
        gap: 8px;
        padding: 10px 0;
        font-size: 9px;
        flex-direction: column;
        align-items: flex-start;
    }
}

/* =========================
   PIXEL-PERFECT MOBILE TUNING
   LAND_MAP_MOBILE
   ========================= */

@media (max-width: 767px) {
    body.page-land-map {
        background: #ffffff;
    }

    .container {
        width: 100%;
        padding-inline: 12px;
    }

    .section {
        padding: 24px 0;
    }

    .section-title {
        margin: 0 0 12px;
        font-size: 22px;
        line-height: 1.18;
        letter-spacing: 0;
    }

    .section-subtitle {
        margin: -2px 0 14px;
        font-size: 11px;
        line-height: 1.35;
        color: #566672;
    }

    .eyebrow,
    .eyebrow-blue {
        min-height: 22px;
        padding: 0 8px;
        border-radius: 999px;
        font-size: 9px;
        letter-spacing: 0.04em;
    }

    /* Header */
    .site-header {
        border-bottom: 1px solid #ecf3f9;
    }

    .header-inner {
        min-height: 52px;
        padding-block: 6px;
        grid-template-columns: 1fr auto;
        gap: 10px;
    }

    .logo {
        gap: 6px;
    }

    .logo-mark {
        width: 24px;
        height: 24px;
        border-radius: 6px;
    }

    .logo-text strong {
        font-size: 8px;
        line-height: 1;
    }

    .logo-text span {
        font-size: 6px;
        line-height: 1.05;
    }

    .burger {
        width: 24px;
        height: 24px;
        border-radius: 4px;
        background: #3261EC;
    }

    .burger span {
        width: 10px;
        height: 1.5px;
        margin: 1.5px auto;
    }

    /* Hero */
    .map-hero {
        padding: 10px 0 14px;
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
    }

    .breadcrumbs {
        margin-bottom: 8px;
        gap: 4px;
        font-size: 9px;
        line-height: 1.2;
    }

    .map-hero__content {
        gap: 10px;
    }

    .map-hero__text h1 {
        margin: 0 0 8px;
        font-size: 24px;
        line-height: 1.1;
        font-weight: 400;
    }

    .map-hero__text p {
        max-width: unset;
        margin: 0 0 10px;
        font-size: 14px;
        line-height: 1.35;
        color: rgba(255,255,255,.85);
    }

    .btn,
    .btn-white,
    .btn-primary,
    .btn-outline {
        min-height: 30px;
        padding: 0 12px;
        border-radius: 6px;
        font-size: 10px;
    }

    .btn-sm {
        min-height: 26px;
        padding: 0 10px;
        border-radius: 6px;
        font-size: 9px;
    }

    .map-hero__text .btn {
        min-width: 104px;
    }

    .map-hero__stats {
        grid-template-columns: 1fr 1fr;
        gap: 6px;
    }

    .hero-stat {
        padding: 8px 10px;
        border-radius: 8px;
        min-width: 0;
    }

    .hero-stat strong {
        margin-bottom: 2px;
        font-size: 14px;
        line-height: 1.25;
    }

    .hero-stat span {
        font-size: 12px;
        line-height: 1.2;
    }

    /* Main map block */
    .map-layout-section {
        padding: 8px 0 14px;
    }

    .map-layout {
        display: flex;
        flex-direction: column;
        gap: 8px;
        border-bottom: 0;
    }

    .map-hint-top {
        display: none;
    }

    .map-tip {
        width: 92px;
        padding: 7px 8px;
        border-radius: 8px;
        border-width: 1px;
        box-shadow: 0 2px 8px rgba(19, 37, 97, 0.06);
    }

    .map-tip-left {
        left: 6px;
        top: 92px;
    }

    .map-tip-right {
        right: 8px;
        top: 70px;
    }

    .map-tip__status {
        gap: 4px;
        margin-bottom: 4px;
        font-size: 8px;
        line-height: 1.2;
    }

    .map-tip__title {
        margin-bottom: 5px;
        font-size: 9px;
        line-height: 1.25;
    }

    .map-tip__action {
        min-height: 22px;
        padding: 0 6px;
        border-radius: 6px;
        font-size: 8px;
    }

    .dot {
        width: 5px;
        height: 5px;
    }

    .map-label,
    .map-road,
    .map-legend-pin {
        font-size: 7px;
        line-height: 1.1;
    }

    .map-label-center {
        left: 63%;
        top: 48%;
    }

    .map-label-vertical {
        right: 6px;
        top: 36px;
    }

    .map-road {
        padding: 2px 5px;
        border-radius: 3px;
    }

    .road-a112--1 {
        left: 42px;
        top: 160px;
    }

    .road-a112--2 {
        left: 150px;
        top: 143px;
    }

    .map-legend-pin {
        right: 40px;
        top: 128px;
    }

    .map-controls {
        right: 6px;
        bottom: 6px;
        gap: 5px;
    }

    .map-control,
    .map-expand {
        width: 24px;
        height: 24px;
        border-radius: 6px;
        font-size: 14px;
    }

    .map-expand {
        top: 6px;
        right: 6px;
        font-size: 11px;
    }

    /* plot compression */
    .p1 { left: 102px; top: 19px; width: 14px; height: 9px; }
    .p2 { left: 116px; top: 14px; width: 14px; height: 9px; }
    .p3 { left: 130px; top: 19px; width: 14px; height: 9px; }
    .p4 { left: 141px; top: 28px; width: 6px; height: 14px; }
    .p5 { left: 90px; top: 30px; width: 12px; height: 14px; }
    .p6 { left: 82px; top: 44px; width: 30px; height: 62px; }
    .p7 { left: 88px; top: 104px; width: 15px; height: 30px; }
    .p8 { left: 86px; top: 134px; width: 18px; height: 10px; }
    .p9 { left: 88px; top: 145px; width: 18px; height: 9px; }
    .p10 { left: 108px; top: 148px; width: 10px; height: 56px; }
    .p11 { left: 124px; top: 148px; width: 10px; height: 42px; }
    .p12 { left: 132px; top: 188px; width: 8px; height: 22px; }
    .p13 { left: 98px; top: 45px; width: 60px; height: 110px; }
    .p14 { left: 90px; top: 60px; width: 16px; height: 44px; }
    .p15 { left: 106px; top: 8px; width: 44px; height: 30px; }
    .p16 { left: 80px; top: 157px; width: 12px; height: 15px; }
    .p17 { left: 84px; top: 178px; width: 12px; height: 13px; }
    .p18 { left: 94px; top: 196px; width: 12px; height: 13px; }
    .p19 { left: 108px; top: 195px; width: 12px; height: 13px; }
    .p20 { left: 124px; top: 165px; width: 16px; height: 13px; }

    /* Sidebar cards under map */
    .park-tabs {
        margin: 0 0 6px;
        border: 0;
        gap: 4px;
        display: flex;
    }

    .park-tab {
        min-height: 24px;
        padding: 0 8px;
        font-size: 9px;
        border-radius: 6px;
        border: 1px solid #E9EDF4;
        background: #fff;
    }

    .park-tab.is-active {
        background: #3261EC;
        color: #fff;
        border-color: #3261EC;
    }

    .sidebar-card {
        padding: 10px;
        margin-bottom: 6px;
        border: 1px solid #E9EDF4;
        border-radius: 10px;
        background: #fff;
        box-shadow: 0 2px 10px rgba(19, 37, 97, 0.04);
    }

    .sidebar-park h2 {
        font-size: 14px;
        line-height: 1.2;
    }

    .sidebar-title {
        margin-bottom: 8px;
        font-size: 10px;
        line-height: 1.3;
        color: #566672;
    }

    .mini-grid {
        gap: 8px 10px;
    }

    .mini-grid__item span {
        margin-bottom: 2px;
        font-size: 8px;
        line-height: 1.2;
    }

    .mini-grid__item strong {
        font-size: 10px;
        line-height: 1.25;
    }

    .switch-row {
        margin-bottom: 8px;
        font-size: 10px;
        line-height: 1.25;
    }

    .switch {
        width: 28px;
        height: 16px;
    }

    .switch i {
        width: 10px;
        height: 10px;
        top: 3px;
        left: 3px;
    }

    .switch.is-on i {
        left: 15px;
    }

    .sidebar-btn {
        margin: 0;
        width: 100%;
        min-height: 30px;
    }

    /* Selections */
    .selections.section {
        padding-top: 10px;
        padding-bottom: 18px;
    }

    .section-row {
        margin-bottom: 10px;
        gap: 10px;
    }

    .selection-grid {
        gap: 8px;
    }

    .selection-card {
        min-height: 34px;
        padding: 0 10px;
        border-radius: 8px;
        font-size: 10px;
        line-height: 1.2;
        box-shadow: 0 1px 8px rgba(19, 37, 97, 0.04);
    }



    /* Benefits */
    .benefits.section {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .benefits-grid {
        gap: 8px;
    }

    .benefit-card {
        min-height: 88px;
        padding: 10px;
        border-radius: 10px;
    }

    .benefit-icon {
        width: 18px;
        height: 18px;
        margin-bottom: 8px;
        font-size: 10px;
    }

    .benefit-num {
        top: 8px;
        right: 8px;
        font-size: 18px;
    }

    .benefit-card h3 {
        margin: 0 0 4px;
        font-size: 10px;
        line-height: 1.3;
    }

    .benefit-card p {
        font-size: 8px;
        line-height: 1.35;
    }

    /* Infra */
    .infra.section {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .infra-layout {
        gap: 10px;
    }

    .infra-visual {
        border-radius: 10px;
    }

    .infra-visual img {
        aspect-ratio: 1.1 / 1;
    }

    .infra-note {
        gap: 3px;
        padding: 0 2px;
        font-size: 9px;
        line-height: 1.3;
    }

    .infra-note strong {
        font-size: 10px;
        line-height: 1.25;
    }



    /* Footer */
    .footer-main {
        gap: 18px;
        padding: 22px 0 14px;
    }

    .footer-logo {
        margin-bottom: 12px;
    }

    .footer-contacts a {
        font-size: 12px;
        line-height: 1.3;
    }

    .footer-contacts small {
        font-size: 7px;
        margin-bottom: 4px;
    }

    .footer-company {
        margin: 8px 0 10px;
        max-width: 180px;
        font-size: 8px;
        line-height: 1.35;
    }

    .footer-media-link {
        font-size: 8px;
        line-height: 1.3;
    }

    .footer-col h3 {
        margin: 0 0 6px;
        font-size: 13px;
        line-height: 1.2;
    }

    .footer-col a {
        margin-bottom: 4px;
        font-size: 8px;
        line-height: 1.35;
    }

    .footer-bottom-inner {
        padding: 8px 0;
        gap: 4px;
        font-size: 7px;
        line-height: 1.3;
    }
}

.max-width-screen {
    width: 100%;
}

.selections.section .theme-btn {
    background-color: transparent;
    border: 1px solid var(--blue);
}

.theme-btn span {
    margin-left: 10px;
}

.map-hero__text .theme-btn:hover,
.selections.section .theme-btn:hover {
    background-color: var(--blue-dark);
    color: #ffffff;
    border-color: #ffffff;
    box-shadow: none;
}

.dash {
    border: 2px solid #ADC2E5;
    border-radius: 1px;
    max-width: 28px;
    margin-top: 26px;
}