:root {
  --font-family: "Noto Sans", sans-serif;
  --font-size-base: 15.4px;
  --line-height-base: 1.81;

  --max-w: 1060px;
  --space-x: 1.37rem;
  --space-y: 1.5rem;
  --gap: 0.75rem;

  --radius-xl: 1.26rem;
  --radius-lg: 0.96rem;
  --radius-md: 0.69rem;
  --radius-sm: 0.34rem;

  --shadow-sm: 0 0px 3px rgba(0,0,0,0.03);
  --shadow-md: 0 5px 16px rgba(0,0,0,0.04);
  --shadow-lg: 0 8px 26px rgba(0,0,0,0.04);

  --overlay: rgba(0, 0, 0, 0.4);
  --anim-duration: 320ms;
  --anim-ease: cubic-bezier(0.4,0,0.2,1);
  --random-number: 2;

  --brand: #005792;
  --brand-contrast: #ffffff;
  --accent: #ff6b35;
  --accent-contrast: #ffffff;

  --neutral-0: #ffffff;
  --neutral-100: #f5f7fa;
  --neutral-300: #d1d9e6;
  --neutral-600: #6b7c93;
  --neutral-800: #2c3e50;
  --neutral-900: #1a2530;

  --bg-page: #f8fafc;
  --fg-on-page: #1a2530;

  --bg-alt: #ffffff;
  --fg-on-alt: #2c3e50;

  --surface-1: #ffffff;
  --surface-2: #f5f7fa;
  --fg-on-surface: #2c3e50;
  --border-on-surface: #e1e8f0;

  --surface-light: #ffffff;
  --fg-on-surface-light: #2c3e50;
  --border-on-surface-light: #d1d9e6;

  --bg-primary: #005792;
  --fg-on-primary: #ffffff;
  --bg-primary-hover: #004a7a;
  --ring: #005792;

  --bg-accent: #ff6b35;
  --fg-on-accent: #ffffff;
  --bg-accent-hover: #e55a2a;

  --link: #005792;
  --link-hover: #004a7a;

  --gradient-hero: linear-gradient(135deg, #005792 0%, #1a2530 100%);
  --gradient-accent: linear-gradient(90deg, #ff6b35 0%, #e55a2a 100%);

  --btn-ghost-bg: transparent;
  --btn-ghost-bg-hover: rgba(255,255,255,0.06);
  --chip-bg: rgba(255,255,255,0.08);
  --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;
    letter-spacing: -0.5px;
    transition: color var(--anim-duration) var(--anim-ease);
}

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

.burger-menu {
    display: none;
    order: 2;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
    position: absolute;
    right: var(--space-x);
    top: var(--space-y);
}

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

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

.header-nav {
    order: 3;
    width: 100%;
}

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

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

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

.nav-link[href="index.html"] {
    color: var(--brand);
}

@media (max-width: 767px) {
    .header-container {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        position: relative;
        gap: 0;
    }

    .header-logo {
        order: 1;
        flex: 1;
    }

    .burger-menu {
        display: flex;
        order: 2;
    }

    .header-nav {
        order: 3;
        flex-basis: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--anim-duration) var(--anim-ease);
    }

    .header-nav[data-state="open"] {
        max-height: 300px;
    }

    .nav-list {
        flex-direction: column;
        align-items: center;
        padding: var(--space-y) 0;
        gap: calc(var(--gap) / 2);
    }

    .nav-link {
        display: block;
        width: 100%;
        text-align: center;
        padding: var(--space-y) var(--space-x);
    }
}

.footer-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        max-width: 1200px;
        margin: 0 auto;
        padding: 40px 20px;
        font-family: sans-serif;
        color: #333;
        border-top: 1px solid #eee;
    }
    .footer-left, .footer-right {
        box-sizing: border-box;
    }
    .footer-left {
        flex: 1;
        min-width: 300px;
        padding-right: 40px;
        margin-bottom: 30px;
    }
    .footer-right {
        flex: 1;
        min-width: 300px;
        display: flex;
        flex-direction: column;
    }
    .footer-brand {
        font-size: 2em;
        font-weight: bold;
        margin-bottom: 15px;
        color: #222;
    }
    .copyright {
        font-size: 0.9em;
        color: #666;
        margin-bottom: 20px;
    }
    .footer-disclaimer {
        font-size: 0.8em;
        color: #888;
        line-height: 1.4;
        margin-bottom: 20px;
        padding: 10px;
        background-color: #f9f9f9;
        border-radius: 4px;
    }
    .footer-legal-links {
        font-size: 0.85em;
    }
    .footer-legal-links a {
        color: #666;
        text-decoration: none;
    }
    .footer-legal-links a:hover {
        text-decoration: underline;
        color: #000;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0 0 25px 0;
    }
    .footer-nav li {
        margin-bottom: 10px;
    }
    .footer-nav a {
        text-decoration: none;
        color: #444;
        font-weight: 500;
    }
    .footer-nav a:hover {
        color: #000;
        text-decoration: underline;
    }
    .footer-contacts {
        margin-bottom: 25px;
        line-height: 1.6;
    }
    .footer-contacts p {
        margin: 5px 0;
        font-size: 0.95em;
    }
    .footer-contacts a {
        color: #444;
        text-decoration: none;
    }
    .footer-contacts a:hover {
        text-decoration: underline;
        color: #000;
    }
    .footer-social {
        display: flex;
        gap: 15px;
    }
    .footer-social a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        background-color: #f0f0f0;
        border-radius: 50%;
        color: #555;
        text-decoration: none;
        font-weight: bold;
    }
    .footer-social a:hover {
        background-color: #e0e0e0;
        color: #222;
    }
    @media (max-width: 768px) {
        .footer-container {
            flex-direction: column;
            padding: 30px 15px;
        }
        .footer-left, .footer-right {
            padding-right: 0;
            width: 100%;
        }
        .footer-left {
            margin-bottom: 40px;
        }
    }

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

    .cookie-cv3__box {
        border-radius: var(--radius-xl);
        padding: 16px;
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
    }

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

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

    .cookie-cv3__actions {
        margin-top: 12px;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-cv3__actions a {
        text-decoration: none;
        border: 1px solid rgba(255, 255, 255, 0.3);
        background: rgba(255, 255, 255, 0.16);
        color: inherit;
        border-radius: 999px;
        padding: 7px 11px;
    }

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

.intro-slab-l2 {
        padding: clamp(3.6rem, 8vw, 6.8rem) var(--space-x);
        background: var(--surface-1);
        color: var(--fg-on-page);
    }

    .intro-slab-l2__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1.05fr .95fr;
        gap: 1rem;
    }

    .intro-slab-l2__main {
        padding: 1.2rem;
        border-radius: var(--radius-xl);
        background: var(--bg-alt);
    }

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

    .intro-slab-l2__main h1 {
        margin: .6rem 0 0;
        font-size: clamp(2.3rem, 5vw, 4rem);
        line-height: 1.03;
    }

    .intro-slab-l2__main strong {
        display: block;
        margin-top: .8rem;
        color: var(--brand);
    }

    .intro-slab-l2__fact {
        margin-top: 1rem;
        padding: .85rem .95rem;
        border-left: 3px solid var(--bg-primary);
        background: var(--surface-1);
    }

    .intro-slab-l2__side {
        padding: 1.2rem;
        border-radius: var(--radius-xl);
        border: 1px solid var(--border-on-surface-light);
        display: grid;
        align-content: center;
    }

    .intro-slab-l2__side span {
        color: var(--brand);
        font-weight: 700;
    }

    .intro-slab-l2__side p {
        margin: .8rem 0 0;
        color: var(--neutral-600);
    }

    .intro-slab-l2__actions {
        margin-top: 1rem;
        display: flex;
        gap: .75rem;
        flex-wrap: wrap;
    }

    .intro-slab-l2__actions a {
        display: inline-flex;
        min-height: 2.8rem;
        align-items: center;
        justify-content: center;
        padding: 0 1rem;
        border-radius: var(--radius-md);
        text-decoration: none;
        border: 1px solid var(--border-on-surface-light);
        color: var(--fg-on-page);
        background: var(--surface-1);
    }

    .intro-slab-l2__actions a:first-child {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border-color: var(--bg-primary);
    }

    @media (max-width: 860px) {
        .intro-slab-l2__wrap {
            grid-template-columns: 1fr;
        }
    }

