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

  --max-w: 1080px;
  --space-x: 1.24rem;
  --space-y: 1.5rem;
  --gap: 1.69rem;

  --radius-xl: 1.12rem;
  --radius-lg: 1rem;
  --radius-md: 0.67rem;
  --radius-sm: 0.27rem;

  --shadow-sm: 0 1px 8px rgba(0,0,0,0.23);
  --shadow-md: 0 8px 18px rgba(0,0,0,0.3);
  --shadow-lg: 0 26px 42px rgba(0,0,0,0.36);

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

  --brand: #0056b3;
  --brand-contrast: #ffffff;
  --accent: #e63946;
  --accent-contrast: #ffffff;

  --neutral-0: #ffffff;
  --neutral-100: #f8f9fa;
  --neutral-300: #dee2e6;
  --neutral-600: #6c757d;
  --neutral-800: #343a40;
  --neutral-900: #212529;

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

  --bg-alt: #f8f9fa;
  --fg-on-alt: #495057;

  --surface-1: #ffffff;
  --surface-2: #f8f9fa;
  --fg-on-surface: #212529;
  --border-on-surface: #dee2e6;

  --surface-light: rgba(255, 255, 255, 0.9);
  --fg-on-surface-light: #343a40;
  --border-on-surface-light: rgba(222, 226, 230, 0.7);

  --bg-primary: #0056b3;
  --fg-on-primary: #ffffff;
  --bg-primary-hover: #004494;
  --ring: rgba(0, 86, 179, 0.4);

  --bg-accent: #ffeaea;
  --fg-on-accent: #a81c28;
  --bg-accent-hover: #ff6b7a;

  --link: #0056b3;
  --link-hover: #004494;

  --gradient-hero: linear-gradient(135deg, #0056b3 0%, #0077e6 100%);
  --gradient-accent: linear-gradient(90deg, #e63946 0%, #ff6b7a 100%);

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

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    padding: var(--space-y) 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}
.header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
}
.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    transition: color var(--anim-duration) var(--anim-ease);
}
.logo:hover {
    color: var(--accent);
}
.main-nav {
    display: flex;
}
.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: calc(var(--gap) * 1.5);
}
.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
}
.nav-link:hover,
.nav-link:focus-visible {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}
.burger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
}
.burger-line {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
.burger-btn[aria-expanded="true"] .burger-line:nth-child(1) {
    transform: translateY(0.65rem) rotate(45deg);
}
.burger-btn[aria-expanded="true"] .burger-line:nth-child(2) {
    opacity: 0;
}
.burger-btn[aria-expanded="true"] .burger-line:nth-child(3) {
    transform: translateY(-0.65rem) rotate(-45deg);
}

@media (max-width: 767px) {
    .burger-btn {
        display: flex;
    }
    .main-nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: var(--overlay);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        display: flex;
        align-items: center;
        justify-content: center;
        transform: translateX(100%);
        transition: transform var(--anim-duration) var(--anim-ease);
        z-index: 999;
    }
    .main-nav.is-active {
        transform: translateX(0);
    }
    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: var(--gap);
    }
    .nav-link {
        font-size: calc(var(--font-size-base) * 1.25);
        padding: var(--space-y) var(--space-x);
    }
}

.footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 2.5rem 1.5rem 1.5rem;
        font-family: 'Segoe UI', system-ui, sans-serif;
        color: #333;
        border-top: 1px solid #eaeaea;
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
        gap: 2rem;
    }
    .footer-brand {
        grid-column: 1;
        grid-row: 1;
    }
    .footer-brand .logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c5282;
        margin-bottom: 0.5rem;
    }
    .footer-brand .tagline {
        font-size: 0.95rem;
        color: #666;
        line-height: 1.4;
    }
    .footer-right {
        grid-column: 2;
        grid-row: 1;
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .footer-nav a {
        text-decoration: none;
        color: #444;
        font-weight: 500;
        transition: color 0.2s ease;
    }
    .footer-nav a:hover {
        color: #2c5282;
    }
    .footer-legal-links {
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
        font-size: 0.85rem;
    }
    .footer-legal-links a {
        text-decoration: none;
        color: #666;
    }
    .footer-legal-links a:hover {
        text-decoration: underline;
        color: #2c5282;
    }
    .footer-contacts {
        grid-column: 1 / span 2;
        grid-row: 2;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
        padding-top: 1rem;
        border-top: 1px solid #eee;
        font-size: 0.95rem;
    }
    .footer-contacts > div {
        color: #555;
    }
    .footer-contacts a {
        color: #2c5282;
        text-decoration: none;
    }
    .footer-contacts a:hover {
        text-decoration: underline;
    }
    .footer-bottom {
        grid-column: 1 / span 2;
        grid-row: 3;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        padding-top: 1.5rem;
        border-top: 1px solid #eee;
        font-size: 0.8rem;
        color: #777;
        gap: 1rem;
    }
    .disclaimer {
        text-align: right;
        max-width: 500px;
        line-height: 1.4;
    }
    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            grid-template-rows: auto auto auto auto;
            gap: 1.5rem;
        }
        .footer-brand,
        .footer-right,
        .footer-contacts,
        .footer-bottom {
            grid-column: 1;
        }
        .footer-brand { grid-row: 1; }
        .footer-right { grid-row: 2; }
        .footer-contacts {
            grid-row: 3;
            flex-direction: column;
            gap: 0.75rem;
        }
        .footer-bottom {
            grid-row: 4;
            flex-direction: column;
            align-items: flex-start;
            text-align: left;
            gap: 0.75rem;
        }
        .disclaimer {
            text-align: left;
        }
        .footer-nav ul {
            flex-direction: column;
            gap: 0.75rem;
        }
    }

