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

  --max-w: 1180px;
  --space-x: 2.1rem;
  --space-y: 1.5rem;
  --gap: 0.82rem;

  --radius-xl: 1.29rem;
  --radius-lg: 1rem;
  --radius-md: 0.7rem;
  --radius-sm: 0.32rem;

  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 10px rgba(0,0,0,0.06);
  --shadow-lg: 0 12px 34px rgba(0,0,0,0.08);

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

  --brand: #1a56db;
  --brand-contrast: #ffffff;
  --accent: #7e3af2;
  --accent-contrast: #ffffff;

  --neutral-0: #ffffff;
  --neutral-100: #f9fafb;
  --neutral-300: #d1d5db;
  --neutral-600: #4b5563;
  --neutral-800: #1f2937;
  --neutral-900: #111827;

  --bg-page: #ffffff;
  --fg-on-page: #111827;

  --bg-alt: #f9fafb;
  --fg-on-alt: #1f2937;

  --surface-1: #ffffff;
  --surface-2: #f9fafb;
  --fg-on-surface: #111827;
  --border-on-surface: #e5e7eb;

  --surface-light: #ffffff;
  --fg-on-surface-light: #4b5563;
  --border-on-surface-light: #d1d5db;

  --bg-primary: #1a56db;
  --fg-on-primary: #ffffff;
  --bg-primary-hover: #1e40af;
  --ring: #3b82f6;

  --bg-accent: #f5f3ff;
  --fg-on-accent: #ffffff;
  --bg-accent-hover: #6c2bd9;

  --link: #1a56db;
  --link-hover: #1e40af;

  --gradient-hero: linear-gradient(135deg, #1a56db 0%, #7e3af2 100%);
  --gradient-accent: linear-gradient(90deg, #7e3af2 0%, #ec4899 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);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
    width: 100%;
}

.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-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    transition: color var(--anim-duration) var(--anim-ease);
    flex-shrink: 0;
}

.logo:hover {
    color: var(--accent);
}

.main-nav {
    display: flex;
}

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

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) calc(var(--space-x) / 2);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
    position: relative;
}

.nav-link:hover {
    color: var(--link-hover);
    background-color: var(--btn-ghost-bg-hover);
}

.burger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
    z-index: 101;
}

.burger-line {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

.burger-btn[aria-expanded="true"] .burger-line:nth-child(1) {
    transform: translateY(0.65rem) rotate(45deg);
}
.burger-btn[aria-expanded="true"] .burger-line:nth-child(2) {
    opacity: 0;
}
.burger-btn[aria-expanded="true"] .burger-line:nth-child(3) {
    transform: translateY(-0.65rem) rotate(-45deg);
}

@media (max-width: 767px) {
    .burger-btn {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background-color: var(--overlay);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        display: flex;
        align-items: center;
        justify-content: center;
        transform: translateX(100%);
        transition: transform var(--anim-duration) var(--anim-ease);
        z-index: 99;
    }

    .main-nav.is-active {
        transform: translateX(0);
    }

    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: var(--gap);
    }

    .nav-link {
        font-size: calc(var(--font-size-base) * 1.25);
        padding: var(--space-y) var(--space-x);
    }

    .burger-btn[aria-expanded="true"] {
        position: fixed;
        right: var(--space-x);
    }
}

.footer {
        background-color: #f8f9fa;
        color: #333;
        padding: 2.5rem 1.5rem;
        font-family: system-ui, -apple-system, sans-serif;
        border-top: 1px solid #dee2e6;
    }
    .footer__top {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: flex-start;
        margin-bottom: 2rem;
        gap: 2rem;
    }
    .footer__brand {
        flex: 1;
        min-width: 250px;
    }
    .footer__logo {
        font-size: 2rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 0.5rem;
    }
    .footer__tagline {
        color: #6c757d;
        font-size: 0.95rem;
        line-height: 1.4;
        max-width: 300px;
    }
    .footer__nav {
        flex: 1;
        min-width: 200px;
    }
    .footer__nav-list {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .footer__nav-item {
        margin: 0;
    }
    .footer__link {
        color: #495057;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.2s ease;
    }
    .footer__link:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .footer__middle {
        margin-bottom: 2rem;
        padding-top: 1.5rem;
        border-top: 1px solid #e9ecef;
    }
    .footer__contacts-title {
        font-size: 1.1rem;
        margin-bottom: 1rem;
        color: #2c3e50;
    }
    .footer__contacts-list {
        list-style: none;
        padding: 0;
        margin: 0;
        color: #555;
        line-height: 1.6;
    }
    .footer__contacts-item {
        margin-bottom: 0.5rem;
    }
    .footer__contacts-item a {
        color: #0066cc;
        text-decoration: none;
    }
    .footer__contacts-item a:hover {
        text-decoration: underline;
    }
    .footer__bottom {
        padding-top: 1.5rem;
        border-top: 1px solid #e9ecef;
        font-size: 0.85rem;
        color: #6c757d;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
    }
    .footer__copyright {
        flex: 1;
        min-width: 200px;
    }
    .footer__legal {
        flex: 1;
        min-width: 200px;
        display: flex;
        justify-content: center;
        gap: 1.5rem;
    }
    .footer__legal-link {
        color: #6c757d;
        text-decoration: none;
    }
    .footer__legal-link:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .footer__disclaimer {
        flex-basis: 100%;
        text-align: center;
        margin-top: 1rem;
        font-size: 0.8rem;
        line-height: 1.4;
        color: #868e96;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }
    @media (max-width: 768px) {
        .footer__top {
            flex-direction: column;
            gap: 1.5rem;
        }
        .footer__nav-list {
            justify-content: flex-start;
        }
        .footer__bottom {
            flex-direction: column;
            text-align: center;
            gap: 0.75rem;
        }
        .footer__legal {
            justify-content: center;
            order: 2;
        }
        .footer__copyright {
            order: 1;
        }
        .footer__disclaimer {
            order: 3;
        }
    }

.nfcookie-v10 {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1200;
        background: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.12);
    }

    .nfcookie-v10__inner {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: calc(var(--space-y) * .8) var(--space-x);
        display: flex;
        flex-wrap: wrap;
        gap: 12px var(--gap);
        align-items: center;
        justify-content: space-between;
    }

    .nfcookie-v10__text {flex: 1 1 420px;}
    .nfcookie-v10__text strong {display: block; margin-bottom: 4px; color: var(--fg-on-surface);}
    .nfcookie-v10__text p {margin: 0; color: var(--fg-on-surface-light);}

    .nfcookie-v10__actions {display: flex; flex-wrap: wrap; gap: 8px;}

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

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

.intro-mosaic-c15 {
        padding: clamp(3.9rem, 9vw, 7rem) var(--space-x);
        background: linear-gradient(135deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
    }

    .intro-mosaic-c15__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        gap: 1.5rem;
        align-items: center;
        flex-wrap: wrap;
    }

    .intro-mosaic-c15__hero {
        flex: 1 1 24rem;
    }

    .intro-mosaic-c15__aside {
        flex: 1 1 18rem;
    }

    .intro-mosaic-c15__hero p {
        margin: 0;
        color: rgba(255, 255, 255, .78);
        font-size: .82rem;
        letter-spacing: .1em;
        text-transform: uppercase;
    }

    .intro-mosaic-c15__hero h1 {
        margin: .6rem 0 0;
        font-size: clamp(2.5rem, 5vw, 4.8rem);
        line-height: 1.01;
    }

    .intro-mosaic-c15__hero span {
        display: block;
        margin-top: .9rem;
        color: rgba(255, 255, 255, .88);
        max-width: 40rem;
    }

    .intro-mosaic-c15__buttons {
        margin-top: 1.15rem;
        display: flex;
        gap: .75rem;
        flex-wrap: wrap;
    }

    .intro-mosaic-c15__btn {
        display: inline-flex;
        min-height: 2.85rem;
        align-items: center;
        justify-content: center;
        padding: 0 1rem;
        border-radius: var(--radius-md);
        text-decoration: none;
        background: rgba(255, 255, 255, .14);
        color: var(--fg-on-primary);
        border: 1px solid rgba(255, 255, 255, .18);
    }

    .intro-mosaic-c15__btn--primary {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-color: var(--bg-accent-hover);
    }

    .intro-mosaic-c15__aside img {
        display: block;
        width: 100%;
        border-radius: var(--radius-xl);
        border: 1px solid rgba(255, 255, 255, .18);
    }

    .intro-mosaic-c15__stats {
        margin-top: .85rem;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: .7rem;
    }

    .intro-mosaic-c15__stats div {
        padding: .85rem;
        border-radius: var(--radius-md);
        background: rgba(255, 255, 255, .12);
        border: 1px solid rgba(255, 255, 255, .18);
    }

    .intro-mosaic-c15__stats strong, .intro-mosaic-c15__stats span {
        display: block;
    }

    .intro-mosaic-c15__stats span {
        margin-top: .25rem;
        color: rgba(255, 255, 255, .82);
    }

.cta-struct-v2 {
        padding: calc(var(--space-y) * 1.9) var(--space-x);
        background: var(--bg-alt);
        color: var(--fg-on-alt)
    }

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

    .cta-struct-v2 h2, .cta-struct-v2 h3, .cta-struct-v2 p {
        margin: 0
    }

    .cta-struct-v2 a {
        text-decoration: none
    }

    .cta-struct-v2 .center, .cta-struct-v2 .banner, .cta-struct-v2 .stack, .cta-struct-v2 .bar, .cta-struct-v2 .split, .cta-struct-v2 .duo article {
        padding: .9rem;
        border-radius: var(--radius-xl);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface)
    }

    .cta-struct-v2 .center {
        display: grid;
        gap: .5rem;
        justify-items: center;
        text-align: center
    }

    .cta-struct-v2 .split {
        display: grid;
        grid-template-columns:1fr auto;
        gap: var(--gap);
        align-items: center
    }

    .cta-struct-v2 .actions {
        display: flex;
        gap: .45rem;
        flex-wrap: wrap
    }

    .cta-struct-v2 .actions a, .cta-struct-v2 .center a, .cta-struct-v2 .banner > a, .cta-struct-v2 .duo a {
        display: inline-flex;
        min-height: 2.35rem;
        padding: 0 .85rem;
        align-items: center;
        border-radius: var(--radius-sm);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border: 1px solid var(--ring)
    }

    .cta-struct-v2 .banner {
        display: grid;
        gap: .6rem
    }

    .cta-struct-v2 .numbers {
        display: grid;
        grid-template-columns:repeat(3, minmax(0, 1fr));
        gap: .5rem
    }

    .cta-struct-v2 .numbers div {
        padding: .6rem;
        border-radius: var(--radius-md);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface-light)
    }

    .cta-struct-v2 .duo {
        display: grid;
        grid-template-columns:1fr 1fr;
        gap: var(--gap)
    }

    .cta-struct-v2 .duo article {
        display: grid;
        gap: .45rem
    }

    .cta-struct-v2 .stack {
        display: grid;
        gap: .6rem;
        justify-items: start
    }

    .cta-struct-v2 .chips {
        display: flex;
        gap: .35rem;
        flex-wrap: wrap
    }

    .cta-struct-v2 .chips span {
        padding: .28rem .5rem;
        border-radius: var(--radius-sm);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface-light)
    }

    .cta-struct-v2 .bar {
        display: grid;
        grid-template-columns:1fr auto;
        gap: var(--gap);
        align-items: center
    }

    @media (max-width: 820px) {
        .cta-struct-v2 .split, .cta-struct-v2 .bar, .cta-struct-v2 .duo {
            grid-template-columns:1fr
        }

        .cta-struct-v2 .numbers {
            grid-template-columns:1fr 1fr
        }
    }

    @media (max-width: 620px) {
        .cta-struct-v2 .numbers {
            grid-template-columns:1fr
        }
    }