.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;
        color: rgba(255, 255, 255, .86);
    }

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

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

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

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

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

    .faq-layout-f .table {
        display: grid;
        gap: 10px;
    }

    .faq-layout-f .line {
        display: grid;
        grid-template-columns: .9fr 1.1fr;
        gap: 12px;
        padding: 12px;
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-md);
        background: var(--surface-1);
    }

    .faq-layout-f .q {
        font-weight: 600;
        color: var(--brand);
    }

    .faq-layout-f .a {
        color: var(--neutral-600);
    }

    @media (max-width: 780px) {
        .faq-layout-f .line {
            grid-template-columns: 1fr;
        }
    }

.clarifications-c1 {

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

    .clarifications-c1::before {
        content: '';
        position: absolute;
        inset: -40%;
        background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.16), transparent 55%),
        radial-gradient(circle at 70% 60%, rgba(255, 107, 53, 0.18), transparent 52%);
        filter: blur(18px);
        animation: c1Glow 6s var(--anim-ease) infinite;
        opacity: .8;
        pointer-events: none;
    }

    @keyframes c1Glow {
        0%, 100% {
            transform: translate3d(-1%, 0, 0) scale(1);
        }
        50% {
            transform: translate3d(1.5%, -1%, 0) scale(1.03);
        }
    }

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

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

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

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

    .clarifications-c1__grid {
        display: grid;
        gap: 12px;
    }

    .clarifications-c1__item {
        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-md);
        overflow: hidden;
        backdrop-filter: blur(8px);
    }

    .clarifications-c1__q {
        width: 100%;
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 14px 16px;
        background: transparent;
        border: 0;
        color: inherit;
        cursor: pointer;
        text-align: left;
    }

    .clarifications-c1__dot {
        width: 10px;
        height: 10px;
        border-radius: 999px;
        background: var(--accent);
        box-shadow: 0 0 0 6px rgba(0, 0, 0, 0.12);
        flex: 0 0 auto;
        animation: c1Dot 1.8s ease-in-out infinite;
    }

    @keyframes c1Dot {
        0%, 100% {
            transform: scale(1);
            opacity: .9
        }
        50% {
            transform: scale(1.15);
            opacity: 1
        }
    }

    .clarifications-c1__qText {
        font-weight: 800;
        letter-spacing: -.01em
    }

    .clarifications-c1__chev {
        margin-left: auto;
        opacity: .85;
        transition: transform var(--anim-duration) var(--anim-ease);
    }

    .clarifications-c1__a {
        display: none;
        padding: 0 16px 16px 38px;
        color: rgba(255, 255, 255, .82);
        line-height: var(--line-height-base);
    }

    .clarifications-c1__item.is-open .clarifications-c1__chev {
        transform: rotate(180deg);
    }

    .clarifications-c1__item.is-open .clarifications-c1__a {
        display: block;
    }

    @media (prefers-reduced-motion: reduce) {
        .clarifications-c1::before, .clarifications-c1__dot {
            animation: none;
        }
    }

.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;
    letter-spacing: -0.5px;
    transition: color var(--anim-duration) var(--anim-ease);
}

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

.burger-menu {
    display: none;
    order: 2;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
    position: absolute;
    right: var(--space-x);
    top: var(--space-y);
}

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

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

.header-nav {
    order: 3;
    width: 100%;
}

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

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

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

.nav-link[href="index.html"] {
    color: var(--brand);
}

@media (max-width: 767px) {
    .header-container {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        position: relative;
        gap: 0;
    }

    .header-logo {
        order: 1;
        flex: 1;
    }

    .burger-menu {
        display: flex;
        order: 2;
    }

    .header-nav {
        order: 3;
        flex-basis: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--anim-duration) var(--anim-ease);
    }

    .header-nav[data-state="open"] {
        max-height: 300px;
    }

    .nav-list {
        flex-direction: column;
        align-items: center;
        padding: var(--space-y) 0;
        gap: calc(var(--gap) / 2);
    }

    .nav-link {
        display: block;
        width: 100%;
        text-align: center;
        padding: var(--space-y) var(--space-x);
    }
}

.footer-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        max-width: 1200px;
        margin: 0 auto;
        padding: 40px 20px;
        font-family: sans-serif;
        color: #333;
        border-top: 1px solid #eee;
    }
    .footer-left, .footer-right {
        box-sizing: border-box;
    }
    .footer-left {
        flex: 1;
        min-width: 300px;
        padding-right: 40px;
        margin-bottom: 30px;
    }
    .footer-right {
        flex: 1;
        min-width: 300px;
        display: flex;
        flex-direction: column;
    }
    .footer-brand {
        font-size: 2em;
        font-weight: bold;
        margin-bottom: 15px;
        color: #222;
    }
    .copyright {
        font-size: 0.9em;
        color: #666;
        margin-bottom: 20px;
    }
    .footer-disclaimer {
        font-size: 0.8em;
        color: #888;
        line-height: 1.4;
        margin-bottom: 20px;
        padding: 10px;
        background-color: #f9f9f9;
        border-radius: 4px;
    }
    .footer-legal-links {
        font-size: 0.85em;
    }
    .footer-legal-links a {
        color: #666;
        text-decoration: none;
    }
    .footer-legal-links a:hover {
        text-decoration: underline;
        color: #000;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0 0 25px 0;
    }
    .footer-nav li {
        margin-bottom: 10px;
    }
    .footer-nav a {
        text-decoration: none;
        color: #444;
        font-weight: 500;
    }
    .footer-nav a:hover {
        color: #000;
        text-decoration: underline;
    }
    .footer-contacts {
        margin-bottom: 25px;
        line-height: 1.6;
    }
    .footer-contacts p {
        margin: 5px 0;
        font-size: 0.95em;
    }
    .footer-contacts a {
        color: #444;
        text-decoration: none;
    }
    .footer-contacts a:hover {
        text-decoration: underline;
        color: #000;
    }
    .footer-social {
        display: flex;
        gap: 15px;
    }
    .footer-social a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        background-color: #f0f0f0;
        border-radius: 50%;
        color: #555;
        text-decoration: none;
        font-weight: bold;
    }
    .footer-social a:hover {
        background-color: #e0e0e0;
        color: #222;
    }
    @media (max-width: 768px) {
        .footer-container {
            flex-direction: column;
            padding: 30px 15px;
        }
        .footer-left, .footer-right {
            padding-right: 0;
            width: 100%;
        }
        .footer-left {
            margin-bottom: 40px;
        }
    }

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

    .cookie-cv3__box {
        border-radius: var(--radius-xl);
        padding: 16px;
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
    }

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

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

    .cookie-cv3__actions {
        margin-top: 12px;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-cv3__actions a {
        text-decoration: none;
        border: 1px solid rgba(255, 255, 255, 0.3);
        background: rgba(255, 255, 255, 0.16);
        color: inherit;
        border-radius: 999px;
        padding: 7px 11px;
    }

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

.review-list--colored-v5 {
    padding: 64px 20px;
    background: var(--neutral-900);
    color: var(--neutral-0);
}

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

.review-list__header {
    text-align: center;
    margin-bottom: 24px;
}

.review-list__header h2 {
    margin: 0 0 6px;
    font-size: clamp(24px,4vw,32px);
    color: var(--brand-contrast);
}

.review-list__header p {
    margin: 0;
    color: var(--neutral-300);
}

.review-list__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
    gap: 16px;
}

.review-list__card {
    border-radius: var(--radius-xl);
    padding: 16px 18px;
    background: rgba(15,23,42,0.96);
    border: 1px solid rgba(148,163,184,0.7);
    box-shadow: var(--shadow-md);
}

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

.review-list__avatar {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    background: var(--accent);
    color: var(--accent-contrast);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 600;
}

.review-list__meta h3 {
    margin: 0 0 2px;
    font-size: 0.95rem;
}

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

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

.review-list__text {
    margin: 0;
    font-size: 0.9rem;
    color: var(--neutral-100);
}

.add-review {

        color: var(--fg-on-page);
        background: var(--bg-page);
        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-page);
    }

    .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-page);
        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-page);

        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(--bg-page);
        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;
    letter-spacing: -0.5px;
    transition: color var(--anim-duration) var(--anim-ease);
}

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

.burger-menu {
    display: none;
    order: 2;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
    position: absolute;
    right: var(--space-x);
    top: var(--space-y);
}

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

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

.header-nav {
    order: 3;
    width: 100%;
}

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

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

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

