:root {
  --font-family: "Raleway", sans-serif;
  --font-size-base: 15.5px;
  --line-height-base: 1.55;

  --max-w: 1100px;
  --space-x: 0.87rem;
  --space-y: 1.21rem;
  --gap: 0.91rem;

  --radius-xl: 0.9rem;
  --radius-lg: 0.71rem;
  --radius-md: 0.48rem;
  --radius-sm: 0.26rem;

  --shadow-sm: 0 2px 5px rgba(0,0,0,0.1);
  --shadow-md: 0 6px 14px rgba(0,0,0,0.13);
  --shadow-lg: 0 16px 32px rgba(0,0,0,0.15);

  --overlay: rgba(0, 0, 0, 0.5);
  --anim-duration: 260ms;
  --anim-ease: cubic-bezier(0.16,1,0.3,1);
  --random-number: 1;

  --brand: #2A6BFF;
  --brand-contrast: #FFFFFF;
  --accent: #FF6B8B;
  --accent-contrast: #FFFFFF;

  --neutral-0: #FFFFFF;
  --neutral-100: #F8F9FA;
  --neutral-300: #DEE2E6;
  --neutral-600: #6C757D;
  --neutral-800: #343A40;
  --neutral-900: #212529;

  --bg-page: #FFFFFF;
  --fg-on-page: #212529;

  --bg-alt: #F8F9FA;
  --fg-on-alt: #343A40;

  --surface-1: #FFFFFF;
  --surface-2: #F8F9FA;
  --fg-on-surface: #212529;
  --border-on-surface: #DEE2E6;

  --surface-light: rgba(255, 255, 255, 0.95);
  --fg-on-surface-light: #212529;
  --border-on-surface-light: rgba(222, 226, 230, 0.7);

  --bg-primary: #2A6BFF;
  --fg-on-primary: #FFFFFF;
  --bg-primary-hover: #1A5BEF;
  --ring: rgba(42, 107, 255, 0.4);

  --bg-accent: #FF6B8B;
  --fg-on-accent: #FFFFFF;
  --bg-accent-hover: #FF4A72;

  --link: #2A6BFF;
  --link-hover: #1A5BEF;

  --gradient-hero: linear-gradient(135deg, #2A6BFF 0%, #6A11CB 100%);
  --gradient-accent: linear-gradient(90deg, #FF6B8B 0%, #FFA36C 100%);

  --btn-ghost-bg: transparent;
  --btn-ghost-bg-hover: rgba(255,255,255,0.06);
  --chip-bg: rgba(255,255,255,0.68);
  --input-placeholder: rgba(255,255,255,0.55);
}
body{margin:0;padding:0;font-family:var(--font-family);box-sizing: border-box;}
*{box-sizing:border-box;}

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

.header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
}

.logo {
    font-weight: 700;
    font-size: calc(var(--font-size-base) * 1.5);
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    transition: color var(--anim-duration) var(--anim-ease);
}
.logo:hover,
.logo:focus {
    color: var(--link-hover);
    outline: none;
}

.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-list {
    display: flex;
    gap: calc(var(--gap) * 2);
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
    position: relative;
}
.nav-link:hover,
.nav-link:focus {
    color: var(--brand);
    background-color: var(--btn-ghost-bg-hover);
    outline: none;
}
.nav-link[aria-current="page"] {
    color: var(--brand);
    background-color: var(--btn-ghost-bg);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: var(--gap);
}

.search-toggle,
.menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--fg-on-surface);
    padding: calc(var(--space-y) / 2);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.search-toggle:hover,
.search-toggle:focus,
.menu-toggle:hover,
.menu-toggle:focus {
    background-color: var(--btn-ghost-bg-hover);
    outline: none;
    color: var(--brand);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 1.75rem;
}
.menu-toggle-line {
    height: 2px;
    width: 100%;
    background-color: currentColor;
    border-radius: 1px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

.search-slot {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x) var(--space-y);
    display: none;
}
.search-slot[aria-hidden="false"] {
    display: block;
    animation: slideDown var(--anim-duration) var(--anim-ease);
}

.search-form {
    display: flex;
    gap: var(--gap);
}
.search-input {
    flex: 1;
    padding: calc(var(--space-y) / 1.5) var(--space-x);
    border: 1px solid var(--border-on-surface-light);
    border-radius: var(--radius-lg);
    background-color: var(--surface-light);
    color: var(--fg-on-surface-light);
    font-size: var(--font-size-base);
}
.search-input::placeholder {
    color: var(--input-placeholder);
}
.search-input:focus {
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}
.search-submit {
    padding: calc(var(--space-y) / 1.5) calc(var(--space-x) * 1.5);
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
    border: none;
    border-radius: var(--radius-lg);
    cursor: pointer;
    font-weight: 500;
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.search-submit:hover,
.search-submit:focus {
    background-color: var(--bg-primary-hover);
    outline: none;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 767px) {
    .menu-toggle {
        display: flex;
    }
    .main-nav {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-lg);
        padding: var(--space-y) var(--space-x);
        transform: translateY(-100%);
        transition: transform var(--anim-duration) var(--anim-ease);
        z-index: 999;
    }
    .main-nav[aria-expanded="true"] {
        transform: translateY(0);
    }
    .nav-list {
        flex-direction: column;
        gap: var(--gap);
        align-items: stretch;
    }
    .nav-link {
        display: block;
        text-align: center;
        padding: var(--space-y) var(--space-x);
    }
    .menu-toggle[aria-expanded="true"] .menu-toggle-line:nth-child(1) {
        transform: translateY(0.65rem) rotate(45deg);
    }
    .menu-toggle[aria-expanded="true"] .menu-toggle-line:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle[aria-expanded="true"] .menu-toggle-line:nth-child(3) {
        transform: translateY(-0.65rem) rotate(-45deg);
    }
}

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        border-top: 1px solid #dee2e6;
        padding: 2.5rem 0 1.5rem;
        font-family: 'Segoe UI', system-ui, sans-serif;
        line-height: 1.6;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }
    .footer-row {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 1.5rem;
    }
    .top-row {
        align-items: flex-start;
        padding-bottom: 1.5rem;
        border-bottom: 1px solid #e9ecef;
    }
    .middle-row {
        justify-content: flex-start;
    }
    .bottom-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
        padding-top: 1.5rem;
        border-top: 1px solid #e9ecef;
        font-size: 0.9rem;
        color: #6c757d;
    }
    .footer-brand .logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #1a1a1a;
        margin-bottom: 0.5rem;
    }
    .footer-nav ul {
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
        list-style: none;
        margin: 0;
        padding: 0;
    }
    .footer-nav a {
        color: #495057;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.2s ease;
    }
    .footer-nav a:hover {
        color: #0056b3;
        text-decoration: underline;
    }
    .footer-contacts ul {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 2rem;
    }
    .footer-contacts li {
        margin-bottom: 0.25rem;
    }
    .footer-contacts a {
        color: #0066cc;
        text-decoration: none;
    }
    .footer-contacts a:hover {
        text-decoration: underline;
    }
    .footer-copyright a {
        color: #6c757d;
        text-decoration: none;
        margin: 0 0.5rem;
    }
    .footer-copyright a:hover {
        text-decoration: underline;
        color: #333;
    }
    .footer-disclaimer {
        font-size: 0.85rem;
        line-height: 1.5;
        max-width: 800px;
        color: #868e96;
    }
    @media (max-width: 768px) {
        .footer-row {
            flex-direction: column;
            align-items: flex-start;
            gap: 1.5rem;
        }
        .footer-nav ul {
            flex-direction: column;
            gap: 0.75rem;
        }
        .footer-contacts ul {
            flex-direction: column;
            gap: 0.75rem;
        }
        .top-row, .middle-row, .bottom-row {
            border: none;
            padding-bottom: 0;
            padding-top: 0;
        }
    }