.education-struct-v4 {
        padding: calc(var(--space-y) * 2) var(--space-x);
        background: var(--bg-primary);
        color: var(--fg-on-primary)
    }

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

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

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

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

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

    .education-struct-v4 .grid a, .education-struct-v4 .tiers a, .education-struct-v4 .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-v4 .path {
        display: grid;
        gap: .65rem
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

.about-struct-v5 {
        padding: calc(var(--space-y) * 2) var(--space-x);
        background: var(--gradient-accent);
        color: var(--accent-contrast)
    }

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

    .about-struct-v5 h2, .about-struct-v5 h3, .about-struct-v5 p {
        margin: 0
    }

    .about-struct-v5 .split, .about-struct-v5 .duo {
        display: grid;
        grid-template-columns:1fr 1fr;
        gap: var(--gap)
    }

    .about-struct-v5 .split img, .about-struct-v5 .gallery img {
        display: block;
        width: 100%;
        object-fit: cover;
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-md)
    }

    .about-struct-v5 .split img {
        aspect-ratio: 4/3
    }

    .about-struct-v5 .split div {
        display: grid;
        gap: .5rem
    }

    .about-struct-v5 .cards {
        display: grid;
        grid-template-columns:repeat(3, minmax(0, 1fr));
        gap: var(--gap)
    }

    .about-struct-v5 article, .about-struct-v5 .values div, .about-struct-v5 .facts div, .about-struct-v5 .quote, .about-struct-v5 .statement {
        background: var(--chip-bg);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        padding: .85rem
    }

    .about-struct-v5 .timeline {
        display: grid;
        gap: .65rem
    }

    .about-struct-v5 .timeline article {
        position: relative;
        padding-left: 1.25rem
    }

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

    .about-struct-v5 .values, .about-struct-v5 .facts {
        display: grid;
        gap: .6rem
    }

    .about-struct-v5 .gallery {
        display: grid;
        grid-template-columns:repeat(3, minmax(0, 1fr));
        gap: var(--gap)
    }

    .about-struct-v5 .gallery img {
        aspect-ratio: 1/1
    }

    .about-struct-v5 .statement {
        display: grid;
        gap: .5rem
    }

    .about-struct-v5 .actions {
        display: flex;
        flex-wrap: wrap;
        gap: .45rem
    }

    .about-struct-v5 .actions a {
        display: inline-flex;
        min-height: 2.4rem;
        padding: 0 .85rem;
        border-radius: var(--radius-sm);
        align-items: center;
        text-decoration: none;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border: 1px solid var(--ring)
    }

    @media (max-width: 900px) {
        .about-struct-v5 .split, .about-struct-v5 .duo, .about-struct-v5 .cards, .about-struct-v5 .gallery {
            grid-template-columns:1fr 1fr
        }
    }

    @media (max-width: 680px) {
        .about-struct-v5 .split, .about-struct-v5 .duo, .about-struct-v5 .cards, .about-struct-v5 .gallery {
            grid-template-columns:1fr
        }
    }

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

.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-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    transition: color var(--anim-duration) var(--anim-ease);
    flex-shrink: 0;
}

.logo:hover {
    color: var(--accent);
}

.main-nav {
    display: flex;
}

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

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) calc(var(--space-x) / 2);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
    position: relative;
}

.nav-link:hover {
    color: var(--link-hover);
    background-color: var(--btn-ghost-bg-hover);
}

.burger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
    z-index: 101;
}

.burger-line {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

.burger-btn[aria-expanded="true"] .burger-line:nth-child(1) {
    transform: translateY(0.65rem) rotate(45deg);
}
.burger-btn[aria-expanded="true"] .burger-line:nth-child(2) {
    opacity: 0;
}
.burger-btn[aria-expanded="true"] .burger-line:nth-child(3) {
    transform: translateY(-0.65rem) rotate(-45deg);
}

@media (max-width: 767px) {
    .burger-btn {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background-color: var(--overlay);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        display: flex;
        align-items: center;
        justify-content: center;
        transform: translateX(100%);
        transition: transform var(--anim-duration) var(--anim-ease);
        z-index: 99;
    }

    .main-nav.is-active {
        transform: translateX(0);
    }

    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: var(--gap);
    }

    .nav-link {
        font-size: calc(var(--font-size-base) * 1.25);
        padding: var(--space-y) var(--space-x);
    }

    .burger-btn[aria-expanded="true"] {
        position: fixed;
        right: var(--space-x);
    }
}

