:root {
  --font-family: "Inter", sans-serif;
  --font-size-base: 14.5px;
  --line-height-base: 1.4;

  --max-w: 1100px;
  --space-x: 0.85rem;
  --space-y: 0.67rem;
  --gap: 0.78rem;

  --radius-xl: 0.98rem;
  --radius-lg: 0.54rem;
  --radius-md: 0.38rem;
  --radius-sm: 0.16rem;

  --shadow-sm: 0 0px 4px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.11);
  --shadow-lg: 0 14px 24px rgba(0,0,0,0.13);

  --overlay: rgba(255, 255, 255, 0.85);
  --anim-duration: 160ms;
  --anim-ease: cubic-bezier(0.16,1,0.3,1);
  --random-number: 1;

  --brand: #2c5282;
  --brand-contrast: #ffffff;
  --accent: #4299e1;
  --accent-contrast: #ffffff;

  --neutral-0: #ffffff;
  --neutral-100: #f7fafc;
  --neutral-300: #e2e8f0;
  --neutral-600: #718096;
  --neutral-800: #2d3748;
  --neutral-900: #1a202c;

  --bg-page: #ffffff;
  --fg-on-page: #2d3748;

  --bg-alt: #f7fafc;
  --fg-on-alt: #4a5568;

  --surface-1: #ffffff;
  --surface-2: #f7fafc;
  --fg-on-surface: #2d3748;
  --border-on-surface: #e2e8f0;

  --surface-light: rgba(255, 255, 255, 0.95);
  --fg-on-surface-light: #4a5568;
  --border-on-surface-light: rgba(226, 232, 240, 0.7);

  --bg-primary: #2c5282;
  --fg-on-primary: #ffffff;
  --bg-primary-hover: #2b6cb0;
  --ring: #4299e1;

  --bg-accent: #ebf8ff;
  --fg-on-accent: #2b6cb0;
  --bg-accent-hover: #63b3ed;

  --link: #2c5282;
  --link-hover: #2b6cb0;

  --gradient-hero: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
  --gradient-accent: linear-gradient(90deg, #4299e1 0%, #3182ce 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);
    padding: var(--space-y) 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}

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

.header-logo {
    order: 1;
}

.logo-link {
    font-size: calc(var(--font-size-base) * 2);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    transition: color var(--anim-duration) var(--anim-ease);
}

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

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    position: absolute;
    top: var(--space-y);
    right: var(--space-x);
    z-index: 101;
    color: var(--fg-on-surface);
}

.menu-toggle-icon {
    display: block;
    width: 24px;
    height: 2px;
    background-color: currentColor;
    position: relative;
    transition: background-color var(--anim-duration) var(--anim-ease);
}

.menu-toggle-icon::before,
.menu-toggle-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: currentColor;
    left: 0;
    transition: transform var(--anim-duration) var(--anim-ease);
}

.menu-toggle-icon::before {
    top: -8px;
}

.menu-toggle-icon::after {
    bottom: -8px;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon {
    background-color: transparent;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon::before {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon::after {
    transform: translateY(-8px) rotate(-45deg);
}

.site-nav {
    order: 2;
    width: 100%;
}

.nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: var(--gap);
    flex-wrap: wrap;
}

.nav-item {
    margin: 0;
}

.nav-link {
    display: inline-block;
    padding: calc(var(--space-y) / 2) var(--space-x);
    color: var(--link);
    text-decoration: none;
    font-weight: 500;
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
}

.nav-link:hover,
.nav-link:focus {
    color: var(--link-hover);
    background-color: var(--btn-ghost-bg-hover);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}

@media (max-width: 767px) {
    .header-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 0;
    }

    .header-logo {
        order: 0;
    }

    .menu-toggle {
        display: block;
    }

    .site-nav {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: 75%;
        max-width: 300px;
        background-color: var(--surface-2);
        padding: calc(var(--space-y) * 3) var(--space-x) var(--space-y);
        transform: translateX(100%);
        transition: transform var(--anim-duration) var(--anim-ease);
        overflow-y: auto;
        box-shadow: var(--shadow-lg);
        z-index: 100;
    }

    .site-nav.is-open {
        transform: translateX(0);
    }

    .nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: calc(var(--gap) / 2);
    }

    .nav-link {
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-sm);
    }

    .site-nav::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: var(--overlay);
        opacity: 0;
        visibility: hidden;
        transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
        z-index: -1;
    }

    .site-nav.is-open::before {
        opacity: 1;
        visibility: visible;
    }
}

.footer-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        padding: 2.5rem 1.5rem;
        background-color: #f8f9fa;
        color: #333;
        font-family: sans-serif;
        line-height: 1.6;
        max-width: 1200px;
        margin: 0 auto;
    }
    .footer-left, .footer-right {
        flex: 1;
        min-width: 300px;
        padding: 1rem;
    }
    .footer-brand {
        font-size: 1.8rem;
        font-weight: bold;
        margin-bottom: 1rem;
        color: #222;
    }
    .copyright {
        margin-bottom: 1rem;
        font-size: 0.9rem;
        color: #666;
    }
    .footer-disclaimer {
        font-size: 0.8rem;
        color: #777;
        margin-bottom: 1.5rem;
        max-width: 90%;
    }
    .footer-disclaimer a {
        color: #555;
        text-decoration: underline;
    }
    .social-links {
        margin-top: 1rem;
    }
    .social-links a {
        display: inline-block;
        margin-right: 1rem;
        color: #555;
        text-decoration: none;
        font-weight: bold;
    }
    .social-links a:hover {
        color: #000;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0 0 1.5rem 0;
    }
    .footer-nav li {
        margin-bottom: 0.75rem;
    }
    .footer-nav a {
        text-decoration: none;
        color: #444;
        font-weight: 500;
    }
    .footer-nav a:hover {
        color: #000;
        text-decoration: underline;
    }
    .footer-contacts {
        margin-bottom: 1.5rem;
    }
    .footer-contacts p {
        margin: 0.5rem 0;
    }
    .footer-contacts a {
        color: #444;
        text-decoration: none;
    }
    .footer-contacts a:hover {
        text-decoration: underline;
    }
    .footer-legal {
        font-size: 0.85rem;
        color: #666;
    }
    .footer-legal a {
        color: #555;
        text-decoration: none;
    }
    .footer-legal a:hover {
        text-decoration: underline;
    }
    @media (max-width: 768px) {
        .footer-container {
            flex-direction: column;
            padding: 2rem 1rem;
        }
        .footer-left, .footer-right {
            width: 100%;
            padding: 0.5rem 0;
        }
    }

.cookie-cv7 {
        position: fixed;
        left: var(--space-x);
        bottom: var(--space-y);
        width: min(360px, calc(100vw - (var(--space-x) * 2)));
        z-index: 1200;
    }

    .cookie-cv7__card {
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        background: linear-gradient(140deg, var(--brand), var(--bg-primary-hover));
        color: var(--brand-contrast);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv7__card h3 {
        margin: 0 0 6px;
    }

    .cookie-cv7__card p {
        margin: 0;
        opacity: .92;
    }

    .cookie-cv7__actions {
        margin-top: 12px;
        display: grid;
        gap: 8px;
    }

    .cookie-cv7__actions button {
        border: 1px solid rgba(255, 255, 255, 0.28);
        background: rgba(255, 255, 255, 0.14);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        cursor: pointer;
    }

    .cookie-cv7__actions button[data-choice='accept'] {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-color: var(--bg-accent-hover);
    }

.intro-metrics-l4 {
        padding: clamp(3.6rem, 8vw, 6.6rem) var(--space-x);
        background: linear-gradient(180deg, var(--surface-1), var(--bg-alt));
        color: var(--fg-on-page);
    }

    .intro-metrics-l4__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .intro-metrics-l4__copy {
        text-align: center;
        max-width: 44rem;
        margin: 0 auto;
    }

    .intro-metrics-l4__copy p {
        margin: 0;
        color: var(--neutral-600);
        text-transform: uppercase;
        letter-spacing: .1em;
        font-size: .82rem;
    }

    .intro-metrics-l4__copy h1 {
        margin: .6rem 0 0;
        font-size: clamp(2.4rem, 5vw, 4.2rem);
        line-height: 1.04;
    }

    .intro-metrics-l4__copy span {
        display: block;
        margin-top: .9rem;
        color: var(--neutral-600);
    }

    .intro-metrics-l4__stats {
        margin-top: 1.3rem;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(11rem, 1fr));
        gap: var(--gap);
    }

    .intro-metrics-l4__stats article {
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface-light);
        text-align: center;
    }

    .intro-metrics-l4__stats strong {
        display: block;
        font-size: 1.6rem;
        color: var(--brand);
    }

    .intro-metrics-l4__stats span {
        display: block;
        margin-top: .35rem;
        color: var(--neutral-600);
    }

    .intro-metrics-l4__footer {
        margin-top: 1rem;
        text-align: center;
        color: var(--neutral-800);
    }

.next-fan-c5 {
        padding: clamp(3.6rem, 8vw, 6.2rem) var(--space-x);
        background: var(--gradient-accent);
        color: var(--fg-on-primary);
    }

    .next-fan-c5__wrap {
        max-width: 58rem;
        margin: 0 auto;
        text-align: center;
    }

    .next-fan-c5__banner p {
        margin: 0;
        color: rgba(255, 255, 255, .78);
    }

    .next-fan-c5__banner h2 {
        margin: .5rem 0 0;
        font-size: clamp(2.1rem, 4vw, 3.1rem);
    }

    .next-fan-c5__fan {
        margin-top: 1.15rem;
        display: flex;
        gap: .75rem;
        justify-content: center;
        flex-wrap: wrap;
    }

    .next-fan-c5__fan a {
        display: block;
        padding: .9rem 1rem;
        min-width: 10rem;
        border-radius: var(--radius-lg);
        background: rgba(255, 255, 255, .14);
        border: 1px solid rgba(255, 255, 255, .18);
        color: var(--fg-on-primary);
        text-decoration: none;
    }

    .next-fan-c5__fan span {
        display: block;
        margin-top: .3rem;
        color: rgba(255, 255, 255, .84);
    }

    .next-fan-c5__tail {
        margin-top: 1rem;

    }

    .next-fan-c5__wrap > a {
        display: inline-flex;
        margin-top: 1rem;
        min-height: 2.85rem;
        align-items: center;
        justify-content: center;
        padding: 0 1rem;
        border-radius: 999px;
        background: var(--surface-1);
        color: var(--fg-on-page);
        text-decoration: none;
    }

