:root {
  --font-family: "Open Sans", sans-serif;
  --font-size-base: 14.8px;
  --line-height-base: 1.31;

  --max-w: 1120px;
  --space-x: 0.72rem;
  --space-y: 0.97rem;
  --gap: 0.77rem;

  --radius-xl: 0.74rem;
  --radius-lg: 0.51rem;
  --radius-md: 0.39rem;
  --radius-sm: 0.23rem;

  --shadow-sm: 0 0px 3px rgba(0,0,0,0.1);
  --shadow-md: 0 2px 12px rgba(0,0,0,0.13);
  --shadow-lg: 0 14px 26px rgba(0,0,0,0.15);

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

  --brand: #4CAF50;
  --brand-contrast: #ffffff;
  --accent: #FF9800;
  --accent-contrast: #212121;

  --neutral-0: #ffffff;
  --neutral-100: #f5f5f5;
  --neutral-300: #e0e0e0;
  --neutral-600: #757575;
  --neutral-800: #424242;
  --neutral-900: #212121;

  --bg-page: #fafafa;
  --fg-on-page: #333333;

  --bg-alt: #FFF8E1;
  --fg-on-alt: #5D4037;

  --surface-1: #ffffff;
  --surface-2: #f9f9f9;
  --fg-on-surface: #424242;
  --border-on-surface: #e0e0e0;

  --surface-light: rgba(255, 255, 255, 0.9);
  --fg-on-surface-light: #424242;
  --border-on-surface-light: rgba(224, 224, 224, 0.7);

  --bg-primary: #4CAF50;
  --fg-on-primary: #ffffff;
  --bg-primary-hover: #388E3C;
  --ring: rgba(76, 175, 80, 0.4);

  --bg-accent: #FFF3E0;
  --fg-on-accent: #5D4037;
  --bg-accent-hover: #FFB74D;

  --link: #1E88E5;
  --link-hover: #0D47A1;

  --gradient-hero: linear-gradient(135deg, #E8F5E9 0%, #FFF3E0 100%);
  --gradient-accent: linear-gradient(90deg, #FF9800, #FFB74D);

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

.header-left {
    flex-shrink: 0;
}

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

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

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

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

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

.nav-link:hover,
.nav-link:focus {
    color: var(--link);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--brand);
    transition: width var(--anim-duration) var(--anim-ease);
}

.nav-link:hover::after,
.nav-link:focus::after {
    width: 100%;
}

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

.contact-info {
    display: flex;
    align-items: center;
}

.contact-link {
    color: var(--neutral-600);
    text-decoration: none;
    font-weight: 500;
    white-space: nowrap;
    transition: color var(--anim-duration) var(--anim-ease);
}

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

.btn {
    display: inline-block;
    padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 1.5);
    border-radius: var(--radius-md);
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all var(--anim-duration) var(--anim-ease);
    text-align: center;
    white-space: nowrap;
}

.btn-primary {
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
}

.btn-primary:hover {
    background-color: var(--bg-primary-hover);
    box-shadow: var(--shadow-md);
}

.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

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

@media (max-width: 767px) {
    .header-container {
        flex-wrap: wrap;
        padding: 0 calc(var(--space-x) * 0.75);
    }

    .header-nav {
        order: 3;
        width: 100%;
        display: none;
        margin-top: var(--space-y);
    }

    .header-nav.active {
        display: block;
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
        background-color: var(--surface-light);
        border-radius: var(--radius-lg);
        padding: var(--space-y);
        box-shadow: var(--shadow-md);
    }

    .nav-link {
        display: block;
        padding: calc(var(--space-y) * 0.75) var(--space-x);
        border-radius: var(--radius-sm);
    }

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

    .nav-link::after {
        display: none;
    }

    .header-right {
        order: 2;
        margin-left: auto;
    }

    .contact-info {
        display: none;
    }

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

    .burger-menu.active span:nth-child(1) {
        transform: translateY(9.5px) rotate(45deg);
    }

    .burger-menu.active span:nth-child(2) {
        opacity: 0;
    }

    .burger-menu.active span:nth-child(3) {
        transform: translateY(-9.5px) rotate(-45deg);
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .header-container {
        padding: 0 calc(var(--space-x) * 0.75);
    }

    .nav-list {
        gap: var(--gap);
    }

    .contact-link {
        font-size: calc(var(--font-size-base) * 0.9);
    }

    .btn {
        padding: calc(var(--space-y) * 0.6) calc(var(--space-x) * 1.2);
        font-size: calc(var(--font-size-base) * 0.9);
    }
}

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        padding: 2rem 1rem;
        border-top: 1px solid #dee2e6;
        font-family: sans-serif;
        font-size: 0.9rem;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }
    .footer-section {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
    }
    .footer-logo {
        font-size: 1.5rem;
        font-weight: bold;
        color: #2c3e50;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .footer-nav a {
        color: #495057;
        text-decoration: none;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .footer-contacts {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 0.5rem 1rem;
        color: #6c757d;
        margin-bottom: 0.5rem;
    }
    .footer-contacts a {
        color: #6c757d;
        text-decoration: none;
    }
    .footer-contacts a:hover {
        text-decoration: underline;
    }
    .footer-legal {
        color: #6c757d;
        font-size: 0.85rem;
        border-top: 1px solid #e9ecef;
        padding-top: 0.75rem;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 0.5rem 1rem;
    }
    .footer-legal a {
        color: #6c757d;
        text-decoration: none;
    }
    .footer-legal a:hover {
        text-decoration: underline;
    }
    .disclaimer {
        flex-basis: 100%;
        font-style: italic;
        margin-top: 0.5rem;
        line-height: 1.4;
        color: #868e96;
    }
    @media (max-width: 768px) {
        .footer-section {
            flex-direction: column;
            align-items: flex-start;
            gap: 1.5rem;
        }
        .footer-nav ul {
            gap: 1rem;
        }
        .footer-contacts, .footer-legal {
            flex-direction: column;
            align-items: flex-start;
            gap: 0.5rem;
        }
    }

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

    .cookie-lv10__body {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-md);
        background: var(--bg-alt);
        color: var(--fg-on-page);
        padding: 12px;
        box-shadow: var(--shadow-sm);
    }

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

    .cookie-lv10__actions {
        margin-top: 10px;
        display: flex;
        justify-content: flex-end;
        gap: 8px;
    }

    .cookie-lv10__actions button {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-sm);
        background: var(--surface-1);
        color: var(--fg-on-page);
        padding: 7px 10px;
        cursor: pointer;
    }

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