.footer {
        background-color: #f8f9fa;
        color: #333;
        padding: 2.5rem 1.5rem;
        font-family: system-ui, -apple-system, sans-serif;
        border-top: 1px solid #dee2e6;
    }
    .footer__top {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: flex-start;
        margin-bottom: 2rem;
        gap: 2rem;
    }
    .footer__brand {
        flex: 1;
        min-width: 250px;
    }
    .footer__logo {
        font-size: 2rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 0.5rem;
    }
    .footer__tagline {
        color: #6c757d;
        font-size: 0.95rem;
        line-height: 1.4;
        max-width: 300px;
    }
    .footer__nav {
        flex: 1;
        min-width: 200px;
    }
    .footer__nav-list {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .footer__nav-item {
        margin: 0;
    }
    .footer__link {
        color: #495057;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.2s ease;
    }
    .footer__link:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .footer__middle {
        margin-bottom: 2rem;
        padding-top: 1.5rem;
        border-top: 1px solid #e9ecef;
    }
    .footer__contacts-title {
        font-size: 1.1rem;
        margin-bottom: 1rem;
        color: #2c3e50;
    }
    .footer__contacts-list {
        list-style: none;
        padding: 0;
        margin: 0;
        color: #555;
        line-height: 1.6;
    }
    .footer__contacts-item {
        margin-bottom: 0.5rem;
    }
    .footer__contacts-item a {
        color: #0066cc;
        text-decoration: none;
    }
    .footer__contacts-item a:hover {
        text-decoration: underline;
    }
    .footer__bottom {
        padding-top: 1.5rem;
        border-top: 1px solid #e9ecef;
        font-size: 0.85rem;
        color: #6c757d;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
    }
    .footer__copyright {
        flex: 1;
        min-width: 200px;
    }
    .footer__legal {
        flex: 1;
        min-width: 200px;
        display: flex;
        justify-content: center;
        gap: 1.5rem;
    }
    .footer__legal-link {
        color: #6c757d;
        text-decoration: none;
    }
    .footer__legal-link:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .footer__disclaimer {
        flex-basis: 100%;
        text-align: center;
        margin-top: 1rem;
        font-size: 0.8rem;
        line-height: 1.4;
        color: #868e96;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }
    @media (max-width: 768px) {
        .footer__top {
            flex-direction: column;
            gap: 1.5rem;
        }
        .footer__nav-list {
            justify-content: flex-start;
        }
        .footer__bottom {
            flex-direction: column;
            text-align: center;
            gap: 0.75rem;
        }
        .footer__legal {
            justify-content: center;
            order: 2;
        }
        .footer__copyright {
            order: 1;
        }
        .footer__disclaimer {
            order: 3;
        }
    }

.nfcookie-v10 {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1200;
        background: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.12);
    }

    .nfcookie-v10__inner {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: calc(var(--space-y) * .8) var(--space-x);
        display: flex;
        flex-wrap: wrap;
        gap: 12px var(--gap);
        align-items: center;
        justify-content: space-between;
    }

    .nfcookie-v10__text {flex: 1 1 420px;}
    .nfcookie-v10__text strong {display: block; margin-bottom: 4px; color: var(--fg-on-surface);}
    .nfcookie-v10__text p {margin: 0; color: var(--fg-on-surface-light);}

    .nfcookie-v10__actions {display: flex; flex-wrap: wrap; gap: 8px;}

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

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

.gallery--light-v6 {
    padding: 40px 20px;
    background: var(--bg-page);
    color: var(--fg-on-page);
}

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

.gallery__title {
    margin: 0 0 12px;
    font-size: clamp(22px,3.5vw,28px);
}

.gallery__strip {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(120px, 1fr);
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 4px;
}

.gallery__thumb {
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--surface-light);
    border: 1px solid var(--border-on-surface-light);
    min-width: 120px;
}

.gallery__thumb img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    display: block;
}

.story-edge-c5 {
        padding: clamp(3.6rem, 8vw, 6rem) var(--space-x);
        background: linear-gradient(135deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
    }

    .story-edge-c5__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        gap: 1.4rem;
        flex-wrap: wrap;
        align-items: center;
    }

    .story-edge-c5__image {
        flex: 1 1 18rem;
        order: var(--random-number);
    }

    .story-edge-c5__content {
        flex: 1 1 22rem;
        order: calc(3 - var(--random-number));
    }

    .story-edge-c5__image img {
        display: block;
        width: 100%;
        border-radius: var(--radius-xl);
        border: 1px solid rgba(255, 255, 255, .18);
    }

    .story-edge-c5__content p:first-child {
        margin: 0;
        color: rgba(255, 255, 255, .76);
        text-transform: uppercase;
        letter-spacing: .1em;
        font-size: .82rem;
    }

    .story-edge-c5__content h2 {
        margin: .55rem 0 0;
        font-size: clamp(2rem, 4vw, 3rem);
    }

    .story-edge-c5__content span {
        display: block;
        margin-top: .8rem;
    }

    .story-edge-c5__content p {

    }

    .story-edge-c5__content a {
        display: inline-flex;
        min-height: 2.85rem;
        align-items: center;
        justify-content: center;
        padding: 0 1rem;
        border-radius: var(--radius-md);
        background: var(--surface-1);
        color: var(--fg-on-page);
        text-decoration: none;
    }

.about-mission {

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

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

    .about-mission .about-mission__grid {
        display: grid;
        gap: var(--space-x);
        grid-template-columns: 1fr 1fr;
    }

    .about-mission p {
        color: var(--neutral-600);
    }

    @media (max-width: 767px) {
        .about-mission .about-mission__grid {
            grid-template-columns: 1fr;
        }
    }

.identity-nv9 {
        padding: clamp(54px, 8vw, 98px) clamp(16px, 4vw, 40px);
        background: linear-gradient(145deg, var(--accent), var(--bg-primary));
        color: var(--fg-on-primary);
    }

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

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

    .identity-nv9__head span {
        display: inline-flex;
        padding: 4px 10px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.2);
    }

    .identity-nv9__head h2 {
        margin: 8px 0;
        font-size: clamp(30px, 5vw, 50px);
    }

    .identity-nv9__head p {
        margin: 0;
        max-width: 70ch;
        opacity: .92;
    }

    .identity-nv9__list {
        display: grid;
        gap: 10px;
    }

    .identity-nv9__list article {
        display: grid;
        grid-template-columns: 70px 1fr;
        gap: 12px;
        border-radius: var(--radius-md);
        padding: 12px;
        background: rgba(255, 255, 255, 0.16);
        border: 1px solid rgba(255, 255, 255, 0.3);
    }

    .identity-nv9__list b {
        width: 44px;
        height: 44px;
        border-radius: 12px;
        display: grid;
        place-items: center;
        background: rgba(15, 23, 42, 0.45);
        color: var(--neutral-0);
        align-self: start;
    }

    .identity-nv9__list h3 {
        margin: 0;
    }

    .identity-nv9__list em {
        display: block;
        margin-top: 4px;
        font-style: normal;
        opacity: .95;
    }

    .identity-nv9__list p {
        margin: 7px 0 0;
        opacity: .9;
    }

    @media (max-width: 640px) {
        .identity-nv9__list article {
            grid-template-columns: 1fr;
        }
    }

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

.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-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    transition: color var(--anim-duration) var(--anim-ease);
    flex-shrink: 0;
}

.logo:hover {
    color: var(--accent);
}

.main-nav {
    display: flex;
}

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

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) calc(var(--space-x) / 2);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
    position: relative;
}

.nav-link:hover {
    color: var(--link-hover);
    background-color: var(--btn-ghost-bg-hover);
}

.burger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
    z-index: 101;
}

.burger-line {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

.burger-btn[aria-expanded="true"] .burger-line:nth-child(1) {
    transform: translateY(0.65rem) rotate(45deg);
}
.burger-btn[aria-expanded="true"] .burger-line:nth-child(2) {
    opacity: 0;
}
.burger-btn[aria-expanded="true"] .burger-line:nth-child(3) {
    transform: translateY(-0.65rem) rotate(-45deg);
}

@media (max-width: 767px) {
    .burger-btn {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background-color: var(--overlay);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        display: flex;
        align-items: center;
        justify-content: center;
        transform: translateX(100%);
        transition: transform var(--anim-duration) var(--anim-ease);
        z-index: 99;
    }

    .main-nav.is-active {
        transform: translateX(0);
    }

    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: var(--gap);
    }

    .nav-link {
        font-size: calc(var(--font-size-base) * 1.25);
        padding: var(--space-y) var(--space-x);
    }

    .burger-btn[aria-expanded="true"] {
        position: fixed;
        right: var(--space-x);
    }
}