.faq-layout-d {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 36px);
        background: var(--bg-page);
        color: var(--fg-on-page);
    }

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

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

    .faq-layout-d h2 {
        margin: 0;
        font-size: clamp(28px, 4vw, 40px);
        color: var(--fg-on-page);
    }

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

    .faq-layout-d .cards {
        display: grid;
        gap: var(--gap);
        grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    }

    .faq-layout-d .card {
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-on-surface-light);
        background: var(--surface-1);
        color: var(--fg-on-surface);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-sm);
        transition: box-shadow var(--anim-duration) var(--anim-ease);
    }

    .faq-layout-d .card:hover {
        box-shadow: var(--shadow-md);
    }

    .faq-layout-d .card h3 {
        margin: 0;
        font-size: 1.05rem;
        color: var(--brand);
    }

    .faq-layout-d .card p {
        margin: 9px 0 0;
        color: var(--neutral-600);
    }

.touch-orbit {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 3vw, 36px);
        background: var(--gradient-accent);
        color: var(--accent-contrast);
    }

    .touch-orbit .wrap {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .touch-orbit .header {
        margin-bottom: 14px;
        text-align: center;
    }

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

    .touch-orbit .header p {
        margin: 10px auto 0;
        max-width: 64ch;
        opacity: .92;
    }

    .touch-orbit .grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 10px;
        margin-bottom: 28px;
    }

    .touch-orbit .card {
        border: 1px solid rgba(255, 255, 255, .35);
        border-radius: var(--radius-md);
        background: rgba(255, 255, 255, .12);
        padding: 12px;
        animation: orbitIn 420ms ease both;
    }

    .touch-orbit .card:nth-child(2) {
        animation-delay: 90ms;
    }

    .touch-orbit .card:nth-child(3) {
        animation-delay: 180ms;
    }

    .touch-orbit .icon,
    .touch-orbit .badge,
    .touch-orbit h3,
    .touch-orbit .card p {
        margin: 0 0 8px;
    }

    .touch-orbit .card a {
        color: var(--accent-contrast);
        text-decoration: underline;
    }

    .touch-orbit .main {
        display: inline-block;
        margin-top: 14px;
        text-decoration: none;
        padding: 10px 16px;
        border-radius: var(--radius-md);
        background: var(--surface-1);
        color: var(--fg-on-page);
    }

    @keyframes orbitIn {
        from {
            opacity: 0;
            transform: translateY(8px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

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

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

.header-logo {
    order: 1;
}

.logo-link {
    font-size: calc(var(--font-size-base) * 2);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    transition: color var(--anim-duration) var(--anim-ease);
}

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

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    position: absolute;
    top: var(--space-y);
    right: var(--space-x);
    z-index: 101;
    color: var(--fg-on-surface);
}

.menu-toggle-icon {
    display: block;
    width: 24px;
    height: 2px;
    background-color: currentColor;
    position: relative;
    transition: background-color var(--anim-duration) var(--anim-ease);
}

.menu-toggle-icon::before,
.menu-toggle-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: currentColor;
    left: 0;
    transition: transform var(--anim-duration) var(--anim-ease);
}

.menu-toggle-icon::before {
    top: -8px;
}

.menu-toggle-icon::after {
    bottom: -8px;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon {
    background-color: transparent;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon::before {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon::after {
    transform: translateY(-8px) rotate(-45deg);
}

.site-nav {
    order: 2;
    width: 100%;
}

.nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: var(--gap);
    flex-wrap: wrap;
}

.nav-item {
    margin: 0;
}

.nav-link {
    display: inline-block;
    padding: calc(var(--space-y) / 2) var(--space-x);
    color: var(--link);
    text-decoration: none;
    font-weight: 500;
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
}

.nav-link:hover,
.nav-link:focus {
    color: var(--link-hover);
    background-color: var(--btn-ghost-bg-hover);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}

@media (max-width: 767px) {
    .header-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 0;
    }

    .header-logo {
        order: 0;
    }

    .menu-toggle {
        display: block;
    }

    .site-nav {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: 75%;
        max-width: 300px;
        background-color: var(--surface-2);
        padding: calc(var(--space-y) * 3) var(--space-x) var(--space-y);
        transform: translateX(100%);
        transition: transform var(--anim-duration) var(--anim-ease);
        overflow-y: auto;
        box-shadow: var(--shadow-lg);
        z-index: 100;
    }

    .site-nav.is-open {
        transform: translateX(0);
    }

    .nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: calc(var(--gap) / 2);
    }

    .nav-link {
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-sm);
    }

    .site-nav::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: var(--overlay);
        opacity: 0;
        visibility: hidden;
        transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
        z-index: -1;
    }

    .site-nav.is-open::before {
        opacity: 1;
        visibility: visible;
    }
}

.footer-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        padding: 2.5rem 1.5rem;
        background-color: #f8f9fa;
        color: #333;
        font-family: sans-serif;
        line-height: 1.6;
        max-width: 1200px;
        margin: 0 auto;
    }
    .footer-left, .footer-right {
        flex: 1;
        min-width: 300px;
        padding: 1rem;
    }
    .footer-brand {
        font-size: 1.8rem;
        font-weight: bold;
        margin-bottom: 1rem;
        color: #222;
    }
    .copyright {
        margin-bottom: 1rem;
        font-size: 0.9rem;
        color: #666;
    }
    .footer-disclaimer {
        font-size: 0.8rem;
        color: #777;
        margin-bottom: 1.5rem;
        max-width: 90%;
    }
    .footer-disclaimer a {
        color: #555;
        text-decoration: underline;
    }
    .social-links {
        margin-top: 1rem;
    }
    .social-links a {
        display: inline-block;
        margin-right: 1rem;
        color: #555;
        text-decoration: none;
        font-weight: bold;
    }
    .social-links a:hover {
        color: #000;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0 0 1.5rem 0;
    }
    .footer-nav li {
        margin-bottom: 0.75rem;
    }
    .footer-nav a {
        text-decoration: none;
        color: #444;
        font-weight: 500;
    }
    .footer-nav a:hover {
        color: #000;
        text-decoration: underline;
    }
    .footer-contacts {
        margin-bottom: 1.5rem;
    }
    .footer-contacts p {
        margin: 0.5rem 0;
    }
    .footer-contacts a {
        color: #444;
        text-decoration: none;
    }
    .footer-contacts a:hover {
        text-decoration: underline;
    }
    .footer-legal {
        font-size: 0.85rem;
        color: #666;
    }
    .footer-legal a {
        color: #555;
        text-decoration: none;
    }
    .footer-legal a:hover {
        text-decoration: underline;
    }
    @media (max-width: 768px) {
        .footer-container {
            flex-direction: column;
            padding: 2rem 1rem;
        }
        .footer-left, .footer-right {
            width: 100%;
            padding: 0.5rem 0;
        }
    }

.cookie-cv7 {
        position: fixed;
        left: var(--space-x);
        bottom: var(--space-y);
        width: min(360px, calc(100vw - (var(--space-x) * 2)));
        z-index: 1200;
    }

    .cookie-cv7__card {
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        background: linear-gradient(140deg, var(--brand), var(--bg-primary-hover));
        color: var(--brand-contrast);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv7__card h3 {
        margin: 0 0 6px;
    }

    .cookie-cv7__card p {
        margin: 0;
        opacity: .92;
    }

    .cookie-cv7__actions {
        margin-top: 12px;
        display: grid;
        gap: 8px;
    }

    .cookie-cv7__actions button {
        border: 1px solid rgba(255, 255, 255, 0.28);
        background: rgba(255, 255, 255, 0.14);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        cursor: pointer;
    }

    .cookie-cv7__actions button[data-choice='accept'] {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-color: var(--bg-accent-hover);
    }

.review-list--light-v6 {
    padding: 48px 20px;
    background: var(--surface-light);
    color: var(--fg-on-surface-light);
}

.review-list__inner {
    max-width: 640px;
    margin: 0 auto;
}

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

.review-list__items {
    margin: 0;
    padding: 0;
    list-style: none;
    border-radius: var(--radius-xl);
    background: var(--bg-page);
    border: 1px solid var(--border-on-surface-light);
    overflow: hidden;
}

.review-list__row {
    display: grid;
    grid-template-columns: minmax(0,1fr) auto;
    gap: 12px;
    padding: 8px 12px;
    border-top: 1px solid var(--border-on-surface-light);
}

.review-list__row:first-child {
    border-top: none;
}

.review-list__name {
    font-size: 0.9rem;
    color: var(--fg-on-page);
}

.review-list__rating {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent);
}

.add-review {

        color: var(--fg-on-primary);
        background: var(--gradient-hero);
        padding: clamp(16px, 3vw, 40px);
    }

    .add-review .add-review__c {
        max-width: 600px;
        margin: 0 auto;
    }

    .add-review .add-review__h {
        text-align: center;
        margin-bottom: var(--space-y);
        color: var(--fg-on-primary);
    }

    .add-review h1 {
        font-size: clamp(28px, 5vw, 42px);
        margin: 0 0 0.5rem;
    }

    .add-review .add-review__form {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        padding: clamp(24px, 3vw, 40px);
        border-radius: var(--radius-lg);
        border: 1px solid rgba(255, 255, 255, 0.2);
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }

    .add-review .add-review__rating {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

    .add-review .add-review__rating label:first-child {
        color: var(--fg-on-primary);
        font-weight: 600;
    }

    .add-review .add-review__stars {
        display: flex;
        flex-direction: row-reverse;
        justify-content: flex-end;
        gap: 0.25rem;
    }

    .add-review .add-review__stars input {
        display: none;
    }

    .add-review .add-review__stars label {
        font-size: 2rem;
        color: #666;
        cursor: pointer;
        transition: color var(--anim-duration) var(--anim-ease);
    }

    .add-review .add-review__stars input:checked ~ label,
    .add-review .add-review__stars label:hover,
    .add-review .add-review__stars label:hover ~ label {
        color: #ffd700;
    }

    .add-review .add-review__form input,
    .add-review .add-review__form textarea {
        padding: 0.875rem;
        border-radius: var(--radius-md);
        border: 1px solid rgba(255, 255, 255, 0.3);
        background: rgba(255, 255, 255, 0.1);
        color: var(--fg-on-primary);

        outline: none;
    }

    .add-review .add-review__form input::placeholder,
    .add-review .add-review__form textarea::placeholder {
        color: rgba(255, 255, 255, 0.7);
    }

    .add-review .add-review__form input:focus,
    .add-review .add-review__form textarea:focus {
        border-color: rgba(255, 255, 255, 0.5);
        box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
    }

    .add-review .add-review__form button {
        padding: 1rem 2rem;
        border-radius: var(--radius-lg);
        border: none;
        background: var(--gradient-hero);
        color: var(--bg-primary);
        font-weight: 600;
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .add-review .add-review__form button:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-lg);
    }

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

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

.header-logo {
    order: 1;
}