.wp-lang-switcher-v8 {
        position: fixed;
        right: clamp(14px, 2vw, 24px);
        bottom: clamp(14px, 2vw, 24px);
        z-index: 99999;
    }

    .wp-lang-switcher-v8__toggle {
        width: 58px;
        height: 58px;
        border-radius: 12px;
        border: 0;
        background: var(--gradient-accent);
        color: var(--fg-on-primary);
        font-size: 13px;
        font-weight: 700;
        letter-spacing: 0.08em;
        cursor: pointer;
        display: grid;
        place-items: center;
        box-shadow: var(--shadow-lg);
        position: relative;
    }

    .wp-lang-switcher-v8__dot {
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: color-mix(in srgb, var(--fg-on-primary) 78%, transparent);
        position: absolute;
        right: 13px;
        top: 13px;
    }

    .wp-lang-switcher-v8__list {
        position: absolute;
        right: 0;
        bottom: 66px;
        display: flex;
        flex-direction: column;
        gap: 8px;
        opacity: 0;
        pointer-events: none;
        transform: translateY(10px) scale(0.95);
        transform-origin: bottom right;
        transition: opacity var(--anim-duration) var(--anim-ease), transform var(--anim-duration) var(--anim-ease);
    }

    .wp-lang-switcher-v8__list.open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0) scale(1);
    }

    .wp-lang-switcher-v8__list button,
    .wp-lang-switcher-v8__list a {
        min-width: 56px;
        height: 38px;
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-md);
        background: var(--surface-1);
        color: var(--fg-on-surface);
        text-decoration: none;
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 0.06em;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        box-shadow: var(--shadow-sm);
        transition: transform var(--anim-duration) var(--anim-ease), background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }

    .wp-lang-switcher-v8__list button:hover,
    .wp-lang-switcher-v8__list a:hover {
        transform: translateX(-2px);
        background: var(--accent);
        border-color: transparent;
        color: var(--accent-contrast);
    }

.intro-band {
        padding: clamp(60px, 9vw, 120px) clamp(16px, 3vw, 40px);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
    }

    .intro-band .wrap {
        max-width: 980px;
        margin: 0 auto;
    }

    .intro-band .eyebrow {
        margin: 0 0 8px;
        opacity: 0.9;
    }

    .intro-band h1 {
        margin: 0 0 10px;
        font-size: clamp(34px, 5.6vw, 60px);
    }

    .intro-band .lead {
        margin: 0 0 16px;
        max-width: 70ch;
        opacity: 0.9;
    }

    .intro-band .row {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 10px;
    }

    .intro-band .fact {
        border: 1px solid var(--chip-bg);
        border-radius: var(--radius-md);
        background: var(--chip-bg);
        padding: 12px;
    }

    .intro-band .label {
        margin: 0;
        opacity: 0.85;
    }

    .intro-band .number {
        margin: 6px 0 0;
        font-size: clamp(24px, 4vw, 36px);
        font-weight: 600;
    }

    .intro-band .actions {
        margin-top: 16px;
    }

    .intro-band .actions a {
        text-decoration: none;
        padding: 10px 16px;
        border-radius: var(--radius-md);
        background: var(--accent);
        color: var(--accent-contrast);
    }

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

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

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

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

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

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

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

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

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

.index-recommendations-split {
        background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.75), transparent 60%),
        linear-gradient(135deg, rgba(212, 165, 165, 0.45), rgba(248, 225, 231, 0.95));
        color: var(--fg-on-page);
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 40px);
        overflow: hidden;
    }

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

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

        transform: translateY(-18px);
    }

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

    .index-recommendations-split__h p {
        margin: 0;
        color: rgba(58, 46, 61, 0.75);
    }

    .index-recommendations-split__grid {
        display: grid;
        grid-template-columns: repeat(12, 1fr);
        gap: clamp(14px, 2.6vw, 22px);
    }

    .index-recommendations-split__card {
        grid-column: span 6;
        border-radius: var(--radius-xl);
        overflow: hidden;
        box-shadow: var(--shadow-lg);
        background: rgba(255, 255, 255, 0.65);
        border: 1px solid rgba(58, 46, 61, 0.12);
        display: grid;
        grid-template-rows: 170px 1fr;

        transform: translateY(26px);
        backdrop-filter: blur(10px);
    }

    .index-recommendations-split__card:nth-child(1) {
        grid-column: span 12;
        grid-template-columns: 1.2fr 1fr;
        grid-template-rows: 1fr;
        min-height: 320px;
    }

    .index-recommendations-split__media {
        position: relative;
        background-size: cover;
        background-position: center;
        background-color: rgba(58, 46, 61, 0.08);
    }

    .index-recommendations-split__card:nth-child(1) .index-recommendations-split__media {
        border-right: 1px solid rgba(58, 46, 61, 0.12);
    }

    .index-recommendations-split__media::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));
        pointer-events: none;
    }

    .index-recommendations-split__pill {
        position: absolute;
        left: 14px;
        top: 14px;
        padding: 7px 10px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.78);
        border: 1px solid rgba(58, 46, 61, 0.14);
        color: var(--fg-on-page);
        font-size: 10px;
        letter-spacing: 0.16em;
        text-transform: uppercase;
        z-index: 1;
    }

    .index-recommendations-split__body {
        padding: 18px 18px 16px;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .index-recommendations-split__icon {
        width: 44px;
        height: 44px;
        border-radius: 16px;
        background: var(--bg-accent);
        border: 1px solid var(--border-on-surface);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 22px;
    }

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

    .index-recommendations-split__body p {
        margin: 0;
        color: rgba(58, 46, 61, 0.84);
        font-size: 14px;
        line-height: 1.65;
    }

    .index-recommendations-split__link {
        margin-top: auto;
        color: var(--link);
        text-decoration: none;
        font-weight: 800;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        font-size: 11px;
        display: inline-flex;
        align-items: center;
        gap: 8px;
    }

    .index-recommendations-split__link::after {
        content: '->';
    }

    .index-recommendations-split__link:hover {
        color: var(--link-hover);
    }

    @media (max-width: 900px) {
        .index-recommendations-split__grid {
            grid-template-columns: repeat(6, 1fr);
        }

        .index-recommendations-split__card {
            grid-column: span 6;
        }

        .index-recommendations-split__card:nth-child(1) {
            grid-template-columns: 1fr;
            grid-template-rows: 200px 1fr;
            min-height: 0;
        }

        .index-recommendations-split__card:nth-child(1) .index-recommendations-split__media {
            border-right: 0;
            border-bottom: 1px solid rgba(58, 46, 61, 0.12);
        }
    }

.touch-stream {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 3vw, 36px);
        background: linear-gradient(160deg, var(--bg-primary), var(--bg-primary-hover));
        color: var(--fg-on-primary);
    }

    .touch-stream .wrap {
        max-width: 980px;
        margin: 0 auto;
    }

    .touch-stream .header {
        margin-bottom: 12px;
    }

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

    .touch-stream .header p {
        margin: 10px 0 0;
        opacity: .9;
    }

    .touch-stream .stream {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
        gap: 8px;
    }

    .touch-stream .chip {
        text-decoration: none;
        color: var(--fg-on-primary);
        border: 1px solid rgba(255, 255, 255, .35);
        border-radius: 999px;
        background: rgba(255, 255, 255, .12);
        padding: 10px 12px;
        display: flex;
        gap: 8px;
        align-items: center;
        justify-content: space-between;
    }

    .touch-stream .chip em {
        font-style: normal;
        opacity: .85;
    }

    .touch-stream .foot {
        margin-top: 12px;
    }

    .touch-stream .foot a {
        text-decoration: none;
        color: var(--fg-on-primary);
        border: 1px solid rgba(255, 255, 255, .45);
        border-radius: var(--radius-md);
        padding: 10px 14px;
        display: inline-block;
    }