.footer {
        background-color: #f8f9fa;
        color: #333;
        padding: 2.5rem 1.5rem;
        font-family: system-ui, -apple-system, sans-serif;
        border-top: 1px solid #dee2e6;
    }
    .footer__top {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: flex-start;
        margin-bottom: 2rem;
        gap: 2rem;
    }
    .footer__brand {
        flex: 1;
        min-width: 250px;
    }
    .footer__logo {
        font-size: 2rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 0.5rem;
    }
    .footer__tagline {
        color: #6c757d;
        font-size: 0.95rem;
        line-height: 1.4;
        max-width: 300px;
    }
    .footer__nav {
        flex: 1;
        min-width: 200px;
    }
    .footer__nav-list {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .footer__nav-item {
        margin: 0;
    }
    .footer__link {
        color: #495057;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.2s ease;
    }
    .footer__link:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .footer__middle {
        margin-bottom: 2rem;
        padding-top: 1.5rem;
        border-top: 1px solid #e9ecef;
    }
    .footer__contacts-title {
        font-size: 1.1rem;
        margin-bottom: 1rem;
        color: #2c3e50;
    }
    .footer__contacts-list {
        list-style: none;
        padding: 0;
        margin: 0;
        color: #555;
        line-height: 1.6;
    }
    .footer__contacts-item {
        margin-bottom: 0.5rem;
    }
    .footer__contacts-item a {
        color: #0066cc;
        text-decoration: none;
    }
    .footer__contacts-item a:hover {
        text-decoration: underline;
    }
    .footer__bottom {
        padding-top: 1.5rem;
        border-top: 1px solid #e9ecef;
        font-size: 0.85rem;
        color: #6c757d;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
    }
    .footer__copyright {
        flex: 1;
        min-width: 200px;
    }
    .footer__legal {
        flex: 1;
        min-width: 200px;
        display: flex;
        justify-content: center;
        gap: 1.5rem;
    }
    .footer__legal-link {
        color: #6c757d;
        text-decoration: none;
    }
    .footer__legal-link:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .footer__disclaimer {
        flex-basis: 100%;
        text-align: center;
        margin-top: 1rem;
        font-size: 0.8rem;
        line-height: 1.4;
        color: #868e96;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }
    @media (max-width: 768px) {
        .footer__top {
            flex-direction: column;
            gap: 1.5rem;
        }
        .footer__nav-list {
            justify-content: flex-start;
        }
        .footer__bottom {
            flex-direction: column;
            text-align: center;
            gap: 0.75rem;
        }
        .footer__legal {
            justify-content: center;
            order: 2;
        }
        .footer__copyright {
            order: 1;
        }
        .footer__disclaimer {
            order: 3;
        }
    }

.nfcookie-v10 {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1200;
        background: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.12);
    }

    .nfcookie-v10__inner {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: calc(var(--space-y) * .8) var(--space-x);
        display: flex;
        flex-wrap: wrap;
        gap: 12px var(--gap);
        align-items: center;
        justify-content: space-between;
    }

    .nfcookie-v10__text {flex: 1 1 420px;}
    .nfcookie-v10__text strong {display: block; margin-bottom: 4px; color: var(--fg-on-surface);}
    .nfcookie-v10__text p {margin: 0; color: var(--fg-on-surface-light);}

    .nfcookie-v10__actions {display: flex; flex-wrap: wrap; gap: 8px;}

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

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

.index-feedback-summary {
        background: var(--bg-page);
        color: var(--fg-on-page);
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 40px);
    }

    .index-feedback-summary__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .index-feedback-summary__h {
        text-align: center;
        margin-bottom: clamp(22px, 5vw, 44px);
        transform: translateY(-18px);
    }

    .index-feedback-summary__h h2 {
        margin: 0 0 10px;
        font-size: clamp(26px, 4.4vw, 44px);
        letter-spacing: -0.02em;
    }

    .index-feedback-summary__h p {
        margin: 0;
        color: var(--neutral-600);
    }

    .index-feedback-summary__layout {
        display: grid;
        grid-template-columns: minmax(260px, 340px) 1fr;
        gap: clamp(16px, 3vw, 28px);
        align-items: start;
    }

    .index-feedback-summary__panel {
        border-radius: var(--radius-xl);
        background: var(--bg-accent);
        border: 1px solid var(--border-on-surface);
        padding: clamp(18px, 3vw, 26px);
        box-shadow: var(--shadow-md);

        transform: translateY(22px);
        position: sticky;
        top: 16px;
    }

    .index-feedback-summary__kpi {
        display: flex;
        align-items: center;
        gap: 14px;
        margin-bottom: 14px;
    }

    .index-feedback-summary__avg {
        width: 72px;
        height: 72px;
        border-radius: 22px;
        background: var(--bg-page);
        border: 1px solid var(--border-on-surface);
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 900;
        font-size: 22px;
        color: var(--fg-on-page);
        box-shadow: var(--shadow-sm);
    }

    .index-feedback-summary__stars {
        color: var(--accent);
        letter-spacing: 0.08em;
        font-size: 14px;
        line-height: 1;
        margin-bottom: 6px;
    }

    .index-feedback-summary__count {
        font-size: 12px;
        color: var(--neutral-600);
        text-transform: uppercase;
        letter-spacing: 0.18em;
    }

    .index-feedback-summary__note {
        color: var(--fg-on-accent);
        font-size: 14px;
    }

    .index-feedback-summary__cards {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
        gap: clamp(14px, 2.6vw, 22px);
    }

    .index-feedback-summary__card {
        border-radius: var(--radius-xl);
        background: var(--surface-light);
        border: 1px solid var(--border-on-surface-light);
        box-shadow: var(--shadow-sm);
        padding: 18px 18px 16px;

        transform: translateY(22px);
    }

    .index-feedback-summary__head {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 12px;
        margin-bottom: 12px;
    }

    .index-feedback-summary__who {
        display: flex;
        align-items: center;
        gap: 10px;
        min-width: 0;
    }

    .index-feedback-summary__avatar {
        width: 38px;
        height: 38px;
        border-radius: 14px;
        background: var(--bg-page);
        border: 1px solid var(--border-on-surface);
        display: flex;
        align-items: center;
        justify-content: center;
        flex: 0 0 auto;
    }

    .index-feedback-summary__who h3 {
        margin: 0;
        font-size: 14px;
        font-weight: 900;
        color: var(--fg-on-page);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 18ch;
    }

    .index-feedback-summary__who p {
        margin: 2px 0 0;
        font-size: 12px;
        color: var(--neutral-600);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 24ch;
    }

    .index-feedback-summary__chip {
        flex: 0 0 auto;
        padding: 6px 10px;
        border-radius: 999px;
        background: var(--bg-primary);
        border: 1px solid var(--ring);
        color: var(--fg-on-primary);
        font-size: 10px;
        text-transform: uppercase;
        letter-spacing: 0.16em;
        white-space: nowrap;
    }

    .index-feedback-summary__quote {
        margin: 0;
        color: var(--fg-on-surface-light);
        font-size: 14px;
        line-height: 1.65;
    }

    @media (max-width: 860px) {
        .index-feedback-summary__layout {
            grid-template-columns: 1fr;
        }

        .index-feedback-summary__panel {
            position: relative;
            top: 0;
        }
    }

.about-struct-v5 {
        padding: calc(var(--space-y) * 2) var(--space-x);
        background: var(--gradient-accent);
        color: var(--accent-contrast)
    }

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

    .about-struct-v5 h2, .about-struct-v5 h3, .about-struct-v5 p {
        margin: 0
    }

    .about-struct-v5 .split, .about-struct-v5 .duo {
        display: grid;
        grid-template-columns:1fr 1fr;
        gap: var(--gap)
    }

    .about-struct-v5 .split img, .about-struct-v5 .gallery img {
        display: block;
        width: 100%;
        object-fit: cover;
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-md)
    }

    .about-struct-v5 .split img {
        aspect-ratio: 4/3
    }

    .about-struct-v5 .split div {
        display: grid;
        gap: .5rem
    }

    .about-struct-v5 .cards {
        display: grid;
        grid-template-columns:repeat(3, minmax(0, 1fr));
        gap: var(--gap)
    }

    .about-struct-v5 article, .about-struct-v5 .values div, .about-struct-v5 .facts div, .about-struct-v5 .quote, .about-struct-v5 .statement {
        background: var(--chip-bg);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        padding: .85rem
    }

    .about-struct-v5 .timeline {
        display: grid;
        gap: .65rem
    }

    .about-struct-v5 .timeline article {
        position: relative;
        padding-left: 1.25rem
    }

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

    .about-struct-v5 .values, .about-struct-v5 .facts {
        display: grid;
        gap: .6rem
    }

    .about-struct-v5 .gallery {
        display: grid;
        grid-template-columns:repeat(3, minmax(0, 1fr));
        gap: var(--gap)
    }

    .about-struct-v5 .gallery img {
        aspect-ratio: 1/1
    }

    .about-struct-v5 .statement {
        display: grid;
        gap: .5rem
    }

    .about-struct-v5 .actions {
        display: flex;
        flex-wrap: wrap;
        gap: .45rem
    }

    .about-struct-v5 .actions a {
        display: inline-flex;
        min-height: 2.4rem;
        padding: 0 .85rem;
        border-radius: var(--radius-sm);
        align-items: center;
        text-decoration: none;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border: 1px solid var(--ring)
    }

    @media (max-width: 900px) {
        .about-struct-v5 .split, .about-struct-v5 .duo, .about-struct-v5 .cards, .about-struct-v5 .gallery {
            grid-template-columns:1fr 1fr
        }
    }

    @media (max-width: 680px) {
        .about-struct-v5 .split, .about-struct-v5 .duo, .about-struct-v5 .cards, .about-struct-v5 .gallery {
            grid-template-columns:1fr
        }
    }

.hiw-column-l5 {
        padding: clamp(3.2rem, 7vw, 5.8rem) var(--space-x);
        background: linear-gradient(180deg, var(--surface-1), var(--bg-alt));
        color: var(--fg-on-page);
    }

    .hiw-column-l5__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1.15fr .85fr;
        gap: 1.25rem;
    }

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

    .hiw-column-l5__head h2 {
        margin: .55rem 0 0;
        font-size: clamp(2rem, 4vw, 3rem);
    }

    .hiw-column-l5__copy {
        margin: .85rem 0 0;
        color: var(--neutral-600);
    }

    .hiw-column-l5__side {
        padding: 1rem;
        border-radius: var(--radius-xl);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface-light);
        box-shadow: var(--shadow-sm);
    }

    .hiw-column-l5__side img {
        display: block;
        width: 100%;
        border-radius: var(--radius-lg);
    }

    .hiw-column-l5__side strong {
        display: block;
        margin-top: .9rem;
        color: var(--brand);
    }

    .hiw-column-l5__item {
        margin-top: .65rem;
        padding: .75rem .85rem;
        border-radius: var(--radius-md);
        background: var(--surface-2);
    }

    @media (max-width: 840px) {
        .hiw-column-l5__wrap {
            grid-template-columns: 1fr;
        }
    }