.cookie-lv12 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
    }

    .cookie-lv12__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-md);
        padding: calc(var(--space-y) * 0.9) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 12px var(--gap);
        align-items: center;
    }

    .cookie-lv12__title {
        font-weight: 700;
        color: var(--fg-on-surface);
    }

    .cookie-lv12 p {
        margin: 0;
        grid-column: 1 / 2;
        color: var(--fg-muted);
    }

    .cookie-lv12__actions {
        grid-row: 1 / 3;
        grid-column: 2 / 3;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
        justify-content: flex-end;
    }

    .cookie-lv12__actions button {
        border: 1px solid var(--border-on-surface);
        background: var(--surface-2);
        color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .cookie-lv12__actions button[data-choice='accept'] {
        background: var(--accent);
        color: var(--accent-contrast);
        border-color: transparent;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .cookie-lv12__wrap {
            grid-template-columns: 1fr;
        }

        .cookie-lv12 p,
        .cookie-lv12__actions {
            grid-column: auto;
            grid-row: auto;
        }

        .cookie-lv12__actions {
            justify-content: flex-start;
        }
    }

.nflang-v11 {
        position: fixed;
        right: clamp(14px, 2vw, 24px);
        bottom: clamp(14px, 2vw, 24px);
        z-index: 99999;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-lg);
        padding: 8px;
        min-width: 84px;
    }

    .nflang-v11__head {
        width: 100%;
        border: 0;
        border-radius: var(--radius-md);
        background: var(--surface-2);
        color: var(--fg-on-surface);
        padding: 8px 10px;
        cursor: pointer;
        font-size: 12px;
        font-weight: 700;
    }

    .nflang-v11__head-value {
        display: inline-flex;
        justify-content: center;
        min-width: 36px;
    }

    .nflang-v11__items {
        margin-top: 8px;
        display: grid;
        gap: 6px;
        opacity: 0;
        pointer-events: none;
        transition: opacity var(--anim-duration) var(--anim-ease);
        height: 0;
    }

    .nflang-v11__items.open {opacity: 1; pointer-events: auto; height: auto}

    .nflang-v11__items button,
    .nflang-v11__items a {
        border: 1px solid var(--border-on-surface);
        background: var(--surface-1);
        border-radius: var(--radius-sm);
        color: var(--fg-on-surface);
        text-decoration: none;
        padding: 7px 10px;
        font-size: 12px;
        font-weight: 600;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .nflang-v11__items button:hover,
    .nflang-v11__items a:hover {
        background: var(--accent);
        border-color: transparent;
        color: var(--accent-contrast);
    }

.nfintro-v7 {
        padding: clamp(3.8rem, 8vw, 6.8rem) var(--space-x);
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
    }

    .nfintro-v7__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1.15fr .85fr;
        gap: 1rem;
    }

    .nfintro-v7__copy,
    .nfintro-v7__meta {
        padding: 1.1rem;
        border-radius: var(--radius-xl);
        background: rgba(17, 24, 39, .18);
        border: 1px solid rgba(255, 255, 255, .18);
    }

    .nfintro-v7__copy p {
        margin: 0;
        color: rgba(255, 255, 255, .76);
        text-transform: uppercase;
        letter-spacing: .1em;
        font-size: .82rem;
    }

    .nfintro-v7__copy h1 {
        margin: .65rem 0 0;
        font-size: clamp(2.5rem, 5vw, 4.8rem);
        line-height: 1.02;
    }

    .nfintro-v7__copy span {
        display: block;
        margin-top: .95rem;
        max-width: 38rem;
    }

    .nfintro-v7__actions {
        margin-top: 1.1rem;
        display: flex;
        gap: .75rem;
        flex-wrap: wrap;
    }

    .nfintro-v7__actions a {
        display: inline-flex;
        min-height: 2.8rem;
        align-items: center;
        justify-content: center;
        padding: 0 1rem;
        border-radius: var(--radius-md);
        text-decoration: none;
        border: 1px solid rgba(255, 255, 255, .22);
        color: var(--fg-on-primary);
        background: rgba(255, 255, 255, .12);
    }

    .nfintro-v7__actions a:first-child {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-color: var(--bg-accent-hover);
    }

    .nfintro-v7__meta {
        display: grid;
        align-content: center;
        gap: .7rem;
    }

    .nfintro-v7__meta p,
    .nfintro-v7__meta div {margin: 0; color: rgba(255, 255, 255, .88);}

    @media (max-width: 860px) {
        .nfintro-v7__wrap {grid-template-columns: 1fr;}
    }

.next-route-l6 {
        padding: clamp(3.1rem, 7vw, 5.6rem) var(--space-x);
        background: var(--surface-1);
        color: var(--fg-on-page);
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .next-oute-l6__wrap {
        max-width: 56rem;
        margin: 0 auto;
    }

    .next-route-l6__head p {
        margin: 0;
        color: var(--neutral-600);
    }

    .next-route-l6__head h2 {
        margin: .5rem 0 0;
        font-size: clamp(2rem, 4vw, 3rem);
    }

    .next-route-l6__line {
        margin-top: 1rem;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr));
        gap: .7rem;
    }

    .next-route-l6__line a {
        display: flex;
        gap: .6rem;
        align-items: center;
        padding: .9rem;
        border-radius: var(--radius-md);
        background: var(--bg-alt);
        border: 1px solid var(--border-on-surface-light);
        text-decoration: none;
        color: var(--fg-on-page);
    }

    .next-route-l6__line i {
        font-style: normal;
    }

    .next-route-l6__copy {
        margin: 1rem 0 0;
        color: var(--neutral-600);
    }

    .next-route-l6__cta {
        display: inline-flex;
        margin-top: 1rem;
        min-height: 2.8rem;
        align-items: center;
        justify-content: center;
        padding: 0 1rem;
        border-radius: var(--radius-md);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        text-decoration: none;
    }

.education-struct-v6 {
        padding: calc(var(--space-y) * 2) var(--space-x);
        background: var(--neutral-900);
        color: var(--neutral-0)
    }

    .education-struct-v6 .shell {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        gap: var(--gap)
    }

    .education-struct-v6 h2, .education-struct-v6 h3, .education-struct-v6 p {
        margin: 0
    }

    .education-struct-v6 a {
        text-decoration: none
    }

    .education-struct-v6 article, .education-struct-v6 .row, .education-struct-v6 details, .education-struct-v6 .program {
        background: var(--neutral-800);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        padding: .85rem
    }

    .education-struct-v6 .grid, .education-struct-v6 .tiers {
        display: grid;
        grid-template-columns:repeat(3, minmax(0, 1fr));
        gap: var(--gap)
    }

    .education-struct-v6 .grid a, .education-struct-v6 .tiers a, .education-struct-v6 .cta a {
        display: inline-flex;
        min-height: 2.3rem;
        padding: 0 .8rem;
        align-items: center;
        border-radius: var(--radius-sm);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border: 1px solid var(--ring)
    }

    .education-struct-v6 .path {
        display: grid;
        gap: .65rem
    }

    .education-struct-v6 .path article {
        position: relative;
        padding-left: 1.25rem
    }

    .education-struct-v6 .path article::before {
        content: "";
        position: absolute;
        left: 0;
        top: .55rem;
        width: .5rem;
        height: .5rem;
        background: var(--bg-accent);
        border-radius: 50%
    }

    .education-struct-v6 .table {
        display: grid;
        gap: .45rem
    }

    .education-struct-v6 .row {
        display: grid;
        grid-template-columns:1fr 1fr 1fr;
        gap: .6rem
    }

    .education-struct-v6 .combo {
        display: grid;
        grid-template-columns:1fr 1fr;
        gap: var(--gap)
    }

    .education-struct-v6 .mentors {
        display: grid;
        gap: .6rem
    }

    .education-struct-v6 .mentors article {
        display: grid;
        grid-template-columns:3rem 1fr;
        gap: .6rem;
        align-items: center
    }

    .education-struct-v6 .mentors img {
        display: block;
        width: 3rem;
        height: 3rem;
        border-radius: 50%;
        object-fit: cover
    }

    .education-struct-v6 .program {
        display: grid;
        gap: .45rem
    }

    .education-struct-v6 .modules {
        display: grid;
        gap: .6rem
    }

    .education-struct-v6 .cta {
        display: flex
    }

    @media (max-width: 900px) {
        .education-struct-v6 .grid, .education-struct-v6 .tiers, .education-struct-v6 .combo {
            grid-template-columns:1fr 1fr
        }
    }

    @media (max-width: 680px) {
        .education-struct-v6 .grid, .education-struct-v6 .tiers, .education-struct-v6 .combo, .education-struct-v6 .row {
            grid-template-columns:1fr
        }
    }

.values-grid-l2 {
        padding: clamp(3.1rem, 7vw, 5.7rem) var(--space-x);
        background: var(--surface-1);
        color: var(--fg-on-page);
    }

    .values-grid-l2__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .values-grid-l2__head {
        margin-bottom: 1.1rem;
    }

    .values-grid-l2__head p {
        margin: 0;
        color: var(--brand);
        font-size: .82rem;
        text-transform: uppercase;
        letter-spacing: .1em;
    }

    .values-grid-l2__head h2 {
        margin: .5rem 0 0;
        font-size: clamp(2rem, 4vw, 3rem);
    }

    .values-grid-l2__grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
        gap: var(--gap);
    }

    .values-grid-l2__grid article {
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: var(--bg-alt);
        border: 1px solid var(--border-on-surface-light);
    }

    .values-grid-l2__grid i {
        font-style: normal;
    }

    .values-grid-l2__grid h3 {
        margin: .75rem 0 .35rem;
    }

    .values-grid-l2__grid p {
        margin: 0;
        color: var(--neutral-600);
    }

    .values-grid-l2__grid span {
        display: block;
        margin-top: .55rem;
        color: var(--neutral-800);
    }

.why-choose-alt {

        background: var(--gradient-accent);
        color: var(--fg-on-primary);
        padding: clamp(40px, 6vw, 80px) clamp(16px, 3vw, 40px);
        position: relative;
        overflow: hidden;
    }

    .why-choose-alt::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);

        animation: backgroundPulse 4s ease-in-out infinite;
    }

    @keyframes backgroundPulse {
        0%, 100% {

            transform: scale(1);
        }
        50% {
            opacity: 1;
            transform: scale(1.1);
        }
    }

    .why-choose-alt .why-choose-alt__c {
        max-width: var(--max-w);
        margin: 0 auto;
        position: relative;
        z-index: 1;
    }

    .why-choose-alt .why-choose-alt__h {
        color: var(--fg-on-surface-light);
        text-align: center;
        margin-bottom: clamp(32px, 5vw, 64px);

    }

    .why-choose-alt h2 {
        font-size: clamp(32px, 5vw, 48px);
        margin: 0 0 1rem;
        color: var(--fg-on-surface-light);
    }

    .why-choose-alt .why-choose-alt__subtitle {
        font-size: clamp(16px, 2vw, 20px);
        margin: 0;
        opacity: 0.9;
    }

    .why-choose-alt .why-choose-alt__list {
        display: flex;
        flex-direction: column;
        gap: clamp(16px, 2vw, 24px);
    }

    .why-choose-alt .why-choose-alt__item {
        display: flex;
        gap: clamp(16px, 2vw, 24px);
        background: var(--surface-light);
        padding: clamp(20px, 3vw, 32px);
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-on-surface-light);
        align-items: flex-start;

        position: relative;
        overflow: hidden;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .why-choose-alt .why-choose-alt__item::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: left 0.6s ease;
    }

    .why-choose-alt .why-choose-alt__item:hover {
        transform: translateX(8px);
        box-shadow: -8px 8px 24px rgba(0, 0, 0, 0.15);
    }

    .why-choose-alt .why-choose-alt__item:hover::before {
        left: 100%;
    }

    .why-choose-alt .why-choose-alt__number {
        flex-shrink: 0;
        width: 56px;
        height: 56px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-radius: var(--radius-md);
        font-size: clamp(20px, 2.5vw, 28px);
        font-weight: 700;
        position: relative;
        transition: transform var(--anim-duration) var(--anim-ease);
    }

    .why-choose-alt .why-choose-alt__item:hover .why-choose-alt__number {
        transform: rotate(360deg) scale(1.1);
    }

    .why-choose-alt .why-choose-alt__number::after {
        content: '';
        position: absolute;
        top: -3px;
        left: -3px;
        right: -3px;
        bottom: -3px;
        border-radius: var(--radius-md);
        border: 2px solid var(--bg-accent);

        animation: numberPulse 2s ease-in-out infinite;
    }

    @keyframes numberPulse {
        0%, 100% {

            transform: scale(1);
        }
        50% {
            opacity: 0.6;
            transform: scale(1.2);
        }
    }

    .why-choose-alt .why-choose-alt__content {
        flex: 1;
    }

    .why-choose-alt .why-choose-alt__item h3 {
        font-size: clamp(18px, 2.2vw, 24px);
        margin: 0 0 0.75rem;
        color: var(--fg-on-surface-light);
        transition: color var(--anim-duration) var(--anim-ease);
    }

    .why-choose-alt .why-choose-alt__item:hover h3 {
        color: var(--bg-accent);
    }

    .why-choose-alt .why-choose-alt__item p {
        margin: 0;
        color: var(--fg-on-surface-light);
        opacity: 0.85;
        line-height: var(--line-height-base);
    }

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