.nav-link[href="index.html"] {
    color: var(--brand);
}

@media (max-width: 767px) {
    .header-container {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        position: relative;
        gap: 0;
    }

    .header-logo {
        order: 1;
        flex: 1;
    }

    .burger-menu {
        display: flex;
        order: 2;
    }

    .header-nav {
        order: 3;
        flex-basis: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--anim-duration) var(--anim-ease);
    }

    .header-nav[data-state="open"] {
        max-height: 300px;
    }

    .nav-list {
        flex-direction: column;
        align-items: center;
        padding: var(--space-y) 0;
        gap: calc(var(--gap) / 2);
    }

    .nav-link {
        display: block;
        width: 100%;
        text-align: center;
        padding: var(--space-y) var(--space-x);
    }
}

.footer-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        max-width: 1200px;
        margin: 0 auto;
        padding: 40px 20px;
        font-family: sans-serif;
        color: #333;
        border-top: 1px solid #eee;
    }
    .footer-left, .footer-right {
        box-sizing: border-box;
    }
    .footer-left {
        flex: 1;
        min-width: 300px;
        padding-right: 40px;
        margin-bottom: 30px;
    }
    .footer-right {
        flex: 1;
        min-width: 300px;
        display: flex;
        flex-direction: column;
    }
    .footer-brand {
        font-size: 2em;
        font-weight: bold;
        margin-bottom: 15px;
        color: #222;
    }
    .copyright {
        font-size: 0.9em;
        color: #666;
        margin-bottom: 20px;
    }
    .footer-disclaimer {
        font-size: 0.8em;
        color: #888;
        line-height: 1.4;
        margin-bottom: 20px;
        padding: 10px;
        background-color: #f9f9f9;
        border-radius: 4px;
    }
    .footer-legal-links {
        font-size: 0.85em;
    }
    .footer-legal-links a {
        color: #666;
        text-decoration: none;
    }
    .footer-legal-links a:hover {
        text-decoration: underline;
        color: #000;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0 0 25px 0;
    }
    .footer-nav li {
        margin-bottom: 10px;
    }
    .footer-nav a {
        text-decoration: none;
        color: #444;
        font-weight: 500;
    }
    .footer-nav a:hover {
        color: #000;
        text-decoration: underline;
    }
    .footer-contacts {
        margin-bottom: 25px;
        line-height: 1.6;
    }
    .footer-contacts p {
        margin: 5px 0;
        font-size: 0.95em;
    }
    .footer-contacts a {
        color: #444;
        text-decoration: none;
    }
    .footer-contacts a:hover {
        text-decoration: underline;
        color: #000;
    }
    .footer-social {
        display: flex;
        gap: 15px;
    }
    .footer-social a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        background-color: #f0f0f0;
        border-radius: 50%;
        color: #555;
        text-decoration: none;
        font-weight: bold;
    }
    .footer-social a:hover {
        background-color: #e0e0e0;
        color: #222;
    }
    @media (max-width: 768px) {
        .footer-container {
            flex-direction: column;
            padding: 30px 15px;
        }
        .footer-left, .footer-right {
            padding-right: 0;
            width: 100%;
        }
        .footer-left {
            margin-bottom: 40px;
        }
    }

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

    .cookie-cv3__box {
        border-radius: var(--radius-xl);
        padding: 16px;
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
    }

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

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

    .cookie-cv3__actions {
        margin-top: 12px;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-cv3__actions a {
        text-decoration: none;
        border: 1px solid rgba(255, 255, 255, 0.3);
        background: rgba(255, 255, 255, 0.16);
        color: inherit;
        border-radius: 999px;
        padding: 7px 11px;
    }

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

.review-item {

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

    .review-item .review-item__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .review-item .review-item__review {
        background: var(--surface-light);
        padding: clamp(24px, 3vw, 40px);
        border-radius: var(--radius-lg);
        border: 1px solid var(--ring);
        box-shadow: var(--shadow-md);
    }

    .review-item .review-item__author-info {
        display: flex;
        gap: 1rem;
        margin-bottom: var(--space-y);
        align-items: flex-start;
    }

    .review-item .review-item__avatar {
        width: 64px;
        height: 64px;
        border-radius: 50%;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        font-size: 1.5rem;
    }

    .review-item h1 {
        font-size: clamp(24px, 4vw, 36px);
        margin: 0 0 0.5rem;
        color: var(--fg-on-page);
    }

    .review-item .review-item__author {
        color: var(--neutral-600);
        margin-bottom: 0.5rem;
    }

    .review-item .review-item__rating {
        color: #ffd700;
        font-size: 1.25rem;
    }

    .review-item .review-item__content {
        line-height: 1.8;
        color: var(--fg-on-page);
        margin-bottom: var(--space-y);
    }

    .review-item .review-item__meta {
        padding-top: var(--space-y);
        border-top: 1px solid var(--ring);
        color: var(--neutral-600);
        font-size: 0.875rem;
    }

.about-mission {

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

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

    .about-mission .about-mission__row {
        display: grid;
        gap: 24px;
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }

    .about-mission figure img {
        width: 100%;
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-sm);
    }

    .about-mission p {
        color: rgba(255, 255, 255, .9);
    }

    @media (max-width: 767px) {
        .about-mission .about-mission__row {
            grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
        }
    }

.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;
    letter-spacing: -0.5px;
    transition: color var(--anim-duration) var(--anim-ease);
}

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

.burger-menu {
    display: none;
    order: 2;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
    position: absolute;
    right: var(--space-x);
    top: var(--space-y);
}

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

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

.header-nav {
    order: 3;
    width: 100%;
}

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

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

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

.nav-link[href="index.html"] {
    color: var(--brand);
}

@media (max-width: 767px) {
    .header-container {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        position: relative;
        gap: 0;
    }

    .header-logo {
        order: 1;
        flex: 1;
    }

    .burger-menu {
        display: flex;
        order: 2;
    }

    .header-nav {
        order: 3;
        flex-basis: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--anim-duration) var(--anim-ease);
    }

    .header-nav[data-state="open"] {
        max-height: 300px;
    }

    .nav-list {
        flex-direction: column;
        align-items: center;
        padding: var(--space-y) 0;
        gap: calc(var(--gap) / 2);
    }

    .nav-link {
        display: block;
        width: 100%;
        text-align: center;
        padding: var(--space-y) var(--space-x);
    }
}