.logo-link {
    font-size: calc(var(--font-size-base) * 2);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    transition: color var(--anim-duration) var(--anim-ease);
}

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

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    position: absolute;
    top: var(--space-y);
    right: var(--space-x);
    z-index: 101;
    color: var(--fg-on-surface);
}

.menu-toggle-icon {
    display: block;
    width: 24px;
    height: 2px;
    background-color: currentColor;
    position: relative;
    transition: background-color var(--anim-duration) var(--anim-ease);
}

.menu-toggle-icon::before,
.menu-toggle-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: currentColor;
    left: 0;
    transition: transform var(--anim-duration) var(--anim-ease);
}

.menu-toggle-icon::before {
    top: -8px;
}

.menu-toggle-icon::after {
    bottom: -8px;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon {
    background-color: transparent;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon::before {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon::after {
    transform: translateY(-8px) rotate(-45deg);
}

.site-nav {
    order: 2;
    width: 100%;
}

.nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: var(--gap);
    flex-wrap: wrap;
}

.nav-item {
    margin: 0;
}

.nav-link {
    display: inline-block;
    padding: calc(var(--space-y) / 2) var(--space-x);
    color: var(--link);
    text-decoration: none;
    font-weight: 500;
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
}

.nav-link:hover,
.nav-link:focus {
    color: var(--link-hover);
    background-color: var(--btn-ghost-bg-hover);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}

@media (max-width: 767px) {
    .header-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 0;
    }

    .header-logo {
        order: 0;
    }

    .menu-toggle {
        display: block;
    }

    .site-nav {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: 75%;
        max-width: 300px;
        background-color: var(--surface-2);
        padding: calc(var(--space-y) * 3) var(--space-x) var(--space-y);
        transform: translateX(100%);
        transition: transform var(--anim-duration) var(--anim-ease);
        overflow-y: auto;
        box-shadow: var(--shadow-lg);
        z-index: 100;
    }

    .site-nav.is-open {
        transform: translateX(0);
    }

    .nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: calc(var(--gap) / 2);
    }

    .nav-link {
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-sm);
    }

    .site-nav::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: var(--overlay);
        opacity: 0;
        visibility: hidden;
        transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
        z-index: -1;
    }

    .site-nav.is-open::before {
        opacity: 1;
        visibility: visible;
    }
}

.footer-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        padding: 2.5rem 1.5rem;
        background-color: #f8f9fa;
        color: #333;
        font-family: sans-serif;
        line-height: 1.6;
        max-width: 1200px;
        margin: 0 auto;
    }
    .footer-left, .footer-right {
        flex: 1;
        min-width: 300px;
        padding: 1rem;
    }
    .footer-brand {
        font-size: 1.8rem;
        font-weight: bold;
        margin-bottom: 1rem;
        color: #222;
    }
    .copyright {
        margin-bottom: 1rem;
        font-size: 0.9rem;
        color: #666;
    }
    .footer-disclaimer {
        font-size: 0.8rem;
        color: #777;
        margin-bottom: 1.5rem;
        max-width: 90%;
    }
    .footer-disclaimer a {
        color: #555;
        text-decoration: underline;
    }
    .social-links {
        margin-top: 1rem;
    }
    .social-links a {
        display: inline-block;
        margin-right: 1rem;
        color: #555;
        text-decoration: none;
        font-weight: bold;
    }
    .social-links a:hover {
        color: #000;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0 0 1.5rem 0;
    }
    .footer-nav li {
        margin-bottom: 0.75rem;
    }
    .footer-nav a {
        text-decoration: none;
        color: #444;
        font-weight: 500;
    }
    .footer-nav a:hover {
        color: #000;
        text-decoration: underline;
    }
    .footer-contacts {
        margin-bottom: 1.5rem;
    }
    .footer-contacts p {
        margin: 0.5rem 0;
    }
    .footer-contacts a {
        color: #444;
        text-decoration: none;
    }
    .footer-contacts a:hover {
        text-decoration: underline;
    }
    .footer-legal {
        font-size: 0.85rem;
        color: #666;
    }
    .footer-legal a {
        color: #555;
        text-decoration: none;
    }
    .footer-legal a:hover {
        text-decoration: underline;
    }
    @media (max-width: 768px) {
        .footer-container {
            flex-direction: column;
            padding: 2rem 1rem;
        }
        .footer-left, .footer-right {
            width: 100%;
            padding: 0.5rem 0;
        }
    }

.cookie-cv7 {
        position: fixed;
        left: var(--space-x);
        bottom: var(--space-y);
        width: min(360px, calc(100vw - (var(--space-x) * 2)));
        z-index: 1200;
    }

    .cookie-cv7__card {
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        background: linear-gradient(140deg, var(--brand), var(--bg-primary-hover));
        color: var(--brand-contrast);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv7__card h3 {
        margin: 0 0 6px;
    }

    .cookie-cv7__card p {
        margin: 0;
        opacity: .92;
    }

    .cookie-cv7__actions {
        margin-top: 12px;
        display: grid;
        gap: 8px;
    }

    .cookie-cv7__actions button {
        border: 1px solid rgba(255, 255, 255, 0.28);
        background: rgba(255, 255, 255, 0.14);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        cursor: pointer;
    }

    .cookie-cv7__actions button[data-choice='accept'] {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-color: var(--bg-accent-hover);
    }

.review-item--colored-v5 {
    padding: 56px 20px;
    background: radial-gradient(circle at top left, rgba(59,130,246,0.4), transparent),
                radial-gradient(circle at bottom right, rgba(236,72,153,0.4), transparent),
                var(--neutral-900);
    color: var(--neutral-0);
}

.review-item__inner {
    max-width: 640px;
    margin: 0 auto;
}

.review-item__card {
    background: rgba(15,23,42,0.98);
    border-radius: var(--radius-xl);
    padding: 18px 20px;
    border: 1px solid rgba(191,219,254,0.7);
    box-shadow: var(--shadow-lg);
}

.review-item__header {
    display: grid;
    grid-template-columns: auto minmax(0,1fr) auto;
    gap: 12px;
    align-items: center;
    margin-bottom: 12px;
}

.review-item__avatar {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    background: var(--bg-primary);
    color: var(--fg-on-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.review-item__meta h3 {
    margin: 0 0 2px;
    font-size: 1rem;
    color: var(--brand-contrast);
}

.review-item__meta p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--neutral-300);
}

.review-item__rating {
    font-size: 0.9rem;
    color: var(--accent);
}

.review-item__text {
    margin: 0;
    font-size: 0.95rem;
    color: var(--neutral-100);
    line-height: 1.7;
}

.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;
        }
    }

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

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

.header-logo {
    order: 1;
}

.logo-link {
    font-size: calc(var(--font-size-base) * 2);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    transition: color var(--anim-duration) var(--anim-ease);
}

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

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    position: absolute;
    top: var(--space-y);
    right: var(--space-x);
    z-index: 101;
    color: var(--fg-on-surface);
}

.menu-toggle-icon {
    display: block;
    width: 24px;
    height: 2px;
    background-color: currentColor;
    position: relative;
    transition: background-color var(--anim-duration) var(--anim-ease);
}

.menu-toggle-icon::before,
.menu-toggle-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: currentColor;
    left: 0;
    transition: transform var(--anim-duration) var(--anim-ease);
}

.menu-toggle-icon::before {
    top: -8px;
}

.menu-toggle-icon::after {
    bottom: -8px;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon {
    background-color: transparent;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon::before {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon::after {
    transform: translateY(-8px) rotate(-45deg);
}

.site-nav {
    order: 2;
    width: 100%;
}

.nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: var(--gap);
    flex-wrap: wrap;
}

.nav-item {
    margin: 0;
}

.nav-link {
    display: inline-block;
    padding: calc(var(--space-y) / 2) var(--space-x);
    color: var(--link);
    text-decoration: none;
    font-weight: 500;
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
}

.nav-link:hover,
.nav-link:focus {
    color: var(--link-hover);
    background-color: var(--btn-ghost-bg-hover);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}

@media (max-width: 767px) {
    .header-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 0;
    }

    .header-logo {
        order: 0;
    }

    .menu-toggle {
        display: block;
    }

    .site-nav {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: 75%;
        max-width: 300px;
        background-color: var(--surface-2);
        padding: calc(var(--space-y) * 3) var(--space-x) var(--space-y);
        transform: translateX(100%);
        transition: transform var(--anim-duration) var(--anim-ease);
        overflow-y: auto;
        box-shadow: var(--shadow-lg);
        z-index: 100;
    }

    .site-nav.is-open {
        transform: translateX(0);
    }

    .nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: calc(var(--gap) / 2);
    }

    .nav-link {
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-sm);
    }

    .site-nav::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: var(--overlay);
        opacity: 0;
        visibility: hidden;
        transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
        z-index: -1;
    }

    .site-nav.is-open::before {
        opacity: 1;
        visibility: visible;
    }
}

.footer-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        padding: 2.5rem 1.5rem;
        background-color: #f8f9fa;
        color: #333;
        font-family: sans-serif;
        line-height: 1.6;
        max-width: 1200px;
        margin: 0 auto;
    }
    .footer-left, .footer-right {
        flex: 1;
        min-width: 300px;
        padding: 1rem;
    }
    .footer-brand {
        font-size: 1.8rem;
        font-weight: bold;
        margin-bottom: 1rem;
        color: #222;
    }
    .copyright {
        margin-bottom: 1rem;
        font-size: 0.9rem;
        color: #666;
    }
    .footer-disclaimer {
        font-size: 0.8rem;
        color: #777;
        margin-bottom: 1.5rem;
        max-width: 90%;
    }
    .footer-disclaimer a {
        color: #555;
        text-decoration: underline;
    }
    .social-links {
        margin-top: 1rem;
    }
    .social-links a {
        display: inline-block;
        margin-right: 1rem;
        color: #555;
        text-decoration: none;
        font-weight: bold;
    }
    .social-links a:hover {
        color: #000;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0 0 1.5rem 0;
    }
    .footer-nav li {
        margin-bottom: 0.75rem;
    }
    .footer-nav a {
        text-decoration: none;
        color: #444;
        font-weight: 500;
    }
    .footer-nav a:hover {
        color: #000;
        text-decoration: underline;
    }
    .footer-contacts {
        margin-bottom: 1.5rem;
    }
    .footer-contacts p {
        margin: 0.5rem 0;
    }
    .footer-contacts a {
        color: #444;
        text-decoration: none;
    }
    .footer-contacts a:hover {
        text-decoration: underline;
    }
    .footer-legal {
        font-size: 0.85rem;
        color: #666;
    }
    .footer-legal a {
        color: #555;
        text-decoration: none;
    }
    .footer-legal a:hover {
        text-decoration: underline;
    }
    @media (max-width: 768px) {
        .footer-container {
            flex-direction: column;
            padding: 2rem 1rem;
        }
        .footer-left, .footer-right {
            width: 100%;
            padding: 0.5rem 0;
        }
    }