.header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
}

.logo {
    font-weight: 700;
    font-size: calc(var(--font-size-base) * 1.5);
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    transition: color var(--anim-duration) var(--anim-ease);
}
.logo:hover,
.logo:focus {
    color: var(--link-hover);
    outline: none;
}

.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-list {
    display: flex;
    gap: calc(var(--gap) * 2);
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
    position: relative;
}
.nav-link:hover,
.nav-link:focus {
    color: var(--brand);
    background-color: var(--btn-ghost-bg-hover);
    outline: none;
}
.nav-link[aria-current="page"] {
    color: var(--brand);
    background-color: var(--btn-ghost-bg);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: var(--gap);
}

.search-toggle,
.menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--fg-on-surface);
    padding: calc(var(--space-y) / 2);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.search-toggle:hover,
.search-toggle:focus,
.menu-toggle:hover,
.menu-toggle:focus {
    background-color: var(--btn-ghost-bg-hover);
    outline: none;
    color: var(--brand);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 1.75rem;
}
.menu-toggle-line {
    height: 2px;
    width: 100%;
    background-color: currentColor;
    border-radius: 1px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

.search-slot {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x) var(--space-y);
    display: none;
}
.search-slot[aria-hidden="false"] {
    display: block;
    animation: slideDown var(--anim-duration) var(--anim-ease);
}

.search-form {
    display: flex;
    gap: var(--gap);
}
.search-input {
    flex: 1;
    padding: calc(var(--space-y) / 1.5) var(--space-x);
    border: 1px solid var(--border-on-surface-light);
    border-radius: var(--radius-lg);
    background-color: var(--surface-light);
    color: var(--fg-on-surface-light);
    font-size: var(--font-size-base);
}
.search-input::placeholder {
    color: var(--input-placeholder);
}
.search-input:focus {
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}
.search-submit {
    padding: calc(var(--space-y) / 1.5) calc(var(--space-x) * 1.5);
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
    border: none;
    border-radius: var(--radius-lg);
    cursor: pointer;
    font-weight: 500;
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.search-submit:hover,
.search-submit:focus {
    background-color: var(--bg-primary-hover);
    outline: none;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 767px) {
    .menu-toggle {
        display: flex;
    }
    .main-nav {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-lg);
        padding: var(--space-y) var(--space-x);
        transform: translateY(-100%);
        transition: transform var(--anim-duration) var(--anim-ease);
        z-index: 999;
    }
    .main-nav[aria-expanded="true"] {
        transform: translateY(0);
    }
    .nav-list {
        flex-direction: column;
        gap: var(--gap);
        align-items: stretch;
    }
    .nav-link {
        display: block;
        text-align: center;
        padding: var(--space-y) var(--space-x);
    }
    .menu-toggle[aria-expanded="true"] .menu-toggle-line:nth-child(1) {
        transform: translateY(0.65rem) rotate(45deg);
    }
    .menu-toggle[aria-expanded="true"] .menu-toggle-line:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle[aria-expanded="true"] .menu-toggle-line:nth-child(3) {
        transform: translateY(-0.65rem) rotate(-45deg);
    }
}

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        border-top: 1px solid #dee2e6;
        padding: 2.5rem 0 1.5rem;
        font-family: 'Segoe UI', system-ui, sans-serif;
        line-height: 1.6;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }
    .footer-row {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 1.5rem;
    }
    .top-row {
        align-items: flex-start;
        padding-bottom: 1.5rem;
        border-bottom: 1px solid #e9ecef;
    }
    .middle-row {
        justify-content: flex-start;
    }
    .bottom-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
        padding-top: 1.5rem;
        border-top: 1px solid #e9ecef;
        font-size: 0.9rem;
        color: #6c757d;
    }
    .footer-brand .logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #1a1a1a;
        margin-bottom: 0.5rem;
    }
    .footer-nav ul {
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
        list-style: none;
        margin: 0;
        padding: 0;
    }
    .footer-nav a {
        color: #495057;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.2s ease;
    }
    .footer-nav a:hover {
        color: #0056b3;
        text-decoration: underline;
    }
    .footer-contacts ul {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 2rem;
    }
    .footer-contacts li {
        margin-bottom: 0.25rem;
    }
    .footer-contacts a {
        color: #0066cc;
        text-decoration: none;
    }
    .footer-contacts a:hover {
        text-decoration: underline;
    }
    .footer-copyright a {
        color: #6c757d;
        text-decoration: none;
        margin: 0 0.5rem;
    }
    .footer-copyright a:hover {
        text-decoration: underline;
        color: #333;
    }
    .footer-disclaimer {
        font-size: 0.85rem;
        line-height: 1.5;
        max-width: 800px;
        color: #868e96;
    }
    @media (max-width: 768px) {
        .footer-row {
            flex-direction: column;
            align-items: flex-start;
            gap: 1.5rem;
        }
        .footer-nav ul {
            flex-direction: column;
            gap: 0.75rem;
        }
        .footer-contacts ul {
            flex-direction: column;
            gap: 0.75rem;
        }
        .top-row, .middle-row, .bottom-row {
            border: none;
            padding-bottom: 0;
            padding-top: 0;
        }
    }

.cookie-lv12 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
    }

    .cookie-lv12__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-md);
        padding: calc(var(--space-y) * 0.9) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 12px var(--gap);
        align-items: center;
    }

    .cookie-lv12__title {
        font-weight: 700;
        color: var(--fg-on-surface);
    }

    .cookie-lv12 p {
        margin: 0;
        grid-column: 1 / 2;
        color: var(--fg-muted);
    }

    .cookie-lv12__actions {
        grid-row: 1 / 3;
        grid-column: 2 / 3;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
        justify-content: flex-end;
    }

    .cookie-lv12__actions button {
        border: 1px solid var(--border-on-surface);
        background: var(--surface-2);
        color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .cookie-lv12__actions button[data-choice='accept'] {
        background: var(--accent);
        color: var(--accent-contrast);
        border-color: transparent;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .cookie-lv12__wrap {
            grid-template-columns: 1fr;
        }

        .cookie-lv12 p,
        .cookie-lv12__actions {
            grid-column: auto;
            grid-row: auto;
        }

        .cookie-lv12__actions {
            justify-content: flex-start;
        }
    }

.identity-nv10 {
        padding: clamp(50px, 7vw, 90px) clamp(16px, 4vw, 36px);
        background: var(--bg-alt);
        color: var(--fg-on-page);
    }

    .identity-nv10__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .identity-nv10__head {
        margin-bottom: 16px;
    }

    .identity-nv10__head p {
        margin: 0;
        color: var(--neutral-600);
    }

    .identity-nv10__head h2 {
        margin: 7px 0;
        font-size: clamp(28px, 4vw, 42px);
    }

    .identity-nv10__head span {
        color: var(--neutral-600);
    }

    .identity-nv10__grid {
        display: grid;
        gap: var(--gap);
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    }

    .identity-nv10__grid article {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        background: var(--surface-light);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-sm);
    }

    .identity-nv10__grid i {
        display: inline-block;
        font-style: normal;
        color: var(--link);
        margin-bottom: 6px;
    }

    .identity-nv10__grid h3 {
        margin: 0;
        color: var(--neutral-900);
    }

    .identity-nv10__grid p {
        margin: 7px 0;
        color: var(--neutral-600);
    }

    .identity-nv10__grid small {
        color: var(--neutral-800);
        font-weight: 600;
    }

.about-mission {

        background: var(--bg-page);
        color: var(--fg-on-page);
        padding: clamp(16px, 3vw, 40px);
    }

    .about-mission__c {
        padding: 0 var(--space-x);
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .about-mission .about-mission__q {
        font-size: clamp(22px, 4.5vw, 40px);
        margin: 0 0 .6rem;
        font-weight: 700;
    }

    .about-mission .about-mission__txt {
        margin: 0;
        max-width: var(--max-w);
    }

.about-timeline {

        background: #fff;
        color: var(--fg-on-page);
        padding: clamp(16px, 3vw, 40px);
        overflow: auto;
    }

    .about-timeline .about-timeline__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .about-timeline .about-timeline__tbl {
        width: 100%;
        border-collapse: collapse;
    }

    .about-timeline .about-timeline__tbl td {
        border-bottom: 1px solid var(--ring);
        padding: .7rem .8rem;
    }

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

.header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
}