.cookie-cv1 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
        background: var(--accent);
        color: var(--accent-contrast);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv1__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: var(--space-y) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .cookie-cv1__text strong {
        display: block;
        margin-bottom: 4px;
    }

    .cookie-cv1__text p {
        margin: 0;
        opacity: .95;
    }

    .cookie-cv1__actions {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

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

    .cookie-cv1__actions button[data-choice='accept'] {
        background: var(--neutral-900);
        color: var(--neutral-0);
    }

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

.intro-block-l10 {
        padding: clamp(3.5rem, 8vw, 6.4rem) var(--space-x);
        background: linear-gradient(180deg, var(--surface-1), var(--surface-2));
        color: var(--fg-on-page);
    }

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

    .intro-block-l10__eyebrow {
        color: var(--brand);
        font-size: .82rem;
        letter-spacing: .1em;
        text-transform: uppercase;
    }

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

    .intro-block-l10__cols {
        margin-top: 1.15rem;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .intro-block-l10__cols strong {
        display: block;
        color: var(--fg-on-page);
    }

    .intro-block-l10__cols p {
        margin: .7rem 0 0;
        color: var(--neutral-600);
    }

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

    .intro-block-l10__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);
        background: var(--surface-1);
        color: var(--fg-on-page);
    }

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

    @media (max-width: 760px) {
        .intro-block-l10__cols {
            grid-template-columns: 1fr;
        }
    }

    .intro-block-l10 {
        overflow: hidden;
    }

    .intro-block-l10__wrap {
        background-image: linear-gradient(rgba(255, 255, 255, .86), rgba(255, 255, 255, .86)), url('https://images.pexels.com/photos/3862632/pexels-photo-3862632.jpeg?auto=compress&cs=tinysrgb&w=800');
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        border-radius: var(--radius-xl);
        overflow: hidden;
        padding: var(--space-x)
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .index-recommendations-light__h {
        text-align: center;
        margin-bottom: clamp(24px, 6vw, 52px);

        transform: translateY(-18px);
    }

    .index-recommendations-light__h h2 {
        margin: 0 0 10px;
        font-size: clamp(28px, 4.6vw, 48px);
        letter-spacing: -0.02em;
    }

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

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

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

        transform: translateY(26px);
        position: relative;
        overflow: hidden;
    }

    .index-recommendations-light__card::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 20% 15%, rgba(248, 225, 231, 0.45), transparent 55%);
        pointer-events: none;
    }

    .index-recommendations-light__card h3 {
        margin: 0 0 10px;
        position: relative;
        z-index: 1;
        font-size: 18px;
        font-weight: 900;
        letter-spacing: -0.01em;
        color: var(--fg-on-page);
    }

    .index-recommendations-light__card p {
        margin: 0 0 14px;
        position: relative;
        z-index: 1;
        color: var(--fg-on-surface-light);
        font-size: 14px;
        line-height: 1.65;
    }

    .index-recommendations-light__cta {
        position: relative;
        z-index: 1;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        text-decoration: none;
        padding: 10px 14px;
        border-radius: 999px;
        background: var(--bg-primary);
        border: 1px solid var(--ring);
        color: var(--fg-on-primary);
        font-weight: 800;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        font-size: 11px;
        transition: transform var(--anim-duration) var(--anim-ease), background var(--anim-duration) var(--anim-ease);
    }

    .index-recommendations-light__cta::after {
        content: '->';
        font-size: 12px;
    }

    .index-recommendations-light__cta:hover {
        background: var(--bg-primary-hover);
        transform: translateY(-2px);
    }

.why-choose {

        padding: clamp(16px, 3vw, 44px);
    }

    .why-choose--colored.why-choose--v2 {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
    }

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

    .why-choose__top {
        display: grid;
        grid-template-columns:1.35fr 0.65fr;
        gap: clamp(14px, 2vw, 20px);
        align-items: start;
        margin-bottom: clamp(14px, 2.4vw, 26px);
    }

    .why-choose__title {
        margin: 0;
        font-size: clamp(26px, 4.6vw, 42px);
        line-height: 1.1;
        color: var(--fg-on-primary);
        letter-spacing: -0.02em;
    }

    .why-choose__subtitle {
        margin: 10px 0 0;
        color: rgba(255, 255, 255, 0.8);
        max-width: 68ch;
    }

    .why-choose__stats {
        display: grid;
        gap: 12px;
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-xl);
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.16);
        box-shadow: var(--shadow-md);
    }

    .why-choose__statValue {
        font-size: clamp(20px, 2.8vw, 28px);
        font-weight: 700;
        color: var(--fg-on-primary);
    }

    .why-choose__statLabel {
        margin-top: 4px;
        color: rgba(255, 255, 255, 0.78);
        font-size: 0.9rem;
    }

    .why-choose__list {
        display: grid;
        gap: 12px;
    }

    .why-choose__row {
        position: relative;
        display: grid;
        grid-template-columns:18px 1fr;
        gap: 12px;
        padding: clamp(14px, 2vw, 18px);
        border-radius: var(--radius-xl);
        background: rgba(0, 0, 0, 0.12);
        border: 1px solid rgba(255, 255, 255, 0.14);
        box-shadow: var(--shadow-sm);
        overflow: hidden;
        transition: transform var(--anim-duration) var(--anim-ease);
        will-change: transform;
    }

    .why-choose__row:hover {
        transform: translateY(-3px);
    }

    /* SHIMMER SWEEP */
    .why-choose__row::after {
        content: '';
        position: absolute;
        inset: -40px -60px;
        transform: translateX(-120%) rotate(12deg);
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);

        pointer-events: none;
    }

    .why-choose__row:hover::after {
        opacity: 1;
        animation: whyChooseShimmer 900ms var(--anim-ease) 1;
    }

    @keyframes whyChooseShimmer {
        0% {
            transform: translateX(-120%) rotate(12deg);
        }
        100% {
            transform: translateX(120%) rotate(12deg);
        }
    }

    .why-choose__bullet {
        width: 12px;
        height: 12px;
        border-radius: 999px;
        margin-top: 6px;
        background: var(--accent);
        box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.12);
    }

    .why-choose__rowTitle {
        font-weight: 700;
        color: var(--fg-on-primary);
        margin-bottom: 6px;
    }

    .why-choose__rowText {
        color: rgba(255, 255, 255, 0.78);
        line-height: var(--line-height-base);
    }

    @media (max-width: 920px) {
        .why-choose__top {
            grid-template-columns:1fr;
        }
    }

    @media (prefers-reduced-motion: reduce) {
        .why-choose__row {
            transition: none;
        }

        .why-choose__row::after {
            display: 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: 1000;
    box-shadow: var(--shadow-sm);
}
.header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
}
.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    transition: color var(--anim-duration) var(--anim-ease);
}
.logo:hover {
    color: var(--accent);
}
.main-nav {
    display: flex;
}
.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: calc(var(--gap) * 1.5);
}
.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
}
.nav-link:hover,
.nav-link:focus-visible {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}
.burger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
}
.burger-line {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
.burger-btn[aria-expanded="true"] .burger-line:nth-child(1) {
    transform: translateY(0.65rem) rotate(45deg);
}
.burger-btn[aria-expanded="true"] .burger-line:nth-child(2) {
    opacity: 0;
}
.burger-btn[aria-expanded="true"] .burger-line:nth-child(3) {
    transform: translateY(-0.65rem) rotate(-45deg);
}

@media (max-width: 767px) {
    .burger-btn {
        display: flex;
    }
    .main-nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: var(--overlay);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        display: flex;
        align-items: center;
        justify-content: center;
        transform: translateX(100%);
        transition: transform var(--anim-duration) var(--anim-ease);
        z-index: 999;
    }
    .main-nav.is-active {
        transform: translateX(0);
    }
    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: var(--gap);
    }
    .nav-link {
        font-size: calc(var(--font-size-base) * 1.25);
        padding: var(--space-y) var(--space-x);
    }
}

.footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 2.5rem 1.5rem 1.5rem;
        font-family: 'Segoe UI', system-ui, sans-serif;
        color: #333;
        border-top: 1px solid #eaeaea;
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
        gap: 2rem;
    }
    .footer-brand {
        grid-column: 1;
        grid-row: 1;
    }
    .footer-brand .logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c5282;
        margin-bottom: 0.5rem;
    }
    .footer-brand .tagline {
        font-size: 0.95rem;
        color: #666;
        line-height: 1.4;
    }
    .footer-right {
        grid-column: 2;
        grid-row: 1;
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .footer-nav a {
        text-decoration: none;
        color: #444;
        font-weight: 500;
        transition: color 0.2s ease;
    }
    .footer-nav a:hover {
        color: #2c5282;
    }
    .footer-legal-links {
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
        font-size: 0.85rem;
    }
    .footer-legal-links a {
        text-decoration: none;
        color: #666;
    }
    .footer-legal-links a:hover {
        text-decoration: underline;
        color: #2c5282;
    }
    .footer-contacts {
        grid-column: 1 / span 2;
        grid-row: 2;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
        padding-top: 1rem;
        border-top: 1px solid #eee;
        font-size: 0.95rem;
    }
    .footer-contacts > div {
        color: #555;
    }
    .footer-contacts a {
        color: #2c5282;
        text-decoration: none;
    }
    .footer-contacts a:hover {
        text-decoration: underline;
    }
    .footer-bottom {
        grid-column: 1 / span 2;
        grid-row: 3;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        padding-top: 1.5rem;
        border-top: 1px solid #eee;
        font-size: 0.8rem;
        color: #777;
        gap: 1rem;
    }
    .disclaimer {
        text-align: right;
        max-width: 500px;
        line-height: 1.4;
    }
    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            grid-template-rows: auto auto auto auto;
            gap: 1.5rem;
        }
        .footer-brand,
        .footer-right,
        .footer-contacts,
        .footer-bottom {
            grid-column: 1;
        }
        .footer-brand { grid-row: 1; }
        .footer-right { grid-row: 2; }
        .footer-contacts {
            grid-row: 3;
            flex-direction: column;
            gap: 0.75rem;
        }
        .footer-bottom {
            grid-row: 4;
            flex-direction: column;
            align-items: flex-start;
            text-align: left;
            gap: 0.75rem;
        }
        .disclaimer {
            text-align: left;
        }
        .footer-nav ul {
            flex-direction: column;
            gap: 0.75rem;
        }
    }

.cookie-cv1 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
        background: var(--accent);
        color: var(--accent-contrast);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv1__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: var(--space-y) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .cookie-cv1__text strong {
        display: block;
        margin-bottom: 4px;
    }

    .cookie-cv1__text p {
        margin: 0;
        opacity: .95;
    }

    .cookie-cv1__actions {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

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

    .cookie-cv1__actions button[data-choice='accept'] {
        background: var(--neutral-900);
        color: var(--neutral-0);
    }

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

.gallery--colored-v5 {
    padding: 60px 20px;
    background: var(--neutral-900);
    color: var(--neutral-0);
}

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

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

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

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

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 10px;
}

.gallery__item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(148,163,184,0.6);
}

.gallery__item--featured {
    border-color: var(--accent);
}

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

.gallery__item figcaption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 8px 10px;
    background: linear-gradient(to top, rgba(15,23,42,0.9), transparent);
    font-size: 0.85rem;
}

.about-mission {

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

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

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

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

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

.identity-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: 12px;
        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: 1000;
    box-shadow: var(--shadow-sm);
}
.header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
}
.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    transition: color var(--anim-duration) var(--anim-ease);
}
.logo:hover {
    color: var(--accent);
}
.main-nav {
    display: flex;
}
.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: calc(var(--gap) * 1.5);
}
.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
}
.nav-link:hover,
.nav-link:focus-visible {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}
.burger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
}
.burger-line {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
.burger-btn[aria-expanded="true"] .burger-line:nth-child(1) {
    transform: translateY(0.65rem) rotate(45deg);
}
.burger-btn[aria-expanded="true"] .burger-line:nth-child(2) {
    opacity: 0;
}
.burger-btn[aria-expanded="true"] .burger-line:nth-child(3) {
    transform: translateY(-0.65rem) rotate(-45deg);
}

@media (max-width: 767px) {
    .burger-btn {
        display: flex;
    }
    .main-nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: var(--overlay);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        display: flex;
        align-items: center;
        justify-content: center;
        transform: translateX(100%);
        transition: transform var(--anim-duration) var(--anim-ease);
        z-index: 999;
    }
    .main-nav.is-active {
        transform: translateX(0);
    }
    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: var(--gap);
    }
    .nav-link {
        font-size: calc(var(--font-size-base) * 1.25);
        padding: var(--space-y) var(--space-x);
    }
}

.footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 2.5rem 1.5rem 1.5rem;
        font-family: 'Segoe UI', system-ui, sans-serif;
        color: #333;
        border-top: 1px solid #eaeaea;
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
        gap: 2rem;
    }
    .footer-brand {
        grid-column: 1;
        grid-row: 1;
    }
    .footer-brand .logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c5282;
        margin-bottom: 0.5rem;
    }
    .footer-brand .tagline {
        font-size: 0.95rem;
        color: #666;
        line-height: 1.4;
    }
    .footer-right {
        grid-column: 2;
        grid-row: 1;
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .footer-nav a {
        text-decoration: none;
        color: #444;
        font-weight: 500;
        transition: color 0.2s ease;
    }
    .footer-nav a:hover {
        color: #2c5282;
    }
    .footer-legal-links {
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
        font-size: 0.85rem;
    }
    .footer-legal-links a {
        text-decoration: none;
        color: #666;
    }
    .footer-legal-links a:hover {
        text-decoration: underline;
        color: #2c5282;
    }
    .footer-contacts {
        grid-column: 1 / span 2;
        grid-row: 2;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
        padding-top: 1rem;
        border-top: 1px solid #eee;
        font-size: 0.95rem;
    }
    .footer-contacts > div {
        color: #555;
    }
    .footer-contacts a {
        color: #2c5282;
        text-decoration: none;
    }
    .footer-contacts a:hover {
        text-decoration: underline;
    }
    .footer-bottom {
        grid-column: 1 / span 2;
        grid-row: 3;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        padding-top: 1.5rem;
        border-top: 1px solid #eee;
        font-size: 0.8rem;
        color: #777;
        gap: 1rem;
    }
    .disclaimer {
        text-align: right;
        max-width: 500px;
        line-height: 1.4;
    }
    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            grid-template-rows: auto auto auto auto;
            gap: 1.5rem;
        }
        .footer-brand,
        .footer-right,
        .footer-contacts,
        .footer-bottom {
            grid-column: 1;
        }
        .footer-brand { grid-row: 1; }
        .footer-right { grid-row: 2; }
        .footer-contacts {
            grid-row: 3;
            flex-direction: column;
            gap: 0.75rem;
        }
        .footer-bottom {
            grid-row: 4;
            flex-direction: column;
            align-items: flex-start;
            text-align: left;
            gap: 0.75rem;
        }
        .disclaimer {
            text-align: left;
        }
        .footer-nav ul {
            flex-direction: column;
            gap: 0.75rem;
        }
    }