.footer-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        max-width: 1200px;
        margin: 0 auto;
        padding: 40px 20px;
        font-family: sans-serif;
        color: #333;
        border-top: 1px solid #eee;
    }
    .footer-left, .footer-right {
        box-sizing: border-box;
    }
    .footer-left {
        flex: 1;
        min-width: 300px;
        padding-right: 40px;
        margin-bottom: 30px;
    }
    .footer-right {
        flex: 1;
        min-width: 300px;
        display: flex;
        flex-direction: column;
    }
    .footer-brand {
        font-size: 2em;
        font-weight: bold;
        margin-bottom: 15px;
        color: #222;
    }
    .copyright {
        font-size: 0.9em;
        color: #666;
        margin-bottom: 20px;
    }
    .footer-disclaimer {
        font-size: 0.8em;
        color: #888;
        line-height: 1.4;
        margin-bottom: 20px;
        padding: 10px;
        background-color: #f9f9f9;
        border-radius: 4px;
    }
    .footer-legal-links {
        font-size: 0.85em;
    }
    .footer-legal-links a {
        color: #666;
        text-decoration: none;
    }
    .footer-legal-links a:hover {
        text-decoration: underline;
        color: #000;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0 0 25px 0;
    }
    .footer-nav li {
        margin-bottom: 10px;
    }
    .footer-nav a {
        text-decoration: none;
        color: #444;
        font-weight: 500;
    }
    .footer-nav a:hover {
        color: #000;
        text-decoration: underline;
    }
    .footer-contacts {
        margin-bottom: 25px;
        line-height: 1.6;
    }
    .footer-contacts p {
        margin: 5px 0;
        font-size: 0.95em;
    }
    .footer-contacts a {
        color: #444;
        text-decoration: none;
    }
    .footer-contacts a:hover {
        text-decoration: underline;
        color: #000;
    }
    .footer-social {
        display: flex;
        gap: 15px;
    }
    .footer-social a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        background-color: #f0f0f0;
        border-radius: 50%;
        color: #555;
        text-decoration: none;
        font-weight: bold;
    }
    .footer-social a:hover {
        background-color: #e0e0e0;
        color: #222;
    }
    @media (max-width: 768px) {
        .footer-container {
            flex-direction: column;
            padding: 30px 15px;
        }
        .footer-left, .footer-right {
            padding-right: 0;
            width: 100%;
        }
        .footer-left {
            margin-bottom: 40px;
        }
    }

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

    .cookie-cv3__box {
        border-radius: var(--radius-xl);
        padding: 16px;
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
    }

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

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

    .cookie-cv3__actions {
        margin-top: 12px;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-cv3__actions a {
        text-decoration: none;
        border: 1px solid rgba(255, 255, 255, 0.3);
        background: rgba(255, 255, 255, 0.16);
        color: inherit;
        border-radius: 999px;
        padding: 7px 11px;
    }

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

.review-item {

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

    .review-item .review-item__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .review-item .review-item__review {
        background: var(--surface-light);
        padding: clamp(24px, 3vw, 40px);
        border-radius: var(--radius-lg);
        border: 1px solid var(--ring);
        box-shadow: var(--shadow-md);
    }

    .review-item .review-item__author-info {
        display: flex;
        gap: 1rem;
        margin-bottom: var(--space-y);
        align-items: flex-start;
    }

    .review-item .review-item__avatar {
        width: 64px;
        height: 64px;
        border-radius: 50%;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        font-size: 1.5rem;
    }

    .review-item h1 {
        font-size: clamp(24px, 4vw, 36px);
        margin: 0 0 0.5rem;
        color: var(--fg-on-page);
    }

    .review-item .review-item__author {
        color: var(--neutral-600);
        margin-bottom: 0.5rem;
    }

    .review-item .review-item__rating {
        color: #ffd700;
        font-size: 1.25rem;
    }

    .review-item .review-item__content {
        line-height: 1.8;
        color: var(--fg-on-page);
        margin-bottom: var(--space-y);
    }

    .review-item .review-item__meta {
        padding-top: var(--space-y);
        border-top: 1px solid var(--ring);
        color: var(--neutral-600);
        font-size: 0.875rem;
    }

.identity-cv3 {
        padding: clamp(54px, 8vw, 98px) clamp(16px, 4vw, 40px);
        background: var(--accent);
        color: var(--accent-contrast);
    }

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

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

    .identity-cv3__head span {
        display: inline-block;
        padding: 4px 10px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.3);
    }

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

    .identity-cv3__head p {
        margin: 0;
        max-width: 72ch;
        opacity: .9;
    }

    .identity-cv3__list {
        display: grid;
        gap: 12px;
    }

    .identity-cv3__list article {
        display: grid;
        grid-template-columns: 90px 1fr;
        gap: 12px;
        background: rgba(255, 255, 255, 0.35);
        border-radius: var(--radius-lg);
        padding: 12px;
        color: var(--fg-on-page);
    }

    .identity-cv3__meta {
        display: grid;
        gap: 8px;
        justify-items: center;
    }

    .identity-cv3__meta b {
        width: 42px;
        height: 42px;
        border-radius: 50%;
        display: grid;
        place-items: center;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
    }

    .identity-cv3__meta i {
        font-style: normal;
        font-size: 1.5rem;
    }

    .identity-cv3__list h3 {
        margin: 0;
    }

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

    .identity-cv3__list em {
        font-style: normal;
        font-weight: 700;
        color: var(--link);
    }

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

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    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;
    letter-spacing: -0.5px;
    transition: color var(--anim-duration) var(--anim-ease);
}

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

.burger-menu {
    display: none;
    order: 2;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
    position: absolute;
    right: var(--space-x);
    top: var(--space-y);
}

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

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

.header-nav {
    order: 3;
    width: 100%;
}

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

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

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

.nav-link[href="index.html"] {
    color: var(--brand);
}

@media (max-width: 767px) {
    .header-container {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        position: relative;
        gap: 0;
    }

    .header-logo {
        order: 1;
        flex: 1;
    }

    .burger-menu {
        display: flex;
        order: 2;
    }

    .header-nav {
        order: 3;
        flex-basis: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--anim-duration) var(--anim-ease);
    }

    .header-nav[data-state="open"] {
        max-height: 300px;
    }

    .nav-list {
        flex-direction: column;
        align-items: center;
        padding: var(--space-y) 0;
        gap: calc(var(--gap) / 2);
    }

    .nav-link {
        display: block;
        width: 100%;
        text-align: center;
        padding: var(--space-y) var(--space-x);
    }
}