.logo {
    font-weight: 700;
    font-size: calc(var(--font-size-base) * 1.5);
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    transition: color var(--anim-duration) var(--anim-ease);
}
.logo:hover,
.logo:focus {
    color: var(--link-hover);
    outline: none;
}

.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-list {
    display: flex;
    gap: calc(var(--gap) * 2);
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
    position: relative;
}
.nav-link:hover,
.nav-link:focus {
    color: var(--brand);
    background-color: var(--btn-ghost-bg-hover);
    outline: none;
}
.nav-link[aria-current="page"] {
    color: var(--brand);
    background-color: var(--btn-ghost-bg);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: var(--gap);
}

.search-toggle,
.menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--fg-on-surface);
    padding: calc(var(--space-y) / 2);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.search-toggle:hover,
.search-toggle:focus,
.menu-toggle:hover,
.menu-toggle:focus {
    background-color: var(--btn-ghost-bg-hover);
    outline: none;
    color: var(--brand);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 1.75rem;
}
.menu-toggle-line {
    height: 2px;
    width: 100%;
    background-color: currentColor;
    border-radius: 1px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

.search-slot {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x) var(--space-y);
    display: none;
}
.search-slot[aria-hidden="false"] {
    display: block;
    animation: slideDown var(--anim-duration) var(--anim-ease);
}

.search-form {
    display: flex;
    gap: var(--gap);
}
.search-input {
    flex: 1;
    padding: calc(var(--space-y) / 1.5) var(--space-x);
    border: 1px solid var(--border-on-surface-light);
    border-radius: var(--radius-lg);
    background-color: var(--surface-light);
    color: var(--fg-on-surface-light);
    font-size: var(--font-size-base);
}
.search-input::placeholder {
    color: var(--input-placeholder);
}
.search-input:focus {
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}
.search-submit {
    padding: calc(var(--space-y) / 1.5) calc(var(--space-x) * 1.5);
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
    border: none;
    border-radius: var(--radius-lg);
    cursor: pointer;
    font-weight: 500;
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.search-submit:hover,
.search-submit:focus {
    background-color: var(--bg-primary-hover);
    outline: none;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 767px) {
    .menu-toggle {
        display: flex;
    }
    .main-nav {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-lg);
        padding: var(--space-y) var(--space-x);
        transform: translateY(-100%);
        transition: transform var(--anim-duration) var(--anim-ease);
        z-index: 999;
    }
    .main-nav[aria-expanded="true"] {
        transform: translateY(0);
    }
    .nav-list {
        flex-direction: column;
        gap: var(--gap);
        align-items: stretch;
    }
    .nav-link {
        display: block;
        text-align: center;
        padding: var(--space-y) var(--space-x);
    }
    .menu-toggle[aria-expanded="true"] .menu-toggle-line:nth-child(1) {
        transform: translateY(0.65rem) rotate(45deg);
    }
    .menu-toggle[aria-expanded="true"] .menu-toggle-line:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle[aria-expanded="true"] .menu-toggle-line:nth-child(3) {
        transform: translateY(-0.65rem) rotate(-45deg);
    }
}

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        border-top: 1px solid #dee2e6;
        padding: 2.5rem 0 1.5rem;
        font-family: 'Segoe UI', system-ui, sans-serif;
        line-height: 1.6;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }
    .footer-row {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 1.5rem;
    }
    .top-row {
        align-items: flex-start;
        padding-bottom: 1.5rem;
        border-bottom: 1px solid #e9ecef;
    }
    .middle-row {
        justify-content: flex-start;
    }
    .bottom-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
        padding-top: 1.5rem;
        border-top: 1px solid #e9ecef;
        font-size: 0.9rem;
        color: #6c757d;
    }
    .footer-brand .logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #1a1a1a;
        margin-bottom: 0.5rem;
    }
    .footer-nav ul {
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
        list-style: none;
        margin: 0;
        padding: 0;
    }
    .footer-nav a {
        color: #495057;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.2s ease;
    }
    .footer-nav a:hover {
        color: #0056b3;
        text-decoration: underline;
    }
    .footer-contacts ul {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 2rem;
    }
    .footer-contacts li {
        margin-bottom: 0.25rem;
    }
    .footer-contacts a {
        color: #0066cc;
        text-decoration: none;
    }
    .footer-contacts a:hover {
        text-decoration: underline;
    }
    .footer-copyright a {
        color: #6c757d;
        text-decoration: none;
        margin: 0 0.5rem;
    }
    .footer-copyright a:hover {
        text-decoration: underline;
        color: #333;
    }
    .footer-disclaimer {
        font-size: 0.85rem;
        line-height: 1.5;
        max-width: 800px;
        color: #868e96;
    }
    @media (max-width: 768px) {
        .footer-row {
            flex-direction: column;
            align-items: flex-start;
            gap: 1.5rem;
        }
        .footer-nav ul {
            flex-direction: column;
            gap: 0.75rem;
        }
        .footer-contacts ul {
            flex-direction: column;
            gap: 0.75rem;
        }
        .top-row, .middle-row, .bottom-row {
            border: none;
            padding-bottom: 0;
            padding-top: 0;
        }
    }

.cookie-lv12 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
    }

    .cookie-lv12__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-md);
        padding: calc(var(--space-y) * 0.9) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 12px var(--gap);
        align-items: center;
    }

    .cookie-lv12__title {
        font-weight: 700;
        color: var(--fg-on-surface);
    }

    .cookie-lv12 p {
        margin: 0;
        grid-column: 1 / 2;
        color: var(--fg-muted);
    }

    .cookie-lv12__actions {
        grid-row: 1 / 3;
        grid-column: 2 / 3;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
        justify-content: flex-end;
    }

    .cookie-lv12__actions button {
        border: 1px solid var(--border-on-surface);
        background: var(--surface-2);
        color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .cookie-lv12__actions button[data-choice='accept'] {
        background: var(--accent);
        color: var(--accent-contrast);
        border-color: transparent;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .cookie-lv12__wrap {
            grid-template-columns: 1fr;
        }

        .cookie-lv12 p,
        .cookie-lv12__actions {
            grid-column: auto;
            grid-row: auto;
        }

        .cookie-lv12__actions {
            justify-content: flex-start;
        }
    }

.hiw-ledger-l2 {
        padding: clamp(3.2rem, 7vw, 5.8rem) var(--space-x);
        background: var(--surface-1);
        color: var(--fg-on-page);
    }

    .hiw-ledger-l2__wrap {
        max-width: 60rem;
        margin: 0 auto;
    }

    .hiw-ledger-l2__head {
        text-align: center;
        margin-bottom: 1.2rem;
    }

    .hiw-ledger-l2__head p {
        margin: 0;
        color: var(--neutral-600);
    }

    .hiw-ledger-l2__head h2 {
        margin: .45rem 0 0;
        font-size: clamp(2rem, 4vw, 3rem);
    }

    .hiw-ledger-l2__rows {
        display: grid;
        gap: .8rem;
    }

    .hiw-ledger-l2__rows article {
        display: grid;
        grid-template-columns: 3rem 1fr;
        gap: .9rem;
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: var(--bg-alt);
        border: 1px solid var(--border-on-surface-light);
    }

    .hiw-ledger-l2__rows strong {
        display: grid;
        place-items: center;
        width: 3rem;
        height: 3rem;
        border-radius: var(--radius-md);
        background: var(--surface-1);
        color: var(--brand);
        box-shadow: var(--shadow-sm);
    }

    .hiw-ledger-l2__rows h3 {
        margin: 0;
    }

    .hiw-ledger-l2__rows p {
        margin: .35rem 0 0;
        color: var(--neutral-600);
    }

.statistics {
    padding: clamp(48px, 8vw, 80px) 0;
    background: var(--gradient-hero);
    color: var(--brand-contrast);
}

.statistics__inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
}

.statistics__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--gap);
    text-align: center;
}

.statistics__card {
    padding: clamp(16px, 3vw, 32px);
    background: var(--surface-light);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.statistics__number {
    font-size: clamp(32px, 6vw, 48px);
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
    color: var(--brand);
}

.statistics__label {
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--fg-on-surface);
}

.values-grid-l2 {
        padding: clamp(3.1rem, 7vw, 5.7rem) var(--space-x);
        background: var(--surface-1);
        color: var(--fg-on-page);
    }

    .values-grid-l2__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .values-grid-l2__head {
        margin-bottom: 1.1rem;
    }

    .values-grid-l2__head p {
        margin: 0;
        color: var(--brand);
        font-size: .82rem;
        text-transform: uppercase;
        letter-spacing: .1em;
    }

    .values-grid-l2__head h2 {
        margin: .5rem 0 0;
        font-size: clamp(2rem, 4vw, 3rem);
    }

    .values-grid-l2__grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
        gap: var(--gap);
    }

    .values-grid-l2__grid article {
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: var(--bg-alt);
        border: 1px solid var(--border-on-surface-light);
    }

    .values-grid-l2__grid i {
        font-style: normal;
    }

    .values-grid-l2__grid h3 {
        margin: .75rem 0 .35rem;
    }

    .values-grid-l2__grid p {
        margin: 0;
        color: var(--neutral-600);
    }

    .values-grid-l2__grid span {
        display: block;
        margin-top: .55rem;
        color: var(--neutral-800);
    }

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

.header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
}

.logo {
    font-weight: 700;
    font-size: calc(var(--font-size-base) * 1.5);
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    transition: color var(--anim-duration) var(--anim-ease);
}
.logo:hover,
.logo:focus {
    color: var(--link-hover);
    outline: none;
}