.capabilities-alt {

        background: var(--bg-primary);
        color: var(--fg-on-primary);
        padding: clamp(60px, 8vw, 100px) clamp(16px, 3vw, 40px);
        position: relative;
        overflow: hidden;
    }

    .capabilities-alt::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 200px;
        background: linear-gradient(180deg, var(--accent) 0%, transparent 100%);
        opacity: 0.1;
    }

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

    .capabilities-alt .capabilities-alt__h {
        text-align: center;
        margin-bottom: clamp(48px, 7vw, 80px);

    }

    .capabilities-alt h2 {
        font-size: clamp(32px, 5vw, 48px);
        font-weight: 800;
        margin: 0 0 1rem;
    }

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

    .capabilities-alt .capabilities-alt__flow {
        display: flex;
        flex-direction: column;
        gap: clamp(40px, 5vw, 64px);
        position: relative;
    }

    .capabilities-alt .capabilities-alt__item {
        display: flex;
        align-items: center;
        gap: clamp(24px, 4vw, 48px);

        transform: translateX(-50px);
    }

    .capabilities-alt .capabilities-alt__item:nth-child(even) {
        flex-direction: row-reverse;
        transform: translateX(50px);
    }

    .capabilities-alt .capabilities-alt__connector {
        flex-shrink: 0;
        width: 60px;
        height: 60px;
        background: var(--accent);
        border-radius: 50%;
        position: relative;
        box-shadow: 0 0 0 8px rgba(255, 107, 53, 0.2);
        animation: pulse 2s ease-in-out infinite;
    }

    @keyframes pulse {
        0%, 100% {
            box-shadow: 0 0 0 8px rgba(255, 107, 53, 0.2);
        }
        50% {
            box-shadow: 0 0 0 16px rgba(255, 107, 53, 0.1);
        }
    }

    .capabilities-alt .capabilities-alt__connector::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 24px;
        height: 24px;
        background: var(--fg-on-primary);
        border-radius: 50%;
    }

    .capabilities-alt .capabilities-alt__bubble {
        flex: 1;
        background: var(--surface-light);
        padding: clamp(24px, 3vw, 36px);
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-lg);
        position: relative;
    }

    .capabilities-alt .capabilities-alt__bubble::before {
        content: '';
        position: absolute;
        top: 50%;
        width: 20px;
        height: 20px;
        background: var(--surface-light);
        transform: translateY(-50%) rotate(45deg);
    }

    .capabilities-alt .capabilities-alt__item:nth-child(odd) .capabilities-alt__bubble::before {
        left: -10px;
    }

    .capabilities-alt .capabilities-alt__item:nth-child(even) .capabilities-alt__bubble::before {
        right: -10px;
    }

    .capabilities-alt .capabilities-alt__icon {
        color: var(--fg-on-surface-light);
        font-size: 36px;
        margin-bottom: 1rem;
    }

    .capabilities-alt .capabilities-alt__bubble h3 {
        font-size: clamp(20px, 2.5vw, 26px);
        font-weight: 700;
        margin: 0 0 0.75rem;
        color: var(--brand);
    }

    .capabilities-alt .capabilities-alt__bubble p {
        margin: 0;
        color: var(--neutral-600);
        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);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
    width: 100%;
}

.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-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    transition: color var(--anim-duration) var(--anim-ease);
    flex-shrink: 0;
}

.logo:hover {
    color: var(--accent);
}

.main-nav {
    display: flex;
}

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

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) calc(var(--space-x) / 2);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
    position: relative;
}

.nav-link:hover {
    color: var(--link-hover);
    background-color: var(--btn-ghost-bg-hover);
}

.burger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
    z-index: 101;
}

.burger-line {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

.burger-btn[aria-expanded="true"] .burger-line:nth-child(1) {
    transform: translateY(0.65rem) rotate(45deg);
}
.burger-btn[aria-expanded="true"] .burger-line:nth-child(2) {
    opacity: 0;
}
.burger-btn[aria-expanded="true"] .burger-line:nth-child(3) {
    transform: translateY(-0.65rem) rotate(-45deg);
}

@media (max-width: 767px) {
    .burger-btn {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background-color: var(--overlay);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        display: flex;
        align-items: center;
        justify-content: center;
        transform: translateX(100%);
        transition: transform var(--anim-duration) var(--anim-ease);
        z-index: 99;
    }

    .main-nav.is-active {
        transform: translateX(0);
    }

    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: var(--gap);
    }

    .nav-link {
        font-size: calc(var(--font-size-base) * 1.25);
        padding: var(--space-y) var(--space-x);
    }

    .burger-btn[aria-expanded="true"] {
        position: fixed;
        right: var(--space-x);
    }
}

.footer {
        background-color: #f8f9fa;
        color: #333;
        padding: 2.5rem 1.5rem;
        font-family: system-ui, -apple-system, sans-serif;
        border-top: 1px solid #dee2e6;
    }
    .footer__top {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: flex-start;
        margin-bottom: 2rem;
        gap: 2rem;
    }
    .footer__brand {
        flex: 1;
        min-width: 250px;
    }
    .footer__logo {
        font-size: 2rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 0.5rem;
    }
    .footer__tagline {
        color: #6c757d;
        font-size: 0.95rem;
        line-height: 1.4;
        max-width: 300px;
    }
    .footer__nav {
        flex: 1;
        min-width: 200px;
    }
    .footer__nav-list {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .footer__nav-item {
        margin: 0;
    }
    .footer__link {
        color: #495057;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.2s ease;
    }
    .footer__link:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .footer__middle {
        margin-bottom: 2rem;
        padding-top: 1.5rem;
        border-top: 1px solid #e9ecef;
    }
    .footer__contacts-title {
        font-size: 1.1rem;
        margin-bottom: 1rem;
        color: #2c3e50;
    }
    .footer__contacts-list {
        list-style: none;
        padding: 0;
        margin: 0;
        color: #555;
        line-height: 1.6;
    }
    .footer__contacts-item {
        margin-bottom: 0.5rem;
    }
    .footer__contacts-item a {
        color: #0066cc;
        text-decoration: none;
    }
    .footer__contacts-item a:hover {
        text-decoration: underline;
    }
    .footer__bottom {
        padding-top: 1.5rem;
        border-top: 1px solid #e9ecef;
        font-size: 0.85rem;
        color: #6c757d;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
    }
    .footer__copyright {
        flex: 1;
        min-width: 200px;
    }
    .footer__legal {
        flex: 1;
        min-width: 200px;
        display: flex;
        justify-content: center;
        gap: 1.5rem;
    }
    .footer__legal-link {
        color: #6c757d;
        text-decoration: none;
    }
    .footer__legal-link:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .footer__disclaimer {
        flex-basis: 100%;
        text-align: center;
        margin-top: 1rem;
        font-size: 0.8rem;
        line-height: 1.4;
        color: #868e96;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }
    @media (max-width: 768px) {
        .footer__top {
            flex-direction: column;
            gap: 1.5rem;
        }
        .footer__nav-list {
            justify-content: flex-start;
        }
        .footer__bottom {
            flex-direction: column;
            text-align: center;
            gap: 0.75rem;
        }
        .footer__legal {
            justify-content: center;
            order: 2;
        }
        .footer__copyright {
            order: 1;
        }
        .footer__disclaimer {
            order: 3;
        }
    }

.nfcookie-v10 {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1200;
        background: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.12);
    }

    .nfcookie-v10__inner {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: calc(var(--space-y) * .8) var(--space-x);
        display: flex;
        flex-wrap: wrap;
        gap: 12px var(--gap);
        align-items: center;
        justify-content: space-between;
    }

    .nfcookie-v10__text {flex: 1 1 420px;}
    .nfcookie-v10__text strong {display: block; margin-bottom: 4px; color: var(--fg-on-surface);}
    .nfcookie-v10__text p {margin: 0; color: var(--fg-on-surface-light);}

    .nfcookie-v10__actions {display: flex; flex-wrap: wrap; gap: 8px;}

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

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

.nfform-v11 {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 36px);
        background: var(--neutral-900);
        color: var(--neutral-0);
    }

    .nfform-v11__form {
        max-width: 760px;
        margin: 0 auto;
        background: rgba(255, 255, 255, .08);
        border: 1px solid rgba(255, 255, 255, .2);
        border-radius: var(--radius-lg);
        padding: 16px;
        display: grid;
        gap: 10px;
    }

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

    .nfform-v11 p {
        margin: 0;
        opacity: .85;
    }

    .nfform-v11 label {
        display: grid;
        gap: 6px;
    }

    .nfform-v11 label span {
        opacity: .9;
        font-size: .9rem;
    }

    .nfform-v11 input {
        width: 100%;
        border: 1px solid rgba(255, 255, 255, .25);
        border-radius: var(--radius-sm);
        background: rgba(255, 255, 255, .1);
        color: var(--neutral-0);
        padding: 9px;
        font: inherit;
    }

    .nfform-v11 button {
        justify-self: start;
        border: 0;
        border-radius: var(--radius-sm);
        padding: 10px 14px;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        font-weight: 700;
    }