.social-c2 {

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

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

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

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

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

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

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

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

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

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

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

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

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

    }

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

    .social-c2__qRole {
        opacity: .85;
    }

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

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

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

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

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

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

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface-light);
    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);
}

.header-left {
    flex-shrink: 0;
}

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

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

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

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

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

.nav-link:hover,
.nav-link:focus {
    color: var(--link);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--brand);
    transition: width var(--anim-duration) var(--anim-ease);
}

.nav-link:hover::after,
.nav-link:focus::after {
    width: 100%;
}

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

.contact-info {
    display: flex;
    align-items: center;
}

.contact-link {
    color: var(--neutral-600);
    text-decoration: none;
    font-weight: 500;
    white-space: nowrap;
    transition: color var(--anim-duration) var(--anim-ease);
}

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

.btn {
    display: inline-block;
    padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 1.5);
    border-radius: var(--radius-md);
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all var(--anim-duration) var(--anim-ease);
    text-align: center;
    white-space: nowrap;
}

.btn-primary {
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
}

.btn-primary:hover {
    background-color: var(--bg-primary-hover);
    box-shadow: var(--shadow-md);
}

.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

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

@media (max-width: 767px) {
    .header-container {
        flex-wrap: wrap;
        padding: 0 calc(var(--space-x) * 0.75);
    }

    .header-nav {
        order: 3;
        width: 100%;
        display: none;
        margin-top: var(--space-y);
    }

    .header-nav.active {
        display: block;
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
        background-color: var(--surface-light);
        border-radius: var(--radius-lg);
        padding: var(--space-y);
        box-shadow: var(--shadow-md);
    }

    .nav-link {
        display: block;
        padding: calc(var(--space-y) * 0.75) var(--space-x);
        border-radius: var(--radius-sm);
    }

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

    .nav-link::after {
        display: none;
    }

    .header-right {
        order: 2;
        margin-left: auto;
    }

    .contact-info {
        display: none;
    }

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

    .burger-menu.active span:nth-child(1) {
        transform: translateY(9.5px) rotate(45deg);
    }

    .burger-menu.active span:nth-child(2) {
        opacity: 0;
    }

    .burger-menu.active span:nth-child(3) {
        transform: translateY(-9.5px) rotate(-45deg);
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .header-container {
        padding: 0 calc(var(--space-x) * 0.75);
    }

    .nav-list {
        gap: var(--gap);
    }

    .contact-link {
        font-size: calc(var(--font-size-base) * 0.9);
    }

    .btn {
        padding: calc(var(--space-y) * 0.6) calc(var(--space-x) * 1.2);
        font-size: calc(var(--font-size-base) * 0.9);
    }
}

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        padding: 2rem 1rem;
        border-top: 1px solid #dee2e6;
        font-family: sans-serif;
        font-size: 0.9rem;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }
    .footer-section {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
    }
    .footer-logo {
        font-size: 1.5rem;
        font-weight: bold;
        color: #2c3e50;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .footer-nav a {
        color: #495057;
        text-decoration: none;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .footer-contacts {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 0.5rem 1rem;
        color: #6c757d;
        margin-bottom: 0.5rem;
    }
    .footer-contacts a {
        color: #6c757d;
        text-decoration: none;
    }
    .footer-contacts a:hover {
        text-decoration: underline;
    }
    .footer-legal {
        color: #6c757d;
        font-size: 0.85rem;
        border-top: 1px solid #e9ecef;
        padding-top: 0.75rem;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 0.5rem 1rem;
    }
    .footer-legal a {
        color: #6c757d;
        text-decoration: none;
    }
    .footer-legal a:hover {
        text-decoration: underline;
    }
    .disclaimer {
        flex-basis: 100%;
        font-style: italic;
        margin-top: 0.5rem;
        line-height: 1.4;
        color: #868e96;
    }
    @media (max-width: 768px) {
        .footer-section {
            flex-direction: column;
            align-items: flex-start;
            gap: 1.5rem;
        }
        .footer-nav ul {
            gap: 1rem;
        }
        .footer-contacts, .footer-legal {
            flex-direction: column;
            align-items: flex-start;
            gap: 0.5rem;
        }
    }

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

    .cookie-lv10__body {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-md);
        background: var(--bg-alt);
        color: var(--fg-on-page);
        padding: 12px;
        box-shadow: var(--shadow-sm);
    }

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

    .cookie-lv10__actions {
        margin-top: 10px;
        display: flex;
        justify-content: flex-end;
        gap: 8px;
    }

    .cookie-lv10__actions button {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-sm);
        background: var(--surface-1);
        color: var(--fg-on-page);
        padding: 7px 10px;
        cursor: pointer;
    }

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

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

    .identity-lv6__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        grid-template-columns: .9fr 1.1fr;
        gap: var(--gap);
        align-items: start;
    }

    .identity-lv6__img img {
        width: 100%;
        height: auto;
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-on-surface-light);
    }

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

    .identity-lv6__body h3 {
        margin: 0 0 10px;
        color: var(--brand);
        font-size: 1rem;
    }

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

    .identity-lv6__body ul {
        margin: 0;
        padding-left: 18px;
        display: grid;
        gap: 6px;
        color: var(--neutral-800);
    }

    @media (max-width: 820px) {
        .identity-lv6__wrap {
            grid-template-columns: 1fr;
        }
    }

.mission--colored-v5 {

    padding: 64px 20px;
    background: radial-gradient(circle at top left, rgba(16,185,129,0.35), transparent),
                radial-gradient(circle at bottom right, rgba(59,130,246,0.4), transparent),
                var(--neutral-900);
    color: var(--neutral-0);
}

.mission__inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.1fr);
    gap: 24px;
    align-items: start;
}

.mission__eyebrow {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: rgba(209,250,229,0.9);
    margin: 0 0 0.5rem;
}

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

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

.mission__pillars {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

.mission__pillar {
    border-radius: var(--radius-lg);
    padding: 10px 12px;
    border: 1px solid rgba(148,163,184,0.6);
    background: rgba(15,23,42,0.96);
}

.mission__pillar--impact {
    border-color: var(--accent);
}

.mission__pillar--safety {
    border-color: var(--accent);
}

.mission__pillar--focus {
    border-color: var(--bg-primary);
}

.mission__pillar h3 {
    margin: 0 0 4px;
    font-size: 0.95rem;
    color: var(--brand-contrast);
}

.mission__pillar p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--neutral-200);
}

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

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

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

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

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

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

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

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface-light);
    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);
}