.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-list {
    display: flex;
    gap: calc(var(--gap) * 2);
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
    position: relative;
}
.nav-link:hover,
.nav-link:focus {
    color: var(--brand);
    background-color: var(--btn-ghost-bg-hover);
    outline: none;
}
.nav-link[aria-current="page"] {
    color: var(--brand);
    background-color: var(--btn-ghost-bg);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: var(--gap);
}

.search-toggle,
.menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--fg-on-surface);
    padding: calc(var(--space-y) / 2);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.search-toggle:hover,
.search-toggle:focus,
.menu-toggle:hover,
.menu-toggle:focus {
    background-color: var(--btn-ghost-bg-hover);
    outline: none;
    color: var(--brand);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 1.75rem;
}
.menu-toggle-line {
    height: 2px;
    width: 100%;
    background-color: currentColor;
    border-radius: 1px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

.search-slot {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x) var(--space-y);
    display: none;
}
.search-slot[aria-hidden="false"] {
    display: block;
    animation: slideDown var(--anim-duration) var(--anim-ease);
}

.search-form {
    display: flex;
    gap: var(--gap);
}
.search-input {
    flex: 1;
    padding: calc(var(--space-y) / 1.5) var(--space-x);
    border: 1px solid var(--border-on-surface-light);
    border-radius: var(--radius-lg);
    background-color: var(--surface-light);
    color: var(--fg-on-surface-light);
    font-size: var(--font-size-base);
}
.search-input::placeholder {
    color: var(--input-placeholder);
}
.search-input:focus {
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}
.search-submit {
    padding: calc(var(--space-y) / 1.5) calc(var(--space-x) * 1.5);
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
    border: none;
    border-radius: var(--radius-lg);
    cursor: pointer;
    font-weight: 500;
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.search-submit:hover,
.search-submit:focus {
    background-color: var(--bg-primary-hover);
    outline: none;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 767px) {
    .menu-toggle {
        display: flex;
    }
    .main-nav {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-lg);
        padding: var(--space-y) var(--space-x);
        transform: translateY(-100%);
        transition: transform var(--anim-duration) var(--anim-ease);
        z-index: 999;
    }
    .main-nav[aria-expanded="true"] {
        transform: translateY(0);
    }
    .nav-list {
        flex-direction: column;
        gap: var(--gap);
        align-items: stretch;
    }
    .nav-link {
        display: block;
        text-align: center;
        padding: var(--space-y) var(--space-x);
    }
    .menu-toggle[aria-expanded="true"] .menu-toggle-line:nth-child(1) {
        transform: translateY(0.65rem) rotate(45deg);
    }
    .menu-toggle[aria-expanded="true"] .menu-toggle-line:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle[aria-expanded="true"] .menu-toggle-line:nth-child(3) {
        transform: translateY(-0.65rem) rotate(-45deg);
    }
}

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        border-top: 1px solid #dee2e6;
        padding: 2.5rem 0 1.5rem;
        font-family: 'Segoe UI', system-ui, sans-serif;
        line-height: 1.6;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }
    .footer-row {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 1.5rem;
    }
    .top-row {
        align-items: flex-start;
        padding-bottom: 1.5rem;
        border-bottom: 1px solid #e9ecef;
    }
    .middle-row {
        justify-content: flex-start;
    }
    .bottom-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
        padding-top: 1.5rem;
        border-top: 1px solid #e9ecef;
        font-size: 0.9rem;
        color: #6c757d;
    }
    .footer-brand .logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #1a1a1a;
        margin-bottom: 0.5rem;
    }
    .footer-nav ul {
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
        list-style: none;
        margin: 0;
        padding: 0;
    }
    .footer-nav a {
        color: #495057;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.2s ease;
    }
    .footer-nav a:hover {
        color: #0056b3;
        text-decoration: underline;
    }
    .footer-contacts ul {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 2rem;
    }
    .footer-contacts li {
        margin-bottom: 0.25rem;
    }
    .footer-contacts a {
        color: #0066cc;
        text-decoration: none;
    }
    .footer-contacts a:hover {
        text-decoration: underline;
    }
    .footer-copyright a {
        color: #6c757d;
        text-decoration: none;
        margin: 0 0.5rem;
    }
    .footer-copyright a:hover {
        text-decoration: underline;
        color: #333;
    }
    .footer-disclaimer {
        font-size: 0.85rem;
        line-height: 1.5;
        max-width: 800px;
        color: #868e96;
    }
    @media (max-width: 768px) {
        .footer-row {
            flex-direction: column;
            align-items: flex-start;
            gap: 1.5rem;
        }
        .footer-nav ul {
            flex-direction: column;
            gap: 0.75rem;
        }
        .footer-contacts ul {
            flex-direction: column;
            gap: 0.75rem;
        }
        .top-row, .middle-row, .bottom-row {
            border: none;
            padding-bottom: 0;
            padding-top: 0;
        }
    }

.cookie-lv12 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
    }

    .cookie-lv12__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-md);
        padding: calc(var(--space-y) * 0.9) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 12px var(--gap);
        align-items: center;
    }

    .cookie-lv12__title {
        font-weight: 700;
        color: var(--fg-on-surface);
    }

    .cookie-lv12 p {
        margin: 0;
        grid-column: 1 / 2;
        color: var(--fg-muted);
    }

    .cookie-lv12__actions {
        grid-row: 1 / 3;
        grid-column: 2 / 3;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
        justify-content: flex-end;
    }

    .cookie-lv12__actions button {
        border: 1px solid var(--border-on-surface);
        background: var(--surface-2);
        color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .cookie-lv12__actions button[data-choice='accept'] {
        background: var(--accent);
        color: var(--accent-contrast);
        border-color: transparent;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .cookie-lv12__wrap {
            grid-template-columns: 1fr;
        }

        .cookie-lv12 p,
        .cookie-lv12__actions {
            grid-column: auto;
            grid-row: auto;
        }

        .cookie-lv12__actions {
            justify-content: flex-start;
        }
    }

.contacts-fresh-v3 {
        padding: calc(var(--space-y) * 3) var(--space-x);
        background: var(--surface-1);
        color: var(--fg-on-surface);
    }

    .contacts-fresh-v3 .shell {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        grid-template-columns:.9fr 1.1fr;
        gap: calc(var(--gap) * 2);
    }

    .contacts-fresh-v3 .left h2 {
        margin: .3rem 0;
        font-size: clamp(1.9rem, 3.8vw, 2.9rem);
    }

    .contacts-fresh-v3 .left p {
        max-width: 46ch;
        color: var(--fg-on-surface-light);
    }

    .contacts-fresh-v3 .right {
        display: grid;
        gap: var(--gap);
    }

    .contacts-fresh-v3 .row {
        padding: 1rem 1.1rem;
        border-left: 4px solid var(--bg-primary);
        background: var(--surface-2);
        border-radius: var(--radius-sm);
    }

    .contacts-fresh-v3 h3 {
        margin: 0 0 .3rem;
    }

    .contacts-fresh-v3 p {
        margin: 0;
        font-weight: 700;
    }

    .contacts-fresh-v3 small {
        color: var(--fg-on-surface-light);
    }

    @media (max-width: 900px) {
        .contacts-fresh-v3 .shell {
            grid-template-columns:1fr;
        }
    }

.form-layout-c {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 36px);
        background: linear-gradient(180deg, var(--bg-accent), var(--surface-1));
        color: var(--fg-on-page);
    }

    .form-layout-c .wrap {
        max-width: 900px;
        margin: 0 auto;
    }

    .form-layout-c .section-head {
        margin-bottom: 16px;
        text-align: center;
    }

    .form-layout-c h2 {
        margin: 0;
        font-size: clamp(28px, 4vw, 40px);
    }

    .form-layout-c .section-head p {
        margin: 10px auto 0;
        max-width: 70ch;
        color: var(--neutral-600);
    }

    .form-layout-c .steps {
        background: var(--surface-1);
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-on-surface-light);
        padding: 16px;
    }

    .form-layout-c .row {
        display: grid;
        gap: 10px;
    }

    .form-layout-c .row.two {
        grid-template-columns: 1fr 1fr;
    }

    .form-layout-c label {
        display: grid;
        gap: 6px;
        margin-bottom: 10px;
    }

    .form-layout-c input:not([type="checkbox"]), .form-layout-c textarea {
        width: 100%;
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-sm);
        padding: 9px;
        font: inherit;
    }

    .form-layout-c .agree {
        display: flex;
        gap: 8px;
        align-items: center;
        margin-top: 2px;
    }

    .form-layout-c button {
        margin-top: 10px;
        border: 0;
        border-radius: var(--radius-sm);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        padding: 10px 14px;
    }

    @media (max-width: 760px) {
        .form-layout-c .row.two {
            grid-template-columns: 1fr;
        }
    }

.nftouch-v10 {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 3vw, 36px);
        background: var(--bg-alt);
        color: var(--fg-on-page);
    }

    .nftouch-v10__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .nftouch-v10__head {
        margin-bottom: 14px;
    }

    .nftouch-v10 h2 {
        margin: 0;
        font-size: clamp(28px, 4vw, 40px);
    }

    .nftouch-v10__head p {
        margin: 10px 0 0;
        color: var(--neutral-600);
    }

    .nftouch-v10__cols {
        display: grid;
        grid-template-columns: 1.2fr .8fr;
        gap: 12px;
    }

    .nftouch-v10__left,
    .nftouch-v10__right {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        padding: 12px;
    }

    .nftouch-v10__left p {
        margin: 0 0 8px;
        color: var(--neutral-600);
    }

    .nftouch-v10__left article {
        padding: 8px 0;
        border-bottom: 1px solid var(--border-on-surface-light);
        display: grid;
        gap: 6px;
    }

    .nftouch-v10__left article:last-child {
        border-bottom: 0;
    }

    .nftouch-v10__left h3 {
        margin: 0;
    }

    .nftouch-v10__left span {
        color: var(--neutral-600);
    }

    .nftouch-v10__left a {
        color: var(--link);
        text-decoration: none;
    }

    .nftouch-v10__right img {
        width: 100%;
        border-radius: var(--radius-md);
        border: 1px solid var(--border-on-surface-light);
    }

    .nftouch-v10__right a {
        display: inline-block;
        margin-top: 10px;
        text-decoration: none;
        padding: 10px 14px;
        border-radius: var(--radius-md);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
    }

    @media (max-width: 860px) {
        .nftouch-v10__cols {
            grid-template-columns: 1fr;
        }
    }

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