.cookie-cv7 {
        position: fixed;
        left: var(--space-x);
        bottom: var(--space-y);
        width: min(360px, calc(100vw - (var(--space-x) * 2)));
        z-index: 1200;
    }

    .cookie-cv7__card {
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        background: linear-gradient(140deg, var(--brand), var(--bg-primary-hover));
        color: var(--brand-contrast);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv7__card h3 {
        margin: 0 0 6px;
    }

    .cookie-cv7__card p {
        margin: 0;
        opacity: .92;
    }

    .cookie-cv7__actions {
        margin-top: 12px;
        display: grid;
        gap: 8px;
    }

    .cookie-cv7__actions button {
        border: 1px solid rgba(255, 255, 255, 0.28);
        background: rgba(255, 255, 255, 0.14);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        cursor: pointer;
    }

    .cookie-cv7__actions button[data-choice='accept'] {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-color: var(--bg-accent-hover);
    }

.review-item--colored-v5 {
    padding: 56px 20px;
    background: radial-gradient(circle at top left, rgba(59,130,246,0.4), transparent),
                radial-gradient(circle at bottom right, rgba(236,72,153,0.4), transparent),
                var(--neutral-900);
    color: var(--neutral-0);
}

.review-item__inner {
    max-width: 640px;
    margin: 0 auto;
}

.review-item__card {
    background: rgba(15,23,42,0.98);
    border-radius: var(--radius-xl);
    padding: 18px 20px;
    border: 1px solid rgba(191,219,254,0.7);
    box-shadow: var(--shadow-lg);
}

.review-item__header {
    display: grid;
    grid-template-columns: auto minmax(0,1fr) auto;
    gap: 12px;
    align-items: center;
    margin-bottom: 12px;
}

.review-item__avatar {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    background: var(--bg-primary);
    color: var(--fg-on-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.review-item__meta h3 {
    margin: 0 0 2px;
    font-size: 1rem;
    color: var(--brand-contrast);
}

.review-item__meta p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--neutral-300);
}

.review-item__rating {
    font-size: 0.9rem;
    color: var(--accent);
}

.review-item__text {
    margin: 0;
    font-size: 0.95rem;
    color: var(--neutral-100);
    line-height: 1.7;
}

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

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

.header-logo {
    order: 1;
}

.logo-link {
    font-size: calc(var(--font-size-base) * 2);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    transition: color var(--anim-duration) var(--anim-ease);
}

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

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    position: absolute;
    top: var(--space-y);
    right: var(--space-x);
    z-index: 101;
    color: var(--fg-on-surface);
}

.menu-toggle-icon {
    display: block;
    width: 24px;
    height: 2px;
    background-color: currentColor;
    position: relative;
    transition: background-color var(--anim-duration) var(--anim-ease);
}

.menu-toggle-icon::before,
.menu-toggle-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: currentColor;
    left: 0;
    transition: transform var(--anim-duration) var(--anim-ease);
}

.menu-toggle-icon::before {
    top: -8px;
}

.menu-toggle-icon::after {
    bottom: -8px;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon {
    background-color: transparent;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon::before {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon::after {
    transform: translateY(-8px) rotate(-45deg);
}

.site-nav {
    order: 2;
    width: 100%;
}

.nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: var(--gap);
    flex-wrap: wrap;
}

.nav-item {
    margin: 0;
}

.nav-link {
    display: inline-block;
    padding: calc(var(--space-y) / 2) var(--space-x);
    color: var(--link);
    text-decoration: none;
    font-weight: 500;
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
}

.nav-link:hover,
.nav-link:focus {
    color: var(--link-hover);
    background-color: var(--btn-ghost-bg-hover);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}

@media (max-width: 767px) {
    .header-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 0;
    }

    .header-logo {
        order: 0;
    }

    .menu-toggle {
        display: block;
    }

    .site-nav {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: 75%;
        max-width: 300px;
        background-color: var(--surface-2);
        padding: calc(var(--space-y) * 3) var(--space-x) var(--space-y);
        transform: translateX(100%);
        transition: transform var(--anim-duration) var(--anim-ease);
        overflow-y: auto;
        box-shadow: var(--shadow-lg);
        z-index: 100;
    }

    .site-nav.is-open {
        transform: translateX(0);
    }

    .nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: calc(var(--gap) / 2);
    }

    .nav-link {
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-sm);
    }

    .site-nav::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: var(--overlay);
        opacity: 0;
        visibility: hidden;
        transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
        z-index: -1;
    }

    .site-nav.is-open::before {
        opacity: 1;
        visibility: visible;
    }
}

.footer-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        padding: 2.5rem 1.5rem;
        background-color: #f8f9fa;
        color: #333;
        font-family: sans-serif;
        line-height: 1.6;
        max-width: 1200px;
        margin: 0 auto;
    }
    .footer-left, .footer-right {
        flex: 1;
        min-width: 300px;
        padding: 1rem;
    }
    .footer-brand {
        font-size: 1.8rem;
        font-weight: bold;
        margin-bottom: 1rem;
        color: #222;
    }
    .copyright {
        margin-bottom: 1rem;
        font-size: 0.9rem;
        color: #666;
    }
    .footer-disclaimer {
        font-size: 0.8rem;
        color: #777;
        margin-bottom: 1.5rem;
        max-width: 90%;
    }
    .footer-disclaimer a {
        color: #555;
        text-decoration: underline;
    }
    .social-links {
        margin-top: 1rem;
    }
    .social-links a {
        display: inline-block;
        margin-right: 1rem;
        color: #555;
        text-decoration: none;
        font-weight: bold;
    }
    .social-links a:hover {
        color: #000;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0 0 1.5rem 0;
    }
    .footer-nav li {
        margin-bottom: 0.75rem;
    }
    .footer-nav a {
        text-decoration: none;
        color: #444;
        font-weight: 500;
    }
    .footer-nav a:hover {
        color: #000;
        text-decoration: underline;
    }
    .footer-contacts {
        margin-bottom: 1.5rem;
    }
    .footer-contacts p {
        margin: 0.5rem 0;
    }
    .footer-contacts a {
        color: #444;
        text-decoration: none;
    }
    .footer-contacts a:hover {
        text-decoration: underline;
    }
    .footer-legal {
        font-size: 0.85rem;
        color: #666;
    }
    .footer-legal a {
        color: #555;
        text-decoration: none;
    }
    .footer-legal a:hover {
        text-decoration: underline;
    }
    @media (max-width: 768px) {
        .footer-container {
            flex-direction: column;
            padding: 2rem 1rem;
        }
        .footer-left, .footer-right {
            width: 100%;
            padding: 0.5rem 0;
        }
    }

.cookie-cv7 {
        position: fixed;
        left: var(--space-x);
        bottom: var(--space-y);
        width: min(360px, calc(100vw - (var(--space-x) * 2)));
        z-index: 1200;
    }

    .cookie-cv7__card {
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        background: linear-gradient(140deg, var(--brand), var(--bg-primary-hover));
        color: var(--brand-contrast);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv7__card h3 {
        margin: 0 0 6px;
    }

    .cookie-cv7__card p {
        margin: 0;
        opacity: .92;
    }

    .cookie-cv7__actions {
        margin-top: 12px;
        display: grid;
        gap: 8px;
    }

    .cookie-cv7__actions button {
        border: 1px solid rgba(255, 255, 255, 0.28);
        background: rgba(255, 255, 255, 0.14);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        cursor: pointer;
    }

    .cookie-cv7__actions button[data-choice='accept'] {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-color: var(--bg-accent-hover);
    }

.review-item--colored-v5 {

    padding: 56px 20px;
    background: radial-gradient(circle at top left, rgba(59,130,246,0.4), transparent),
                radial-gradient(circle at bottom right, rgba(236,72,153,0.4), transparent),
                var(--neutral-900);
    color: var(--neutral-0);
}

.review-item__inner {
    max-width: 640px;
    margin: 0 auto;
}

.review-item__card {
    background: rgba(15,23,42,0.98);
    border-radius: var(--radius-xl);
    padding: 18px 20px;
    border: 1px solid rgba(191,219,254,0.7);
    box-shadow: var(--shadow-lg);
}

.review-item__header {
    display: grid;
    grid-template-columns: auto minmax(0,1fr) auto;
    gap: 12px;
    align-items: center;
    margin-bottom: 12px;
}

.review-item__avatar {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    background: var(--bg-primary);
    color: var(--fg-on-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.review-item__meta h3 {
    margin: 0 0 2px;
    font-size: 1rem;
    color: var(--brand-contrast);
}

.review-item__meta p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--neutral-300);
}

.review-item__rating {
    font-size: 0.9rem;
    color: var(--accent);
}

.review-item__text {
    margin: 0;
    font-size: 0.95rem;
    color: var(--neutral-100);
    line-height: 1.7;
}

.values-papers-l6 {
        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);
    }

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

    .values-papers-l6__head {
        margin-bottom: 1.1rem;
    }

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

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

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

    .values-papers-l6__grid article {
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        border: 1px dashed var(--border-on-surface-light);
    }

    .values-papers-l6__grid div {
        font-size: 1.25rem;
    }

    .values-papers-l6__grid h3 {
        margin: .75rem 0 .35rem;
    }

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

    .values-papers-l6__grid small {
        display: block;
        margin-top: .55rem;
        color: var(--neutral-800);
    }

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

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

.header-logo {
    order: 1;
}

.logo-link {
    font-size: calc(var(--font-size-base) * 2);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    transition: color var(--anim-duration) var(--anim-ease);
}

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

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    position: absolute;
    top: var(--space-y);
    right: var(--space-x);
    z-index: 101;
    color: var(--fg-on-surface);
}

.menu-toggle-icon {
    display: block;
    width: 24px;
    height: 2px;
    background-color: currentColor;
    position: relative;
    transition: background-color var(--anim-duration) var(--anim-ease);
}

.menu-toggle-icon::before,
.menu-toggle-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: currentColor;
    left: 0;
    transition: transform var(--anim-duration) var(--anim-ease);
}

.menu-toggle-icon::before {
    top: -8px;
}