.footer-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        max-width: 1200px;
        margin: 0 auto;
        padding: 40px 20px;
        font-family: sans-serif;
        color: #333;
        border-top: 1px solid #eee;
    }
    .footer-left, .footer-right {
        box-sizing: border-box;
    }
    .footer-left {
        flex: 1;
        min-width: 300px;
        padding-right: 40px;
        margin-bottom: 30px;
    }
    .footer-right {
        flex: 1;
        min-width: 300px;
        display: flex;
        flex-direction: column;
    }
    .footer-brand {
        font-size: 2em;
        font-weight: bold;
        margin-bottom: 15px;
        color: #222;
    }
    .copyright {
        font-size: 0.9em;
        color: #666;
        margin-bottom: 20px;
    }
    .footer-disclaimer {
        font-size: 0.8em;
        color: #888;
        line-height: 1.4;
        margin-bottom: 20px;
        padding: 10px;
        background-color: #f9f9f9;
        border-radius: 4px;
    }
    .footer-legal-links {
        font-size: 0.85em;
    }
    .footer-legal-links a {
        color: #666;
        text-decoration: none;
    }
    .footer-legal-links a:hover {
        text-decoration: underline;
        color: #000;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0 0 25px 0;
    }
    .footer-nav li {
        margin-bottom: 10px;
    }
    .footer-nav a {
        text-decoration: none;
        color: #444;
        font-weight: 500;
    }
    .footer-nav a:hover {
        color: #000;
        text-decoration: underline;
    }
    .footer-contacts {
        margin-bottom: 25px;
        line-height: 1.6;
    }
    .footer-contacts p {
        margin: 5px 0;
        font-size: 0.95em;
    }
    .footer-contacts a {
        color: #444;
        text-decoration: none;
    }
    .footer-contacts a:hover {
        text-decoration: underline;
        color: #000;
    }
    .footer-social {
        display: flex;
        gap: 15px;
    }
    .footer-social a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        background-color: #f0f0f0;
        border-radius: 50%;
        color: #555;
        text-decoration: none;
        font-weight: bold;
    }
    .footer-social a:hover {
        background-color: #e0e0e0;
        color: #222;
    }
    @media (max-width: 768px) {
        .footer-container {
            flex-direction: column;
            padding: 30px 15px;
        }
        .footer-left, .footer-right {
            padding-right: 0;
            width: 100%;
        }
        .footer-left {
            margin-bottom: 40px;
        }
    }

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

    .cookie-cv3__box {
        border-radius: var(--radius-xl);
        padding: 16px;
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
    }

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

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

    .cookie-cv3__actions {
        margin-top: 12px;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-cv3__actions a {
        text-decoration: none;
        border: 1px solid rgba(255, 255, 255, 0.3);
        background: rgba(255, 255, 255, 0.16);
        color: inherit;
        border-radius: 999px;
        padding: 7px 11px;
    }

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

.review-item {

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

    .review-item .review-item__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .review-item .review-item__review {
        background: var(--surface-light);
        padding: clamp(24px, 3vw, 40px);
        border-radius: var(--radius-lg);
        border: 1px solid var(--ring);
        box-shadow: var(--shadow-md);
    }

    .review-item .review-item__author-info {
        display: flex;
        gap: 1rem;
        margin-bottom: var(--space-y);
        align-items: flex-start;
    }

    .review-item .review-item__avatar {
        width: 64px;
        height: 64px;
        border-radius: 50%;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        font-size: 1.5rem;
    }

    .review-item h1 {
        font-size: clamp(24px, 4vw, 36px);
        margin: 0 0 0.5rem;
        color: var(--fg-on-page);
    }

    .review-item .review-item__author {
        color: var(--neutral-600);
        margin-bottom: 0.5rem;
    }

    .review-item .review-item__rating {
        color: #ffd700;
        font-size: 1.25rem;
    }

    .review-item .review-item__content {
        line-height: 1.8;
        color: var(--fg-on-page);
        margin-bottom: var(--space-y);
    }

    .review-item .review-item__meta {
        padding-top: var(--space-y);
        border-top: 1px solid var(--ring);
        color: var(--neutral-600);
        font-size: 0.875rem;
    }

.values-beads-c3 {
        padding: clamp(3.5rem, 8vw, 6.1rem) var(--space-x);
        background: var(--gradient-accent);
        color: var(--fg-on-primary);
    }

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

    .values-beads-c3__head {
        margin-bottom: 1.1rem;
    }

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

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

    .values-beads-c3__head span {
        display: block;
        margin-top: .8rem;
        color: rgba(255, 255, 255, .86);
    }

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

    .values-beads-c3__grid article {
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: rgba(255, 255, 255, .14);
        border: 1px solid rgba(255, 255, 255, .18);
    }

    .values-beads-c3__top {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .values-beads-c3__top i {
        font-style: normal;
    }

    .values-beads-c3__top strong {
        color: var(--bg-accent);
    }

    .values-beads-c3__grid h3 {
        margin: .75rem 0 .35rem;
    }

    .values-beads-c3__grid p {
        margin: 0;
        color: rgba(255, 255, 255, .86);
    }

    .values-beads-c3__grid small {
        display: block;
        margin-top: .55rem;
        color: rgba(255, 255, 255, .76);
    }

.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;
    letter-spacing: -0.5px;
    transition: color var(--anim-duration) var(--anim-ease);
}

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

.burger-menu {
    display: none;
    order: 2;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
    position: absolute;
    right: var(--space-x);
    top: var(--space-y);
}

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

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

.header-nav {
    order: 3;
    width: 100%;
}

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

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

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

.nav-link[href="index.html"] {
    color: var(--brand);
}

@media (max-width: 767px) {
    .header-container {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        position: relative;
        gap: 0;
    }

    .header-logo {
        order: 1;
        flex: 1;
    }

    .burger-menu {
        display: flex;
        order: 2;
    }

    .header-nav {
        order: 3;
        flex-basis: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--anim-duration) var(--anim-ease);
    }

    .header-nav[data-state="open"] {
        max-height: 300px;
    }

    .nav-list {
        flex-direction: column;
        align-items: center;
        padding: var(--space-y) 0;
        gap: calc(var(--gap) / 2);
    }

    .nav-link {
        display: block;
        width: 100%;
        text-align: center;
        padding: var(--space-y) var(--space-x);
    }
}

.footer-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        max-width: 1200px;
        margin: 0 auto;
        padding: 40px 20px;
        font-family: sans-serif;
        color: #333;
        border-top: 1px solid #eee;
    }
    .footer-left, .footer-right {
        box-sizing: border-box;
    }
    .footer-left {
        flex: 1;
        min-width: 300px;
        padding-right: 40px;
        margin-bottom: 30px;
    }
    .footer-right {
        flex: 1;
        min-width: 300px;
        display: flex;
        flex-direction: column;
    }
    .footer-brand {
        font-size: 2em;
        font-weight: bold;
        margin-bottom: 15px;
        color: #222;
    }
    .copyright {
        font-size: 0.9em;
        color: #666;
        margin-bottom: 20px;
    }
    .footer-disclaimer {
        font-size: 0.8em;
        color: #888;
        line-height: 1.4;
        margin-bottom: 20px;
        padding: 10px;
        background-color: #f9f9f9;
        border-radius: 4px;
    }
    .footer-legal-links {
        font-size: 0.85em;
    }
    .footer-legal-links a {
        color: #666;
        text-decoration: none;
    }
    .footer-legal-links a:hover {
        text-decoration: underline;
        color: #000;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0 0 25px 0;
    }
    .footer-nav li {
        margin-bottom: 10px;
    }
    .footer-nav a {
        text-decoration: none;
        color: #444;
        font-weight: 500;
    }
    .footer-nav a:hover {
        color: #000;
        text-decoration: underline;
    }
    .footer-contacts {
        margin-bottom: 25px;
        line-height: 1.6;
    }
    .footer-contacts p {
        margin: 5px 0;
        font-size: 0.95em;
    }
    .footer-contacts a {
        color: #444;
        text-decoration: none;
    }
    .footer-contacts a:hover {
        text-decoration: underline;
        color: #000;
    }
    .footer-social {
        display: flex;
        gap: 15px;
    }
    .footer-social a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        background-color: #f0f0f0;
        border-radius: 50%;
        color: #555;
        text-decoration: none;
        font-weight: bold;
    }
    .footer-social a:hover {
        background-color: #e0e0e0;
        color: #222;
    }
    @media (max-width: 768px) {
        .footer-container {
            flex-direction: column;
            padding: 30px 15px;
        }
        .footer-left, .footer-right {
            padding-right: 0;
            width: 100%;
        }
        .footer-left {
            margin-bottom: 40px;
        }
    }

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

    .cookie-cv3__box {
        border-radius: var(--radius-xl);
        padding: 16px;
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
    }

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

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

    .cookie-cv3__actions {
        margin-top: 12px;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-cv3__actions a {
        text-decoration: none;
        border: 1px solid rgba(255, 255, 255, 0.3);
        background: rgba(255, 255, 255, 0.16);
        color: inherit;
        border-radius: 999px;
        padding: 7px 11px;
    }

    .cookie-cv3__actions a[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;
        color: rgba(255, 255, 255, .86);
    }

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

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

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

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

    .map-split-l1__side p {
        margin: .6rem 0 0;
        color: var(--neutral-600);
    }

    .map-split-l1__list {
        margin-top: 1rem;
        display: grid;
        gap: .7rem;
    }

    .map-split-l1__list div {
        padding: .9rem;
        border-radius: var(--radius-md);
        background: var(--bg-alt);
        border: 1px solid var(--border-on-surface-light);
    }

    .map-split-l1__list span {
        display: block;
        margin-top: .3rem;
        color: var(--neutral-600);
    }

    .map-split-l1__list a {
        color: var(--link);
        text-decoration: none;
    }

    .map-split-l1__list a:hover {
        color: var(--link-hover);
        text-decoration: underline;
    }

    .map-split-l1__embed {
        overflow: hidden;
        border-radius: var(--radius-xl);
        border: 1px solid var(--border-on-surface-light);
        box-shadow: var(--shadow-sm);
    }

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

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

.connect--colored-v5 {
        padding: 64px 20px;
        background: radial-gradient(circle at top left, rgba(59, 130, 246, 0.35), transparent),
        radial-gradient(circle at bottom right, rgba(139, 92, 246, 0.45), transparent),
        var(--neutral-900);
        color: var(--neutral-0);
    }

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

    .connect__header {
        text-align: center;
        margin-bottom: 32px;
    }

    .connect__eyebrow {
        font-size: 0.8rem;
        text-transform: uppercase;
        letter-spacing: 0.16em;
        color: rgba(191, 219, 254, 0.9);
        margin: 0 0 0.5rem;
    }

    .connect__header h2 {
        margin: 0 0 0.5rem;
        font-size: clamp(24px, 4vw, 32px);
        color: var(--brand-contrast);
    }

    .connect__text {
        margin: 0;
        color: var(--neutral-300);
    }

    .connect__channels {
        margin-top: 24px;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 18px;
    }

    .connect__channel {
        background: rgba(15, 23, 42, 0.95);
        border-radius: var(--radius-xl);
        padding: 16px 18px;
        border: 1px solid rgba(148, 163, 184, 0.7);
        display: grid;
        gap: 8px;
        box-shadow: var(--shadow-md);
    }

    .connect__icon {
        width: 36px;
        height: 36px;
        border-radius: 12px;
        background: rgba(17, 24, 39, 0.96);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .connect__channel-title {
        margin: 0;
        font-size: 1rem;
        color: var(--brand-contrast);
    }

    .connect__channel-text {
        margin: 0;
        font-size: 0.9rem;
        color: rgba(226, 232, 240, 0.9);
    }

    .connect__channel-link {
        margin-top: 4px;
        font-size: 0.88rem;
        color: var(--bg-accent);
        text-decoration: none;
    }

    .connect__channel-link:hover {
        text-decoration: underline;
    }

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

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

.articles__title {
    margin: 0 0 16px;
    font-size: clamp(24px,4vw,30px);
}

.articles__list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
}

.articles__item {
    background: var(--surface-light);
    border-radius: var(--radius-lg);
    padding: 14px 16px;
    border: 1px solid var(--border-on-surface-light);
}

.articles__item h3 {
    margin: 0 0 4px;
    font-size: 1rem;
}

.articles__item p {
    margin: 0;
    font-size: 0.9rem;
    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;
    letter-spacing: -0.5px;
    transition: color var(--anim-duration) var(--anim-ease);
}

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

.burger-menu {
    display: none;
    order: 2;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
    position: absolute;
    right: var(--space-x);
    top: var(--space-y);
}

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

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

.header-nav {
    order: 3;
    width: 100%;
}

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

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

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

.nav-link[href="index.html"] {
    color: var(--brand);
}

@media (max-width: 767px) {
    .header-container {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        position: relative;
        gap: 0;
    }

    .header-logo {
        order: 1;
        flex: 1;
    }

    .burger-menu {
        display: flex;
        order: 2;
    }

    .header-nav {
        order: 3;
        flex-basis: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--anim-duration) var(--anim-ease);
    }

    .header-nav[data-state="open"] {
        max-height: 300px;
    }

    .nav-list {
        flex-direction: column;
        align-items: center;
        padding: var(--space-y) 0;
        gap: calc(var(--gap) / 2);
    }

    .nav-link {
        display: block;
        width: 100%;
        text-align: center;
        padding: var(--space-y) var(--space-x);
    }
}