.header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
}

.logo {
    font-weight: 700;
    font-size: calc(var(--font-size-base) * 1.5);
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    transition: color var(--anim-duration) var(--anim-ease);
}
.logo:hover,
.logo:focus {
    color: var(--link-hover);
    outline: none;
}

.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-list {
    display: flex;
    gap: calc(var(--gap) * 2);
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
    position: relative;
}
.nav-link:hover,
.nav-link:focus {
    color: var(--brand);
    background-color: var(--btn-ghost-bg-hover);
    outline: none;
}
.nav-link[aria-current="page"] {
    color: var(--brand);
    background-color: var(--btn-ghost-bg);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: var(--gap);
}

.search-toggle,
.menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--fg-on-surface);
    padding: calc(var(--space-y) / 2);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.search-toggle:hover,
.search-toggle:focus,
.menu-toggle:hover,
.menu-toggle:focus {
    background-color: var(--btn-ghost-bg-hover);
    outline: none;
    color: var(--brand);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 1.75rem;
}
.menu-toggle-line {
    height: 2px;
    width: 100%;
    background-color: currentColor;
    border-radius: 1px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

.search-slot {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x) var(--space-y);
    display: none;
}
.search-slot[aria-hidden="false"] {
    display: block;
    animation: slideDown var(--anim-duration) var(--anim-ease);
}

.search-form {
    display: flex;
    gap: var(--gap);
}
.search-input {
    flex: 1;
    padding: calc(var(--space-y) / 1.5) var(--space-x);
    border: 1px solid var(--border-on-surface-light);
    border-radius: var(--radius-lg);
    background-color: var(--surface-light);
    color: var(--fg-on-surface-light);
    font-size: var(--font-size-base);
}
.search-input::placeholder {
    color: var(--input-placeholder);
}
.search-input:focus {
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}
.search-submit {
    padding: calc(var(--space-y) / 1.5) calc(var(--space-x) * 1.5);
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
    border: none;
    border-radius: var(--radius-lg);
    cursor: pointer;
    font-weight: 500;
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.search-submit:hover,
.search-submit:focus {
    background-color: var(--bg-primary-hover);
    outline: none;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 767px) {
    .menu-toggle {
        display: flex;
    }
    .main-nav {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-lg);
        padding: var(--space-y) var(--space-x);
        transform: translateY(-100%);
        transition: transform var(--anim-duration) var(--anim-ease);
        z-index: 999;
    }
    .main-nav[aria-expanded="true"] {
        transform: translateY(0);
    }
    .nav-list {
        flex-direction: column;
        gap: var(--gap);
        align-items: stretch;
    }
    .nav-link {
        display: block;
        text-align: center;
        padding: var(--space-y) var(--space-x);
    }
    .menu-toggle[aria-expanded="true"] .menu-toggle-line:nth-child(1) {
        transform: translateY(0.65rem) rotate(45deg);
    }
    .menu-toggle[aria-expanded="true"] .menu-toggle-line:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle[aria-expanded="true"] .menu-toggle-line:nth-child(3) {
        transform: translateY(-0.65rem) rotate(-45deg);
    }
}

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        border-top: 1px solid #dee2e6;
        padding: 2.5rem 0 1.5rem;
        font-family: 'Segoe UI', system-ui, sans-serif;
        line-height: 1.6;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }
    .footer-row {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 1.5rem;
    }
    .top-row {
        align-items: flex-start;
        padding-bottom: 1.5rem;
        border-bottom: 1px solid #e9ecef;
    }
    .middle-row {
        justify-content: flex-start;
    }
    .bottom-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
        padding-top: 1.5rem;
        border-top: 1px solid #e9ecef;
        font-size: 0.9rem;
        color: #6c757d;
    }
    .footer-brand .logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #1a1a1a;
        margin-bottom: 0.5rem;
    }
    .footer-nav ul {
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
        list-style: none;
        margin: 0;
        padding: 0;
    }
    .footer-nav a {
        color: #495057;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.2s ease;
    }
    .footer-nav a:hover {
        color: #0056b3;
        text-decoration: underline;
    }
    .footer-contacts ul {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 2rem;
    }
    .footer-contacts li {
        margin-bottom: 0.25rem;
    }
    .footer-contacts a {
        color: #0066cc;
        text-decoration: none;
    }
    .footer-contacts a:hover {
        text-decoration: underline;
    }
    .footer-copyright a {
        color: #6c757d;
        text-decoration: none;
        margin: 0 0.5rem;
    }
    .footer-copyright a:hover {
        text-decoration: underline;
        color: #333;
    }
    .footer-disclaimer {
        font-size: 0.85rem;
        line-height: 1.5;
        max-width: 800px;
        color: #868e96;
    }
    @media (max-width: 768px) {
        .footer-row {
            flex-direction: column;
            align-items: flex-start;
            gap: 1.5rem;
        }
        .footer-nav ul {
            flex-direction: column;
            gap: 0.75rem;
        }
        .footer-contacts ul {
            flex-direction: column;
            gap: 0.75rem;
        }
        .top-row, .middle-row, .bottom-row {
            border: none;
            padding-bottom: 0;
            padding-top: 0;
        }
    }

.cookie-lv12 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
    }

    .cookie-lv12__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-md);
        padding: calc(var(--space-y) * 0.9) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 12px var(--gap);
        align-items: center;
    }

    .cookie-lv12__title {
        font-weight: 700;
        color: var(--fg-on-surface);
    }

    .cookie-lv12 p {
        margin: 0;
        grid-column: 1 / 2;
        color: var(--fg-muted);
    }

    .cookie-lv12__actions {
        grid-row: 1 / 3;
        grid-column: 2 / 3;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
        justify-content: flex-end;
    }

    .cookie-lv12__actions button {
        border: 1px solid var(--border-on-surface);
        background: var(--surface-2);
        color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .cookie-lv12__actions button[data-choice='accept'] {
        background: var(--accent);
        color: var(--accent-contrast);
        border-color: transparent;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .cookie-lv12__wrap {
            grid-template-columns: 1fr;
        }

        .cookie-lv12 p,
        .cookie-lv12__actions {
            grid-column: auto;
            grid-row: auto;
        }

        .cookie-lv12__actions {
            justify-content: flex-start;
        }
    }

.terms-layout-d {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 36px);
        background: var(--accent);
        color: var(--neutral-0);
    }

    .terms-layout-d .wrap {
        max-width: 920px;
        margin: 0 auto;
    }

    .terms-layout-d .section-head {
        margin-bottom: 16px;
    }

    .terms-layout-d h2 {
        margin: 0;
        font-size: clamp(28px, 4vw, 40px);
    }

    .terms-layout-d .section-head p {
        margin: 10px 0 0;
        color: var(--neutral-100);
    }

    .terms-layout-d ol {
        margin: 0;
        padding-left: 20px;
        display: grid;
        gap: 10px;
    }

    .terms-layout-d li {
        border: 1px solid rgba(255, 255, 255, .2);
        border-radius: var(--radius-md);
        background: rgba(255, 255, 255, .05);
        padding: 12px;
    }

    .terms-layout-d h3, .terms-layout-d h4 {
        margin: 0 0 8px;
    }

    .terms-layout-d p, .terms-layout-d li li {
        color: var(--neutral-100);
    }

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

.header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
}

.logo {
    font-weight: 700;
    font-size: calc(var(--font-size-base) * 1.5);
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    transition: color var(--anim-duration) var(--anim-ease);
}
.logo:hover,
.logo:focus {
    color: var(--link-hover);
    outline: none;
}

.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-list {
    display: flex;
    gap: calc(var(--gap) * 2);
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
    position: relative;
}
.nav-link:hover,
.nav-link:focus {
    color: var(--brand);
    background-color: var(--btn-ghost-bg-hover);
    outline: none;
}
.nav-link[aria-current="page"] {
    color: var(--brand);
    background-color: var(--btn-ghost-bg);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: var(--gap);
}

.search-toggle,
.menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--fg-on-surface);
    padding: calc(var(--space-y) / 2);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.search-toggle:hover,
.search-toggle:focus,
.menu-toggle:hover,
.menu-toggle:focus {
    background-color: var(--btn-ghost-bg-hover);
    outline: none;
    color: var(--brand);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 1.75rem;
}
.menu-toggle-line {
    height: 2px;
    width: 100%;
    background-color: currentColor;
    border-radius: 1px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

.search-slot {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x) var(--space-y);
    display: none;
}
.search-slot[aria-hidden="false"] {
    display: block;
    animation: slideDown var(--anim-duration) var(--anim-ease);
}