.header-left {
    flex-shrink: 0;
}

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

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

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

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

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

.nav-link:hover,
.nav-link:focus {
    color: var(--link);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--brand);
    transition: width var(--anim-duration) var(--anim-ease);
}

.nav-link:hover::after,
.nav-link:focus::after {
    width: 100%;
}

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

.contact-info {
    display: flex;
    align-items: center;
}

.contact-link {
    color: var(--neutral-600);
    text-decoration: none;
    font-weight: 500;
    white-space: nowrap;
    transition: color var(--anim-duration) var(--anim-ease);
}

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

.btn {
    display: inline-block;
    padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 1.5);
    border-radius: var(--radius-md);
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all var(--anim-duration) var(--anim-ease);
    text-align: center;
    white-space: nowrap;
}

.btn-primary {
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
}

.btn-primary:hover {
    background-color: var(--bg-primary-hover);
    box-shadow: var(--shadow-md);
}

.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

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

@media (max-width: 767px) {
    .header-container {
        flex-wrap: wrap;
        padding: 0 calc(var(--space-x) * 0.75);
    }

    .header-nav {
        order: 3;
        width: 100%;
        display: none;
        margin-top: var(--space-y);
    }

    .header-nav.active {
        display: block;
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
        background-color: var(--surface-light);
        border-radius: var(--radius-lg);
        padding: var(--space-y);
        box-shadow: var(--shadow-md);
    }

    .nav-link {
        display: block;
        padding: calc(var(--space-y) * 0.75) var(--space-x);
        border-radius: var(--radius-sm);
    }

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

    .nav-link::after {
        display: none;
    }

    .header-right {
        order: 2;
        margin-left: auto;
    }

    .contact-info {
        display: none;
    }

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

    .burger-menu.active span:nth-child(1) {
        transform: translateY(9.5px) rotate(45deg);
    }

    .burger-menu.active span:nth-child(2) {
        opacity: 0;
    }

    .burger-menu.active span:nth-child(3) {
        transform: translateY(-9.5px) rotate(-45deg);
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .header-container {
        padding: 0 calc(var(--space-x) * 0.75);
    }

    .nav-list {
        gap: var(--gap);
    }

    .contact-link {
        font-size: calc(var(--font-size-base) * 0.9);
    }

    .btn {
        padding: calc(var(--space-y) * 0.6) calc(var(--space-x) * 1.2);
        font-size: calc(var(--font-size-base) * 0.9);
    }
}

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        padding: 2rem 1rem;
        border-top: 1px solid #dee2e6;
        font-family: sans-serif;
        font-size: 0.9rem;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }
    .footer-section {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
    }
    .footer-logo {
        font-size: 1.5rem;
        font-weight: bold;
        color: #2c3e50;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .footer-nav a {
        color: #495057;
        text-decoration: none;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .footer-contacts {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 0.5rem 1rem;
        color: #6c757d;
        margin-bottom: 0.5rem;
    }
    .footer-contacts a {
        color: #6c757d;
        text-decoration: none;
    }
    .footer-contacts a:hover {
        text-decoration: underline;
    }
    .footer-legal {
        color: #6c757d;
        font-size: 0.85rem;
        border-top: 1px solid #e9ecef;
        padding-top: 0.75rem;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 0.5rem 1rem;
    }
    .footer-legal a {
        color: #6c757d;
        text-decoration: none;
    }
    .footer-legal a:hover {
        text-decoration: underline;
    }
    .disclaimer {
        flex-basis: 100%;
        font-style: italic;
        margin-top: 0.5rem;
        line-height: 1.4;
        color: #868e96;
    }
    @media (max-width: 768px) {
        .footer-section {
            flex-direction: column;
            align-items: flex-start;
            gap: 1.5rem;
        }
        .footer-nav ul {
            gap: 1rem;
        }
        .footer-contacts, .footer-legal {
            flex-direction: column;
            align-items: flex-start;
            gap: 0.5rem;
        }
    }

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

    .cookie-lv10__body {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-md);
        background: var(--bg-alt);
        color: var(--fg-on-page);
        padding: 12px;
        box-shadow: var(--shadow-sm);
    }

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

    .cookie-lv10__actions {
        margin-top: 10px;
        display: flex;
        justify-content: flex-end;
        gap: 8px;
    }

    .cookie-lv10__actions button {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-sm);
        background: var(--surface-1);
        color: var(--fg-on-page);
        padding: 7px 10px;
        cursor: pointer;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        transform: translateY(22px);
    }

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

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

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

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

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

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

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

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

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

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

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

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

    .features-struct-v6 .head {
        display: grid;
        gap: calc(var(--gap) * .35)
    }

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

    .features-struct-v6 article {
        background: var(--neutral-800);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        padding: .9rem;
        display: grid;
        gap: .5rem
    }

    .features-struct-v6 .icon {
        min-height: 2rem;
        min-width: 2rem;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: var(--surface-1);
        border-radius: var(--radius-sm)
    }

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

    .features-struct-v6 .layout {
        display: grid;
        grid-template-columns:.9fr 1.1fr;
        gap: var(--gap)
    }

    .features-struct-v6 .chips {
        display: flex;
        flex-wrap: wrap;
        gap: .4rem
    }

    .features-struct-v6 .chips span {
        padding: .3rem .55rem;
        border-radius: var(--radius-sm);
        background: var(--neutral-800);
        border: 1px solid var(--border-on-surface)
    }

    .features-struct-v6 .list {
        display: grid;
        gap: .6rem
    }

    .features-struct-v6 .list div {
        padding: .75rem;
        border-radius: var(--radius-md);
        background: var(--neutral-800);
        border: 1px solid var(--border-on-surface)
    }

    .features-struct-v6 .timeline {
        display: grid;
        gap: .7rem
    }

    .features-struct-v6 .timeline article {
        position: relative;
        padding-left: 1.2rem
    }

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

    .features-struct-v6 .side img, .features-struct-v6 .media img {
        display: block;
        width: 100%;
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-md)
    }

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

    .features-struct-v6 .row {
        display: grid;
        grid-template-columns:1fr 1fr 1fr;
        gap: .5rem;
        padding: .65rem;
        border-radius: var(--radius-md);
        background: var(--neutral-800);
        border: 1px solid var(--border-on-surface)
    }

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

    .features-struct-v6 .cta {
        display: flex;
        justify-content: flex-start
    }

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

    .features-struct-v6 details {
        padding: .75rem;
        border-radius: var(--radius-md);
        background: var(--neutral-800);
        border: 1px solid var(--border-on-surface)
    }

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

        .features-struct-v6 .layout, .features-struct-v6 .split {
            grid-template-columns:1fr
        }
    }

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

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

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

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

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

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

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

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

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

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

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

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface-light);
    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);
}