.footer-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        max-width: 1200px;
        margin: 0 auto;
        padding: 40px 20px;
        font-family: sans-serif;
        color: #333;
        border-top: 1px solid #eee;
    }
    .footer-left, .footer-right {
        box-sizing: border-box;
    }
    .footer-left {
        flex: 1;
        min-width: 300px;
        padding-right: 40px;
        margin-bottom: 30px;
    }
    .footer-right {
        flex: 1;
        min-width: 300px;
        display: flex;
        flex-direction: column;
    }
    .footer-brand {
        font-size: 2em;
        font-weight: bold;
        margin-bottom: 15px;
        color: #222;
    }
    .copyright {
        font-size: 0.9em;
        color: #666;
        margin-bottom: 20px;
    }
    .footer-disclaimer {
        font-size: 0.8em;
        color: #888;
        line-height: 1.4;
        margin-bottom: 20px;
        padding: 10px;
        background-color: #f9f9f9;
        border-radius: 4px;
    }
    .footer-legal-links {
        font-size: 0.85em;
    }
    .footer-legal-links a {
        color: #666;
        text-decoration: none;
    }
    .footer-legal-links a:hover {
        text-decoration: underline;
        color: #000;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0 0 25px 0;
    }
    .footer-nav li {
        margin-bottom: 10px;
    }
    .footer-nav a {
        text-decoration: none;
        color: #444;
        font-weight: 500;
    }
    .footer-nav a:hover {
        color: #000;
        text-decoration: underline;
    }
    .footer-contacts {
        margin-bottom: 25px;
        line-height: 1.6;
    }
    .footer-contacts p {
        margin: 5px 0;
        font-size: 0.95em;
    }
    .footer-contacts a {
        color: #444;
        text-decoration: none;
    }
    .footer-contacts a:hover {
        text-decoration: underline;
        color: #000;
    }
    .footer-social {
        display: flex;
        gap: 15px;
    }
    .footer-social a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        background-color: #f0f0f0;
        border-radius: 50%;
        color: #555;
        text-decoration: none;
        font-weight: bold;
    }
    .footer-social a:hover {
        background-color: #e0e0e0;
        color: #222;
    }
    @media (max-width: 768px) {
        .footer-container {
            flex-direction: column;
            padding: 30px 15px;
        }
        .footer-left, .footer-right {
            padding-right: 0;
            width: 100%;
        }
        .footer-left {
            margin-bottom: 40px;
        }
    }

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

    .cookie-cv3__box {
        border-radius: var(--radius-xl);
        padding: 16px;
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
    }

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

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

    .cookie-cv3__actions {
        margin-top: 12px;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-cv3__actions a {
        text-decoration: none;
        border: 1px solid rgba(255, 255, 255, 0.3);
        background: rgba(255, 255, 255, 0.16);
        color: inherit;
        border-radius: 999px;
        padding: 7px 11px;
    }

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

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

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

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

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

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

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

.team-orbit {
        background: radial-gradient(circle at 10% 10%, rgba(255, 139, 92, 0.18), transparent 40%), var(--bg-primary);
        color: var(--fg-on-primary);
        padding: clamp(64px, 8vw, 110px) clamp(18px, 4vw, 48px);
        position: relative;
        overflow: hidden;
    }

    .team-orbit::after {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 85% 10%, rgba(73, 146, 255, 0.4), transparent 50%);
        opacity: 0.4;
        pointer-events: none;
    }

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

    .team-orbit__h {
        text-align: center;
        margin-bottom: clamp(48px, 6vw, 80px);
    }

    .team-orbit__eyebrow {
        text-transform: uppercase;
        letter-spacing: 0.25em;
        color: rgba(255, 255, 255, 0.6);
        margin: 0 0 0.75rem;
    }

    .team-orbit h2 {
        margin: 0 0 1rem;
        font-size: clamp(34px, 5vw, 58px);
    }

    .team-orbit__lead {
        margin: 0 auto;
        max-width: 720px;
        color: rgba(255, 255, 255, 0.75);
    }

    .team-orbit__grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: clamp(20px, 3vw, 32px);
    }

    .team-orbit__card {
        display: flex;
        flex-direction: column;
        gap: 1.25rem;
        background: rgba(3, 7, 21, 0.65);
        border-radius: var(--radius-xl);
        padding: clamp(24px, 3vw, 32px);
        border: 1px solid rgba(255, 255, 255, 0.15);
        box-shadow: 0 25px 40px rgba(1, 4, 16, 0.6);
        backdrop-filter: blur(18px);
        transform: translateY(30px);
    }

    .team-orbit__avatar {
        width: 80px;
        height: 80px;
        border-radius: 24px;
        overflow: hidden;
        border: 2px solid rgba(255, 255, 255, 0.3);
    }

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

    .team-orbit__meta h3 {
        margin: 0;
        font-size: 1.4rem;
    }

    .team-orbit__meta span {
        color: rgba(255, 255, 255, 0.6);
        font-size: 0.95rem;
    }

    .team-orbit__content p {
        margin: 0.75rem 0 1rem;
        color: rgba(255, 255, 255, 0.7);
    }

    .team-orbit__focus {
        display: inline-flex;
        padding: 0.35rem 0.75rem;
        border-radius: 999px;
        background: rgba(255, 139, 92, 0.2);
        color: var(--bg-accent);
        font-weight: 600;
    }

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

    .contact-layout-e .wrap {
        max-width: 980px;
        margin: 0 auto;
    }

    .contact-layout-e .section-head {
        margin-bottom: 16px;
    }

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

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

    .contact-layout-e .rail {
        display: grid;
        grid-template-columns: 260px 1fr;
        gap: 16px;
    }

    .contact-layout-e aside {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border-radius: var(--radius-lg);
        padding: 16px;
    }

    .contact-layout-e aside h3 {
        margin: 0 0 10px;
    }

    .contact-layout-e aside p {
        margin: 0 0 10px;
        opacity: .9;
    }

    .contact-layout-e .social {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }

    .contact-layout-e .social a {
        text-decoration: none;
        color: var(--fg-on-primary);
        background: rgba(255, 255, 255, .16);
        padding: 6px 10px;
        border-radius: var(--radius-sm);
    }

    .contact-layout-e .content {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        display: grid;
        gap: 10px;
    }

    .contact-layout-e .row {
        display: grid;
        gap: 3px;
        padding-bottom: 10px;
        border-bottom: 1px dashed var(--neutral-300);
    }

    .contact-layout-e .row:last-child {
        border-bottom: 0;
        padding-bottom: 0;
    }

    .contact-layout-e .row a {
        color: var(--link);
        text-decoration: none;
    }

    .contact-layout-e .row a:hover {
        color: var(--link-hover);
        text-decoration: underline;
    }

    @media (max-width: 760px) {
        .contact-layout-e .rail {
            grid-template-columns: 1fr;
        }
    }

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

.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;
    letter-spacing: -0.5px;
    transition: color var(--anim-duration) var(--anim-ease);
}

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

.burger-menu {
    display: none;
    order: 2;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
    position: absolute;
    right: var(--space-x);
    top: var(--space-y);
}

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

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