.menu-toggle-icon::after {
    bottom: -8px;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon {
    background-color: transparent;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon::before {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon::after {
    transform: translateY(-8px) rotate(-45deg);
}

.site-nav {
    order: 2;
    width: 100%;
}

.nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: var(--gap);
    flex-wrap: wrap;
}

.nav-item {
    margin: 0;
}

.nav-link {
    display: inline-block;
    padding: calc(var(--space-y) / 2) var(--space-x);
    color: var(--link);
    text-decoration: none;
    font-weight: 500;
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
}

.nav-link:hover,
.nav-link:focus {
    color: var(--link-hover);
    background-color: var(--btn-ghost-bg-hover);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}

@media (max-width: 767px) {
    .header-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 0;
    }

    .header-logo {
        order: 0;
    }

    .menu-toggle {
        display: block;
    }

    .site-nav {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: 75%;
        max-width: 300px;
        background-color: var(--surface-2);
        padding: calc(var(--space-y) * 3) var(--space-x) var(--space-y);
        transform: translateX(100%);
        transition: transform var(--anim-duration) var(--anim-ease);
        overflow-y: auto;
        box-shadow: var(--shadow-lg);
        z-index: 100;
    }

    .site-nav.is-open {
        transform: translateX(0);
    }

    .nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: calc(var(--gap) / 2);
    }

    .nav-link {
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-sm);
    }

    .site-nav::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: var(--overlay);
        opacity: 0;
        visibility: hidden;
        transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
        z-index: -1;
    }

    .site-nav.is-open::before {
        opacity: 1;
        visibility: visible;
    }
}

.footer-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        padding: 2.5rem 1.5rem;
        background-color: #f8f9fa;
        color: #333;
        font-family: sans-serif;
        line-height: 1.6;
        max-width: 1200px;
        margin: 0 auto;
    }
    .footer-left, .footer-right {
        flex: 1;
        min-width: 300px;
        padding: 1rem;
    }
    .footer-brand {
        font-size: 1.8rem;
        font-weight: bold;
        margin-bottom: 1rem;
        color: #222;
    }
    .copyright {
        margin-bottom: 1rem;
        font-size: 0.9rem;
        color: #666;
    }
    .footer-disclaimer {
        font-size: 0.8rem;
        color: #777;
        margin-bottom: 1.5rem;
        max-width: 90%;
    }
    .footer-disclaimer a {
        color: #555;
        text-decoration: underline;
    }
    .social-links {
        margin-top: 1rem;
    }
    .social-links a {
        display: inline-block;
        margin-right: 1rem;
        color: #555;
        text-decoration: none;
        font-weight: bold;
    }
    .social-links a:hover {
        color: #000;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0 0 1.5rem 0;
    }
    .footer-nav li {
        margin-bottom: 0.75rem;
    }
    .footer-nav a {
        text-decoration: none;
        color: #444;
        font-weight: 500;
    }
    .footer-nav a:hover {
        color: #000;
        text-decoration: underline;
    }
    .footer-contacts {
        margin-bottom: 1.5rem;
    }
    .footer-contacts p {
        margin: 0.5rem 0;
    }
    .footer-contacts a {
        color: #444;
        text-decoration: none;
    }
    .footer-contacts a:hover {
        text-decoration: underline;
    }
    .footer-legal {
        font-size: 0.85rem;
        color: #666;
    }
    .footer-legal a {
        color: #555;
        text-decoration: none;
    }
    .footer-legal a:hover {
        text-decoration: underline;
    }
    @media (max-width: 768px) {
        .footer-container {
            flex-direction: column;
            padding: 2rem 1rem;
        }
        .footer-left, .footer-right {
            width: 100%;
            padding: 0.5rem 0;
        }
    }

.cookie-cv7 {
        position: fixed;
        left: var(--space-x);
        bottom: var(--space-y);
        width: min(360px, calc(100vw - (var(--space-x) * 2)));
        z-index: 1200;
    }

    .cookie-cv7__card {
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        background: linear-gradient(140deg, var(--brand), var(--bg-primary-hover));
        color: var(--brand-contrast);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv7__card h3 {
        margin: 0 0 6px;
    }

    .cookie-cv7__card p {
        margin: 0;
        opacity: .92;
    }

    .cookie-cv7__actions {
        margin-top: 12px;
        display: grid;
        gap: 8px;
    }

    .cookie-cv7__actions button {
        border: 1px solid rgba(255, 255, 255, 0.28);
        background: rgba(255, 255, 255, 0.14);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        cursor: pointer;
    }

    .cookie-cv7__actions button[data-choice='accept'] {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-color: var(--bg-accent-hover);
    }

.social-c2 {

        padding: clamp(18px, 3vw, 44px);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        position: relative;
        overflow: hidden;
    }

    .social-c2::before {
        content: '';
        position: absolute;
        inset: -30%;
        background: radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.14), transparent 55%),
        radial-gradient(circle at 80% 55%, rgba(255, 107, 53, 0.18), transparent 55%);
        filter: blur(18px);
        animation: socialC2Bg 7s var(--anim-ease) infinite;
        pointer-events: none;
    }

    @keyframes socialC2Bg {
        0%, 100% {
            transform: translate3d(-1%, 0, 0) scale(1)
        }
        50% {
            transform: translate3d(1.5%, -1%, 0) scale(1.04)
        }
    }

    .social-c2__c {
        max-width: var(--max-w);
        margin: 0 auto;
        position: relative;
    }

    .social-c2__h {
        margin-bottom: clamp(14px, 2.2vw, 22px);
    }

    .social-c2__title {
        margin: 0;
        font-size: clamp(24px, 4.6vw, 44px);
        letter-spacing: -.02em;
        line-height: 1.1;
    }

    .social-c2__sub {
        margin: 10px 0 0;
        max-width: 70ch;
        color: rgba(255, 255, 255, .82);
    }

    .social-c2__grid {
        display: grid;
        grid-template-columns: 1.2fr 0.8fr;
        gap: 14px;
        align-items: stretch;
    }

    .social-c2__quotes {
        position: relative;
        border-radius: var(--radius-xl);
        background: rgba(255, 255, 255, 0.10);
        border: 1px solid rgba(255, 255, 255, 0.16);
        box-shadow: var(--shadow-lg);
        overflow: hidden;
    }

    .social-c2__quote {
        display: none;
        padding: 18px 18px 16px;
    }

    .social-c2__quote.is-on {
        display: block;
    }

    .social-c2__qText {
        font-size: clamp(16px, 2.2vw, 20px);
        line-height: 1.7;
        color: rgba(255, 255, 255, .92);
    }

    .social-c2__qMeta {
        margin-top: 14px;
        display: flex;
        gap: 10px;
        align-items: baseline;
        flex-wrap: wrap;

    }

    .social-c2__qName {
        font-weight: 900;
    }

    .social-c2__qRole {
        opacity: .85;
    }

    .social-c2__metrics {
        display: grid;
        gap: 12px;
    }

    .social-c2__metric {
        border-radius: var(--radius-xl);
        background: rgba(0, 0, 0, 0.14);
        border: 1px solid rgba(255, 255, 255, 0.14);
        box-shadow: var(--shadow-md);
        padding: 16px;
    }

    .social-c2__mVal {
        font-weight: 900;
        font-size: clamp(22px, 3vw, 32px);
        letter-spacing: -.01em;
    }

    .social-c2__mLbl {
        margin-top: 6px;
        color: rgba(255, 255, 255, .82);
    }

    @media (max-width: 980px) {
        .social-c2__grid {
            grid-template-columns:1fr;
        }
    }

    @media (prefers-reduced-motion: reduce) {
        .social-c2::before {
            animation: none;
        }
    }

.connect--light-v6 {
        padding: 40px 20px;
        background: var(--surface-light);
        color: var(--fg-on-surface-light);
    }

    .connect__inner {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
        gap: 20px;
        align-items: center;
    }

    .connect__content h2 {
        margin: 0 0 6px;
        font-size: clamp(22px, 3.5vw, 28px);
        color: var(--fg-on-page);
    }

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

    .connect__chips {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        justify-content: flex-end;
    }

    .connect__chip {
        padding: 6px 12px;
        border-radius: 999px;
        background: var(--bg-page);
        border: 1px solid var(--border-on-surface-light);
        text-decoration: none;
        font-size: 0.85rem;
        display: inline-flex;
        align-items: center;
        gap: 6px;
    }

    .connect__chip {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-md);
        animation: section-pulse-border 3s var(--anim-ease) infinite;
    }

    @keyframes section-pulse-border {
        0%, 100% {
            border-color: var(--border-on-surface);
            box-shadow: none;
        }
        50% {
            border-color: var(--brand);
            box-shadow: 0 0 0 3px var(--accent);
        }
    }

    @media (max-width: 768px) {
        .connect__inner {
            grid-template-columns: minmax(0, 1fr);
        }

        .connect__chips {
            justify-content: flex-start;
        }
    }

.map-poster-c7 {
        padding: clamp(3.5rem, 8vw, 6rem) var(--space-x);
        background: linear-gradient(135deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
    }

    .map-poster-c7__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        gap: 1.25rem;
        flex-wrap: wrap;
        align-items: start;
    }

    .map-poster-c7__copy {
        flex: 1 1 18rem;
    }

    .map-poster-c7__embed {
        flex: 1 1 24rem;
    }

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

    .map-poster-c7__copy h2 {
        margin: .55rem 0 0;
        font-size: clamp(2rem, 4vw, 3.2rem);
    }

    .map-poster-c7__details {
        margin-top: 1rem;
        display: grid;
        gap: .75rem;
    }

    .map-poster-c7__details div {
        padding: .9rem;
        border-radius: var(--radius-md);
        background: rgba(255, 255, 255, .12);
        border: 1px solid rgba(255, 255, 255, .18);
    }

    .map-poster-c7__details span {
        display: block;
        margin-top: .35rem;
        color: rgba(255, 255, 255, .84);
    }

    .map-poster-c7__embed iframe {
        display: block;
        width: 100%;
        min-height: 24rem;
        border-radius: var(--radius-xl);
        border: 1px solid rgba(255, 255, 255, .18);
        box-shadow: var(--shadow-lg);
    }

.articles {

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

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

    .articles .articles__header {
        margin-bottom: clamp(32px, 5vw, 48px);
    }

    .articles .articles__header h2 {
        font-size: clamp(28px, 5vw, 48px);
        margin: 0;
        color: var(--fg-on-page);
    }

    .articles .articles__list {
        display: flex;
        flex-direction: column;
        gap: clamp(20px, 3vw, 28px);
    }

    .articles .articles__item {
        padding-bottom: clamp(20px, 3vw, 28px);
        border-bottom: 1px solid var(--border-on-surface);
    }

    .articles .articles__item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .articles .articles__link {
        display: block;
        text-decoration: none;
        color: inherit;
    }

    .articles .articles__link h3 {
        font-size: clamp(20px, 3vw, 24px);
        margin: 0 0 0.75rem;
        color: var(--fg-on-page);
    }

    .articles .articles__link:hover h3 {
        color: var(--link-hover);
    }

    .articles .articles__link p {
        font-size: clamp(15px, 2.2vw, 17px);
        line-height: 1.6;
        color: var(--neutral-600);
        margin: 0 0 0.75rem;
    }

    .articles .articles__meta {
        font-size: clamp(13px, 2vw, 15px);
        color: var(--neutral-600);
    }

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

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

.header-logo {
    order: 1;
}

.logo-link {
    font-size: calc(var(--font-size-base) * 2);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    transition: color var(--anim-duration) var(--anim-ease);
}

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

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    position: absolute;
    top: var(--space-y);
    right: var(--space-x);
    z-index: 101;
    color: var(--fg-on-surface);
}