.contacts-fresh-v1 {
        padding: calc(var(--space-y) * 2.8) var(--space-x);
        background: var(--bg-page);
        color: var(--fg-on-page);
    }

    .contacts-fresh-v1 .shell {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        gap: calc(var(--gap) * 1.4);
    }

    .contacts-fresh-v1 .intro h2 {
        margin: .3rem 0;
        font-size: clamp(1.8rem, 3.6vw, 2.8rem);
    }

    .contacts-fresh-v1 .intro p {
        max-width: 56ch;
        color: var(--fg-on-surface-light);
    }

    .contacts-fresh-v1 .cards {
        display: grid;
        grid-template-columns:repeat(3, minmax(0, 1fr));
        gap: var(--gap);
    }

    .contacts-fresh-v1 article {
        padding: 1.1rem;
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        box-shadow: var(--shadow-sm);
    }

    .contacts-fresh-v1 h3 {
        margin: 0 0 .6rem;
    }

    .contacts-fresh-v1 .value {
        margin: 0;
        font-weight: 700;
    }

    .contacts-fresh-v1 .hint {
        margin: .3rem 0 .8rem;
        color: var(--fg-on-surface-light);
    }

    .contacts-fresh-v1 a {
        text-decoration: none;
        color: var(--link);
        font-weight: 700;
    }

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

.support-cv5 {
        padding: clamp(54px, 7vw, 94px) clamp(16px, 4vw, 36px);
        background: var(--gradient-accent);
        color: var(--accent-contrast);
    }

    .support-cv5__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .support-cv5__head {
        margin-bottom: 14px;
    }

    .support-cv5__head p {
        margin: 0;
        font-weight: 700;
        opacity: .9;
    }

    .support-cv5__head h2 {
        margin: 7px 0 0;
        font-size: clamp(30px, 5vw, 46px);
    }

    .support-cv5__grid {
        display: grid;
        gap: var(--gap);
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    }

    .support-cv5__grid article {
        border-radius: var(--radius-lg);
        border: 1px solid rgba(0, 0, 0, 0.12);
        background: rgba(255, 255, 255, 0.32);
        color: var(--fg-on-page);
        padding: 13px;
        box-shadow: var(--shadow-sm);
    }

    .support-cv5__grid span {
        font-size: .82rem;
        color: var(--brand);
    }

    .support-cv5__grid h3 {
        margin: var(--space-x) 0;
    }

    .support-cv5__grid p {
        margin: 0;
        color: var(--neutral-700, var(--neutral-600));
    }

.map-panel-l5 {
        padding: clamp(3.1rem, 7vw, 5.7rem) var(--space-x);
        background: linear-gradient(180deg, var(--surface-1), var(--bg-alt));
        color: var(--fg-on-page);
    }

    .map-panel-l5__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .map-panel-l5__top {
        display: flex;
        justify-content: space-between;
        align-items: end;
        gap: 1rem;
        flex-wrap: wrap;
        margin-bottom: 1rem;
    }

    .map-panel-l5__top h2 {
        margin: 0;
        font-size: clamp(2rem, 4vw, 3rem);
    }

    .map-panel-l5__top p {
        margin: .55rem 0 0;
        color: var(--neutral-600);
    }

    .map-panel-l5__tags {
        color: var(--brand);
    }

    .map-panel-l5__grid {
        display: grid;
        grid-template-columns: 1.15fr .85fr;
        gap: 1rem;
    }

    .map-panel-l5__embed {
        overflow: hidden;
        border-radius: var(--radius-xl);
        border: 1px solid var(--border-on-surface-light);
    }

    .map-panel-l5__embed iframe {
        display: block;
        width: 100%;
        height: 24rem;
    }

    .map-panel-l5__list {
        display: grid;
        gap: .75rem;
    }

    .map-panel-l5__list div {
        padding: .95rem;
        border-radius: var(--radius-md);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface-light);
    }

    .map-panel-l5__list span {
        display: block;
        margin-top: .35rem;
        color: var(--neutral-600);
    }

    @media (max-width: 840px) {
        .map-panel-l5__grid {
            grid-template-columns: 1fr;
        }
    }

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

.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-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    transition: color var(--anim-duration) var(--anim-ease);
    flex-shrink: 0;
}

.logo:hover {
    color: var(--accent);
}

.main-nav {
    display: flex;
}

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

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) calc(var(--space-x) / 2);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
    position: relative;
}

.nav-link:hover {
    color: var(--link-hover);
    background-color: var(--btn-ghost-bg-hover);
}

.burger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
    z-index: 101;
}

.burger-line {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

.burger-btn[aria-expanded="true"] .burger-line:nth-child(1) {
    transform: translateY(0.65rem) rotate(45deg);
}
.burger-btn[aria-expanded="true"] .burger-line:nth-child(2) {
    opacity: 0;
}
.burger-btn[aria-expanded="true"] .burger-line:nth-child(3) {
    transform: translateY(-0.65rem) rotate(-45deg);
}

@media (max-width: 767px) {
    .burger-btn {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background-color: var(--overlay);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        display: flex;
        align-items: center;
        justify-content: center;
        transform: translateX(100%);
        transition: transform var(--anim-duration) var(--anim-ease);
        z-index: 99;
    }

    .main-nav.is-active {
        transform: translateX(0);
    }

    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: var(--gap);
    }

    .nav-link {
        font-size: calc(var(--font-size-base) * 1.25);
        padding: var(--space-y) var(--space-x);
    }

    .burger-btn[aria-expanded="true"] {
        position: fixed;
        right: var(--space-x);
    }
}

.footer {
        background-color: #f8f9fa;
        color: #333;
        padding: 2.5rem 1.5rem;
        font-family: system-ui, -apple-system, sans-serif;
        border-top: 1px solid #dee2e6;
    }
    .footer__top {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: flex-start;
        margin-bottom: 2rem;
        gap: 2rem;
    }
    .footer__brand {
        flex: 1;
        min-width: 250px;
    }
    .footer__logo {
        font-size: 2rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 0.5rem;
    }
    .footer__tagline {
        color: #6c757d;
        font-size: 0.95rem;
        line-height: 1.4;
        max-width: 300px;
    }
    .footer__nav {
        flex: 1;
        min-width: 200px;
    }
    .footer__nav-list {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .footer__nav-item {
        margin: 0;
    }
    .footer__link {
        color: #495057;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.2s ease;
    }
    .footer__link:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .footer__middle {
        margin-bottom: 2rem;
        padding-top: 1.5rem;
        border-top: 1px solid #e9ecef;
    }
    .footer__contacts-title {
        font-size: 1.1rem;
        margin-bottom: 1rem;
        color: #2c3e50;
    }
    .footer__contacts-list {
        list-style: none;
        padding: 0;
        margin: 0;
        color: #555;
        line-height: 1.6;
    }
    .footer__contacts-item {
        margin-bottom: 0.5rem;
    }
    .footer__contacts-item a {
        color: #0066cc;
        text-decoration: none;
    }
    .footer__contacts-item a:hover {
        text-decoration: underline;
    }
    .footer__bottom {
        padding-top: 1.5rem;
        border-top: 1px solid #e9ecef;
        font-size: 0.85rem;
        color: #6c757d;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
    }
    .footer__copyright {
        flex: 1;
        min-width: 200px;
    }
    .footer__legal {
        flex: 1;
        min-width: 200px;
        display: flex;
        justify-content: center;
        gap: 1.5rem;
    }
    .footer__legal-link {
        color: #6c757d;
        text-decoration: none;
    }
    .footer__legal-link:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .footer__disclaimer {
        flex-basis: 100%;
        text-align: center;
        margin-top: 1rem;
        font-size: 0.8rem;
        line-height: 1.4;
        color: #868e96;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }
    @media (max-width: 768px) {
        .footer__top {
            flex-direction: column;
            gap: 1.5rem;
        }
        .footer__nav-list {
            justify-content: flex-start;
        }
        .footer__bottom {
            flex-direction: column;
            text-align: center;
            gap: 0.75rem;
        }
        .footer__legal {
            justify-content: center;
            order: 2;
        }
        .footer__copyright {
            order: 1;
        }
        .footer__disclaimer {
            order: 3;
        }
    }

.nfcookie-v10 {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1200;
        background: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.12);
    }

    .nfcookie-v10__inner {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: calc(var(--space-y) * .8) var(--space-x);
        display: flex;
        flex-wrap: wrap;
        gap: 12px var(--gap);
        align-items: center;
        justify-content: space-between;
    }

    .nfcookie-v10__text {flex: 1 1 420px;}
    .nfcookie-v10__text strong {display: block; margin-bottom: 4px; color: var(--fg-on-surface);}
    .nfcookie-v10__text p {margin: 0; color: var(--fg-on-surface-light);}

    .nfcookie-v10__actions {display: flex; flex-wrap: wrap; gap: 8px;}

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

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

.terms-layout-b {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 36px);
        background: var(--surface-1);
        color: var(--fg-on-page);
    }

    .terms-layout-b .wrap {
        max-width: var(--max-w);
        margin: 0 auto;
    }

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

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

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

    .terms-layout-b .grid {
        display: grid;
        gap: var(--gap);
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    }

    .terms-layout-b article {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-md);
        padding: 12px;
        background: var(--bg-alt);
    }

    .terms-layout-b h3 {
        margin: 0 0 8px;
        color: var(--brand);
    }

    .terms-layout-b h4 {
        margin: 10px 0 6px;
    }

    .terms-layout-b p, .terms-layout-b li {
        color: var(--neutral-600);
        margin-top: 0;
    }

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