.search-form {
    display: flex;
    gap: var(--gap);
}
.search-input {
    flex: 1;
    padding: calc(var(--space-y) / 1.5) var(--space-x);
    border: 1px solid var(--border-on-surface-light);
    border-radius: var(--radius-lg);
    background-color: var(--surface-light);
    color: var(--fg-on-surface-light);
    font-size: var(--font-size-base);
}
.search-input::placeholder {
    color: var(--input-placeholder);
}
.search-input:focus {
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}
.search-submit {
    padding: calc(var(--space-y) / 1.5) calc(var(--space-x) * 1.5);
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
    border: none;
    border-radius: var(--radius-lg);
    cursor: pointer;
    font-weight: 500;
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.search-submit:hover,
.search-submit:focus {
    background-color: var(--bg-primary-hover);
    outline: none;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 767px) {
    .menu-toggle {
        display: flex;
    }
    .main-nav {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-lg);
        padding: var(--space-y) var(--space-x);
        transform: translateY(-100%);
        transition: transform var(--anim-duration) var(--anim-ease);
        z-index: 999;
    }
    .main-nav[aria-expanded="true"] {
        transform: translateY(0);
    }
    .nav-list {
        flex-direction: column;
        gap: var(--gap);
        align-items: stretch;
    }
    .nav-link {
        display: block;
        text-align: center;
        padding: var(--space-y) var(--space-x);
    }
    .menu-toggle[aria-expanded="true"] .menu-toggle-line:nth-child(1) {
        transform: translateY(0.65rem) rotate(45deg);
    }
    .menu-toggle[aria-expanded="true"] .menu-toggle-line:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle[aria-expanded="true"] .menu-toggle-line:nth-child(3) {
        transform: translateY(-0.65rem) rotate(-45deg);
    }
}

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        border-top: 1px solid #dee2e6;
        padding: 2.5rem 0 1.5rem;
        font-family: 'Segoe UI', system-ui, sans-serif;
        line-height: 1.6;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }
    .footer-row {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 1.5rem;
    }
    .top-row {
        align-items: flex-start;
        padding-bottom: 1.5rem;
        border-bottom: 1px solid #e9ecef;
    }
    .middle-row {
        justify-content: flex-start;
    }
    .bottom-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
        padding-top: 1.5rem;
        border-top: 1px solid #e9ecef;
        font-size: 0.9rem;
        color: #6c757d;
    }
    .footer-brand .logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #1a1a1a;
        margin-bottom: 0.5rem;
    }
    .footer-nav ul {
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
        list-style: none;
        margin: 0;
        padding: 0;
    }
    .footer-nav a {
        color: #495057;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.2s ease;
    }
    .footer-nav a:hover {
        color: #0056b3;
        text-decoration: underline;
    }
    .footer-contacts ul {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 2rem;
    }
    .footer-contacts li {
        margin-bottom: 0.25rem;
    }
    .footer-contacts a {
        color: #0066cc;
        text-decoration: none;
    }
    .footer-contacts a:hover {
        text-decoration: underline;
    }
    .footer-copyright a {
        color: #6c757d;
        text-decoration: none;
        margin: 0 0.5rem;
    }
    .footer-copyright a:hover {
        text-decoration: underline;
        color: #333;
    }
    .footer-disclaimer {
        font-size: 0.85rem;
        line-height: 1.5;
        max-width: 800px;
        color: #868e96;
    }
    @media (max-width: 768px) {
        .footer-row {
            flex-direction: column;
            align-items: flex-start;
            gap: 1.5rem;
        }
        .footer-nav ul {
            flex-direction: column;
            gap: 0.75rem;
        }
        .footer-contacts ul {
            flex-direction: column;
            gap: 0.75rem;
        }
        .top-row, .middle-row, .bottom-row {
            border: none;
            padding-bottom: 0;
            padding-top: 0;
        }
    }

.cookie-lv12 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
    }

    .cookie-lv12__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-md);
        padding: calc(var(--space-y) * 0.9) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 12px var(--gap);
        align-items: center;
    }

    .cookie-lv12__title {
        font-weight: 700;
        color: var(--fg-on-surface);
    }

    .cookie-lv12 p {
        margin: 0;
        grid-column: 1 / 2;
        color: var(--fg-muted);
    }

    .cookie-lv12__actions {
        grid-row: 1 / 3;
        grid-column: 2 / 3;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
        justify-content: flex-end;
    }

    .cookie-lv12__actions button {
        border: 1px solid var(--border-on-surface);
        background: var(--surface-2);
        color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .cookie-lv12__actions button[data-choice='accept'] {
        background: var(--accent);
        color: var(--accent-contrast);
        border-color: transparent;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .cookie-lv12__wrap {
            grid-template-columns: 1fr;
        }

        .cookie-lv12 p,
        .cookie-lv12__actions {
            grid-column: auto;
            grid-row: auto;
        }

        .cookie-lv12__actions {
            justify-content: flex-start;
        }
    }

.policy-layout-f {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 36px);
        background: linear-gradient(180deg, var(--surface-2), var(--surface-1));
        color: var(--fg-on-page);
    }

    .policy-layout-f .wrap {
        max-width: 980px;
        margin: 0 auto;
    }

    .policy-layout-f .section-head {
        margin-bottom: 16px;
    }

    .policy-layout-f h2 {
        margin: 0;
        font-size: clamp(28px, 4vw, 40px);
    }

    .policy-layout-f .section-head p {
        margin: 10px 0 0;
        color: var(--neutral-600);
    }

    .policy-layout-f .rows {
        display: grid;
        gap: 10px;
    }

    .policy-layout-f article {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-md);
        padding: 12px;
        background: var(--surface-1);
    }

    .policy-layout-f .head {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .policy-layout-f .head span {
        min-width: 30px;
        height: 30px;
        display: grid;
        place-items: center;
        border-radius: 50%;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        font-weight: 700;
    }

    .policy-layout-f .head h3 {
        margin: 0;
    }

    .policy-layout-f article p {
        margin: 8px 0 0;
        color: var(--neutral-600);
    }

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

.header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
}

.logo {
    font-weight: 700;
    font-size: calc(var(--font-size-base) * 1.5);
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    transition: color var(--anim-duration) var(--anim-ease);
}
.logo:hover,
.logo:focus {
    color: var(--link-hover);
    outline: none;
}

.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-list {
    display: flex;
    gap: calc(var(--gap) * 2);
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
    position: relative;
}
.nav-link:hover,
.nav-link:focus {
    color: var(--brand);
    background-color: var(--btn-ghost-bg-hover);
    outline: none;
}
.nav-link[aria-current="page"] {
    color: var(--brand);
    background-color: var(--btn-ghost-bg);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: var(--gap);
}

.search-toggle,
.menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--fg-on-surface);
    padding: calc(var(--space-y) / 2);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.search-toggle:hover,
.search-toggle:focus,
.menu-toggle:hover,
.menu-toggle:focus {
    background-color: var(--btn-ghost-bg-hover);
    outline: none;
    color: var(--brand);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 1.75rem;
}
.menu-toggle-line {
    height: 2px;
    width: 100%;
    background-color: currentColor;
    border-radius: 1px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

.search-slot {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x) var(--space-y);
    display: none;
}
.search-slot[aria-hidden="false"] {
    display: block;
    animation: slideDown var(--anim-duration) var(--anim-ease);
}

.search-form {
    display: flex;
    gap: var(--gap);
}
.search-input {
    flex: 1;
    padding: calc(var(--space-y) / 1.5) var(--space-x);
    border: 1px solid var(--border-on-surface-light);
    border-radius: var(--radius-lg);
    background-color: var(--surface-light);
    color: var(--fg-on-surface-light);
    font-size: var(--font-size-base);
}
.search-input::placeholder {
    color: var(--input-placeholder);
}
.search-input:focus {
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}
.search-submit {
    padding: calc(var(--space-y) / 1.5) calc(var(--space-x) * 1.5);
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
    border: none;
    border-radius: var(--radius-lg);
    cursor: pointer;
    font-weight: 500;
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.search-submit:hover,
.search-submit:focus {
    background-color: var(--bg-primary-hover);
    outline: none;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 767px) {
    .menu-toggle {
        display: flex;
    }
    .main-nav {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-lg);
        padding: var(--space-y) var(--space-x);
        transform: translateY(-100%);
        transition: transform var(--anim-duration) var(--anim-ease);
        z-index: 999;
    }
    .main-nav[aria-expanded="true"] {
        transform: translateY(0);
    }
    .nav-list {
        flex-direction: column;
        gap: var(--gap);
        align-items: stretch;
    }
    .nav-link {
        display: block;
        text-align: center;
        padding: var(--space-y) var(--space-x);
    }
    .menu-toggle[aria-expanded="true"] .menu-toggle-line:nth-child(1) {
        transform: translateY(0.65rem) rotate(45deg);
    }
    .menu-toggle[aria-expanded="true"] .menu-toggle-line:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle[aria-expanded="true"] .menu-toggle-line:nth-child(3) {
        transform: translateY(-0.65rem) rotate(-45deg);
    }
}

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        border-top: 1px solid #dee2e6;
        padding: 2.5rem 0 1.5rem;
        font-family: 'Segoe UI', system-ui, sans-serif;
        line-height: 1.6;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }
    .footer-row {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 1.5rem;
    }
    .top-row {
        align-items: flex-start;
        padding-bottom: 1.5rem;
        border-bottom: 1px solid #e9ecef;
    }
    .middle-row {
        justify-content: flex-start;
    }
    .bottom-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
        padding-top: 1.5rem;
        border-top: 1px solid #e9ecef;
        font-size: 0.9rem;
        color: #6c757d;
    }
    .footer-brand .logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #1a1a1a;
        margin-bottom: 0.5rem;
    }
    .footer-nav ul {
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
        list-style: none;
        margin: 0;
        padding: 0;
    }
    .footer-nav a {
        color: #495057;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.2s ease;
    }
    .footer-nav a:hover {
        color: #0056b3;
        text-decoration: underline;
    }
    .footer-contacts ul {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 2rem;
    }
    .footer-contacts li {
        margin-bottom: 0.25rem;
    }
    .footer-contacts a {
        color: #0066cc;
        text-decoration: none;
    }
    .footer-contacts a:hover {
        text-decoration: underline;
    }
    .footer-copyright a {
        color: #6c757d;
        text-decoration: none;
        margin: 0 0.5rem;
    }
    .footer-copyright a:hover {
        text-decoration: underline;
        color: #333;
    }
    .footer-disclaimer {
        font-size: 0.85rem;
        line-height: 1.5;
        max-width: 800px;
        color: #868e96;
    }
    @media (max-width: 768px) {
        .footer-row {
            flex-direction: column;
            align-items: flex-start;
            gap: 1.5rem;
        }
        .footer-nav ul {
            flex-direction: column;
            gap: 0.75rem;
        }
        .footer-contacts ul {
            flex-direction: column;
            gap: 0.75rem;
        }
        .top-row, .middle-row, .bottom-row {
            border: none;
            padding-bottom: 0;
            padding-top: 0;
        }
    }