.menu-toggle-icon {
    display: block;
    width: 24px;
    height: 2px;
    background-color: currentColor;
    position: relative;
    transition: background-color var(--anim-duration) var(--anim-ease);
}

.menu-toggle-icon::before,
.menu-toggle-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: currentColor;
    left: 0;
    transition: transform var(--anim-duration) var(--anim-ease);
}

.menu-toggle-icon::before {
    top: -8px;
}

.menu-toggle-icon::after {
    bottom: -8px;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon {
    background-color: transparent;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon::before {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon::after {
    transform: translateY(-8px) rotate(-45deg);
}

.site-nav {
    order: 2;
    width: 100%;
}

.nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: var(--gap);
    flex-wrap: wrap;
}

.nav-item {
    margin: 0;
}

.nav-link {
    display: inline-block;
    padding: calc(var(--space-y) / 2) var(--space-x);
    color: var(--link);
    text-decoration: none;
    font-weight: 500;
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
}

.nav-link:hover,
.nav-link:focus {
    color: var(--link-hover);
    background-color: var(--btn-ghost-bg-hover);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}

@media (max-width: 767px) {
    .header-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 0;
    }

    .header-logo {
        order: 0;
    }

    .menu-toggle {
        display: block;
    }

    .site-nav {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: 75%;
        max-width: 300px;
        background-color: var(--surface-2);
        padding: calc(var(--space-y) * 3) var(--space-x) var(--space-y);
        transform: translateX(100%);
        transition: transform var(--anim-duration) var(--anim-ease);
        overflow-y: auto;
        box-shadow: var(--shadow-lg);
        z-index: 100;
    }

    .site-nav.is-open {
        transform: translateX(0);
    }

    .nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: calc(var(--gap) / 2);
    }

    .nav-link {
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-sm);
    }

    .site-nav::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: var(--overlay);
        opacity: 0;
        visibility: hidden;
        transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
        z-index: -1;
    }

    .site-nav.is-open::before {
        opacity: 1;
        visibility: visible;
    }
}

.footer-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        padding: 2.5rem 1.5rem;
        background-color: #f8f9fa;
        color: #333;
        font-family: sans-serif;
        line-height: 1.6;
        max-width: 1200px;
        margin: 0 auto;
    }
    .footer-left, .footer-right {
        flex: 1;
        min-width: 300px;
        padding: 1rem;
    }
    .footer-brand {
        font-size: 1.8rem;
        font-weight: bold;
        margin-bottom: 1rem;
        color: #222;
    }
    .copyright {
        margin-bottom: 1rem;
        font-size: 0.9rem;
        color: #666;
    }
    .footer-disclaimer {
        font-size: 0.8rem;
        color: #777;
        margin-bottom: 1.5rem;
        max-width: 90%;
    }
    .footer-disclaimer a {
        color: #555;
        text-decoration: underline;
    }
    .social-links {
        margin-top: 1rem;
    }
    .social-links a {
        display: inline-block;
        margin-right: 1rem;
        color: #555;
        text-decoration: none;
        font-weight: bold;
    }
    .social-links a:hover {
        color: #000;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0 0 1.5rem 0;
    }
    .footer-nav li {
        margin-bottom: 0.75rem;
    }
    .footer-nav a {
        text-decoration: none;
        color: #444;
        font-weight: 500;
    }
    .footer-nav a:hover {
        color: #000;
        text-decoration: underline;
    }
    .footer-contacts {
        margin-bottom: 1.5rem;
    }
    .footer-contacts p {
        margin: 0.5rem 0;
    }
    .footer-contacts a {
        color: #444;
        text-decoration: none;
    }
    .footer-contacts a:hover {
        text-decoration: underline;
    }
    .footer-legal {
        font-size: 0.85rem;
        color: #666;
    }
    .footer-legal a {
        color: #555;
        text-decoration: none;
    }
    .footer-legal a:hover {
        text-decoration: underline;
    }
    @media (max-width: 768px) {
        .footer-container {
            flex-direction: column;
            padding: 2rem 1rem;
        }
        .footer-left, .footer-right {
            width: 100%;
            padding: 0.5rem 0;
        }
    }

.cookie-cv7 {
        position: fixed;
        left: var(--space-x);
        bottom: var(--space-y);
        width: min(360px, calc(100vw - (var(--space-x) * 2)));
        z-index: 1200;
    }

    .cookie-cv7__card {
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        background: linear-gradient(140deg, var(--brand), var(--bg-primary-hover));
        color: var(--brand-contrast);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv7__card h3 {
        margin: 0 0 6px;
    }

    .cookie-cv7__card p {
        margin: 0;
        opacity: .92;
    }

    .cookie-cv7__actions {
        margin-top: 12px;
        display: grid;
        gap: 8px;
    }

    .cookie-cv7__actions button {
        border: 1px solid rgba(255, 255, 255, 0.28);
        background: rgba(255, 255, 255, 0.14);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        cursor: pointer;
    }

    .cookie-cv7__actions button[data-choice='accept'] {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-color: var(--bg-accent-hover);
    }

.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);
    color: var(--neutral-800);
}

.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;
    transition: transform var(--anim-duration) var(--anim-ease);
    cursor: pointer;
}

.gallery__thumb:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

.partners {

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

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

    .partners .partners__header {
        text-align: center;
        margin-bottom: clamp(40px, 6vw, 56px);
    }

    .partners .partners__header h2 {
        font-size: clamp(28px, 5vw, 48px);
        margin: 0 0 0.5rem;
        color: var(--fg-on-alt);
    }

    .partners .partners__header p {
        font-size: clamp(16px, 2vw, 18px);
        color: var(--neutral-600);
        margin: 0;
    }

    .partners .partners__grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(388px, 1fr));
        gap: clamp(32px, 5vw, 48px);
    }

    .partners .partners__item {
        text-align: center;
        padding: clamp(24px, 4vw, 32px);
        background: var(--bg-page);
        border-radius: var(--radius-lg);
    }

    .partners .partners__logo {
        width: 100%;
        height: 120px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: clamp(16px, 3vw, 24px);
    }

    .partners .partners__logo img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
    }

    .partners .partners__item h3 {
        font-size: clamp(18px, 3vw, 22px);
        margin: 0 0 0.75rem;
        color: var(--fg-on-page);
    }

    .partners .partners__item p {
        font-size: clamp(14px, 2vw, 16px);
        line-height: 1.6;
        color: var(--neutral-600);
        margin: 0;
    }

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

    .form-layout-f .wrap {
        max-width: 860px;
        margin: 0 auto;
    }

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

    .form-layout-f h2 {
        margin: 0;
        font-size: clamp(28px, 4vw, 40px);
        color: var(--neutral-800);
    }

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

    .form-layout-f .boxed {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        padding: 16px;
        background: var(--surface-1);
        box-shadow: var(--shadow-sm);
    }

    .form-layout-f .group {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .form-layout-f label {
        display: grid;
        gap: 6px;
        margin-bottom: 10px;
        color: var(--neutral-800);
        font-size: var(--font-size-base);
    }

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

    .form-layout-f input::placeholder,
    .form-layout-f textarea::placeholder {
        color: var(--input-placeholder);
    }

    .form-layout-f .agree {
        display: flex;
        gap: 8px;
        align-items: center;
        font-size: 0.9em;
        color: var(--neutral-600);
    }

    .form-layout-f .agree a {
        color: var(--link);
        text-decoration: none;
    }

    .form-layout-f .agree a:hover {
        color: var(--link-hover);
        text-decoration: underline;
    }

    .form-layout-f button {
        margin-top: 10px;
        border: 0;
        border-radius: var(--radius-sm);
        padding: 10px 14px;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        font: inherit;
        font-weight: 500;
        cursor: pointer;
        transition: background-color var(--anim-duration) var(--anim-ease);
    }

    .form-layout-f button:hover {
        background: var(--bg-primary-hover);
    }

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

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

    .contact-layout-c .wrap {
        max-width: 920px;
        margin: 0 auto;
    }

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

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

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

    .contact-layout-c .stack {
        border-left: 3px solid var(--brand);
        padding-left: 16px;
        display: grid;
        gap: 12px;
    }

    .contact-layout-c .line h3 {
        margin: 0;
        font-size: 1rem;
        color: var(--brand);
    }

    .contact-layout-c .line p {
        margin: 4px 0 0;
    }

    .contact-layout-c .social-bar {
        margin-top: 18px;
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        align-items: center;
    }

    .contact-layout-c .social-bar a {
        text-decoration: none;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border-radius: var(--radius-sm);
        padding: 7px 11px;
        transition: transform var(--anim-duration) var(--anim-ease);
    }

    .contact-layout-c .social-bar a:hover {
        transform: translateY(-2px);
    }

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

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

.header-logo {
    order: 1;
}

.logo-link {
    font-size: calc(var(--font-size-base) * 2);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    transition: color var(--anim-duration) var(--anim-ease);
}

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

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    position: absolute;
    top: var(--space-y);
    right: var(--space-x);
    z-index: 101;
    color: var(--fg-on-surface);
}

.menu-toggle-icon {
    display: block;
    width: 24px;
    height: 2px;
    background-color: currentColor;
    position: relative;
    transition: background-color var(--anim-duration) var(--anim-ease);
}

.menu-toggle-icon::before,
.menu-toggle-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: currentColor;
    left: 0;
    transition: transform var(--anim-duration) var(--anim-ease);
}

.menu-toggle-icon::before {
    top: -8px;
}

.menu-toggle-icon::after {
    bottom: -8px;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon {
    background-color: transparent;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon::before {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon::after {
    transform: translateY(-8px) rotate(-45deg);
}

.site-nav {
    order: 2;
    width: 100%;
}

.nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: var(--gap);
    flex-wrap: wrap;
}

.nav-item {
    margin: 0;
}

.nav-link {
    display: inline-block;
    padding: calc(var(--space-y) / 2) var(--space-x);
    color: var(--link);
    text-decoration: none;
    font-weight: 500;
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
}

.nav-link:hover,
.nav-link:focus {
    color: var(--link-hover);
    background-color: var(--btn-ghost-bg-hover);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}

@media (max-width: 767px) {
    .header-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 0;
    }

    .header-logo {
        order: 0;
    }

    .menu-toggle {
        display: block;
    }

    .site-nav {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: 75%;
        max-width: 300px;
        background-color: var(--surface-2);
        padding: calc(var(--space-y) * 3) var(--space-x) var(--space-y);
        transform: translateX(100%);
        transition: transform var(--anim-duration) var(--anim-ease);
        overflow-y: auto;
        box-shadow: var(--shadow-lg);
        z-index: 100;
    }

    .site-nav.is-open {
        transform: translateX(0);
    }

    .nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: calc(var(--gap) / 2);
    }

    .nav-link {
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-sm);
    }

    .site-nav::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: var(--overlay);
        opacity: 0;
        visibility: hidden;
        transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
        z-index: -1;
    }

    .site-nav.is-open::before {
        opacity: 1;
        visibility: visible;
    }
}