.cookie-cv1 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
        background: var(--accent);
        color: var(--accent-contrast);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv1__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: var(--space-y) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .cookie-cv1__text strong {
        display: block;
        margin-bottom: 4px;
    }

    .cookie-cv1__text p {
        margin: 0;
        opacity: .95;
    }

    .cookie-cv1__actions {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

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

    .cookie-cv1__actions button[data-choice='accept'] {
        background: var(--neutral-900);
        color: var(--neutral-0);
    }

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

.hiw-canvas-l8 {
        padding: clamp(3.2rem, 7vw, 5.8rem) var(--space-x);
        background: var(--bg-alt);
        color: var(--fg-on-page);
    }

    .hiw-canvas-l8__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        gap: 1.4rem;
        align-items: start;
        flex-wrap: wrap;
    }

    .hiw-canvas-l8__media {
        flex: 1 1 18rem;
        order: calc(3 - var(--random-number));
    }

    .hiw-canvas-l8__content {
        flex: 1 1 22rem;
        order: var(--random-number);
    }

    .hiw-canvas-l8__media img {
        display: block;
        width: 100%;
        border-radius: var(--radius-xl);
        border: 1px solid var(--border-on-surface-light);
    }

    .hiw-canvas-l8__content p:first-child {
        margin: 0;
        color: var(--neutral-600);
    }

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

    .hiw-canvas-l8__stack p {
        margin: .8rem 0 0;
        color: var(--neutral-600);
    }

    .hiw-canvas-l8__notes {
        margin-top: 1rem;
        display: flex;
        gap: .65rem;
        flex-wrap: wrap;
        align-items: center;
    }

    .hiw-canvas-l8__notes strong {
        color: var(--brand);
        margin-right: .25rem;
    }

    .hiw-canvas-l8__notes span {
        display: inline-flex;
        padding: .55rem .8rem;
        border-radius: 999px;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface-light);
    }

.index-feedback {
        background: radial-gradient(circle at 20% 25%, rgba(255, 255, 255, 0.7), transparent 60%),
        radial-gradient(circle at 85% 65%, rgba(212, 165, 165, 0.35), transparent 55%),
        var(--gradient-accent);
        color: var(--fg-on-primary);
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 40px);
        overflow: hidden;
    }

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

    .index-feedback__h {
        text-align: center;
        margin-bottom: clamp(28px, 6vw, 60px);

        transform: translateY(-18px);
    }

    .index-feedback__eyebrow {
        margin: 0 0 10px;
        text-transform: uppercase;
        letter-spacing: 0.22em;
        font-size: 12px;
        color: rgba(58, 46, 61, 0.75);
    }

    .index-feedback__h h2 {
        margin: 0;
        font-size: clamp(28px, 4.6vw, 48px);
        letter-spacing: -0.02em;
    }

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

    .index-feedback__card {
        border-radius: var(--radius-xl);
        border: 1px solid rgba(58, 46, 61, 0.12);
        background: rgba(255, 255, 255, 0.6);
        box-shadow: var(--shadow-lg);
        padding: clamp(18px, 3vw, 26px);
        backdrop-filter: blur(10px);

        transform: translateY(28px);
        position: relative;
        overflow: hidden;
    }

    .index-feedback__card::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.6), transparent 55%);
        opacity: 0.6;
        pointer-events: none;
    }

    .index-feedback__top {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 14px;
        position: relative;
        z-index: 1;
    }

    .index-feedback__who {
        display: flex;
        align-items: center;
        gap: 12px;
        min-width: 0;
    }

    .index-feedback__name {
        margin: 0;
        font-size: 16px;
        font-weight: 700;
        color: var(--fg-on-page);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 18ch;
    }

    .index-feedback__meta {
        margin: 2px 0 0;
        font-size: 13px;
        color: rgba(58, 46, 61, 0.7);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 22ch;
    }

    .index-feedback__rating {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 8px 10px;
        border-radius: 999px;
        background: var(--bg-page);
        border: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-sm);
        flex: 0 0 auto;
    }

    .index-feedback__stars {
        font-size: 14px;
        letter-spacing: 0.08em;
        color: var(--accent);
        line-height: 1;
    }

    .index-feedback__score {
        font-size: 12px;
        font-weight: 700;
        color: var(--fg-on-page);
    }

    .index-feedback__quote {
        margin: 14px 0 0;
        position: relative;
        z-index: 1;
        color: rgba(58, 46, 61, 0.88);
        font-size: 14px;
        line-height: 1.65;
    }

    .index-feedback__badge {
        display: inline-flex;
        margin-top: 12px;
        position: relative;
        z-index: 1;
        padding: 6px 10px;
        border-radius: 999px;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border: 1px solid var(--border-on-surface-light);
        font-size: 11px;
        letter-spacing: 0.14em;
        text-transform: uppercase;
    }

.social-l2 {

        padding: clamp(18px, 3vw, 44px);
        background: var(--bg-alt);
        color: var(--fg-on-alt);
    }

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

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

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

    .social-l2__sub {
        margin: 10px 0 0;
        max-width: 72ch;
        color: var(--neutral-600);
    }

    .social-l2__wrap {
        border-radius: var(--radius-xl);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-lg);
        overflow: hidden;
    }

    .social-l2__quoteBox {
        padding: 18px;
        border-bottom: 1px solid var(--border-on-surface);
        position: relative;
    }

    .social-l2__quote {
        display: none;
    }

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

    .social-l2__q {
        font-size: clamp(16px, 2.2vw, 20px);
        line-height: 1.7;
        color: var(--fg-on-page);
        letter-spacing: -.01em;
    }

    .social-l2__m {
        margin-top: 12px;
        color: var(--neutral-600);
        font-weight: 800;
    }

    .social-l2__badges {
        overflow: hidden;
        background: var(--bg-alt);
    }

    .social-l2__badgeTrack {
        display: flex;
        gap: 10px;
        padding: 12px;
        width: max-content;
        animation: socialL2Badges 16s linear infinite;
    }

    @keyframes socialL2Badges {
        0% {
            transform: translateX(0)
        }
        100% {
            transform: translateX(-50%)
        }
    }

    .social-l2__badge {
        display: inline-flex;
        align-items: center;
        padding: 8px 12px;
        border-radius: 999px;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border: 1px solid rgba(0, 0, 0, 0.06);
        font-weight: 900;
        white-space: nowrap;
    }

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

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

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

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