.header-nav {
    order: 3;
    width: 100%;
}

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

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

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

.nav-link[href="index.html"] {
    color: var(--brand);
}

@media (max-width: 767px) {
    .header-container {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        position: relative;
        gap: 0;
    }

    .header-logo {
        order: 1;
        flex: 1;
    }

    .burger-menu {
        display: flex;
        order: 2;
    }

    .header-nav {
        order: 3;
        flex-basis: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--anim-duration) var(--anim-ease);
    }

    .header-nav[data-state="open"] {
        max-height: 300px;
    }

    .nav-list {
        flex-direction: column;
        align-items: center;
        padding: var(--space-y) 0;
        gap: calc(var(--gap) / 2);
    }

    .nav-link {
        display: block;
        width: 100%;
        text-align: center;
        padding: var(--space-y) var(--space-x);
    }
}

.footer-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        max-width: 1200px;
        margin: 0 auto;
        padding: 40px 20px;
        font-family: sans-serif;
        color: #333;
        border-top: 1px solid #eee;
    }
    .footer-left, .footer-right {
        box-sizing: border-box;
    }
    .footer-left {
        flex: 1;
        min-width: 300px;
        padding-right: 40px;
        margin-bottom: 30px;
    }
    .footer-right {
        flex: 1;
        min-width: 300px;
        display: flex;
        flex-direction: column;
    }
    .footer-brand {
        font-size: 2em;
        font-weight: bold;
        margin-bottom: 15px;
        color: #222;
    }
    .copyright {
        font-size: 0.9em;
        color: #666;
        margin-bottom: 20px;
    }
    .footer-disclaimer {
        font-size: 0.8em;
        color: #888;
        line-height: 1.4;
        margin-bottom: 20px;
        padding: 10px;
        background-color: #f9f9f9;
        border-radius: 4px;
    }
    .footer-legal-links {
        font-size: 0.85em;
    }
    .footer-legal-links a {
        color: #666;
        text-decoration: none;
    }
    .footer-legal-links a:hover {
        text-decoration: underline;
        color: #000;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0 0 25px 0;
    }
    .footer-nav li {
        margin-bottom: 10px;
    }
    .footer-nav a {
        text-decoration: none;
        color: #444;
        font-weight: 500;
    }
    .footer-nav a:hover {
        color: #000;
        text-decoration: underline;
    }
    .footer-contacts {
        margin-bottom: 25px;
        line-height: 1.6;
    }
    .footer-contacts p {
        margin: 5px 0;
        font-size: 0.95em;
    }
    .footer-contacts a {
        color: #444;
        text-decoration: none;
    }
    .footer-contacts a:hover {
        text-decoration: underline;
        color: #000;
    }
    .footer-social {
        display: flex;
        gap: 15px;
    }
    .footer-social a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        background-color: #f0f0f0;
        border-radius: 50%;
        color: #555;
        text-decoration: none;
        font-weight: bold;
    }
    .footer-social a:hover {
        background-color: #e0e0e0;
        color: #222;
    }
    @media (max-width: 768px) {
        .footer-container {
            flex-direction: column;
            padding: 30px 15px;
        }
        .footer-left, .footer-right {
            padding-right: 0;
            width: 100%;
        }
        .footer-left {
            margin-bottom: 40px;
        }
    }

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

    .cookie-cv3__box {
        border-radius: var(--radius-xl);
        padding: 16px;
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
    }

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

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

    .cookie-cv3__actions {
        margin-top: 12px;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-cv3__actions a {
        text-decoration: none;
        border: 1px solid rgba(255, 255, 255, 0.3);
        background: rgba(255, 255, 255, 0.16);
        color: inherit;
        border-radius: 999px;
        padding: 7px 11px;
    }

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

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

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

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

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

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

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

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

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

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

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    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;
    letter-spacing: -0.5px;
    transition: color var(--anim-duration) var(--anim-ease);
}

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

.burger-menu {
    display: none;
    order: 2;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
    position: absolute;
    right: var(--space-x);
    top: var(--space-y);
}

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

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

.header-nav {
    order: 3;
    width: 100%;
}

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

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

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

.nav-link[href="index.html"] {
    color: var(--brand);
}

@media (max-width: 767px) {
    .header-container {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        position: relative;
        gap: 0;
    }

    .header-logo {
        order: 1;
        flex: 1;
    }

    .burger-menu {
        display: flex;
        order: 2;
    }

    .header-nav {
        order: 3;
        flex-basis: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--anim-duration) var(--anim-ease);
    }

    .header-nav[data-state="open"] {
        max-height: 300px;
    }

    .nav-list {
        flex-direction: column;
        align-items: center;
        padding: var(--space-y) 0;
        gap: calc(var(--gap) / 2);
    }

    .nav-link {
        display: block;
        width: 100%;
        text-align: center;
        padding: var(--space-y) var(--space-x);
    }
}

.footer-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        max-width: 1200px;
        margin: 0 auto;
        padding: 40px 20px;
        font-family: sans-serif;
        color: #333;
        border-top: 1px solid #eee;
    }
    .footer-left, .footer-right {
        box-sizing: border-box;
    }
    .footer-left {
        flex: 1;
        min-width: 300px;
        padding-right: 40px;
        margin-bottom: 30px;
    }
    .footer-right {
        flex: 1;
        min-width: 300px;
        display: flex;
        flex-direction: column;
    }
    .footer-brand {
        font-size: 2em;
        font-weight: bold;
        margin-bottom: 15px;
        color: #222;
    }
    .copyright {
        font-size: 0.9em;
        color: #666;
        margin-bottom: 20px;
    }
    .footer-disclaimer {
        font-size: 0.8em;
        color: #888;
        line-height: 1.4;
        margin-bottom: 20px;
        padding: 10px;
        background-color: #f9f9f9;
        border-radius: 4px;
    }
    .footer-legal-links {
        font-size: 0.85em;
    }
    .footer-legal-links a {
        color: #666;
        text-decoration: none;
    }
    .footer-legal-links a:hover {
        text-decoration: underline;
        color: #000;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0 0 25px 0;
    }
    .footer-nav li {
        margin-bottom: 10px;
    }
    .footer-nav a {
        text-decoration: none;
        color: #444;
        font-weight: 500;
    }
    .footer-nav a:hover {
        color: #000;
        text-decoration: underline;
    }
    .footer-contacts {
        margin-bottom: 25px;
        line-height: 1.6;
    }
    .footer-contacts p {
        margin: 5px 0;
        font-size: 0.95em;
    }
    .footer-contacts a {
        color: #444;
        text-decoration: none;
    }
    .footer-contacts a:hover {
        text-decoration: underline;
        color: #000;
    }
    .footer-social {
        display: flex;
        gap: 15px;
    }
    .footer-social a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        background-color: #f0f0f0;
        border-radius: 50%;
        color: #555;
        text-decoration: none;
        font-weight: bold;
    }
    .footer-social a:hover {
        background-color: #e0e0e0;
        color: #222;
    }
    @media (max-width: 768px) {
        .footer-container {
            flex-direction: column;
            padding: 30px 15px;
        }
        .footer-left, .footer-right {
            padding-right: 0;
            width: 100%;
        }
        .footer-left {
            margin-bottom: 40px;
        }
    }

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

    .cookie-cv3__box {
        border-radius: var(--radius-xl);
        padding: 16px;
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
    }

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

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

    .cookie-cv3__actions {
        margin-top: 12px;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-cv3__actions a {
        text-decoration: none;
        border: 1px solid rgba(255, 255, 255, 0.3);
        background: rgba(255, 255, 255, 0.16);
        color: inherit;
        border-radius: 999px;
        padding: 7px 11px;
    }

    .cookie-cv3__actions a[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;
    letter-spacing: -0.5px;
    transition: color var(--anim-duration) var(--anim-ease);
}

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

.burger-menu {
    display: none;
    order: 2;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
    position: absolute;
    right: var(--space-x);
    top: var(--space-y);
}

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

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

.header-nav {
    order: 3;
    width: 100%;
}

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

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

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

.nav-link[href="index.html"] {
    color: var(--brand);
}

@media (max-width: 767px) {
    .header-container {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        position: relative;
        gap: 0;
    }

    .header-logo {
        order: 1;
        flex: 1;
    }

    .burger-menu {
        display: flex;
        order: 2;
    }

    .header-nav {
        order: 3;
        flex-basis: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--anim-duration) var(--anim-ease);
    }

    .header-nav[data-state="open"] {
        max-height: 300px;
    }

    .nav-list {
        flex-direction: column;
        align-items: center;
        padding: var(--space-y) 0;
        gap: calc(var(--gap) / 2);
    }

    .nav-link {
        display: block;
        width: 100%;
        text-align: center;
        padding: var(--space-y) var(--space-x);
    }
}