.footer-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        padding: 2.5rem 1.5rem;
        background-color: #f8f9fa;
        color: #333;
        font-family: sans-serif;
        line-height: 1.6;
        max-width: 1200px;
        margin: 0 auto;
    }
    .footer-left, .footer-right {
        flex: 1;
        min-width: 300px;
        padding: 1rem;
    }
    .footer-brand {
        font-size: 1.8rem;
        font-weight: bold;
        margin-bottom: 1rem;
        color: #222;
    }
    .copyright {
        margin-bottom: 1rem;
        font-size: 0.9rem;
        color: #666;
    }
    .footer-disclaimer {
        font-size: 0.8rem;
        color: #777;
        margin-bottom: 1.5rem;
        max-width: 90%;
    }
    .footer-disclaimer a {
        color: #555;
        text-decoration: underline;
    }
    .social-links {
        margin-top: 1rem;
    }
    .social-links a {
        display: inline-block;
        margin-right: 1rem;
        color: #555;
        text-decoration: none;
        font-weight: bold;
    }
    .social-links a:hover {
        color: #000;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0 0 1.5rem 0;
    }
    .footer-nav li {
        margin-bottom: 0.75rem;
    }
    .footer-nav a {
        text-decoration: none;
        color: #444;
        font-weight: 500;
    }
    .footer-nav a:hover {
        color: #000;
        text-decoration: underline;
    }
    .footer-contacts {
        margin-bottom: 1.5rem;
    }
    .footer-contacts p {
        margin: 0.5rem 0;
    }
    .footer-contacts a {
        color: #444;
        text-decoration: none;
    }
    .footer-contacts a:hover {
        text-decoration: underline;
    }
    .footer-legal {
        font-size: 0.85rem;
        color: #666;
    }
    .footer-legal a {
        color: #555;
        text-decoration: none;
    }
    .footer-legal a:hover {
        text-decoration: underline;
    }
    @media (max-width: 768px) {
        .footer-container {
            flex-direction: column;
            padding: 2rem 1rem;
        }
        .footer-left, .footer-right {
            width: 100%;
            padding: 0.5rem 0;
        }
    }

.cookie-cv7 {
        position: fixed;
        left: var(--space-x);
        bottom: var(--space-y);
        width: min(360px, calc(100vw - (var(--space-x) * 2)));
        z-index: 1200;
    }

    .cookie-cv7__card {
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        background: linear-gradient(140deg, var(--brand), var(--bg-primary-hover));
        color: var(--brand-contrast);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv7__card h3 {
        margin: 0 0 6px;
    }

    .cookie-cv7__card p {
        margin: 0;
        opacity: .92;
    }

    .cookie-cv7__actions {
        margin-top: 12px;
        display: grid;
        gap: 8px;
    }

    .cookie-cv7__actions button {
        border: 1px solid rgba(255, 255, 255, 0.28);
        background: rgba(255, 255, 255, 0.14);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        cursor: pointer;
    }

    .cookie-cv7__actions button[data-choice='accept'] {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-color: var(--bg-accent-hover);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

.header-logo {
    order: 1;
}

.logo-link {
    font-size: calc(var(--font-size-base) * 2);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    transition: color var(--anim-duration) var(--anim-ease);
}

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

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    position: absolute;
    top: var(--space-y);
    right: var(--space-x);
    z-index: 101;
    color: var(--fg-on-surface);
}

.menu-toggle-icon {
    display: block;
    width: 24px;
    height: 2px;
    background-color: currentColor;
    position: relative;
    transition: background-color var(--anim-duration) var(--anim-ease);
}

.menu-toggle-icon::before,
.menu-toggle-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: currentColor;
    left: 0;
    transition: transform var(--anim-duration) var(--anim-ease);
}

.menu-toggle-icon::before {
    top: -8px;
}

.menu-toggle-icon::after {
    bottom: -8px;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon {
    background-color: transparent;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon::before {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon::after {
    transform: translateY(-8px) rotate(-45deg);
}

.site-nav {
    order: 2;
    width: 100%;
}

.nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: var(--gap);
    flex-wrap: wrap;
}

.nav-item {
    margin: 0;
}

.nav-link {
    display: inline-block;
    padding: calc(var(--space-y) / 2) var(--space-x);
    color: var(--link);
    text-decoration: none;
    font-weight: 500;
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
}

.nav-link:hover,
.nav-link:focus {
    color: var(--link-hover);
    background-color: var(--btn-ghost-bg-hover);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}

@media (max-width: 767px) {
    .header-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 0;
    }

    .header-logo {
        order: 0;
    }

    .menu-toggle {
        display: block;
    }

    .site-nav {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: 75%;
        max-width: 300px;
        background-color: var(--surface-2);
        padding: calc(var(--space-y) * 3) var(--space-x) var(--space-y);
        transform: translateX(100%);
        transition: transform var(--anim-duration) var(--anim-ease);
        overflow-y: auto;
        box-shadow: var(--shadow-lg);
        z-index: 100;
    }

    .site-nav.is-open {
        transform: translateX(0);
    }

    .nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: calc(var(--gap) / 2);
    }

    .nav-link {
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-sm);
    }

    .site-nav::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: var(--overlay);
        opacity: 0;
        visibility: hidden;
        transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
        z-index: -1;
    }

    .site-nav.is-open::before {
        opacity: 1;
        visibility: visible;
    }
}

.footer-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        padding: 2.5rem 1.5rem;
        background-color: #f8f9fa;
        color: #333;
        font-family: sans-serif;
        line-height: 1.6;
        max-width: 1200px;
        margin: 0 auto;
    }
    .footer-left, .footer-right {
        flex: 1;
        min-width: 300px;
        padding: 1rem;
    }
    .footer-brand {
        font-size: 1.8rem;
        font-weight: bold;
        margin-bottom: 1rem;
        color: #222;
    }
    .copyright {
        margin-bottom: 1rem;
        font-size: 0.9rem;
        color: #666;
    }
    .footer-disclaimer {
        font-size: 0.8rem;
        color: #777;
        margin-bottom: 1.5rem;
        max-width: 90%;
    }
    .footer-disclaimer a {
        color: #555;
        text-decoration: underline;
    }
    .social-links {
        margin-top: 1rem;
    }
    .social-links a {
        display: inline-block;
        margin-right: 1rem;
        color: #555;
        text-decoration: none;
        font-weight: bold;
    }
    .social-links a:hover {
        color: #000;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0 0 1.5rem 0;
    }
    .footer-nav li {
        margin-bottom: 0.75rem;
    }
    .footer-nav a {
        text-decoration: none;
        color: #444;
        font-weight: 500;
    }
    .footer-nav a:hover {
        color: #000;
        text-decoration: underline;
    }
    .footer-contacts {
        margin-bottom: 1.5rem;
    }
    .footer-contacts p {
        margin: 0.5rem 0;
    }
    .footer-contacts a {
        color: #444;
        text-decoration: none;
    }
    .footer-contacts a:hover {
        text-decoration: underline;
    }
    .footer-legal {
        font-size: 0.85rem;
        color: #666;
    }
    .footer-legal a {
        color: #555;
        text-decoration: none;
    }
    .footer-legal a:hover {
        text-decoration: underline;
    }
    @media (max-width: 768px) {
        .footer-container {
            flex-direction: column;
            padding: 2rem 1rem;
        }
        .footer-left, .footer-right {
            width: 100%;
            padding: 0.5rem 0;
        }
    }

.cookie-cv7 {
        position: fixed;
        left: var(--space-x);
        bottom: var(--space-y);
        width: min(360px, calc(100vw - (var(--space-x) * 2)));
        z-index: 1200;
    }

    .cookie-cv7__card {
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        background: linear-gradient(140deg, var(--brand), var(--bg-primary-hover));
        color: var(--brand-contrast);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv7__card h3 {
        margin: 0 0 6px;
    }

    .cookie-cv7__card p {
        margin: 0;
        opacity: .92;
    }

    .cookie-cv7__actions {
        margin-top: 12px;
        display: grid;
        gap: 8px;
    }

    .cookie-cv7__actions button {
        border: 1px solid rgba(255, 255, 255, 0.28);
        background: rgba(255, 255, 255, 0.14);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        cursor: pointer;
    }

    .cookie-cv7__actions button[data-choice='accept'] {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-color: var(--bg-accent-hover);
    }

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

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

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

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

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

    .policy-layout-a .grid {
        display: grid;
        gap: var(--gap);
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }

    .policy-layout-a article {
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
    }

    .policy-layout-a .meta {
        margin: 0;
        color: var(--brand);
        font-weight: 600;
    }

    .policy-layout-a h3 {
        margin: 8px 0;
    }

    .policy-layout-a article p {
        margin: 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);
    padding: var(--space-y) 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}

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

.header-logo {
    order: 1;
}

.logo-link {
    font-size: calc(var(--font-size-base) * 2);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    transition: color var(--anim-duration) var(--anim-ease);
}

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

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    position: absolute;
    top: var(--space-y);
    right: var(--space-x);
    z-index: 101;
    color: var(--fg-on-surface);
}

.menu-toggle-icon {
    display: block;
    width: 24px;
    height: 2px;
    background-color: currentColor;
    position: relative;
    transition: background-color var(--anim-duration) var(--anim-ease);
}

.menu-toggle-icon::before,
.menu-toggle-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: currentColor;
    left: 0;
    transition: transform var(--anim-duration) var(--anim-ease);
}

.menu-toggle-icon::before {
    top: -8px;
}