.header-left {
    flex-shrink: 0;
}

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

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

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

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

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

.nav-link:hover,
.nav-link:focus {
    color: var(--link);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--brand);
    transition: width var(--anim-duration) var(--anim-ease);
}

.nav-link:hover::after,
.nav-link:focus::after {
    width: 100%;
}

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

.contact-info {
    display: flex;
    align-items: center;
}

.contact-link {
    color: var(--neutral-600);
    text-decoration: none;
    font-weight: 500;
    white-space: nowrap;
    transition: color var(--anim-duration) var(--anim-ease);
}

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

.btn {
    display: inline-block;
    padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 1.5);
    border-radius: var(--radius-md);
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all var(--anim-duration) var(--anim-ease);
    text-align: center;
    white-space: nowrap;
}

.btn-primary {
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
}

.btn-primary:hover {
    background-color: var(--bg-primary-hover);
    box-shadow: var(--shadow-md);
}

.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

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

@media (max-width: 767px) {
    .header-container {
        flex-wrap: wrap;
        padding: 0 calc(var(--space-x) * 0.75);
    }

    .header-nav {
        order: 3;
        width: 100%;
        display: none;
        margin-top: var(--space-y);
    }

    .header-nav.active {
        display: block;
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
        background-color: var(--surface-light);
        border-radius: var(--radius-lg);
        padding: var(--space-y);
        box-shadow: var(--shadow-md);
    }

    .nav-link {
        display: block;
        padding: calc(var(--space-y) * 0.75) var(--space-x);
        border-radius: var(--radius-sm);
    }

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

    .nav-link::after {
        display: none;
    }

    .header-right {
        order: 2;
        margin-left: auto;
    }

    .contact-info {
        display: none;
    }

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

    .burger-menu.active span:nth-child(1) {
        transform: translateY(9.5px) rotate(45deg);
    }

    .burger-menu.active span:nth-child(2) {
        opacity: 0;
    }

    .burger-menu.active span:nth-child(3) {
        transform: translateY(-9.5px) rotate(-45deg);
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .header-container {
        padding: 0 calc(var(--space-x) * 0.75);
    }

    .nav-list {
        gap: var(--gap);
    }

    .contact-link {
        font-size: calc(var(--font-size-base) * 0.9);
    }

    .btn {
        padding: calc(var(--space-y) * 0.6) calc(var(--space-x) * 1.2);
        font-size: calc(var(--font-size-base) * 0.9);
    }
}

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        padding: 2rem 1rem;
        border-top: 1px solid #dee2e6;
        font-family: sans-serif;
        font-size: 0.9rem;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }
    .footer-section {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
    }
    .footer-logo {
        font-size: 1.5rem;
        font-weight: bold;
        color: #2c3e50;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .footer-nav a {
        color: #495057;
        text-decoration: none;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .footer-contacts {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 0.5rem 1rem;
        color: #6c757d;
        margin-bottom: 0.5rem;
    }
    .footer-contacts a {
        color: #6c757d;
        text-decoration: none;
    }
    .footer-contacts a:hover {
        text-decoration: underline;
    }
    .footer-legal {
        color: #6c757d;
        font-size: 0.85rem;
        border-top: 1px solid #e9ecef;
        padding-top: 0.75rem;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 0.5rem 1rem;
    }
    .footer-legal a {
        color: #6c757d;
        text-decoration: none;
    }
    .footer-legal a:hover {
        text-decoration: underline;
    }
    .disclaimer {
        flex-basis: 100%;
        font-style: italic;
        margin-top: 0.5rem;
        line-height: 1.4;
        color: #868e96;
    }
    @media (max-width: 768px) {
        .footer-section {
            flex-direction: column;
            align-items: flex-start;
            gap: 1.5rem;
        }
        .footer-nav ul {
            gap: 1rem;
        }
        .footer-contacts, .footer-legal {
            flex-direction: column;
            align-items: flex-start;
            gap: 0.5rem;
        }
    }

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

    .cookie-lv10__body {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-md);
        background: var(--bg-alt);
        color: var(--fg-on-page);
        padding: 12px;
        box-shadow: var(--shadow-sm);
    }

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

    .cookie-lv10__actions {
        margin-top: 10px;
        display: flex;
        justify-content: flex-end;
        gap: 8px;
    }

    .cookie-lv10__actions button {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-sm);
        background: var(--surface-1);
        color: var(--fg-on-page);
        padding: 7px 10px;
        cursor: pointer;
    }

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

.touch-stream {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 3vw, 36px);
        background: linear-gradient(160deg, var(--bg-primary), var(--bg-primary-hover));
        color: var(--fg-on-primary);
    }

    .touch-stream .wrap {
        max-width: 980px;
        margin: 0 auto;
    }

    .touch-stream .header {
        margin-bottom: 12px;
    }

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

    .touch-stream .header p {
        margin: 10px 0 0;
        opacity: .9;
    }

    .touch-stream .stream {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
        gap: 8px;
    }

    .touch-stream .chip {
        text-decoration: none;
        color: var(--fg-on-primary);
        border: 1px solid rgba(255, 255, 255, .35);
        border-radius: 999px;
        background: rgba(255, 255, 255, .12);
        padding: 10px 12px;
        display: flex;
        gap: 8px;
        align-items: center;
        justify-content: space-between;
    }

    .touch-stream .chip em {
        font-style: normal;
        opacity: .85;
    }

    .touch-stream .foot {
        margin-top: 12px;
    }

    .touch-stream .foot a {
        text-decoration: none;
        color: var(--fg-on-primary);
        border: 1px solid rgba(255, 255, 255, .45);
        border-radius: var(--radius-md);
        padding: 10px 14px;
        display: inline-block;
    }

.support-lv6 {
        padding: clamp(50px, 7vw, 90px) clamp(16px, 4vw, 36px);
        background: linear-gradient(180deg, var(--surface-2), var(--surface-1));
        color: var(--fg-on-page);
    }

    .support-lv6__wrap {
        max-width: 920px;
        margin: 0 auto;
    }

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

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

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

    .support-lv6__table {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        overflow: hidden;
    }

    .support-lv6__table article {
        display: grid;
        grid-template-columns: .8fr 1.2fr;
        gap: 12px;
        padding: 12px;
        border-bottom: 1px solid var(--border-on-surface-light);
        background: var(--surface-1);
    }

    .support-lv6__table article:last-child {
        border-bottom: 0;
    }

    .support-lv6__table h3 {
        margin: 0;
        color: var(--brand);
        font-size: 1rem;
    }

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

    @media (max-width: 700px) {
        .support-lv6__table article {
            grid-template-columns: 1fr;
        }
    }