.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-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    transition: color var(--anim-duration) var(--anim-ease);
    flex-shrink: 0;
}

.logo:hover {
    color: var(--accent);
}

.main-nav {
    display: flex;
}

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

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) calc(var(--space-x) / 2);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
    position: relative;
}

.nav-link:hover {
    color: var(--link-hover);
    background-color: var(--btn-ghost-bg-hover);
}

.burger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
    z-index: 101;
}

.burger-line {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

.burger-btn[aria-expanded="true"] .burger-line:nth-child(1) {
    transform: translateY(0.65rem) rotate(45deg);
}
.burger-btn[aria-expanded="true"] .burger-line:nth-child(2) {
    opacity: 0;
}
.burger-btn[aria-expanded="true"] .burger-line:nth-child(3) {
    transform: translateY(-0.65rem) rotate(-45deg);
}

@media (max-width: 767px) {
    .burger-btn {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background-color: var(--overlay);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        display: flex;
        align-items: center;
        justify-content: center;
        transform: translateX(100%);
        transition: transform var(--anim-duration) var(--anim-ease);
        z-index: 99;
    }

    .main-nav.is-active {
        transform: translateX(0);
    }

    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: var(--gap);
    }

    .nav-link {
        font-size: calc(var(--font-size-base) * 1.25);
        padding: var(--space-y) var(--space-x);
    }

    .burger-btn[aria-expanded="true"] {
        position: fixed;
        right: var(--space-x);
    }
}

.footer {
        background-color: #f8f9fa;
        color: #333;
        padding: 2.5rem 1.5rem;
        font-family: system-ui, -apple-system, sans-serif;
        border-top: 1px solid #dee2e6;
    }
    .footer__top {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: flex-start;
        margin-bottom: 2rem;
        gap: 2rem;
    }
    .footer__brand {
        flex: 1;
        min-width: 250px;
    }
    .footer__logo {
        font-size: 2rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 0.5rem;
    }
    .footer__tagline {
        color: #6c757d;
        font-size: 0.95rem;
        line-height: 1.4;
        max-width: 300px;
    }
    .footer__nav {
        flex: 1;
        min-width: 200px;
    }
    .footer__nav-list {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .footer__nav-item {
        margin: 0;
    }
    .footer__link {
        color: #495057;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.2s ease;
    }
    .footer__link:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .footer__middle {
        margin-bottom: 2rem;
        padding-top: 1.5rem;
        border-top: 1px solid #e9ecef;
    }
    .footer__contacts-title {
        font-size: 1.1rem;
        margin-bottom: 1rem;
        color: #2c3e50;
    }
    .footer__contacts-list {
        list-style: none;
        padding: 0;
        margin: 0;
        color: #555;
        line-height: 1.6;
    }
    .footer__contacts-item {
        margin-bottom: 0.5rem;
    }
    .footer__contacts-item a {
        color: #0066cc;
        text-decoration: none;
    }
    .footer__contacts-item a:hover {
        text-decoration: underline;
    }
    .footer__bottom {
        padding-top: 1.5rem;
        border-top: 1px solid #e9ecef;
        font-size: 0.85rem;
        color: #6c757d;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
    }
    .footer__copyright {
        flex: 1;
        min-width: 200px;
    }
    .footer__legal {
        flex: 1;
        min-width: 200px;
        display: flex;
        justify-content: center;
        gap: 1.5rem;
    }
    .footer__legal-link {
        color: #6c757d;
        text-decoration: none;
    }
    .footer__legal-link:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .footer__disclaimer {
        flex-basis: 100%;
        text-align: center;
        margin-top: 1rem;
        font-size: 0.8rem;
        line-height: 1.4;
        color: #868e96;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }
    @media (max-width: 768px) {
        .footer__top {
            flex-direction: column;
            gap: 1.5rem;
        }
        .footer__nav-list {
            justify-content: flex-start;
        }
        .footer__bottom {
            flex-direction: column;
            text-align: center;
            gap: 0.75rem;
        }
        .footer__legal {
            justify-content: center;
            order: 2;
        }
        .footer__copyright {
            order: 1;
        }
        .footer__disclaimer {
            order: 3;
        }
    }

.nfcookie-v10 {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1200;
        background: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.12);
    }

    .nfcookie-v10__inner {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: calc(var(--space-y) * .8) var(--space-x);
        display: flex;
        flex-wrap: wrap;
        gap: 12px var(--gap);
        align-items: center;
        justify-content: space-between;
    }

    .nfcookie-v10__text {flex: 1 1 420px;}
    .nfcookie-v10__text strong {display: block; margin-bottom: 4px; color: var(--fg-on-surface);}
    .nfcookie-v10__text p {margin: 0; color: var(--fg-on-surface-light);}

    .nfcookie-v10__actions {display: flex; flex-wrap: wrap; gap: 8px;}

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

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

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

    .policy-layout-b .wrap {
        max-width: 900px;
        margin: 0 auto;
    }

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

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

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

    .policy-layout-b ol {
        margin: 0;
        padding-left: 18px;
        display: grid;
        gap: 10px;
    }

    .policy-layout-b li {
        background: var(--bg-alt);
        border-radius: var(--radius-md);
        border: 1px solid var(--border-on-surface);
        padding: 12px;
    }

    .policy-layout-b h3 {
        margin: 0;
        color: var(--brand);
        font-size: 1rem;
    }

    .policy-layout-b li 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);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
    width: 100%;
}

.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-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    transition: color var(--anim-duration) var(--anim-ease);
    flex-shrink: 0;
}

.logo:hover {
    color: var(--accent);
}

.main-nav {
    display: flex;
}

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

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) calc(var(--space-x) / 2);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
    position: relative;
}

.nav-link:hover {
    color: var(--link-hover);
    background-color: var(--btn-ghost-bg-hover);
}

.burger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
    z-index: 101;
}

.burger-line {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

.burger-btn[aria-expanded="true"] .burger-line:nth-child(1) {
    transform: translateY(0.65rem) rotate(45deg);
}
.burger-btn[aria-expanded="true"] .burger-line:nth-child(2) {
    opacity: 0;
}
.burger-btn[aria-expanded="true"] .burger-line:nth-child(3) {
    transform: translateY(-0.65rem) rotate(-45deg);
}

@media (max-width: 767px) {
    .burger-btn {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background-color: var(--overlay);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        display: flex;
        align-items: center;
        justify-content: center;
        transform: translateX(100%);
        transition: transform var(--anim-duration) var(--anim-ease);
        z-index: 99;
    }

    .main-nav.is-active {
        transform: translateX(0);
    }

    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: var(--gap);
    }

    .nav-link {
        font-size: calc(var(--font-size-base) * 1.25);
        padding: var(--space-y) var(--space-x);
    }

    .burger-btn[aria-expanded="true"] {
        position: fixed;
        right: var(--space-x);
    }
}