.cookie-lv12 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
    }

    .cookie-lv12__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-md);
        padding: calc(var(--space-y) * 0.9) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 12px var(--gap);
        align-items: center;
    }

    .cookie-lv12__title {
        font-weight: 700;
        color: var(--fg-on-surface);
    }

    .cookie-lv12 p {
        margin: 0;
        grid-column: 1 / 2;
        color: var(--fg-muted);
    }

    .cookie-lv12__actions {
        grid-row: 1 / 3;
        grid-column: 2 / 3;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
        justify-content: flex-end;
    }

    .cookie-lv12__actions button {
        border: 1px solid var(--border-on-surface);
        background: var(--surface-2);
        color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .cookie-lv12__actions button[data-choice='accept'] {
        background: var(--accent);
        color: var(--accent-contrast);
        border-color: transparent;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .cookie-lv12__wrap {
            grid-template-columns: 1fr;
        }

        .cookie-lv12 p,
        .cookie-lv12__actions {
            grid-column: auto;
            grid-row: auto;
        }

        .cookie-lv12__actions {
            justify-content: flex-start;
        }
    }

.nfthank-v10 {
        padding: clamp(58px, 10vw, 114px) 18px;
        background: var(--surface-1);
        color: var(--fg-on-page);
    }

    .nfthank-v10__wrap {
        max-width: 740px;
        margin: 0 auto;
        text-align: center;
        padding: clamp(28px, 4vw, 42px);
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-xl);
        background: linear-gradient(180deg, var(--surface-1), var(--surface-2));
    }

    .nfthank-v10 h1 {
        margin: 0;
        font-size: clamp(32px, 5vw, 52px);
    }

    .nfthank-v10 p {
        margin: 10px 0 0;
        color: var(--neutral-600);
    }

    .nfthank-v10 a {
        display: inline-block;
        margin-top: 16px;
        padding: 9px 14px;
        border-radius: var(--radius-sm);
        text-decoration: none;
        border: 1px solid var(--border-on-surface);
        color: var(--fg-on-page);
    }

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

.header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
}

.logo {
    font-weight: 700;
    font-size: calc(var(--font-size-base) * 1.5);
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    transition: color var(--anim-duration) var(--anim-ease);
}
.logo:hover,
.logo:focus {
    color: var(--link-hover);
    outline: none;
}

.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-list {
    display: flex;
    gap: calc(var(--gap) * 2);
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
    position: relative;
}
.nav-link:hover,
.nav-link:focus {
    color: var(--brand);
    background-color: var(--btn-ghost-bg-hover);
    outline: none;
}
.nav-link[aria-current="page"] {
    color: var(--brand);
    background-color: var(--btn-ghost-bg);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: var(--gap);
}

.search-toggle,
.menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--fg-on-surface);
    padding: calc(var(--space-y) / 2);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.search-toggle:hover,
.search-toggle:focus,
.menu-toggle:hover,
.menu-toggle:focus {
    background-color: var(--btn-ghost-bg-hover);
    outline: none;
    color: var(--brand);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 1.75rem;
}
.menu-toggle-line {
    height: 2px;
    width: 100%;
    background-color: currentColor;
    border-radius: 1px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

.search-slot {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x) var(--space-y);
    display: none;
}
.search-slot[aria-hidden="false"] {
    display: block;
    animation: slideDown var(--anim-duration) var(--anim-ease);
}

.search-form {
    display: flex;
    gap: var(--gap);
}
.search-input {
    flex: 1;
    padding: calc(var(--space-y) / 1.5) var(--space-x);
    border: 1px solid var(--border-on-surface-light);
    border-radius: var(--radius-lg);
    background-color: var(--surface-light);
    color: var(--fg-on-surface-light);
    font-size: var(--font-size-base);
}
.search-input::placeholder {
    color: var(--input-placeholder);
}
.search-input:focus {
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}
.search-submit {
    padding: calc(var(--space-y) / 1.5) calc(var(--space-x) * 1.5);
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
    border: none;
    border-radius: var(--radius-lg);
    cursor: pointer;
    font-weight: 500;
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.search-submit:hover,
.search-submit:focus {
    background-color: var(--bg-primary-hover);
    outline: none;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 767px) {
    .menu-toggle {
        display: flex;
    }
    .main-nav {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-lg);
        padding: var(--space-y) var(--space-x);
        transform: translateY(-100%);
        transition: transform var(--anim-duration) var(--anim-ease);
        z-index: 999;
    }
    .main-nav[aria-expanded="true"] {
        transform: translateY(0);
    }
    .nav-list {
        flex-direction: column;
        gap: var(--gap);
        align-items: stretch;
    }
    .nav-link {
        display: block;
        text-align: center;
        padding: var(--space-y) var(--space-x);
    }
    .menu-toggle[aria-expanded="true"] .menu-toggle-line:nth-child(1) {
        transform: translateY(0.65rem) rotate(45deg);
    }
    .menu-toggle[aria-expanded="true"] .menu-toggle-line:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle[aria-expanded="true"] .menu-toggle-line:nth-child(3) {
        transform: translateY(-0.65rem) rotate(-45deg);
    }
}

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        border-top: 1px solid #dee2e6;
        padding: 2.5rem 0 1.5rem;
        font-family: 'Segoe UI', system-ui, sans-serif;
        line-height: 1.6;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }
    .footer-row {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 1.5rem;
    }
    .top-row {
        align-items: flex-start;
        padding-bottom: 1.5rem;
        border-bottom: 1px solid #e9ecef;
    }
    .middle-row {
        justify-content: flex-start;
    }
    .bottom-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
        padding-top: 1.5rem;
        border-top: 1px solid #e9ecef;
        font-size: 0.9rem;
        color: #6c757d;
    }
    .footer-brand .logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #1a1a1a;
        margin-bottom: 0.5rem;
    }
    .footer-nav ul {
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
        list-style: none;
        margin: 0;
        padding: 0;
    }
    .footer-nav a {
        color: #495057;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.2s ease;
    }
    .footer-nav a:hover {
        color: #0056b3;
        text-decoration: underline;
    }
    .footer-contacts ul {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 2rem;
    }
    .footer-contacts li {
        margin-bottom: 0.25rem;
    }
    .footer-contacts a {
        color: #0066cc;
        text-decoration: none;
    }
    .footer-contacts a:hover {
        text-decoration: underline;
    }
    .footer-copyright a {
        color: #6c757d;
        text-decoration: none;
        margin: 0 0.5rem;
    }
    .footer-copyright a:hover {
        text-decoration: underline;
        color: #333;
    }
    .footer-disclaimer {
        font-size: 0.85rem;
        line-height: 1.5;
        max-width: 800px;
        color: #868e96;
    }
    @media (max-width: 768px) {
        .footer-row {
            flex-direction: column;
            align-items: flex-start;
            gap: 1.5rem;
        }
        .footer-nav ul {
            flex-direction: column;
            gap: 0.75rem;
        }
        .footer-contacts ul {
            flex-direction: column;
            gap: 0.75rem;
        }
        .top-row, .middle-row, .bottom-row {
            border: none;
            padding-bottom: 0;
            padding-top: 0;
        }
    }

.cookie-lv12 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
    }

    .cookie-lv12__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-md);
        padding: calc(var(--space-y) * 0.9) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 12px var(--gap);
        align-items: center;
    }

    .cookie-lv12__title {
        font-weight: 700;
        color: var(--fg-on-surface);
    }

    .cookie-lv12 p {
        margin: 0;
        grid-column: 1 / 2;
        color: var(--fg-muted);
    }

    .cookie-lv12__actions {
        grid-row: 1 / 3;
        grid-column: 2 / 3;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
        justify-content: flex-end;
    }

    .cookie-lv12__actions button {
        border: 1px solid var(--border-on-surface);
        background: var(--surface-2);
        color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .cookie-lv12__actions button[data-choice='accept'] {
        background: var(--accent);
        color: var(--accent-contrast);
        border-color: transparent;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .cookie-lv12__wrap {
            grid-template-columns: 1fr;
        }

        .cookie-lv12 p,
        .cookie-lv12__actions {
            grid-column: auto;
            grid-row: auto;
        }

        .cookie-lv12__actions {
            justify-content: flex-start;
        }
    }

.nf404-v11 {
        padding: clamp(56px, 10vw, 112px) 20px;
        background: linear-gradient(150deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
    }

    .nf404-v11__shell {
        max-width: 700px;
        margin: 0 auto;
        text-align: center;
        border-radius: var(--radius-xl);
        padding: clamp(28px, 4vw, 44px);
        background: rgba(15, 23, 42, .24);
        border: 1px solid rgba(255, 255, 255, .24);
    }

    .nf404-v11 h1 {
        margin: 0;
        font-size: clamp(32px, 6vw, 56px);
    }

    .nf404-v11 p {
        margin: 12px 0 0;
        opacity: .9;
    }

    .nf404-v11 a {
        display: inline-block;
        margin-top: 18px;
        padding: 10px 16px;
        border-radius: var(--radius-sm);
        background: var(--neutral-0);
        color: var(--neutral-900);
        text-decoration: none;
    }