.contacts-fresh-v5 {
        padding: calc(var(--space-y) * 2.4) var(--space-x);
        background: var(--neutral-900);
        color: var(--neutral-0);
    }

    .contacts-fresh-v5 .shell {
        max-width: 860px;
        margin: 0 auto;
        display: grid;
        gap: var(--gap);
    }

    .contacts-fresh-v5 h2 {
        margin: 0;
        font-size: clamp(1.7rem, 3.2vw, 2.4rem);
    }

    .contacts-fresh-v5 .head p {
        margin: .35rem 0 0;
        opacity: .85;
    }

    .contacts-fresh-v5 .stack {
        display: grid;
        gap: .7rem;
    }

    .contacts-fresh-v5 details {
        background: var(--chip-bg);
        border-radius: var(--radius-md);
        padding: .8rem 1rem;
    }

    .contacts-fresh-v5 summary {
        cursor: pointer;
        font-weight: 700;
    }

    .contacts-fresh-v5 .inside {
        display: grid;
        gap: .4rem;
        padding-top: .6rem;
    }

    .contacts-fresh-v5 .inside p {
        margin: 0;
    }

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

.form-fresh-v6 {
        padding: calc(var(--space-y) * 2.9) var(--space-x);
        background: var(--surface-2);
        color: var(--fg-on-surface);
    }

    .form-fresh-v6 .shell {
        max-width: 900px;
        margin: 0 auto;
        display: grid;
        gap: var(--gap);
    }

    .form-fresh-v6 h2 {
        margin: 0;
        font-size: clamp(1.8rem, 3.2vw, 2.4rem);
    }

    .form-fresh-v6 form {
        display: grid;
        gap: .85rem;
    }

    .form-fresh-v6 .rows {
        display: grid;
        gap: .6rem;
    }

    .form-fresh-v6 label {
        display: grid;
        grid-template-columns:180px 1fr;
        gap: .8rem;
        align-items: center;
        padding: .6rem .8rem;
        border-radius: var(--radius-sm);
        border: 1px solid var(--border-on-surface);
        background: var(--surface-1);
    }

    .form-fresh-v6 b {
        font-size: .9rem;
    }

    .form-fresh-v6 input {
        padding: .58rem .7rem;
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-sm);
        font: inherit;
    }

    .form-fresh-v6 button {
        justify-self: start;
        padding: .68rem 1rem;
        border: 0;
        border-radius: var(--radius-sm);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        font-weight: 700;
        cursor: pointer;
    }

    @media (max-width: 720px) {
        .form-fresh-v6 label {
            grid-template-columns:1fr;
        }
    }

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface-light);
    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);
}

.header-left {
    flex-shrink: 0;
}

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

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

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

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

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

.nav-link:hover,
.nav-link:focus {
    color: var(--link);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--brand);
    transition: width var(--anim-duration) var(--anim-ease);
}

.nav-link:hover::after,
.nav-link:focus::after {
    width: 100%;
}

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

.contact-info {
    display: flex;
    align-items: center;
}

.contact-link {
    color: var(--neutral-600);
    text-decoration: none;
    font-weight: 500;
    white-space: nowrap;
    transition: color var(--anim-duration) var(--anim-ease);
}

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

.btn {
    display: inline-block;
    padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 1.5);
    border-radius: var(--radius-md);
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all var(--anim-duration) var(--anim-ease);
    text-align: center;
    white-space: nowrap;
}

.btn-primary {
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
}

.btn-primary:hover {
    background-color: var(--bg-primary-hover);
    box-shadow: var(--shadow-md);
}

.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

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

@media (max-width: 767px) {
    .header-container {
        flex-wrap: wrap;
        padding: 0 calc(var(--space-x) * 0.75);
    }

    .header-nav {
        order: 3;
        width: 100%;
        display: none;
        margin-top: var(--space-y);
    }

    .header-nav.active {
        display: block;
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
        background-color: var(--surface-light);
        border-radius: var(--radius-lg);
        padding: var(--space-y);
        box-shadow: var(--shadow-md);
    }

    .nav-link {
        display: block;
        padding: calc(var(--space-y) * 0.75) var(--space-x);
        border-radius: var(--radius-sm);
    }

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

    .nav-link::after {
        display: none;
    }

    .header-right {
        order: 2;
        margin-left: auto;
    }

    .contact-info {
        display: none;
    }

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

    .burger-menu.active span:nth-child(1) {
        transform: translateY(9.5px) rotate(45deg);
    }

    .burger-menu.active span:nth-child(2) {
        opacity: 0;
    }

    .burger-menu.active span:nth-child(3) {
        transform: translateY(-9.5px) rotate(-45deg);
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .header-container {
        padding: 0 calc(var(--space-x) * 0.75);
    }

    .nav-list {
        gap: var(--gap);
    }

    .contact-link {
        font-size: calc(var(--font-size-base) * 0.9);
    }

    .btn {
        padding: calc(var(--space-y) * 0.6) calc(var(--space-x) * 1.2);
        font-size: calc(var(--font-size-base) * 0.9);
    }
}

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        padding: 2rem 1rem;
        border-top: 1px solid #dee2e6;
        font-family: sans-serif;
        font-size: 0.9rem;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }
    .footer-section {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
    }
    .footer-logo {
        font-size: 1.5rem;
        font-weight: bold;
        color: #2c3e50;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .footer-nav a {
        color: #495057;
        text-decoration: none;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .footer-contacts {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 0.5rem 1rem;
        color: #6c757d;
        margin-bottom: 0.5rem;
    }
    .footer-contacts a {
        color: #6c757d;
        text-decoration: none;
    }
    .footer-contacts a:hover {
        text-decoration: underline;
    }
    .footer-legal {
        color: #6c757d;
        font-size: 0.85rem;
        border-top: 1px solid #e9ecef;
        padding-top: 0.75rem;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 0.5rem 1rem;
    }
    .footer-legal a {
        color: #6c757d;
        text-decoration: none;
    }
    .footer-legal a:hover {
        text-decoration: underline;
    }
    .disclaimer {
        flex-basis: 100%;
        font-style: italic;
        margin-top: 0.5rem;
        line-height: 1.4;
        color: #868e96;
    }
    @media (max-width: 768px) {
        .footer-section {
            flex-direction: column;
            align-items: flex-start;
            gap: 1.5rem;
        }
        .footer-nav ul {
            gap: 1rem;
        }
        .footer-contacts, .footer-legal {
            flex-direction: column;
            align-items: flex-start;
            gap: 0.5rem;
        }
    }

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

    .cookie-lv10__body {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-md);
        background: var(--bg-alt);
        color: var(--fg-on-page);
        padding: 12px;
        box-shadow: var(--shadow-sm);
    }

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

    .cookie-lv10__actions {
        margin-top: 10px;
        display: flex;
        justify-content: flex-end;
        gap: 8px;
    }

    .cookie-lv10__actions button {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-sm);
        background: var(--surface-1);
        color: var(--fg-on-page);
        padding: 7px 10px;
        cursor: pointer;
    }

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

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

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

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

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

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

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

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

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

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

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

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface-light);
    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);
}