.statistics__card {
    padding: clamp(16px, 3vw, 32px);
    background-color: var(--surface-light);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-on-surface-light);
}

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

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

.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: 1000;
    box-shadow: var(--shadow-sm);
}
.header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
}
.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    transition: color var(--anim-duration) var(--anim-ease);
}
.logo:hover {
    color: var(--accent);
}
.main-nav {
    display: flex;
}
.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: calc(var(--gap) * 1.5);
}
.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
}
.nav-link:hover,
.nav-link:focus-visible {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}
.burger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
}
.burger-line {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
.burger-btn[aria-expanded="true"] .burger-line:nth-child(1) {
    transform: translateY(0.65rem) rotate(45deg);
}
.burger-btn[aria-expanded="true"] .burger-line:nth-child(2) {
    opacity: 0;
}
.burger-btn[aria-expanded="true"] .burger-line:nth-child(3) {
    transform: translateY(-0.65rem) rotate(-45deg);
}

@media (max-width: 767px) {
    .burger-btn {
        display: flex;
    }
    .main-nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: var(--overlay);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        display: flex;
        align-items: center;
        justify-content: center;
        transform: translateX(100%);
        transition: transform var(--anim-duration) var(--anim-ease);
        z-index: 999;
    }
    .main-nav.is-active {
        transform: translateX(0);
    }
    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: var(--gap);
    }
    .nav-link {
        font-size: calc(var(--font-size-base) * 1.25);
        padding: var(--space-y) var(--space-x);
    }
}

.footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 2.5rem 1.5rem 1.5rem;
        font-family: 'Segoe UI', system-ui, sans-serif;
        color: #333;
        border-top: 1px solid #eaeaea;
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
        gap: 2rem;
    }
    .footer-brand {
        grid-column: 1;
        grid-row: 1;
    }
    .footer-brand .logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c5282;
        margin-bottom: 0.5rem;
    }
    .footer-brand .tagline {
        font-size: 0.95rem;
        color: #666;
        line-height: 1.4;
    }
    .footer-right {
        grid-column: 2;
        grid-row: 1;
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .footer-nav a {
        text-decoration: none;
        color: #444;
        font-weight: 500;
        transition: color 0.2s ease;
    }
    .footer-nav a:hover {
        color: #2c5282;
    }
    .footer-legal-links {
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
        font-size: 0.85rem;
    }
    .footer-legal-links a {
        text-decoration: none;
        color: #666;
    }
    .footer-legal-links a:hover {
        text-decoration: underline;
        color: #2c5282;
    }
    .footer-contacts {
        grid-column: 1 / span 2;
        grid-row: 2;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
        padding-top: 1rem;
        border-top: 1px solid #eee;
        font-size: 0.95rem;
    }
    .footer-contacts > div {
        color: #555;
    }
    .footer-contacts a {
        color: #2c5282;
        text-decoration: none;
    }
    .footer-contacts a:hover {
        text-decoration: underline;
    }
    .footer-bottom {
        grid-column: 1 / span 2;
        grid-row: 3;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        padding-top: 1.5rem;
        border-top: 1px solid #eee;
        font-size: 0.8rem;
        color: #777;
        gap: 1rem;
    }
    .disclaimer {
        text-align: right;
        max-width: 500px;
        line-height: 1.4;
    }
    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            grid-template-rows: auto auto auto auto;
            gap: 1.5rem;
        }
        .footer-brand,
        .footer-right,
        .footer-contacts,
        .footer-bottom {
            grid-column: 1;
        }
        .footer-brand { grid-row: 1; }
        .footer-right { grid-row: 2; }
        .footer-contacts {
            grid-row: 3;
            flex-direction: column;
            gap: 0.75rem;
        }
        .footer-bottom {
            grid-row: 4;
            flex-direction: column;
            align-items: flex-start;
            text-align: left;
            gap: 0.75rem;
        }
        .disclaimer {
            text-align: left;
        }
        .footer-nav ul {
            flex-direction: column;
            gap: 0.75rem;
        }
    }

.cookie-cv1 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
        background: var(--accent);
        color: var(--accent-contrast);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv1__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: var(--space-y) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .cookie-cv1__text strong {
        display: block;
        margin-bottom: 4px;
    }

    .cookie-cv1__text p {
        margin: 0;
        opacity: .95;
    }

    .cookie-cv1__actions {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

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

    .cookie-cv1__actions button[data-choice='accept'] {
        background: var(--neutral-900);
        color: var(--neutral-0);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .contact-layout-b .item-card {
        background: var(--surface-1);
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-on-surface-light);
        padding: 16px;
        box-shadow: var(--shadow-sm);
    }

    .contact-layout-b .item-card h3 {
        margin: 0;
        color: var(--brand);
    }

    .contact-layout-b .item-card p {
        margin: 8px 0 0;
        color: var(--neutral-700, var(--neutral-600));
    }

    .contact-layout-b footer {
        margin-top: 18px;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        align-items: center;
    }

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

    .contact-layout-b .social a {
        text-decoration: none;
        color: var(--link);
        padding: 6px 10px;
        border: 1px solid var(--border-on-surface);
        border-radius: 999px;
    }

.form-layout-a {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 36px);
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
    }

    .form-layout-a .wrap {
        max-width: 820px;
        margin: 0 auto;
    }

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

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

    .form-layout-a .section-head p {
        margin: 10px auto 0;
        max-width: 66ch;
        opacity: .92;
    }

    .form-layout-a .card {
        border: 1px solid rgba(255, 255, 255, .28);
        border-radius: var(--radius-lg);
        padding: 16px;
        background: rgba(255, 255, 255, .1);
    }

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

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

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

    .form-layout-a button {
        margin-top: 8px;
        border: 0;
        border-radius: var(--radius-sm);
        padding: 10px 14px;
        background: var(--accent);
        color: var(--accent-contrast);
        cursor: pointer;
        font-weight: 600;
        transition: background-color var(--anim-duration) var(--anim-ease);
    }
    .form-layout-a button:hover {
        background: var(--bg-accent-hover);
    }
    .form-layout-a input::placeholder,
    .form-layout-a textarea::placeholder {
        color: rgba(255, 255, 255, 0.7);
    }

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

    .touch-bulletin .wrap {
        max-width: 860px;
        margin: 0 auto;
    }

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

    .touch-bulletin h2 {
        margin: 0;
        font-size: clamp(28px, 4vw, 40px);
        color: var(--neutral-900);
    }

    .touch-bulletin .header p {
        margin: 10px auto 0;
        color: var(--neutral-600);
        max-width: 700px;
        line-height: 1.5;
    }

    .touch-bulletin ul {
        margin: 32px 0;
        padding: 0;
        list-style: none;
        display: grid;
        gap: 12px;
    }

    .touch-bulletin li {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-md);
        background: var(--surface-1);
        padding: 16px 20px;
        display: grid;
        grid-template-columns: auto 1fr auto;
        gap: 16px;
        align-items: center;
        box-shadow: var(--shadow-sm);
        transition: box-shadow var(--anim-duration) var(--anim-ease);
    }

    .touch-bulletin li:hover {
        box-shadow: var(--shadow-md);
    }

    .touch-bulletin span {
        color: var(--neutral-600);
        font-size: 1.2rem;
    }

    .touch-bulletin strong {
        color: var(--neutral-800);
        font-weight: 600;
    }

    .touch-bulletin li a {
        color: var(--link);
        text-decoration: none;
        font-weight: 500;
        white-space: nowrap;
        padding: 6px 12px;
        border-radius: var(--radius-sm);
        transition: background-color var(--anim-duration) var(--anim-ease);
    }

    .touch-bulletin li a:hover {
        background-color: var(--btn-ghost-bg-hover);
        color: var(--link-hover);
    }

    .touch-bulletin .contact-form {
        display: flex;
        flex-direction: column;
        gap: 16px;
        max-width: 500px;
        margin: 32px auto 0;
    }

    .touch-bulletin .contact-form input {
        padding: 14px 18px;
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-md);
        font-family: var(--font-family);
        font-size: 1rem;
        background: var(--surface-1);
        color: var(--fg-on-surface);
    }

    .touch-bulletin .contact-form input::placeholder {
        color: var(--input-placeholder);
    }

    .touch-bulletin .contact-form input:focus {
        outline: 2px solid var(--ring);
        outline-offset: 2px;
    }

    .touch-bulletin .cta {
        display: inline-block;
        text-decoration: none;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border-radius: var(--radius-md);
        padding: 14px 28px;
        font-weight: 600;
        font-size: 1.05rem;
        border: none;
        cursor: pointer;
        text-align: center;
        transition: background-color var(--anim-duration) var(--anim-ease);
    }

    .touch-bulletin .cta:hover {
        background-color: var(--bg-primary-hover);
    }