.footer {
        background-color: #f8f9fa;
        color: #333;
        padding: 2.5rem 1.5rem;
        font-family: system-ui, -apple-system, sans-serif;
        border-top: 1px solid #dee2e6;
    }
    .footer__top {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: flex-start;
        margin-bottom: 2rem;
        gap: 2rem;
    }
    .footer__brand {
        flex: 1;
        min-width: 250px;
    }
    .footer__logo {
        font-size: 2rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 0.5rem;
    }
    .footer__tagline {
        color: #6c757d;
        font-size: 0.95rem;
        line-height: 1.4;
        max-width: 300px;
    }
    .footer__nav {
        flex: 1;
        min-width: 200px;
    }
    .footer__nav-list {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .footer__nav-item {
        margin: 0;
    }
    .footer__link {
        color: #495057;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.2s ease;
    }
    .footer__link:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .footer__middle {
        margin-bottom: 2rem;
        padding-top: 1.5rem;
        border-top: 1px solid #e9ecef;
    }
    .footer__contacts-title {
        font-size: 1.1rem;
        margin-bottom: 1rem;
        color: #2c3e50;
    }
    .footer__contacts-list {
        list-style: none;
        padding: 0;
        margin: 0;
        color: #555;
        line-height: 1.6;
    }
    .footer__contacts-item {
        margin-bottom: 0.5rem;
    }
    .footer__contacts-item a {
        color: #0066cc;
        text-decoration: none;
    }
    .footer__contacts-item a:hover {
        text-decoration: underline;
    }
    .footer__bottom {
        padding-top: 1.5rem;
        border-top: 1px solid #e9ecef;
        font-size: 0.85rem;
        color: #6c757d;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
    }
    .footer__copyright {
        flex: 1;
        min-width: 200px;
    }
    .footer__legal {
        flex: 1;
        min-width: 200px;
        display: flex;
        justify-content: center;
        gap: 1.5rem;
    }
    .footer__legal-link {
        color: #6c757d;
        text-decoration: none;
    }
    .footer__legal-link:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .footer__disclaimer {
        flex-basis: 100%;
        text-align: center;
        margin-top: 1rem;
        font-size: 0.8rem;
        line-height: 1.4;
        color: #868e96;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }
    @media (max-width: 768px) {
        .footer__top {
            flex-direction: column;
            gap: 1.5rem;
        }
        .footer__nav-list {
            justify-content: flex-start;
        }
        .footer__bottom {
            flex-direction: column;
            text-align: center;
            gap: 0.75rem;
        }
        .footer__legal {
            justify-content: center;
            order: 2;
        }
        .footer__copyright {
            order: 1;
        }
        .footer__disclaimer {
            order: 3;
        }
    }

.nfcookie-v10 {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1200;
        background: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.12);
    }

    .nfcookie-v10__inner {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: calc(var(--space-y) * .8) var(--space-x);
        display: flex;
        flex-wrap: wrap;
        gap: 12px var(--gap);
        align-items: center;
        justify-content: space-between;
    }

    .nfcookie-v10__text {flex: 1 1 420px;}
    .nfcookie-v10__text strong {display: block; margin-bottom: 4px; color: var(--fg-on-surface);}
    .nfcookie-v10__text p {margin: 0; color: var(--fg-on-surface-light);}

    .nfcookie-v10__actions {display: flex; flex-wrap: wrap; gap: 8px;}

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

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

.thank-mode-a {
        padding: clamp(56px, 10vw, 110px) 18px;
        background: var(--gradient-accent);
        color: var(--accent-contrast);
    }

    .thank-mode-a .box {
        max-width: 720px;
        margin: 0 auto;
        text-align: center;
    }

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

    .thank-mode-a p {
        margin: 12px 0 0;
        opacity: .92;
    }

    .thank-mode-a a {
        display: inline-block;
        margin-top: 18px;
        padding: 10px 16px;
        border-radius: var(--radius-md);
        text-decoration: none;
        background: var(--surface-1);
        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);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
    width: 100%;
}

.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-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    transition: color var(--anim-duration) var(--anim-ease);
    flex-shrink: 0;
}

.logo:hover {
    color: var(--accent);
}

.main-nav {
    display: flex;
}

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

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) calc(var(--space-x) / 2);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
    position: relative;
}

.nav-link:hover {
    color: var(--link-hover);
    background-color: var(--btn-ghost-bg-hover);
}

.burger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
    z-index: 101;
}

.burger-line {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

.burger-btn[aria-expanded="true"] .burger-line:nth-child(1) {
    transform: translateY(0.65rem) rotate(45deg);
}
.burger-btn[aria-expanded="true"] .burger-line:nth-child(2) {
    opacity: 0;
}
.burger-btn[aria-expanded="true"] .burger-line:nth-child(3) {
    transform: translateY(-0.65rem) rotate(-45deg);
}

@media (max-width: 767px) {
    .burger-btn {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background-color: var(--overlay);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        display: flex;
        align-items: center;
        justify-content: center;
        transform: translateX(100%);
        transition: transform var(--anim-duration) var(--anim-ease);
        z-index: 99;
    }

    .main-nav.is-active {
        transform: translateX(0);
    }

    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: var(--gap);
    }

    .nav-link {
        font-size: calc(var(--font-size-base) * 1.25);
        padding: var(--space-y) var(--space-x);
    }

    .burger-btn[aria-expanded="true"] {
        position: fixed;
        right: var(--space-x);
    }
}

.footer {
        background-color: #f8f9fa;
        color: #333;
        padding: 2.5rem 1.5rem;
        font-family: system-ui, -apple-system, sans-serif;
        border-top: 1px solid #dee2e6;
    }
    .footer__top {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: flex-start;
        margin-bottom: 2rem;
        gap: 2rem;
    }
    .footer__brand {
        flex: 1;
        min-width: 250px;
    }
    .footer__logo {
        font-size: 2rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 0.5rem;
    }
    .footer__tagline {
        color: #6c757d;
        font-size: 0.95rem;
        line-height: 1.4;
        max-width: 300px;
    }
    .footer__nav {
        flex: 1;
        min-width: 200px;
    }
    .footer__nav-list {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .footer__nav-item {
        margin: 0;
    }
    .footer__link {
        color: #495057;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.2s ease;
    }
    .footer__link:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .footer__middle {
        margin-bottom: 2rem;
        padding-top: 1.5rem;
        border-top: 1px solid #e9ecef;
    }
    .footer__contacts-title {
        font-size: 1.1rem;
        margin-bottom: 1rem;
        color: #2c3e50;
    }
    .footer__contacts-list {
        list-style: none;
        padding: 0;
        margin: 0;
        color: #555;
        line-height: 1.6;
    }
    .footer__contacts-item {
        margin-bottom: 0.5rem;
    }
    .footer__contacts-item a {
        color: #0066cc;
        text-decoration: none;
    }
    .footer__contacts-item a:hover {
        text-decoration: underline;
    }
    .footer__bottom {
        padding-top: 1.5rem;
        border-top: 1px solid #e9ecef;
        font-size: 0.85rem;
        color: #6c757d;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
    }
    .footer__copyright {
        flex: 1;
        min-width: 200px;
    }
    .footer__legal {
        flex: 1;
        min-width: 200px;
        display: flex;
        justify-content: center;
        gap: 1.5rem;
    }
    .footer__legal-link {
        color: #6c757d;
        text-decoration: none;
    }
    .footer__legal-link:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .footer__disclaimer {
        flex-basis: 100%;
        text-align: center;
        margin-top: 1rem;
        font-size: 0.8rem;
        line-height: 1.4;
        color: #868e96;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }
    @media (max-width: 768px) {
        .footer__top {
            flex-direction: column;
            gap: 1.5rem;
        }
        .footer__nav-list {
            justify-content: flex-start;
        }
        .footer__bottom {
            flex-direction: column;
            text-align: center;
            gap: 0.75rem;
        }
        .footer__legal {
            justify-content: center;
            order: 2;
        }
        .footer__copyright {
            order: 1;
        }
        .footer__disclaimer {
            order: 3;
        }
    }

.nfcookie-v10 {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1200;
        background: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.12);
    }

    .nfcookie-v10__inner {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: calc(var(--space-y) * .8) var(--space-x);
        display: flex;
        flex-wrap: wrap;
        gap: 12px var(--gap);
        align-items: center;
        justify-content: space-between;
    }

    .nfcookie-v10__text {flex: 1 1 420px;}
    .nfcookie-v10__text strong {display: block; margin-bottom: 4px; color: var(--fg-on-surface);}
    .nfcookie-v10__text p {margin: 0; color: var(--fg-on-surface-light);}

    .nfcookie-v10__actions {display: flex; flex-wrap: wrap; gap: 8px;}

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

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

.nf404-v9 {
        padding: clamp(56px, 10vw, 112px) 20px;
        background: var(--accent);
        color: var(--accent-contrast);
    }

    .nf404-v9__card {
        max-width: 760px;
        margin: 0 auto;
        text-align: center;
        border-radius: var(--radius-xl);
        border: 1px solid rgba(255, 255, 255, .26);
        background: rgba(255, 255, 255, .08);
        padding: clamp(28px, 4vw, 46px);
    }

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

    .nf404-v9 p {
        margin: 12px 0 0;
        opacity: .92;
    }

    .nf404-v9 a {
        display: inline-block;
        margin-top: 18px;
        padding: 10px 16px;
        border-radius: var(--radius-md);
        color: var(--accent-contrast);
        text-decoration: none;
        border: 1px solid rgba(255, 255, 255, .45);
    }