.header-left {
    flex-shrink: 0;
}

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

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

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

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

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

.nav-link:hover,
.nav-link:focus {
    color: var(--link);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--brand);
    transition: width var(--anim-duration) var(--anim-ease);
}

.nav-link:hover::after,
.nav-link:focus::after {
    width: 100%;
}

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

.contact-info {
    display: flex;
    align-items: center;
}

.contact-link {
    color: var(--neutral-600);
    text-decoration: none;
    font-weight: 500;
    white-space: nowrap;
    transition: color var(--anim-duration) var(--anim-ease);
}

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

.btn {
    display: inline-block;
    padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 1.5);
    border-radius: var(--radius-md);
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all var(--anim-duration) var(--anim-ease);
    text-align: center;
    white-space: nowrap;
}

.btn-primary {
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
}

.btn-primary:hover {
    background-color: var(--bg-primary-hover);
    box-shadow: var(--shadow-md);
}

.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

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

@media (max-width: 767px) {
    .header-container {
        flex-wrap: wrap;
        padding: 0 calc(var(--space-x) * 0.75);
    }

    .header-nav {
        order: 3;
        width: 100%;
        display: none;
        margin-top: var(--space-y);
    }

    .header-nav.active {
        display: block;
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
        background-color: var(--surface-light);
        border-radius: var(--radius-lg);
        padding: var(--space-y);
        box-shadow: var(--shadow-md);
    }

    .nav-link {
        display: block;
        padding: calc(var(--space-y) * 0.75) var(--space-x);
        border-radius: var(--radius-sm);
    }

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

    .nav-link::after {
        display: none;
    }

    .header-right {
        order: 2;
        margin-left: auto;
    }

    .contact-info {
        display: none;
    }

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

    .burger-menu.active span:nth-child(1) {
        transform: translateY(9.5px) rotate(45deg);
    }

    .burger-menu.active span:nth-child(2) {
        opacity: 0;
    }

    .burger-menu.active span:nth-child(3) {
        transform: translateY(-9.5px) rotate(-45deg);
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .header-container {
        padding: 0 calc(var(--space-x) * 0.75);
    }

    .nav-list {
        gap: var(--gap);
    }

    .contact-link {
        font-size: calc(var(--font-size-base) * 0.9);
    }

    .btn {
        padding: calc(var(--space-y) * 0.6) calc(var(--space-x) * 1.2);
        font-size: calc(var(--font-size-base) * 0.9);
    }
}

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        padding: 2rem 1rem;
        border-top: 1px solid #dee2e6;
        font-family: sans-serif;
        font-size: 0.9rem;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }
    .footer-section {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
    }
    .footer-logo {
        font-size: 1.5rem;
        font-weight: bold;
        color: #2c3e50;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .footer-nav a {
        color: #495057;
        text-decoration: none;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .footer-contacts {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 0.5rem 1rem;
        color: #6c757d;
        margin-bottom: 0.5rem;
    }
    .footer-contacts a {
        color: #6c757d;
        text-decoration: none;
    }
    .footer-contacts a:hover {
        text-decoration: underline;
    }
    .footer-legal {
        color: #6c757d;
        font-size: 0.85rem;
        border-top: 1px solid #e9ecef;
        padding-top: 0.75rem;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 0.5rem 1rem;
    }
    .footer-legal a {
        color: #6c757d;
        text-decoration: none;
    }
    .footer-legal a:hover {
        text-decoration: underline;
    }
    .disclaimer {
        flex-basis: 100%;
        font-style: italic;
        margin-top: 0.5rem;
        line-height: 1.4;
        color: #868e96;
    }
    @media (max-width: 768px) {
        .footer-section {
            flex-direction: column;
            align-items: flex-start;
            gap: 1.5rem;
        }
        .footer-nav ul {
            gap: 1rem;
        }
        .footer-contacts, .footer-legal {
            flex-direction: column;
            align-items: flex-start;
            gap: 0.5rem;
        }
    }

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

    .cookie-lv10__body {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-md);
        background: var(--bg-alt);
        color: var(--fg-on-page);
        padding: 12px;
        box-shadow: var(--shadow-sm);
    }

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

    .cookie-lv10__actions {
        margin-top: 10px;
        display: flex;
        justify-content: flex-end;
        gap: 8px;
    }

    .cookie-lv10__actions button {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-sm);
        background: var(--surface-1);
        color: var(--fg-on-page);
        padding: 7px 10px;
        cursor: pointer;
    }

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

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

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

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

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

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

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

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

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

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface-light);
    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);
}

.header-left {
    flex-shrink: 0;
}

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

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

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

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

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

.nav-link:hover,
.nav-link:focus {
    color: var(--link);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--brand);
    transition: width var(--anim-duration) var(--anim-ease);
}

.nav-link:hover::after,
.nav-link:focus::after {
    width: 100%;
}

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

.contact-info {
    display: flex;
    align-items: center;
}

.contact-link {
    color: var(--neutral-600);
    text-decoration: none;
    font-weight: 500;
    white-space: nowrap;
    transition: color var(--anim-duration) var(--anim-ease);
}

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

.btn {
    display: inline-block;
    padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 1.5);
    border-radius: var(--radius-md);
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all var(--anim-duration) var(--anim-ease);
    text-align: center;
    white-space: nowrap;
}

.btn-primary {
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
}

.btn-primary:hover {
    background-color: var(--bg-primary-hover);
    box-shadow: var(--shadow-md);
}

.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

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