.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: 1000;
    box-shadow: var(--shadow-sm);
}
.header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
}
.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    transition: color var(--anim-duration) var(--anim-ease);
}
.logo:hover {
    color: var(--accent);
}
.main-nav {
    display: flex;
}
.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: calc(var(--gap) * 1.5);
}
.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
}
.nav-link:hover,
.nav-link:focus-visible {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}
.burger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
}
.burger-line {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
.burger-btn[aria-expanded="true"] .burger-line:nth-child(1) {
    transform: translateY(0.65rem) rotate(45deg);
}
.burger-btn[aria-expanded="true"] .burger-line:nth-child(2) {
    opacity: 0;
}
.burger-btn[aria-expanded="true"] .burger-line:nth-child(3) {
    transform: translateY(-0.65rem) rotate(-45deg);
}

@media (max-width: 767px) {
    .burger-btn {
        display: flex;
    }
    .main-nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: var(--overlay);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        display: flex;
        align-items: center;
        justify-content: center;
        transform: translateX(100%);
        transition: transform var(--anim-duration) var(--anim-ease);
        z-index: 999;
    }
    .main-nav.is-active {
        transform: translateX(0);
    }
    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: var(--gap);
    }
    .nav-link {
        font-size: calc(var(--font-size-base) * 1.25);
        padding: var(--space-y) var(--space-x);
    }
}

.footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 2.5rem 1.5rem 1.5rem;
        font-family: 'Segoe UI', system-ui, sans-serif;
        color: #333;
        border-top: 1px solid #eaeaea;
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
        gap: 2rem;
    }
    .footer-brand {
        grid-column: 1;
        grid-row: 1;
    }
    .footer-brand .logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c5282;
        margin-bottom: 0.5rem;
    }
    .footer-brand .tagline {
        font-size: 0.95rem;
        color: #666;
        line-height: 1.4;
    }
    .footer-right {
        grid-column: 2;
        grid-row: 1;
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .footer-nav a {
        text-decoration: none;
        color: #444;
        font-weight: 500;
        transition: color 0.2s ease;
    }
    .footer-nav a:hover {
        color: #2c5282;
    }
    .footer-legal-links {
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
        font-size: 0.85rem;
    }
    .footer-legal-links a {
        text-decoration: none;
        color: #666;
    }
    .footer-legal-links a:hover {
        text-decoration: underline;
        color: #2c5282;
    }
    .footer-contacts {
        grid-column: 1 / span 2;
        grid-row: 2;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
        padding-top: 1rem;
        border-top: 1px solid #eee;
        font-size: 0.95rem;
    }
    .footer-contacts > div {
        color: #555;
    }
    .footer-contacts a {
        color: #2c5282;
        text-decoration: none;
    }
    .footer-contacts a:hover {
        text-decoration: underline;
    }
    .footer-bottom {
        grid-column: 1 / span 2;
        grid-row: 3;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        padding-top: 1.5rem;
        border-top: 1px solid #eee;
        font-size: 0.8rem;
        color: #777;
        gap: 1rem;
    }
    .disclaimer {
        text-align: right;
        max-width: 500px;
        line-height: 1.4;
    }
    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            grid-template-rows: auto auto auto auto;
            gap: 1.5rem;
        }
        .footer-brand,
        .footer-right,
        .footer-contacts,
        .footer-bottom {
            grid-column: 1;
        }
        .footer-brand { grid-row: 1; }
        .footer-right { grid-row: 2; }
        .footer-contacts {
            grid-row: 3;
            flex-direction: column;
            gap: 0.75rem;
        }
        .footer-bottom {
            grid-row: 4;
            flex-direction: column;
            align-items: flex-start;
            text-align: left;
            gap: 0.75rem;
        }
        .disclaimer {
            text-align: left;
        }
        .footer-nav ul {
            flex-direction: column;
            gap: 0.75rem;
        }
    }