.menu-toggle-icon::after {
    bottom: -8px;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon {
    background-color: transparent;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon::before {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon::after {
    transform: translateY(-8px) rotate(-45deg);
}

.site-nav {
    order: 2;
    width: 100%;
}

.nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: var(--gap);
    flex-wrap: wrap;
}

.nav-item {
    margin: 0;
}

.nav-link {
    display: inline-block;
    padding: calc(var(--space-y) / 2) var(--space-x);
    color: var(--link);
    text-decoration: none;
    font-weight: 500;
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
}

.nav-link:hover,
.nav-link:focus {
    color: var(--link-hover);
    background-color: var(--btn-ghost-bg-hover);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}

@media (max-width: 767px) {
    .header-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 0;
    }

    .header-logo {
        order: 0;
    }

    .menu-toggle {
        display: block;
    }

    .site-nav {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: 75%;
        max-width: 300px;
        background-color: var(--surface-2);
        padding: calc(var(--space-y) * 3) var(--space-x) var(--space-y);
        transform: translateX(100%);
        transition: transform var(--anim-duration) var(--anim-ease);
        overflow-y: auto;
        box-shadow: var(--shadow-lg);
        z-index: 100;
    }

    .site-nav.is-open {
        transform: translateX(0);
    }

    .nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: calc(var(--gap) / 2);
    }

    .nav-link {
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-sm);
    }

    .site-nav::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: var(--overlay);
        opacity: 0;
        visibility: hidden;
        transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
        z-index: -1;
    }

    .site-nav.is-open::before {
        opacity: 1;
        visibility: visible;
    }
}

.footer-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        padding: 2.5rem 1.5rem;
        background-color: #f8f9fa;
        color: #333;
        font-family: sans-serif;
        line-height: 1.6;
        max-width: 1200px;
        margin: 0 auto;
    }
    .footer-left, .footer-right {
        flex: 1;
        min-width: 300px;
        padding: 1rem;
    }
    .footer-brand {
        font-size: 1.8rem;
        font-weight: bold;
        margin-bottom: 1rem;
        color: #222;
    }
    .copyright {
        margin-bottom: 1rem;
        font-size: 0.9rem;
        color: #666;
    }
    .footer-disclaimer {
        font-size: 0.8rem;
        color: #777;
        margin-bottom: 1.5rem;
        max-width: 90%;
    }
    .footer-disclaimer a {
        color: #555;
        text-decoration: underline;
    }
    .social-links {
        margin-top: 1rem;
    }
    .social-links a {
        display: inline-block;
        margin-right: 1rem;
        color: #555;
        text-decoration: none;
        font-weight: bold;
    }
    .social-links a:hover {
        color: #000;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0 0 1.5rem 0;
    }
    .footer-nav li {
        margin-bottom: 0.75rem;
    }
    .footer-nav a {
        text-decoration: none;
        color: #444;
        font-weight: 500;
    }
    .footer-nav a:hover {
        color: #000;
        text-decoration: underline;
    }
    .footer-contacts {
        margin-bottom: 1.5rem;
    }
    .footer-contacts p {
        margin: 0.5rem 0;
    }
    .footer-contacts a {
        color: #444;
        text-decoration: none;
    }
    .footer-contacts a:hover {
        text-decoration: underline;
    }
    .footer-legal {
        font-size: 0.85rem;
        color: #666;
    }
    .footer-legal a {
        color: #555;
        text-decoration: none;
    }
    .footer-legal a:hover {
        text-decoration: underline;
    }
    @media (max-width: 768px) {
        .footer-container {
            flex-direction: column;
            padding: 2rem 1rem;
        }
        .footer-left, .footer-right {
            width: 100%;
            padding: 0.5rem 0;
        }
    }

.cookie-cv7 {
        position: fixed;
        left: var(--space-x);
        bottom: var(--space-y);
        width: min(360px, calc(100vw - (var(--space-x) * 2)));
        z-index: 1200;
    }

    .cookie-cv7__card {
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        background: linear-gradient(140deg, var(--brand), var(--bg-primary-hover));
        color: var(--brand-contrast);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv7__card h3 {
        margin: 0 0 6px;
    }

    .cookie-cv7__card p {
        margin: 0;
        opacity: .92;
    }

    .cookie-cv7__actions {
        margin-top: 12px;
        display: grid;
        gap: 8px;
    }

    .cookie-cv7__actions button {
        border: 1px solid rgba(255, 255, 255, 0.28);
        background: rgba(255, 255, 255, 0.14);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        cursor: pointer;
    }

    .cookie-cv7__actions button[data-choice='accept'] {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-color: var(--bg-accent-hover);
    }

.thank-mode-f {
        padding: clamp(56px, 10vw, 112px) 18px;
        background: var(--surface-1);
        color: var(--fg-on-page);
    }

    .thank-mode-f .shell {
        max-width: 760px;
        margin: 0 auto;
        text-align: center;
        border-radius: var(--radius-xl);
        padding: clamp(30px, 4vw, 46px);
        background: linear-gradient(180deg, var(--surface-1), var(--surface-2));
        border: 1px solid var(--border-on-surface-light);
    }

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

    .thank-mode-f p {
        margin: 12px 0 0;
        color: var(--neutral-600);
    }

    .thank-mode-f a {
        display: inline-block;
        margin-top: 18px;
        padding: 10px 16px;
        border-radius: var(--radius-md);
        text-decoration: none;
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
    }

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

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

.header-logo {
    order: 1;
}

.logo-link {
    font-size: calc(var(--font-size-base) * 2);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    transition: color var(--anim-duration) var(--anim-ease);
}

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

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    position: absolute;
    top: var(--space-y);
    right: var(--space-x);
    z-index: 101;
    color: var(--fg-on-surface);
}

.menu-toggle-icon {
    display: block;
    width: 24px;
    height: 2px;
    background-color: currentColor;
    position: relative;
    transition: background-color var(--anim-duration) var(--anim-ease);
}

.menu-toggle-icon::before,
.menu-toggle-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: currentColor;
    left: 0;
    transition: transform var(--anim-duration) var(--anim-ease);
}

.menu-toggle-icon::before {
    top: -8px;
}

.menu-toggle-icon::after {
    bottom: -8px;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon {
    background-color: transparent;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon::before {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon::after {
    transform: translateY(-8px) rotate(-45deg);
}

.site-nav {
    order: 2;
    width: 100%;
}

.nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: var(--gap);
    flex-wrap: wrap;
}

.nav-item {
    margin: 0;
}

.nav-link {
    display: inline-block;
    padding: calc(var(--space-y) / 2) var(--space-x);
    color: var(--link);
    text-decoration: none;
    font-weight: 500;
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
}

.nav-link:hover,
.nav-link:focus {
    color: var(--link-hover);
    background-color: var(--btn-ghost-bg-hover);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}

@media (max-width: 767px) {
    .header-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 0;
    }

    .header-logo {
        order: 0;
    }

    .menu-toggle {
        display: block;
    }

    .site-nav {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: 75%;
        max-width: 300px;
        background-color: var(--surface-2);
        padding: calc(var(--space-y) * 3) var(--space-x) var(--space-y);
        transform: translateX(100%);
        transition: transform var(--anim-duration) var(--anim-ease);
        overflow-y: auto;
        box-shadow: var(--shadow-lg);
        z-index: 100;
    }

    .site-nav.is-open {
        transform: translateX(0);
    }

    .nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: calc(var(--gap) / 2);
    }

    .nav-link {
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-sm);
    }

    .site-nav::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: var(--overlay);
        opacity: 0;
        visibility: hidden;
        transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
        z-index: -1;
    }

    .site-nav.is-open::before {
        opacity: 1;
        visibility: visible;
    }
}

.footer-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        padding: 2.5rem 1.5rem;
        background-color: #f8f9fa;
        color: #333;
        font-family: sans-serif;
        line-height: 1.6;
        max-width: 1200px;
        margin: 0 auto;
    }
    .footer-left, .footer-right {
        flex: 1;
        min-width: 300px;
        padding: 1rem;
    }
    .footer-brand {
        font-size: 1.8rem;
        font-weight: bold;
        margin-bottom: 1rem;
        color: #222;
    }
    .copyright {
        margin-bottom: 1rem;
        font-size: 0.9rem;
        color: #666;
    }
    .footer-disclaimer {
        font-size: 0.8rem;
        color: #777;
        margin-bottom: 1.5rem;
        max-width: 90%;
    }
    .footer-disclaimer a {
        color: #555;
        text-decoration: underline;
    }
    .social-links {
        margin-top: 1rem;
    }
    .social-links a {
        display: inline-block;
        margin-right: 1rem;
        color: #555;
        text-decoration: none;
        font-weight: bold;
    }
    .social-links a:hover {
        color: #000;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0 0 1.5rem 0;
    }
    .footer-nav li {
        margin-bottom: 0.75rem;
    }
    .footer-nav a {
        text-decoration: none;
        color: #444;
        font-weight: 500;
    }
    .footer-nav a:hover {
        color: #000;
        text-decoration: underline;
    }
    .footer-contacts {
        margin-bottom: 1.5rem;
    }
    .footer-contacts p {
        margin: 0.5rem 0;
    }
    .footer-contacts a {
        color: #444;
        text-decoration: none;
    }
    .footer-contacts a:hover {
        text-decoration: underline;
    }
    .footer-legal {
        font-size: 0.85rem;
        color: #666;
    }
    .footer-legal a {
        color: #555;
        text-decoration: none;
    }
    .footer-legal a:hover {
        text-decoration: underline;
    }
    @media (max-width: 768px) {
        .footer-container {
            flex-direction: column;
            padding: 2rem 1rem;
        }
        .footer-left, .footer-right {
            width: 100%;
            padding: 0.5rem 0;
        }
    }

.cookie-cv7 {
        position: fixed;
        left: var(--space-x);
        bottom: var(--space-y);
        width: min(360px, calc(100vw - (var(--space-x) * 2)));
        z-index: 1200;
    }

    .cookie-cv7__card {
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        background: linear-gradient(140deg, var(--brand), var(--bg-primary-hover));
        color: var(--brand-contrast);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv7__card h3 {
        margin: 0 0 6px;
    }

    .cookie-cv7__card p {
        margin: 0;
        opacity: .92;
    }

    .cookie-cv7__actions {
        margin-top: 12px;
        display: grid;
        gap: 8px;
    }

    .cookie-cv7__actions button {
        border: 1px solid rgba(255, 255, 255, 0.28);
        background: rgba(255, 255, 255, 0.14);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        cursor: pointer;
    }

    .cookie-cv7__actions button[data-choice='accept'] {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-color: var(--bg-accent-hover);
    }

.err-slab-a {
    padding: clamp(56px, 10vw, 110px) 20px;
    background: var(--gradient-hero);
    color: var(--fg-on-primary);
}

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

.err-slab-a h1 {
    margin: 0;
    font-size: clamp(34px, 6vw, 58px);
    color: var(--neutral-900);
}

.err-slab-a p {
    margin: 12px 0 0;
    opacity: .92;
    color: var(--neutral-600);
    font-size: 1.1rem;
    line-height: 1.6;
}

.err-slab-a a {
    display: inline-block;
    margin-top: 18px;
    padding: 11px 18px;
    border-radius: var(--radius-md);
    background: var(--bg-primary);
    color: var(--fg-on-primary);
    text-decoration: none;
    font-weight: 500;
    transition: background-color var(--anim-duration) var(--anim-ease);
}

.err-slab-a a:hover {
    background: var(--bg-primary-hover);
}