@media (max-width: 767px) {
    .header-container {
        flex-wrap: wrap;
        padding: 0 calc(var(--space-x) * 0.75);
    }

    .header-nav {
        order: 3;
        width: 100%;
        display: none;
        margin-top: var(--space-y);
    }

    .header-nav.active {
        display: block;
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
        background-color: var(--surface-light);
        border-radius: var(--radius-lg);
        padding: var(--space-y);
        box-shadow: var(--shadow-md);
    }

    .nav-link {
        display: block;
        padding: calc(var(--space-y) * 0.75) var(--space-x);
        border-radius: var(--radius-sm);
    }

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

    .nav-link::after {
        display: none;
    }

    .header-right {
        order: 2;
        margin-left: auto;
    }

    .contact-info {
        display: none;
    }

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

    .burger-menu.active span:nth-child(1) {
        transform: translateY(9.5px) rotate(45deg);
    }

    .burger-menu.active span:nth-child(2) {
        opacity: 0;
    }

    .burger-menu.active span:nth-child(3) {
        transform: translateY(-9.5px) rotate(-45deg);
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .header-container {
        padding: 0 calc(var(--space-x) * 0.75);
    }

    .nav-list {
        gap: var(--gap);
    }

    .contact-link {
        font-size: calc(var(--font-size-base) * 0.9);
    }

    .btn {
        padding: calc(var(--space-y) * 0.6) calc(var(--space-x) * 1.2);
        font-size: calc(var(--font-size-base) * 0.9);
    }
}

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        padding: 2rem 1rem;
        border-top: 1px solid #dee2e6;
        font-family: sans-serif;
        font-size: 0.9rem;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }
    .footer-section {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
    }
    .footer-logo {
        font-size: 1.5rem;
        font-weight: bold;
        color: #2c3e50;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .footer-nav a {
        color: #495057;
        text-decoration: none;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .footer-contacts {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 0.5rem 1rem;
        color: #6c757d;
        margin-bottom: 0.5rem;
    }
    .footer-contacts a {
        color: #6c757d;
        text-decoration: none;
    }
    .footer-contacts a:hover {
        text-decoration: underline;
    }
    .footer-legal {
        color: #6c757d;
        font-size: 0.85rem;
        border-top: 1px solid #e9ecef;
        padding-top: 0.75rem;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 0.5rem 1rem;
    }
    .footer-legal a {
        color: #6c757d;
        text-decoration: none;
    }
    .footer-legal a:hover {
        text-decoration: underline;
    }
    .disclaimer {
        flex-basis: 100%;
        font-style: italic;
        margin-top: 0.5rem;
        line-height: 1.4;
        color: #868e96;
    }
    @media (max-width: 768px) {
        .footer-section {
            flex-direction: column;
            align-items: flex-start;
            gap: 1.5rem;
        }
        .footer-nav ul {
            gap: 1rem;
        }
        .footer-contacts, .footer-legal {
            flex-direction: column;
            align-items: flex-start;
            gap: 0.5rem;
        }
    }

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

    .cookie-lv10__body {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-md);
        background: var(--bg-alt);
        color: var(--fg-on-page);
        padding: 12px;
        box-shadow: var(--shadow-sm);
    }

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

    .cookie-lv10__actions {
        margin-top: 10px;
        display: flex;
        justify-content: flex-end;
        gap: 8px;
    }

    .cookie-lv10__actions button {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-sm);
        background: var(--surface-1);
        color: var(--fg-on-page);
        padding: 7px 10px;
        cursor: pointer;
    }

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

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

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

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

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

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

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface-light);
    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);
}

.header-left {
    flex-shrink: 0;
}

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

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

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

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

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

.nav-link:hover,
.nav-link:focus {
    color: var(--link);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--brand);
    transition: width var(--anim-duration) var(--anim-ease);
}

.nav-link:hover::after,
.nav-link:focus::after {
    width: 100%;
}

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

.contact-info {
    display: flex;
    align-items: center;
}

.contact-link {
    color: var(--neutral-600);
    text-decoration: none;
    font-weight: 500;
    white-space: nowrap;
    transition: color var(--anim-duration) var(--anim-ease);
}

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

.btn {
    display: inline-block;
    padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 1.5);
    border-radius: var(--radius-md);
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all var(--anim-duration) var(--anim-ease);
    text-align: center;
    white-space: nowrap;
}

.btn-primary {
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
}

.btn-primary:hover {
    background-color: var(--bg-primary-hover);
    box-shadow: var(--shadow-md);
}

.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

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

@media (max-width: 767px) {
    .header-container {
        flex-wrap: wrap;
        padding: 0 calc(var(--space-x) * 0.75);
    }

    .header-nav {
        order: 3;
        width: 100%;
        display: none;
        margin-top: var(--space-y);
    }

    .header-nav.active {
        display: block;
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
        background-color: var(--surface-light);
        border-radius: var(--radius-lg);
        padding: var(--space-y);
        box-shadow: var(--shadow-md);
    }

    .nav-link {
        display: block;
        padding: calc(var(--space-y) * 0.75) var(--space-x);
        border-radius: var(--radius-sm);
    }

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

    .nav-link::after {
        display: none;
    }

    .header-right {
        order: 2;
        margin-left: auto;
    }

    .contact-info {
        display: none;
    }

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

    .burger-menu.active span:nth-child(1) {
        transform: translateY(9.5px) rotate(45deg);
    }

    .burger-menu.active span:nth-child(2) {
        opacity: 0;
    }

    .burger-menu.active span:nth-child(3) {
        transform: translateY(-9.5px) rotate(-45deg);
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .header-container {
        padding: 0 calc(var(--space-x) * 0.75);
    }

    .nav-list {
        gap: var(--gap);
    }

    .contact-link {
        font-size: calc(var(--font-size-base) * 0.9);
    }

    .btn {
        padding: calc(var(--space-y) * 0.6) calc(var(--space-x) * 1.2);
        font-size: calc(var(--font-size-base) * 0.9);
    }
}

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        padding: 2rem 1rem;
        border-top: 1px solid #dee2e6;
        font-family: sans-serif;
        font-size: 0.9rem;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }
    .footer-section {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
    }
    .footer-logo {
        font-size: 1.5rem;
        font-weight: bold;
        color: #2c3e50;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .footer-nav a {
        color: #495057;
        text-decoration: none;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .footer-contacts {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 0.5rem 1rem;
        color: #6c757d;
        margin-bottom: 0.5rem;
    }
    .footer-contacts a {
        color: #6c757d;
        text-decoration: none;
    }
    .footer-contacts a:hover {
        text-decoration: underline;
    }
    .footer-legal {
        color: #6c757d;
        font-size: 0.85rem;
        border-top: 1px solid #e9ecef;
        padding-top: 0.75rem;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 0.5rem 1rem;
    }
    .footer-legal a {
        color: #6c757d;
        text-decoration: none;
    }
    .footer-legal a:hover {
        text-decoration: underline;
    }
    .disclaimer {
        flex-basis: 100%;
        font-style: italic;
        margin-top: 0.5rem;
        line-height: 1.4;
        color: #868e96;
    }
    @media (max-width: 768px) {
        .footer-section {
            flex-direction: column;
            align-items: flex-start;
            gap: 1.5rem;
        }
        .footer-nav ul {
            gap: 1rem;
        }
        .footer-contacts, .footer-legal {
            flex-direction: column;
            align-items: flex-start;
            gap: 0.5rem;
        }
    }

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

    .cookie-lv10__body {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-md);
        background: var(--bg-alt);
        color: var(--fg-on-page);
        padding: 12px;
        box-shadow: var(--shadow-sm);
    }

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

    .cookie-lv10__actions {
        margin-top: 10px;
        display: flex;
        justify-content: flex-end;
        gap: 8px;
    }

    .cookie-lv10__actions button {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-sm);
        background: var(--surface-1);
        color: var(--fg-on-page);
        padding: 7px 10px;
        cursor: pointer;
    }

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

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

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

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

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

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

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