.cookie-cv1 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
        background: var(--accent);
        color: var(--accent-contrast);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv1__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: var(--space-y) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .cookie-cv1__text strong {
        display: block;
        margin-bottom: 4px;
    }

    .cookie-cv1__text p {
        margin: 0;
        opacity: .95;
    }

    .cookie-cv1__actions {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

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

    .cookie-cv1__actions button[data-choice='accept'] {
        background: var(--neutral-900);
        color: var(--neutral-0);
    }

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

.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: 1000;
    box-shadow: var(--shadow-sm);
}
.header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
}
.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    transition: color var(--anim-duration) var(--anim-ease);
}
.logo:hover {
    color: var(--accent);
}
.main-nav {
    display: flex;
}
.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: calc(var(--gap) * 1.5);
}
.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
}
.nav-link:hover,
.nav-link:focus-visible {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}
.burger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
}
.burger-line {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
.burger-btn[aria-expanded="true"] .burger-line:nth-child(1) {
    transform: translateY(0.65rem) rotate(45deg);
}
.burger-btn[aria-expanded="true"] .burger-line:nth-child(2) {
    opacity: 0;
}
.burger-btn[aria-expanded="true"] .burger-line:nth-child(3) {
    transform: translateY(-0.65rem) rotate(-45deg);
}

@media (max-width: 767px) {
    .burger-btn {
        display: flex;
    }
    .main-nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: var(--overlay);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        display: flex;
        align-items: center;
        justify-content: center;
        transform: translateX(100%);
        transition: transform var(--anim-duration) var(--anim-ease);
        z-index: 999;
    }
    .main-nav.is-active {
        transform: translateX(0);
    }
    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: var(--gap);
    }
    .nav-link {
        font-size: calc(var(--font-size-base) * 1.25);
        padding: var(--space-y) var(--space-x);
    }
}

.footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 2.5rem 1.5rem 1.5rem;
        font-family: 'Segoe UI', system-ui, sans-serif;
        color: #333;
        border-top: 1px solid #eaeaea;
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
        gap: 2rem;
    }
    .footer-brand {
        grid-column: 1;
        grid-row: 1;
    }
    .footer-brand .logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c5282;
        margin-bottom: 0.5rem;
    }
    .footer-brand .tagline {
        font-size: 0.95rem;
        color: #666;
        line-height: 1.4;
    }
    .footer-right {
        grid-column: 2;
        grid-row: 1;
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .footer-nav a {
        text-decoration: none;
        color: #444;
        font-weight: 500;
        transition: color 0.2s ease;
    }
    .footer-nav a:hover {
        color: #2c5282;
    }
    .footer-legal-links {
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
        font-size: 0.85rem;
    }
    .footer-legal-links a {
        text-decoration: none;
        color: #666;
    }
    .footer-legal-links a:hover {
        text-decoration: underline;
        color: #2c5282;
    }
    .footer-contacts {
        grid-column: 1 / span 2;
        grid-row: 2;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
        padding-top: 1rem;
        border-top: 1px solid #eee;
        font-size: 0.95rem;
    }
    .footer-contacts > div {
        color: #555;
    }
    .footer-contacts a {
        color: #2c5282;
        text-decoration: none;
    }
    .footer-contacts a:hover {
        text-decoration: underline;
    }
    .footer-bottom {
        grid-column: 1 / span 2;
        grid-row: 3;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        padding-top: 1.5rem;
        border-top: 1px solid #eee;
        font-size: 0.8rem;
        color: #777;
        gap: 1rem;
    }
    .disclaimer {
        text-align: right;
        max-width: 500px;
        line-height: 1.4;
    }
    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            grid-template-rows: auto auto auto auto;
            gap: 1.5rem;
        }
        .footer-brand,
        .footer-right,
        .footer-contacts,
        .footer-bottom {
            grid-column: 1;
        }
        .footer-brand { grid-row: 1; }
        .footer-right { grid-row: 2; }
        .footer-contacts {
            grid-row: 3;
            flex-direction: column;
            gap: 0.75rem;
        }
        .footer-bottom {
            grid-row: 4;
            flex-direction: column;
            align-items: flex-start;
            text-align: left;
            gap: 0.75rem;
        }
        .disclaimer {
            text-align: left;
        }
        .footer-nav ul {
            flex-direction: column;
            gap: 0.75rem;
        }
    }

.cookie-cv1 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
        background: var(--accent);
        color: var(--accent-contrast);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv1__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: var(--space-y) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .cookie-cv1__text strong {
        display: block;
        margin-bottom: 4px;
    }

    .cookie-cv1__text p {
        margin: 0;
        opacity: .95;
    }

    .cookie-cv1__actions {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

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

    .cookie-cv1__actions button[data-choice='accept'] {
        background: var(--neutral-900);
        color: var(--neutral-0);
    }

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

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

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

    .policy-layout-d .section-head {
        margin-bottom: 14px;
    }

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

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

    .policy-layout-d .timeline {
        border-left: 3px solid var(--brand);
        padding-left: 14px;
        display: grid;
        gap: 12px;
    }

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

    .policy-layout-d .meta {
        margin: 0;
        color: var(--brand);
        font-size: .9rem;
        font-weight: 600;
    }

    .policy-layout-d h3 {
        margin: 7px 0;
    }

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

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    padding: var(--space-y) 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}
.header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
}
.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    transition: color var(--anim-duration) var(--anim-ease);
}
.logo:hover {
    color: var(--accent);
}
.main-nav {
    display: flex;
}
.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: calc(var(--gap) * 1.5);
}
.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
}
.nav-link:hover,
.nav-link:focus-visible {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}
.burger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
}
.burger-line {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
.burger-btn[aria-expanded="true"] .burger-line:nth-child(1) {
    transform: translateY(0.65rem) rotate(45deg);
}
.burger-btn[aria-expanded="true"] .burger-line:nth-child(2) {
    opacity: 0;
}
.burger-btn[aria-expanded="true"] .burger-line:nth-child(3) {
    transform: translateY(-0.65rem) rotate(-45deg);
}

@media (max-width: 767px) {
    .burger-btn {
        display: flex;
    }
    .main-nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: var(--overlay);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        display: flex;
        align-items: center;
        justify-content: center;
        transform: translateX(100%);
        transition: transform var(--anim-duration) var(--anim-ease);
        z-index: 999;
    }
    .main-nav.is-active {
        transform: translateX(0);
    }
    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: var(--gap);
    }
    .nav-link {
        font-size: calc(var(--font-size-base) * 1.25);
        padding: var(--space-y) var(--space-x);
    }
}

.footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 2.5rem 1.5rem 1.5rem;
        font-family: 'Segoe UI', system-ui, sans-serif;
        color: #333;
        border-top: 1px solid #eaeaea;
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
        gap: 2rem;
    }
    .footer-brand {
        grid-column: 1;
        grid-row: 1;
    }
    .footer-brand .logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c5282;
        margin-bottom: 0.5rem;
    }
    .footer-brand .tagline {
        font-size: 0.95rem;
        color: #666;
        line-height: 1.4;
    }
    .footer-right {
        grid-column: 2;
        grid-row: 1;
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .footer-nav a {
        text-decoration: none;
        color: #444;
        font-weight: 500;
        transition: color 0.2s ease;
    }
    .footer-nav a:hover {
        color: #2c5282;
    }
    .footer-legal-links {
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
        font-size: 0.85rem;
    }
    .footer-legal-links a {
        text-decoration: none;
        color: #666;
    }
    .footer-legal-links a:hover {
        text-decoration: underline;
        color: #2c5282;
    }
    .footer-contacts {
        grid-column: 1 / span 2;
        grid-row: 2;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
        padding-top: 1rem;
        border-top: 1px solid #eee;
        font-size: 0.95rem;
    }
    .footer-contacts > div {
        color: #555;
    }
    .footer-contacts a {
        color: #2c5282;
        text-decoration: none;
    }
    .footer-contacts a:hover {
        text-decoration: underline;
    }
    .footer-bottom {
        grid-column: 1 / span 2;
        grid-row: 3;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        padding-top: 1.5rem;
        border-top: 1px solid #eee;
        font-size: 0.8rem;
        color: #777;
        gap: 1rem;
    }
    .disclaimer {
        text-align: right;
        max-width: 500px;
        line-height: 1.4;
    }
    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            grid-template-rows: auto auto auto auto;
            gap: 1.5rem;
        }
        .footer-brand,
        .footer-right,
        .footer-contacts,
        .footer-bottom {
            grid-column: 1;
        }
        .footer-brand { grid-row: 1; }
        .footer-right { grid-row: 2; }
        .footer-contacts {
            grid-row: 3;
            flex-direction: column;
            gap: 0.75rem;
        }
        .footer-bottom {
            grid-row: 4;
            flex-direction: column;
            align-items: flex-start;
            text-align: left;
            gap: 0.75rem;
        }
        .disclaimer {
            text-align: left;
        }
        .footer-nav ul {
            flex-direction: column;
            gap: 0.75rem;
        }
    }

.cookie-cv1 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
        background: var(--accent);
        color: var(--accent-contrast);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv1__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: var(--space-y) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .cookie-cv1__text strong {
        display: block;
        margin-bottom: 4px;
    }

    .cookie-cv1__text p {
        margin: 0;
        opacity: .95;
    }

    .cookie-cv1__actions {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

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

    .cookie-cv1__actions button[data-choice='accept'] {
        background: var(--neutral-900);
        color: var(--neutral-0);
    }

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

.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: 1000;
    box-shadow: var(--shadow-sm);
}
.header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
}
.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    transition: color var(--anim-duration) var(--anim-ease);
}
.logo:hover {
    color: var(--accent);
}
.main-nav {
    display: flex;
}
.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: calc(var(--gap) * 1.5);
}
.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
}
.nav-link:hover,
.nav-link:focus-visible {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}
.burger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
}
.burger-line {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
.burger-btn[aria-expanded="true"] .burger-line:nth-child(1) {
    transform: translateY(0.65rem) rotate(45deg);
}
.burger-btn[aria-expanded="true"] .burger-line:nth-child(2) {
    opacity: 0;
}
.burger-btn[aria-expanded="true"] .burger-line:nth-child(3) {
    transform: translateY(-0.65rem) rotate(-45deg);
}

@media (max-width: 767px) {
    .burger-btn {
        display: flex;
    }
    .main-nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: var(--overlay);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        display: flex;
        align-items: center;
        justify-content: center;
        transform: translateX(100%);
        transition: transform var(--anim-duration) var(--anim-ease);
        z-index: 999;
    }
    .main-nav.is-active {
        transform: translateX(0);
    }
    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: var(--gap);
    }
    .nav-link {
        font-size: calc(var(--font-size-base) * 1.25);
        padding: var(--space-y) var(--space-x);
    }
}

.footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 2.5rem 1.5rem 1.5rem;
        font-family: 'Segoe UI', system-ui, sans-serif;
        color: #333;
        border-top: 1px solid #eaeaea;
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
        gap: 2rem;
    }
    .footer-brand {
        grid-column: 1;
        grid-row: 1;
    }
    .footer-brand .logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c5282;
        margin-bottom: 0.5rem;
    }
    .footer-brand .tagline {
        font-size: 0.95rem;
        color: #666;
        line-height: 1.4;
    }
    .footer-right {
        grid-column: 2;
        grid-row: 1;
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .footer-nav a {
        text-decoration: none;
        color: #444;
        font-weight: 500;
        transition: color 0.2s ease;
    }
    .footer-nav a:hover {
        color: #2c5282;
    }
    .footer-legal-links {
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
        font-size: 0.85rem;
    }
    .footer-legal-links a {
        text-decoration: none;
        color: #666;
    }
    .footer-legal-links a:hover {
        text-decoration: underline;
        color: #2c5282;
    }
    .footer-contacts {
        grid-column: 1 / span 2;
        grid-row: 2;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
        padding-top: 1rem;
        border-top: 1px solid #eee;
        font-size: 0.95rem;
    }
    .footer-contacts > div {
        color: #555;
    }
    .footer-contacts a {
        color: #2c5282;
        text-decoration: none;
    }
    .footer-contacts a:hover {
        text-decoration: underline;
    }
    .footer-bottom {
        grid-column: 1 / span 2;
        grid-row: 3;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        padding-top: 1.5rem;
        border-top: 1px solid #eee;
        font-size: 0.8rem;
        color: #777;
        gap: 1rem;
    }
    .disclaimer {
        text-align: right;
        max-width: 500px;
        line-height: 1.4;
    }
    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            grid-template-rows: auto auto auto auto;
            gap: 1.5rem;
        }
        .footer-brand,
        .footer-right,
        .footer-contacts,
        .footer-bottom {
            grid-column: 1;
        }
        .footer-brand { grid-row: 1; }
        .footer-right { grid-row: 2; }
        .footer-contacts {
            grid-row: 3;
            flex-direction: column;
            gap: 0.75rem;
        }
        .footer-bottom {
            grid-row: 4;
            flex-direction: column;
            align-items: flex-start;
            text-align: left;
            gap: 0.75rem;
        }
        .disclaimer {
            text-align: left;
        }
        .footer-nav ul {
            flex-direction: column;
            gap: 0.75rem;
        }
    }

.cookie-cv1 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
        background: var(--accent);
        color: var(--accent-contrast);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv1__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: var(--space-y) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .cookie-cv1__text strong {
        display: block;
        margin-bottom: 4px;
    }

    .cookie-cv1__text p {
        margin: 0;
        opacity: .95;
    }

    .cookie-cv1__actions {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

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

    .cookie-cv1__actions button[data-choice='accept'] {
        background: var(--neutral-900);
        color: var(--neutral-0);
    }

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

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

.err-slab-b .frame {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    padding: clamp(28px, 4vw, 46px);
    border: 2px solid var(--border-on-surface);
    border-radius: var(--radius-xl);
    background: var(--surface-1);
    box-shadow: var(--shadow-md);
}

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

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

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