.footer-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        max-width: 1200px;
        margin: 0 auto;
        padding: 40px 20px;
        font-family: sans-serif;
        color: #333;
        border-top: 1px solid #eee;
    }
    .footer-left, .footer-right {
        box-sizing: border-box;
    }
    .footer-left {
        flex: 1;
        min-width: 300px;
        padding-right: 40px;
        margin-bottom: 30px;
    }
    .footer-right {
        flex: 1;
        min-width: 300px;
        display: flex;
        flex-direction: column;
    }
    .footer-brand {
        font-size: 2em;
        font-weight: bold;
        margin-bottom: 15px;
        color: #222;
    }
    .copyright {
        font-size: 0.9em;
        color: #666;
        margin-bottom: 20px;
    }
    .footer-disclaimer {
        font-size: 0.8em;
        color: #888;
        line-height: 1.4;
        margin-bottom: 20px;
        padding: 10px;
        background-color: #f9f9f9;
        border-radius: 4px;
    }
    .footer-legal-links {
        font-size: 0.85em;
    }
    .footer-legal-links a {
        color: #666;
        text-decoration: none;
    }
    .footer-legal-links a:hover {
        text-decoration: underline;
        color: #000;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0 0 25px 0;
    }
    .footer-nav li {
        margin-bottom: 10px;
    }
    .footer-nav a {
        text-decoration: none;
        color: #444;
        font-weight: 500;
    }
    .footer-nav a:hover {
        color: #000;
        text-decoration: underline;
    }
    .footer-contacts {
        margin-bottom: 25px;
        line-height: 1.6;
    }
    .footer-contacts p {
        margin: 5px 0;
        font-size: 0.95em;
    }
    .footer-contacts a {
        color: #444;
        text-decoration: none;
    }
    .footer-contacts a:hover {
        text-decoration: underline;
        color: #000;
    }
    .footer-social {
        display: flex;
        gap: 15px;
    }
    .footer-social a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        background-color: #f0f0f0;
        border-radius: 50%;
        color: #555;
        text-decoration: none;
        font-weight: bold;
    }
    .footer-social a:hover {
        background-color: #e0e0e0;
        color: #222;
    }
    @media (max-width: 768px) {
        .footer-container {
            flex-direction: column;
            padding: 30px 15px;
        }
        .footer-left, .footer-right {
            padding-right: 0;
            width: 100%;
        }
        .footer-left {
            margin-bottom: 40px;
        }
    }

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

    .cookie-cv3__box {
        border-radius: var(--radius-xl);
        padding: 16px;
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
    }

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

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

    .cookie-cv3__actions {
        margin-top: 12px;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-cv3__actions a {
        text-decoration: none;
        border: 1px solid rgba(255, 255, 255, 0.3);
        background: rgba(255, 255, 255, 0.16);
        color: inherit;
        border-radius: 999px;
        padding: 7px 11px;
    }

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

.thank-mode-e {
        padding: clamp(58px, 10vw, 114px) 18px;
        background: repeating-linear-gradient(135deg, var(--bg-alt), var(--bg-alt) 16px, var(--neutral-0) 16px, var(--neutral-0) 32px);
        color: var(--fg-on-page);
    }

    .thank-mode-e .wrap {
        max-width: 720px;
        margin: 0 auto;
        text-align: center;
        padding: clamp(28px, 4vw, 42px);
        background: var(--surface-1);
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-md);
    }

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

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

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

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    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;
    letter-spacing: -0.5px;
    transition: color var(--anim-duration) var(--anim-ease);
}

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

.burger-menu {
    display: none;
    order: 2;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
    position: absolute;
    right: var(--space-x);
    top: var(--space-y);
}

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

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

.header-nav {
    order: 3;
    width: 100%;
}

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

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

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

.nav-link[href="index.html"] {
    color: var(--brand);
}

@media (max-width: 767px) {
    .header-container {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        position: relative;
        gap: 0;
    }

    .header-logo {
        order: 1;
        flex: 1;
    }

    .burger-menu {
        display: flex;
        order: 2;
    }

    .header-nav {
        order: 3;
        flex-basis: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--anim-duration) var(--anim-ease);
    }

    .header-nav[data-state="open"] {
        max-height: 300px;
    }

    .nav-list {
        flex-direction: column;
        align-items: center;
        padding: var(--space-y) 0;
        gap: calc(var(--gap) / 2);
    }

    .nav-link {
        display: block;
        width: 100%;
        text-align: center;
        padding: var(--space-y) var(--space-x);
    }
}

.footer-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        max-width: 1200px;
        margin: 0 auto;
        padding: 40px 20px;
        font-family: sans-serif;
        color: #333;
        border-top: 1px solid #eee;
    }
    .footer-left, .footer-right {
        box-sizing: border-box;
    }
    .footer-left {
        flex: 1;
        min-width: 300px;
        padding-right: 40px;
        margin-bottom: 30px;
    }
    .footer-right {
        flex: 1;
        min-width: 300px;
        display: flex;
        flex-direction: column;
    }
    .footer-brand {
        font-size: 2em;
        font-weight: bold;
        margin-bottom: 15px;
        color: #222;
    }
    .copyright {
        font-size: 0.9em;
        color: #666;
        margin-bottom: 20px;
    }
    .footer-disclaimer {
        font-size: 0.8em;
        color: #888;
        line-height: 1.4;
        margin-bottom: 20px;
        padding: 10px;
        background-color: #f9f9f9;
        border-radius: 4px;
    }
    .footer-legal-links {
        font-size: 0.85em;
    }
    .footer-legal-links a {
        color: #666;
        text-decoration: none;
    }
    .footer-legal-links a:hover {
        text-decoration: underline;
        color: #000;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0 0 25px 0;
    }
    .footer-nav li {
        margin-bottom: 10px;
    }
    .footer-nav a {
        text-decoration: none;
        color: #444;
        font-weight: 500;
    }
    .footer-nav a:hover {
        color: #000;
        text-decoration: underline;
    }
    .footer-contacts {
        margin-bottom: 25px;
        line-height: 1.6;
    }
    .footer-contacts p {
        margin: 5px 0;
        font-size: 0.95em;
    }
    .footer-contacts a {
        color: #444;
        text-decoration: none;
    }
    .footer-contacts a:hover {
        text-decoration: underline;
        color: #000;
    }
    .footer-social {
        display: flex;
        gap: 15px;
    }
    .footer-social a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        background-color: #f0f0f0;
        border-radius: 50%;
        color: #555;
        text-decoration: none;
        font-weight: bold;
    }
    .footer-social a:hover {
        background-color: #e0e0e0;
        color: #222;
    }
    @media (max-width: 768px) {
        .footer-container {
            flex-direction: column;
            padding: 30px 15px;
        }
        .footer-left, .footer-right {
            padding-right: 0;
            width: 100%;
        }
        .footer-left {
            margin-bottom: 40px;
        }
    }

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

    .cookie-cv3__box {
        border-radius: var(--radius-xl);
        padding: 16px;
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
    }

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

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

    .cookie-cv3__actions {
        margin-top: 12px;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-cv3__actions a {
        text-decoration: none;
        border: 1px solid rgba(255, 255, 255, 0.3);
        background: rgba(255, 255, 255, 0.16);
        color: inherit;
        border-radius: 999px;
        padding: 7px 11px;
    }

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

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

    .err-slab-f .chip {
        max-width: 760px;
        margin: 0 auto;
        text-align: center;
        padding: clamp(28px, 4vw, 46px);
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-on-surface-light);
        box-shadow: var(--shadow-sm);
        position: relative;
    }

    .err-slab-f .chip::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 6px;
        border-radius: var(--radius-lg) var(--radius-lg) 0 0;
        background: var(--gradient-accent);
    }

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

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

    .err-slab-f a {
        display: inline-block;
        margin-top: 18px;
        padding: 10px 16px;
        border-radius: var(--radius-sm);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        text-decoration: none;
    }