:root {
  --font-family: "Montserrat", sans-serif;
  --font-size-base: 16.1px;
  --line-height-base: 1.45;

  --max-w: 1280px;
  --space-x: 1.11rem;
  --space-y: 1.16rem;
  --gap: 1.03rem;

  --radius-xl: 1.06rem;
  --radius-lg: 0.75rem;
  --radius-md: 0.47rem;
  --radius-sm: 0.27rem;

  --shadow-sm: 0 2px 5px rgba(0,0,0,0.13);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.16);
  --shadow-lg: 0 18px 38px rgba(0,0,0,0.2);

  --overlay: rgba(10, 25, 47, 0.85);
  --anim-duration: 180ms;
  --anim-ease: cubic-bezier(0.16,1,0.3,1);
  --random-number: 2;

  --brand: #0a192f;
  --brand-contrast: #e6e8ea;
  --accent: #8892b0;
  --accent-contrast: #0a192f;

  --neutral-0: #ffffff;
  --neutral-100: #f8fafc;
  --neutral-300: #cbd5e1;
  --neutral-600: #64748b;
  --neutral-800: #1e293b;
  --neutral-900: #0f172a;

  --bg-page: #ffffff;
  --fg-on-page: #0f172a;

  --bg-alt: #f8fafc;
  --fg-on-alt: #1e293b;

  --surface-1: #ffffff;
  --surface-2: #f1f5f9;
  --fg-on-surface: #0f172a;
  --border-on-surface: #e2e8f0;

  --surface-light: #ffffff;
  --fg-on-surface-light: #1e293b;
  --border-on-surface-light: #cbd5e1;

  --bg-primary: #0a192f;
  --fg-on-primary: #ffffff;
  --bg-primary-hover: #112240;
  --ring: #3b82f6;

  --bg-accent: #f1f5f9;
  --fg-on-accent: #0a192f;
  --bg-accent-hover: #ccd6f6;

  --link: #2563eb;
  --link-hover: #1d4ed8;

  --gradient-hero: linear-gradient(135deg, #0a192f 0%, #1e293b 100%);
  --gradient-accent: linear-gradient(90deg, #f1f5f9 0%, #e2e8f0 100%);

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

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

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

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--gap);
}

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

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

.burger-btn {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 2rem;
    height: 2rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.burger-line {
    width: 100%;
    height: 2px;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
    transform-origin: center;
}

.main-nav {
    display: block;
}

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

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

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

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

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

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

    .main-nav {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        background-color: var(--surface-1);
        box-shadow: var(--shadow-lg);
        transform: translateX(100%);
        transition: transform var(--anim-duration) var(--anim-ease);
        padding: 5rem var(--space-x) var(--space-y);
        z-index: 1000;
        overflow-y: auto;
    }

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

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

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

    .burger-btn.active .burger-line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .burger-btn.active .burger-line:nth-child(2) {
        opacity: 0;
    }

    .burger-btn.active .burger-line:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .site-header::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: var(--overlay);
        opacity: 0;
        visibility: hidden;
        transition: all var(--anim-duration) var(--anim-ease);
        z-index: 999;
    }

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

.footer {
        background-color: #f8f9fa;
        color: #333;
        border-top: 1px solid #dee2e6;
        padding: 3rem 1rem;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .footer-brand {
        text-align: center;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 0.5rem;
    }
    .footer-tagline {
        color: #6c757d;
        font-size: 0.95rem;
        max-width: 300px;
        margin: 0 auto;
    }
    .footer-nav .nav-list {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }
    .footer-nav a {
        color: #495057;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.2s ease;
    }
    .footer-nav a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .footer-contacts address {
        font-style: normal;
        text-align: center;
        line-height: 1.6;
        color: #555;
    }
    .footer-contacts strong {
        color: #2c3e50;
    }
    .footer-contacts a {
        color: #0066cc;
        text-decoration: none;
    }
    .footer-contacts a:hover {
        text-decoration: underline;
    }
    .footer-legal {
        text-align: center;
        padding-top: 1.5rem;
        border-top: 1px solid #e9ecef;
        color: #6c757d;
        font-size: 0.85rem;
    }
    .legal-links {
        margin-bottom: 0.75rem;
    }
    .legal-links a {
        color: #6c757d;
        text-decoration: none;
        margin: 0 0.25rem;
    }
    .legal-links a:hover {
        text-decoration: underline;
        color: #495057;
    }
    .copyright {
        margin-bottom: 0.5rem;
    }
    .disclaimer {
        font-size: 0.8rem;
        line-height: 1.4;
        max-width: 700px;
        margin: 0 auto;
        color: #868e96;
    }
    @media (min-width: 768px) {
        .footer-container {
            grid-template-columns: repeat(3, 1fr);
            align-items: start;
        }
        .footer-brand,
        .footer-nav,
        .footer-contacts {
            text-align: left;
        }
        .footer-nav .nav-list {
            flex-direction: column;
            justify-content: flex-start;
            gap: 0.75rem;
        }
        .footer-legal {
            grid-column: 1 / -1;
            text-align: left;
        }
        .footer-tagline {
            margin: 0;
        }
    }

.cookie-lv8 {
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: 12px;
        z-index: 1200;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 12px;
        background: var(--surface-1);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-sm);
    }

    .cookie-lv8__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 14px 12px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
        flex-wrap: wrap;
    }

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

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

    .cookie-lv8__actions button {
        border: 0;
        border-radius: 999px;
        background: var(--neutral-100);
        color: var(--fg-on-page);
        padding: 7px 11px;
        cursor: pointer;
    }

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

    @media (max-width: 760px) {
        .cookie-lv8 {
            border-radius: var(--radius-lg);
        }
    }

.hero {
        position: relative;
        min-height: 600px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        color: var(--fg-on-primary);
        overflow: hidden;
    }

    .hero--compact {
        min-height: 400px;
    }

    .hero__bg {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: -2;
    }

    .hero__overlay {
        position: absolute;
        inset: 0;
        background: var(--gradient-hero);
        opacity: 0.7;
        z-index: -1;
    }

    .hero--tint .hero__overlay {
        opacity: 0.55;
    }

    .hero__content {
        max-width: 900px;
        padding: clamp(16px, 3vw, 32px);
        z-index: 1;
    }

    .hero--tint .hero__content {
        background: var(--chip-bg);
        border-radius: var(--radius-lg);
        border: 1px solid var(--btn-ghost-bg-hover);
    }

    .hero h1 {
        font-size: clamp(28px, 5vw, 48px);
        font-weight: 700;
        margin-bottom: var(--space-y);
        text-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
    }

    .hero p {
        font-size: clamp(16px, 2.5vw, 20px);
        font-weight: 400;
        margin: 0 auto 0;
        max-width: 700px;
    }

.next-arrow {
        padding: clamp(60px, 9vw, 108px) 16px;
        background: var(--accent);
        color: var(--accent-contrast);
    }

    .next-arrow .wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        text-align: center;
    }

    .next-arrow h2 {
        margin: 0;
        font-size: clamp(30px, 4.5vw, 46px);
        font-family: var(--font-family);
        color: var(--neutral-900);
    }

    .next-arrow p {
        margin: 10px auto 0;
        max-width: 62ch;
        color: var(--neutral-800);
        line-height: var(--line-height-base);
    }

    .next-arrow .flow {
        margin-top: 16px;
        display: flex;
        gap: 8px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .next-arrow .flow a {
        text-decoration: none;
        color: var(--fg-on-primary);
        border: 1px solid var(--chip-bg);
        border-radius: 999px;
        background: var(--chip-bg);
        padding: 9px 13px;
        display: inline-flex;
        gap: 6px;
        align-items: center;
        font-family: var(--font-family);
        transition: background-color var(--anim-duration) var(--anim-ease);
    }

    .next-arrow .flow a:hover {
        background-color: var(--bg-accent-hover);
    }

    .next-arrow .flow .final {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border-color: var(--bg-primary);
    }

    .next-arrow .flow .final:hover {
        background-color: var(--bg-primary-hover);
    }

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

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

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

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

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

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

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

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

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

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

.clarifications-c2 {

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

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

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

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

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

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

    /* Световой “луч” двигается постоянно */
    .clarifications-c2__beam {
        position: absolute;
        top: 0;
        left: 0;
        width: 48%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
        transform: translateX(-120%);
        animation: c2Beam 6.2s linear infinite;
        pointer-events: none;
    }

    @keyframes c2Beam {
        0% {
            transform: translateX(-120%)
        }
        55% {
            transform: translateX(160%)
        }
        100% {
            transform: translateX(160%)
        }
    }

    .clarifications-c2__list {
        display: grid;
        gap: 10px;
        padding: 12px;
    }

    .clarifications-c2__row {
        display: grid;
        grid-template-columns: auto 1fr;
        gap: 12px;
        padding: 12px 14px;
        border-radius: var(--radius-lg);
        background: rgba(0, 0, 0, 0.14);
        border: 1px solid rgba(255, 255, 255, 0.12);
        transition: transform var(--anim-duration) var(--anim-ease), background var(--anim-duration) var(--anim-ease);
    }

    .clarifications-c2__row.is-hot {
        transform: translateY(-2px);
        background: rgba(255, 255, 255, 0.12);
    }

    .clarifications-c2__tag {
        align-self: start;
        padding: 8px 10px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.10);
        border: 1px solid rgba(255, 255, 255, 0.16);
        font-weight: 800;
        white-space: nowrap;
        color: rgba(255, 255, 255, .92);
    }

    .clarifications-c2__q {
        font-weight: 900;
        letter-spacing: -.01em;
        margin-bottom: 6px;
    }

    .clarifications-c2__a {
        color: rgba(255, 255, 255, .82);
        line-height: var(--line-height-base);
    }

    @media (max-width: 720px) {
        .clarifications-c2__row {
            grid-template-columns:1fr
        }

        .clarifications-c2__tag {
            justify-self: start
        }
    }

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

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

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

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--gap);
}

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

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

.burger-btn {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 2rem;
    height: 2rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.burger-line {
    width: 100%;
    height: 2px;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
    transform-origin: center;
}

.main-nav {
    display: block;
}

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

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

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

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

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

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

    .main-nav {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        background-color: var(--surface-1);
        box-shadow: var(--shadow-lg);
        transform: translateX(100%);
        transition: transform var(--anim-duration) var(--anim-ease);
        padding: 5rem var(--space-x) var(--space-y);
        z-index: 1000;
        overflow-y: auto;
    }

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

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

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

    .burger-btn.active .burger-line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .burger-btn.active .burger-line:nth-child(2) {
        opacity: 0;
    }

    .burger-btn.active .burger-line:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .site-header::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: var(--overlay);
        opacity: 0;
        visibility: hidden;
        transition: all var(--anim-duration) var(--anim-ease);
        z-index: 999;
    }

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

.footer {
        background-color: #f8f9fa;
        color: #333;
        border-top: 1px solid #dee2e6;
        padding: 3rem 1rem;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .footer-brand {
        text-align: center;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 0.5rem;
    }
    .footer-tagline {
        color: #6c757d;
        font-size: 0.95rem;
        max-width: 300px;
        margin: 0 auto;
    }
    .footer-nav .nav-list {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }
    .footer-nav a {
        color: #495057;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.2s ease;
    }
    .footer-nav a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .footer-contacts address {
        font-style: normal;
        text-align: center;
        line-height: 1.6;
        color: #555;
    }
    .footer-contacts strong {
        color: #2c3e50;
    }
    .footer-contacts a {
        color: #0066cc;
        text-decoration: none;
    }
    .footer-contacts a:hover {
        text-decoration: underline;
    }
    .footer-legal {
        text-align: center;
        padding-top: 1.5rem;
        border-top: 1px solid #e9ecef;
        color: #6c757d;
        font-size: 0.85rem;
    }
    .legal-links {
        margin-bottom: 0.75rem;
    }
    .legal-links a {
        color: #6c757d;
        text-decoration: none;
        margin: 0 0.25rem;
    }
    .legal-links a:hover {
        text-decoration: underline;
        color: #495057;
    }
    .copyright {
        margin-bottom: 0.5rem;
    }
    .disclaimer {
        font-size: 0.8rem;
        line-height: 1.4;
        max-width: 700px;
        margin: 0 auto;
        color: #868e96;
    }
    @media (min-width: 768px) {
        .footer-container {
            grid-template-columns: repeat(3, 1fr);
            align-items: start;
        }
        .footer-brand,
        .footer-nav,
        .footer-contacts {
            text-align: left;
        }
        .footer-nav .nav-list {
            flex-direction: column;
            justify-content: flex-start;
            gap: 0.75rem;
        }
        .footer-legal {
            grid-column: 1 / -1;
            text-align: left;
        }
        .footer-tagline {
            margin: 0;
        }
    }

.cookie-lv8 {
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: 12px;
        z-index: 1200;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 12px;
        background: var(--surface-1);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-sm);
    }

    .cookie-lv8__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 14px 12px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
        flex-wrap: wrap;
    }

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

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

    .cookie-lv8__actions button {
        border: 0;
        border-radius: 999px;
        background: var(--neutral-100);
        color: var(--fg-on-page);
        padding: 7px 11px;
        cursor: pointer;
    }

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

    @media (max-width: 760px) {
        .cookie-lv8 {
            border-radius: var(--radius-lg);
        }
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--gap);
}

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

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

.burger-btn {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 2rem;
    height: 2rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.burger-line {
    width: 100%;
    height: 2px;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
    transform-origin: center;
}

.main-nav {
    display: block;
}

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

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

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

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

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

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

    .main-nav {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        background-color: var(--surface-1);
        box-shadow: var(--shadow-lg);
        transform: translateX(100%);
        transition: transform var(--anim-duration) var(--anim-ease);
        padding: 5rem var(--space-x) var(--space-y);
        z-index: 1000;
        overflow-y: auto;
    }

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

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

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

    .burger-btn.active .burger-line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .burger-btn.active .burger-line:nth-child(2) {
        opacity: 0;
    }

    .burger-btn.active .burger-line:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .site-header::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: var(--overlay);
        opacity: 0;
        visibility: hidden;
        transition: all var(--anim-duration) var(--anim-ease);
        z-index: 999;
    }

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

.footer {
        background-color: #f8f9fa;
        color: #333;
        border-top: 1px solid #dee2e6;
        padding: 3rem 1rem;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .footer-brand {
        text-align: center;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 0.5rem;
    }
    .footer-tagline {
        color: #6c757d;
        font-size: 0.95rem;
        max-width: 300px;
        margin: 0 auto;
    }
    .footer-nav .nav-list {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }
    .footer-nav a {
        color: #495057;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.2s ease;
    }
    .footer-nav a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .footer-contacts address {
        font-style: normal;
        text-align: center;
        line-height: 1.6;
        color: #555;
    }
    .footer-contacts strong {
        color: #2c3e50;
    }
    .footer-contacts a {
        color: #0066cc;
        text-decoration: none;
    }
    .footer-contacts a:hover {
        text-decoration: underline;
    }
    .footer-legal {
        text-align: center;
        padding-top: 1.5rem;
        border-top: 1px solid #e9ecef;
        color: #6c757d;
        font-size: 0.85rem;
    }
    .legal-links {
        margin-bottom: 0.75rem;
    }
    .legal-links a {
        color: #6c757d;
        text-decoration: none;
        margin: 0 0.25rem;
    }
    .legal-links a:hover {
        text-decoration: underline;
        color: #495057;
    }
    .copyright {
        margin-bottom: 0.5rem;
    }
    .disclaimer {
        font-size: 0.8rem;
        line-height: 1.4;
        max-width: 700px;
        margin: 0 auto;
        color: #868e96;
    }
    @media (min-width: 768px) {
        .footer-container {
            grid-template-columns: repeat(3, 1fr);
            align-items: start;
        }
        .footer-brand,
        .footer-nav,
        .footer-contacts {
            text-align: left;
        }
        .footer-nav .nav-list {
            flex-direction: column;
            justify-content: flex-start;
            gap: 0.75rem;
        }
        .footer-legal {
            grid-column: 1 / -1;
            text-align: left;
        }
        .footer-tagline {
            margin: 0;
        }
    }

.cookie-lv8 {
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: 12px;
        z-index: 1200;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 12px;
        background: var(--surface-1);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-sm);
    }

    .cookie-lv8__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 14px 12px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
        flex-wrap: wrap;
    }

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

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

    .cookie-lv8__actions button {
        border: 0;
        border-radius: 999px;
        background: var(--neutral-100);
        color: var(--fg-on-page);
        padding: 7px 11px;
        cursor: pointer;
    }

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

    @media (max-width: 760px) {
        .cookie-lv8 {
            border-radius: var(--radius-lg);
        }
    }

.review-item {

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

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

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

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

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

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

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

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

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

    .review-item .review-item__content p {
        margin-bottom: 1rem;
    }
    .review-item .review-item__content p:last-child {
        margin-bottom: 0;
    }

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

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

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

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--gap);
}

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

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

.burger-btn {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 2rem;
    height: 2rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.burger-line {
    width: 100%;
    height: 2px;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
    transform-origin: center;
}

.main-nav {
    display: block;
}

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

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

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

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

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

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

    .main-nav {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        background-color: var(--surface-1);
        box-shadow: var(--shadow-lg);
        transform: translateX(100%);
        transition: transform var(--anim-duration) var(--anim-ease);
        padding: 5rem var(--space-x) var(--space-y);
        z-index: 1000;
        overflow-y: auto;
    }

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

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

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

    .burger-btn.active .burger-line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .burger-btn.active .burger-line:nth-child(2) {
        opacity: 0;
    }

    .burger-btn.active .burger-line:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .site-header::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: var(--overlay);
        opacity: 0;
        visibility: hidden;
        transition: all var(--anim-duration) var(--anim-ease);
        z-index: 999;
    }

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

.footer {
        background-color: #f8f9fa;
        color: #333;
        border-top: 1px solid #dee2e6;
        padding: 3rem 1rem;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .footer-brand {
        text-align: center;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 0.5rem;
    }
    .footer-tagline {
        color: #6c757d;
        font-size: 0.95rem;
        max-width: 300px;
        margin: 0 auto;
    }
    .footer-nav .nav-list {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }
    .footer-nav a {
        color: #495057;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.2s ease;
    }
    .footer-nav a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .footer-contacts address {
        font-style: normal;
        text-align: center;
        line-height: 1.6;
        color: #555;
    }
    .footer-contacts strong {
        color: #2c3e50;
    }
    .footer-contacts a {
        color: #0066cc;
        text-decoration: none;
    }
    .footer-contacts a:hover {
        text-decoration: underline;
    }
    .footer-legal {
        text-align: center;
        padding-top: 1.5rem;
        border-top: 1px solid #e9ecef;
        color: #6c757d;
        font-size: 0.85rem;
    }
    .legal-links {
        margin-bottom: 0.75rem;
    }
    .legal-links a {
        color: #6c757d;
        text-decoration: none;
        margin: 0 0.25rem;
    }
    .legal-links a:hover {
        text-decoration: underline;
        color: #495057;
    }
    .copyright {
        margin-bottom: 0.5rem;
    }
    .disclaimer {
        font-size: 0.8rem;
        line-height: 1.4;
        max-width: 700px;
        margin: 0 auto;
        color: #868e96;
    }
    @media (min-width: 768px) {
        .footer-container {
            grid-template-columns: repeat(3, 1fr);
            align-items: start;
        }
        .footer-brand,
        .footer-nav,
        .footer-contacts {
            text-align: left;
        }
        .footer-nav .nav-list {
            flex-direction: column;
            justify-content: flex-start;
            gap: 0.75rem;
        }
        .footer-legal {
            grid-column: 1 / -1;
            text-align: left;
        }
        .footer-tagline {
            margin: 0;
        }
    }

.cookie-lv8 {
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: 12px;
        z-index: 1200;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 12px;
        background: var(--surface-1);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-sm);
    }

    .cookie-lv8__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 14px 12px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
        flex-wrap: wrap;
    }

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

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

    .cookie-lv8__actions button {
        border: 0;
        border-radius: 999px;
        background: var(--neutral-100);
        color: var(--fg-on-page);
        padding: 7px 11px;
        cursor: pointer;
    }

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

    @media (max-width: 760px) {
        .cookie-lv8 {
            border-radius: var(--radius-lg);
        }
    }

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

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

.review-item__content {
    margin: 0;
    padding: 18px 20px;
    border-radius: var(--radius-xl);
    background: var(--surface-light);
    border: 1px solid var(--border-on-surface-light);
    box-shadow: var(--shadow-md);
}

.review-item__content blockquote {
    margin: 0 0 10px;
    font-size: 0.95rem;
    color: var(--neutral-800);
    line-height: 1.7;
}

.review-item__content figcaption {
    display: flex;
    flex-direction: column;
    gap: 2px;
    font-size: 0.85rem;
}

.review-item__name {
    font-weight: 600;
    color: var(--bg-primary);
}

.review-item__role {
    color: var(--neutral-600);
}

.identity-cv1 {
        padding: clamp(56px, 8vw, 104px) clamp(16px, 4vw, 40px);
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
    }

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

    .identity-cv1__head {
        text-align: center;
        margin-bottom: 18px;
    }

    .identity-cv1__head p {
        margin: 0;
        opacity: .9;
        letter-spacing: .08em;
        text-transform: uppercase;
    }

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

    .identity-cv1__head span {
        display: block;
        max-width: 74ch;
        margin: 0 auto;
        opacity: .92;
    }

    .identity-cv1__grid {
        display: grid;
        gap: var(--gap);
        grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    }

    .identity-cv1__grid article {
        border: 1px solid rgba(255, 255, 255, 0.25);
        background: rgba(255, 255, 255, 0.12);
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-md);
    }

    .identity-cv1__icon {
        font-size: 1.6rem;
        margin-bottom: 8px;
    }

    .identity-cv1__grid h3 {
        margin: 0;
    }

    .identity-cv1__grid p {
        margin: 7px 0;
        opacity: .92;
    }

    .identity-cv1__grid small {
        opacity: .9;
    }

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

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

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--gap);
}

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

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

.burger-btn {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 2rem;
    height: 2rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.burger-line {
    width: 100%;
    height: 2px;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
    transform-origin: center;
}

.main-nav {
    display: block;
}

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

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

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

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

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

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

    .main-nav {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        background-color: var(--surface-1);
        box-shadow: var(--shadow-lg);
        transform: translateX(100%);
        transition: transform var(--anim-duration) var(--anim-ease);
        padding: 5rem var(--space-x) var(--space-y);
        z-index: 1000;
        overflow-y: auto;
    }

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

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

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

    .burger-btn.active .burger-line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .burger-btn.active .burger-line:nth-child(2) {
        opacity: 0;
    }

    .burger-btn.active .burger-line:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .site-header::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: var(--overlay);
        opacity: 0;
        visibility: hidden;
        transition: all var(--anim-duration) var(--anim-ease);
        z-index: 999;
    }

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

.footer {
        background-color: #f8f9fa;
        color: #333;
        border-top: 1px solid #dee2e6;
        padding: 3rem 1rem;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .footer-brand {
        text-align: center;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 0.5rem;
    }
    .footer-tagline {
        color: #6c757d;
        font-size: 0.95rem;
        max-width: 300px;
        margin: 0 auto;
    }
    .footer-nav .nav-list {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }
    .footer-nav a {
        color: #495057;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.2s ease;
    }
    .footer-nav a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .footer-contacts address {
        font-style: normal;
        text-align: center;
        line-height: 1.6;
        color: #555;
    }
    .footer-contacts strong {
        color: #2c3e50;
    }
    .footer-contacts a {
        color: #0066cc;
        text-decoration: none;
    }
    .footer-contacts a:hover {
        text-decoration: underline;
    }
    .footer-legal {
        text-align: center;
        padding-top: 1.5rem;
        border-top: 1px solid #e9ecef;
        color: #6c757d;
        font-size: 0.85rem;
    }
    .legal-links {
        margin-bottom: 0.75rem;
    }
    .legal-links a {
        color: #6c757d;
        text-decoration: none;
        margin: 0 0.25rem;
    }
    .legal-links a:hover {
        text-decoration: underline;
        color: #495057;
    }
    .copyright {
        margin-bottom: 0.5rem;
    }
    .disclaimer {
        font-size: 0.8rem;
        line-height: 1.4;
        max-width: 700px;
        margin: 0 auto;
        color: #868e96;
    }
    @media (min-width: 768px) {
        .footer-container {
            grid-template-columns: repeat(3, 1fr);
            align-items: start;
        }
        .footer-brand,
        .footer-nav,
        .footer-contacts {
            text-align: left;
        }
        .footer-nav .nav-list {
            flex-direction: column;
            justify-content: flex-start;
            gap: 0.75rem;
        }
        .footer-legal {
            grid-column: 1 / -1;
            text-align: left;
        }
        .footer-tagline {
            margin: 0;
        }
    }

.cookie-lv8 {
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: 12px;
        z-index: 1200;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 12px;
        background: var(--surface-1);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-sm);
    }

    .cookie-lv8__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 14px 12px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
        flex-wrap: wrap;
    }

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

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

    .cookie-lv8__actions button {
        border: 0;
        border-radius: 999px;
        background: var(--neutral-100);
        color: var(--fg-on-page);
        padding: 7px 11px;
        cursor: pointer;
    }

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

    @media (max-width: 760px) {
        .cookie-lv8 {
            border-radius: var(--radius-lg);
        }
    }

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

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

.review-item__content {
    margin: 0;
    padding: 18px 20px;
    border-radius: var(--radius-xl);
    background: var(--surface-light);
    border: 1px solid var(--border-on-surface-light);
    box-shadow: var(--shadow-md);
}

.review-item__content blockquote {
    margin: 0 0 10px;
    font-size: 0.95rem;
    color: var(--neutral-800);
    line-height: 1.7;
}

.review-item__content figcaption {
    display: flex;
    flex-direction: column;
    gap: 2px;
    font-size: 0.85rem;
}

.review-item__name {
    font-weight: 600;
    color: var(--bg-primary);
}

.review-item__role {
    color: var(--neutral-600);
}

.value-lanes {
        padding: clamp(60px, 8vw, 110px) clamp(16px, 3vw, 40px);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
    }

    .value-lanes .wrap {
        max-width: 960px;
        margin: 0 auto;
    }

    .value-lanes .header {
        margin-bottom: 14px;
    }

    .value-lanes h2 {
        margin: 0;
        font-size: clamp(30px, 4.8vw, 52px);
    }

    .value-lanes header p {
        margin: 10px 0 0;
        opacity: 0.9;
    }

    .value-lanes .lanes {
        display: grid;
        gap: 10px;
    }

    .value-lanes article {
        display: grid;
        grid-template-columns: 44px 1fr;
        gap: 10px;
        border: 1px solid var(--chip-bg);
        border-radius: var(--radius-lg);
        background: var(--chip-bg);
        padding: 12px;
    }

    .value-lanes .step {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: var(--fg-on-primary);
        color: var(--bg-primary);
        display: grid;
        place-items: center;
        font-weight: 600;
    }

    .value-lanes h3 {
        margin: 0 0 6px;
    }

    .value-lanes article p {
        margin: 0 0 6px;
        opacity: 0.9;
    }

    .value-lanes article span {
        font-size: .85rem;
        opacity: 0.8;
    }

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

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

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--gap);
}

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

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

.burger-btn {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 2rem;
    height: 2rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.burger-line {
    width: 100%;
    height: 2px;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
    transform-origin: center;
}

.main-nav {
    display: block;
}

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

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

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

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

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

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

    .main-nav {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        background-color: var(--surface-1);
        box-shadow: var(--shadow-lg);
        transform: translateX(100%);
        transition: transform var(--anim-duration) var(--anim-ease);
        padding: 5rem var(--space-x) var(--space-y);
        z-index: 1000;
        overflow-y: auto;
    }

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

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

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

    .burger-btn.active .burger-line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .burger-btn.active .burger-line:nth-child(2) {
        opacity: 0;
    }

    .burger-btn.active .burger-line:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .site-header::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: var(--overlay);
        opacity: 0;
        visibility: hidden;
        transition: all var(--anim-duration) var(--anim-ease);
        z-index: 999;
    }

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

.footer {
        background-color: #f8f9fa;
        color: #333;
        border-top: 1px solid #dee2e6;
        padding: 3rem 1rem;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .footer-brand {
        text-align: center;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 0.5rem;
    }
    .footer-tagline {
        color: #6c757d;
        font-size: 0.95rem;
        max-width: 300px;
        margin: 0 auto;
    }
    .footer-nav .nav-list {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }
    .footer-nav a {
        color: #495057;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.2s ease;
    }
    .footer-nav a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .footer-contacts address {
        font-style: normal;
        text-align: center;
        line-height: 1.6;
        color: #555;
    }
    .footer-contacts strong {
        color: #2c3e50;
    }
    .footer-contacts a {
        color: #0066cc;
        text-decoration: none;
    }
    .footer-contacts a:hover {
        text-decoration: underline;
    }
    .footer-legal {
        text-align: center;
        padding-top: 1.5rem;
        border-top: 1px solid #e9ecef;
        color: #6c757d;
        font-size: 0.85rem;
    }
    .legal-links {
        margin-bottom: 0.75rem;
    }
    .legal-links a {
        color: #6c757d;
        text-decoration: none;
        margin: 0 0.25rem;
    }
    .legal-links a:hover {
        text-decoration: underline;
        color: #495057;
    }
    .copyright {
        margin-bottom: 0.5rem;
    }
    .disclaimer {
        font-size: 0.8rem;
        line-height: 1.4;
        max-width: 700px;
        margin: 0 auto;
        color: #868e96;
    }
    @media (min-width: 768px) {
        .footer-container {
            grid-template-columns: repeat(3, 1fr);
            align-items: start;
        }
        .footer-brand,
        .footer-nav,
        .footer-contacts {
            text-align: left;
        }
        .footer-nav .nav-list {
            flex-direction: column;
            justify-content: flex-start;
            gap: 0.75rem;
        }
        .footer-legal {
            grid-column: 1 / -1;
            text-align: left;
        }
        .footer-tagline {
            margin: 0;
        }
    }

.cookie-lv8 {
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: 12px;
        z-index: 1200;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 12px;
        background: var(--surface-1);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-sm);
    }

    .cookie-lv8__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 14px 12px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
        flex-wrap: wrap;
    }

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

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

    .cookie-lv8__actions button {
        border: 0;
        border-radius: 999px;
        background: var(--neutral-100);
        color: var(--fg-on-page);
        padding: 7px 11px;
        cursor: pointer;
    }

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

    @media (max-width: 760px) {
        .cookie-lv8 {
            border-radius: var(--radius-lg);
        }
    }

.two-column-section {
    padding: clamp(48px, 8vw, 80px) 0;
}

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

.two-column-section__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: calc(var(--gap) * 2);
    align-items: center;
}

.two-column-section__media img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    width: 100%;
    display: block;
}

.two-column-section__text h2 {
    margin-bottom: var(--space-y);
    color: var(--fg-on-page);
}

.two-column-section__text p {
    margin-bottom: var(--space-y);
    color: var(--neutral-600);
}

.two-column-section__btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: var(--radius-md);
    font-weight: 500;
    text-align: center;
    transition: all var(--anim-duration) var(--anim-ease);
    cursor: pointer;
    border: 1px solid var(--bg-primary);
    font-size: 1rem;
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
}

.two-column-section__btn:hover {
    background-color: var(--bg-primary-hover);
    border-color: var(--bg-primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.articles {

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

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

    .articles .articles__title {
        font-size: clamp(28px, 5vw, 48px);
        margin: 0 0 clamp(40px, 6vw, 56px);
        color: var(--fg-on-surface-light);
    }

    .articles .articles__grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: clamp(28px, 4.5vw, 40px);
    }

    .articles .articles__card {
        background: var(--bg-page);
        border-radius: var(--radius-xl);
        overflow: hidden;
        transition: transform 0.3s;
    }

    .articles .articles__card:hover {
        transform: translateY(-6px);
    }

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

    .articles .articles__image {
        width: 100%;
        height: 220px;
        overflow: hidden;
    }

    .articles .articles__image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .articles .articles__content {
        padding: clamp(24px, 4vw, 32px);
    }

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

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

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

.contact-map {

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

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

    .contact-map .h {
        text-align: center;
        margin-bottom: 2.5rem;
    }

    .contact-map .h h2 {
        margin: 0 0 .5rem;
        font-size: clamp(24px, 4vw, 40px);
        color: var(--fg-on-page);
    }

    .contact-map .h p {
        margin: 0;
        color: var(--neutral-600);
    }

    .contact-map .content {
        display: grid;
        grid-template-columns: 1.5fr 1fr;
        gap: 2rem;
    }

    .contact-map .map-container {
        width: 100%;
        border-radius: var(--radius-xl);
        overflow: hidden;
        box-shadow: var(--shadow-lg);
    }

    .contact-map .map-container iframe {
        display: block;
        width: 100%;
        height: 420px;
        border: 0;
    }

    .contact-map .info-card {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-radius: var(--radius-xl);
        padding: clamp(16px, 2.5vw, 28px);
        box-shadow: var(--shadow-lg);
    }

    .contact-map .info-card h3 {
        margin: 0 0 1.5rem;
        font-size: clamp(20px, 3vw, 26px);
        color: var(--fg-on-accent);
    }

    .contact-map .items {
        display: grid;
        gap: 1.5rem;
    }

    .contact-map .item {
        display: grid;
        gap: .5rem;
    }

    .contact-map .item strong {
        display: block;
        font-size: .9rem;
        opacity: .9;
    }

    .contact-map .item span {
        display: block;
        font-size: 1.05rem;
        color: var(--fg-on-accent);
    }

    @media (max-width: 1023px) {
        .contact-map .content {
            grid-template-columns: 1fr;
        }
    }

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

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

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--gap);
}

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

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

.burger-btn {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 2rem;
    height: 2rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.burger-line {
    width: 100%;
    height: 2px;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
    transform-origin: center;
}

.main-nav {
    display: block;
}

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

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

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

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

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

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

    .main-nav {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        background-color: var(--surface-1);
        box-shadow: var(--shadow-lg);
        transform: translateX(100%);
        transition: transform var(--anim-duration) var(--anim-ease);
        padding: 5rem var(--space-x) var(--space-y);
        z-index: 1000;
        overflow-y: auto;
    }

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

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

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

    .burger-btn.active .burger-line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .burger-btn.active .burger-line:nth-child(2) {
        opacity: 0;
    }

    .burger-btn.active .burger-line:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .site-header::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: var(--overlay);
        opacity: 0;
        visibility: hidden;
        transition: all var(--anim-duration) var(--anim-ease);
        z-index: 999;
    }

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

.footer {
        background-color: #f8f9fa;
        color: #333;
        border-top: 1px solid #dee2e6;
        padding: 3rem 1rem;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .footer-brand {
        text-align: center;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 0.5rem;
    }
    .footer-tagline {
        color: #6c757d;
        font-size: 0.95rem;
        max-width: 300px;
        margin: 0 auto;
    }
    .footer-nav .nav-list {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }
    .footer-nav a {
        color: #495057;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.2s ease;
    }
    .footer-nav a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .footer-contacts address {
        font-style: normal;
        text-align: center;
        line-height: 1.6;
        color: #555;
    }
    .footer-contacts strong {
        color: #2c3e50;
    }
    .footer-contacts a {
        color: #0066cc;
        text-decoration: none;
    }
    .footer-contacts a:hover {
        text-decoration: underline;
    }
    .footer-legal {
        text-align: center;
        padding-top: 1.5rem;
        border-top: 1px solid #e9ecef;
        color: #6c757d;
        font-size: 0.85rem;
    }
    .legal-links {
        margin-bottom: 0.75rem;
    }
    .legal-links a {
        color: #6c757d;
        text-decoration: none;
        margin: 0 0.25rem;
    }
    .legal-links a:hover {
        text-decoration: underline;
        color: #495057;
    }
    .copyright {
        margin-bottom: 0.5rem;
    }
    .disclaimer {
        font-size: 0.8rem;
        line-height: 1.4;
        max-width: 700px;
        margin: 0 auto;
        color: #868e96;
    }
    @media (min-width: 768px) {
        .footer-container {
            grid-template-columns: repeat(3, 1fr);
            align-items: start;
        }
        .footer-brand,
        .footer-nav,
        .footer-contacts {
            text-align: left;
        }
        .footer-nav .nav-list {
            flex-direction: column;
            justify-content: flex-start;
            gap: 0.75rem;
        }
        .footer-legal {
            grid-column: 1 / -1;
            text-align: left;
        }
        .footer-tagline {
            margin: 0;
        }
    }

.cookie-lv8 {
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: 12px;
        z-index: 1200;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 12px;
        background: var(--surface-1);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-sm);
    }

    .cookie-lv8__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 14px 12px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
        flex-wrap: wrap;
    }

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

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

    .cookie-lv8__actions button {
        border: 0;
        border-radius: 999px;
        background: var(--neutral-100);
        color: var(--fg-on-page);
        padding: 7px 11px;
        cursor: pointer;
    }

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

    @media (max-width: 760px) {
        .cookie-lv8 {
            border-radius: var(--radius-lg);
        }
    }

.contact-layout-d {
        padding: clamp(56px, 8vw, 94px) clamp(16px, 4vw, 34px);
        background: var(--accent);
        color: var(--neutral-0);
    }

    .contact-layout-d .wrap {
        max-width: 860px;
        margin: 0 auto;
    }

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

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

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

    .contact-layout-d .box {
        border-radius: var(--radius-lg);
        border: 1px solid rgba(255, 255, 255, .22);
        padding: 18px;
        background: rgba(255, 255, 255, .05);
    }

    .contact-layout-d ul {
        margin: 0;
        padding: 0;
        list-style: none;
        display: grid;
        gap: 10px;
    }

    .contact-layout-d li {
        display: grid;
        gap: 4px;
        padding: 10px 12px;
        border-radius: var(--radius-md);
        background: rgba(255, 255, 255, .06);
    }

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

    .contact-layout-d .social a {
        text-decoration: none;
        color: var(--neutral-0);
        border: 1px solid rgba(255, 255, 255, .28);
        padding: 6px 10px;
        border-radius: 999px;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--gap);
}

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

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

.burger-btn {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 2rem;
    height: 2rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.burger-line {
    width: 100%;
    height: 2px;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
    transform-origin: center;
}

.main-nav {
    display: block;
}

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

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

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

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

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

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

    .main-nav {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        background-color: var(--surface-1);
        box-shadow: var(--shadow-lg);
        transform: translateX(100%);
        transition: transform var(--anim-duration) var(--anim-ease);
        padding: 5rem var(--space-x) var(--space-y);
        z-index: 1000;
        overflow-y: auto;
    }

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

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

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

    .burger-btn.active .burger-line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .burger-btn.active .burger-line:nth-child(2) {
        opacity: 0;
    }

    .burger-btn.active .burger-line:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .site-header::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: var(--overlay);
        opacity: 0;
        visibility: hidden;
        transition: all var(--anim-duration) var(--anim-ease);
        z-index: 999;
    }

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

.footer {
        background-color: #f8f9fa;
        color: #333;
        border-top: 1px solid #dee2e6;
        padding: 3rem 1rem;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .footer-brand {
        text-align: center;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 0.5rem;
    }
    .footer-tagline {
        color: #6c757d;
        font-size: 0.95rem;
        max-width: 300px;
        margin: 0 auto;
    }
    .footer-nav .nav-list {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }
    .footer-nav a {
        color: #495057;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.2s ease;
    }
    .footer-nav a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .footer-contacts address {
        font-style: normal;
        text-align: center;
        line-height: 1.6;
        color: #555;
    }
    .footer-contacts strong {
        color: #2c3e50;
    }
    .footer-contacts a {
        color: #0066cc;
        text-decoration: none;
    }
    .footer-contacts a:hover {
        text-decoration: underline;
    }
    .footer-legal {
        text-align: center;
        padding-top: 1.5rem;
        border-top: 1px solid #e9ecef;
        color: #6c757d;
        font-size: 0.85rem;
    }
    .legal-links {
        margin-bottom: 0.75rem;
    }
    .legal-links a {
        color: #6c757d;
        text-decoration: none;
        margin: 0 0.25rem;
    }
    .legal-links a:hover {
        text-decoration: underline;
        color: #495057;
    }
    .copyright {
        margin-bottom: 0.5rem;
    }
    .disclaimer {
        font-size: 0.8rem;
        line-height: 1.4;
        max-width: 700px;
        margin: 0 auto;
        color: #868e96;
    }
    @media (min-width: 768px) {
        .footer-container {
            grid-template-columns: repeat(3, 1fr);
            align-items: start;
        }
        .footer-brand,
        .footer-nav,
        .footer-contacts {
            text-align: left;
        }
        .footer-nav .nav-list {
            flex-direction: column;
            justify-content: flex-start;
            gap: 0.75rem;
        }
        .footer-legal {
            grid-column: 1 / -1;
            text-align: left;
        }
        .footer-tagline {
            margin: 0;
        }
    }

.cookie-lv8 {
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: 12px;
        z-index: 1200;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 12px;
        background: var(--surface-1);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-sm);
    }

    .cookie-lv8__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 14px 12px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
        flex-wrap: wrap;
    }

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

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

    .cookie-lv8__actions button {
        border: 0;
        border-radius: 999px;
        background: var(--neutral-100);
        color: var(--fg-on-page);
        padding: 7px 11px;
        cursor: pointer;
    }

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

    @media (max-width: 760px) {
        .cookie-lv8 {
            border-radius: var(--radius-lg);
        }
    }

.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);
    padding: var(--space-y) 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

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

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--gap);
}

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

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

.burger-btn {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 2rem;
    height: 2rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.burger-line {
    width: 100%;
    height: 2px;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
    transform-origin: center;
}

.main-nav {
    display: block;
}

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

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

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

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

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

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

    .main-nav {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        background-color: var(--surface-1);
        box-shadow: var(--shadow-lg);
        transform: translateX(100%);
        transition: transform var(--anim-duration) var(--anim-ease);
        padding: 5rem var(--space-x) var(--space-y);
        z-index: 1000;
        overflow-y: auto;
    }

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

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

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

    .burger-btn.active .burger-line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .burger-btn.active .burger-line:nth-child(2) {
        opacity: 0;
    }

    .burger-btn.active .burger-line:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .site-header::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: var(--overlay);
        opacity: 0;
        visibility: hidden;
        transition: all var(--anim-duration) var(--anim-ease);
        z-index: 999;
    }

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

.footer {
        background-color: #f8f9fa;
        color: #333;
        border-top: 1px solid #dee2e6;
        padding: 3rem 1rem;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .footer-brand {
        text-align: center;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 0.5rem;
    }
    .footer-tagline {
        color: #6c757d;
        font-size: 0.95rem;
        max-width: 300px;
        margin: 0 auto;
    }
    .footer-nav .nav-list {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }
    .footer-nav a {
        color: #495057;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.2s ease;
    }
    .footer-nav a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .footer-contacts address {
        font-style: normal;
        text-align: center;
        line-height: 1.6;
        color: #555;
    }
    .footer-contacts strong {
        color: #2c3e50;
    }
    .footer-contacts a {
        color: #0066cc;
        text-decoration: none;
    }
    .footer-contacts a:hover {
        text-decoration: underline;
    }
    .footer-legal {
        text-align: center;
        padding-top: 1.5rem;
        border-top: 1px solid #e9ecef;
        color: #6c757d;
        font-size: 0.85rem;
    }
    .legal-links {
        margin-bottom: 0.75rem;
    }
    .legal-links a {
        color: #6c757d;
        text-decoration: none;
        margin: 0 0.25rem;
    }
    .legal-links a:hover {
        text-decoration: underline;
        color: #495057;
    }
    .copyright {
        margin-bottom: 0.5rem;
    }
    .disclaimer {
        font-size: 0.8rem;
        line-height: 1.4;
        max-width: 700px;
        margin: 0 auto;
        color: #868e96;
    }
    @media (min-width: 768px) {
        .footer-container {
            grid-template-columns: repeat(3, 1fr);
            align-items: start;
        }
        .footer-brand,
        .footer-nav,
        .footer-contacts {
            text-align: left;
        }
        .footer-nav .nav-list {
            flex-direction: column;
            justify-content: flex-start;
            gap: 0.75rem;
        }
        .footer-legal {
            grid-column: 1 / -1;
            text-align: left;
        }
        .footer-tagline {
            margin: 0;
        }
    }

.cookie-lv8 {
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: 12px;
        z-index: 1200;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 12px;
        background: var(--surface-1);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-sm);
    }

    .cookie-lv8__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 14px 12px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
        flex-wrap: wrap;
    }

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

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

    .cookie-lv8__actions button {
        border: 0;
        border-radius: 999px;
        background: var(--neutral-100);
        color: var(--fg-on-page);
        padding: 7px 11px;
        cursor: pointer;
    }

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

    @media (max-width: 760px) {
        .cookie-lv8 {
            border-radius: var(--radius-lg);
        }
    }

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

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

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

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

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

    .terms-layout-f .list {
        display: grid;
        gap: 14px;
    }

    .terms-layout-f article {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        background: linear-gradient(180deg, var(--surface-1), var(--surface-2));
        padding: var(--space-y) var(--space-x);
    }

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

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

    .terms-layout-f p, .terms-layout-f 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);
    padding: var(--space-y) 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

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

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--gap);
}

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

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

.burger-btn {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 2rem;
    height: 2rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.burger-line {
    width: 100%;
    height: 2px;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
    transform-origin: center;
}

.main-nav {
    display: block;
}

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

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

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

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

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

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

    .main-nav {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        background-color: var(--surface-1);
        box-shadow: var(--shadow-lg);
        transform: translateX(100%);
        transition: transform var(--anim-duration) var(--anim-ease);
        padding: 5rem var(--space-x) var(--space-y);
        z-index: 1000;
        overflow-y: auto;
    }

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

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

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

    .burger-btn.active .burger-line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .burger-btn.active .burger-line:nth-child(2) {
        opacity: 0;
    }

    .burger-btn.active .burger-line:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .site-header::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: var(--overlay);
        opacity: 0;
        visibility: hidden;
        transition: all var(--anim-duration) var(--anim-ease);
        z-index: 999;
    }

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

.footer {
        background-color: #f8f9fa;
        color: #333;
        border-top: 1px solid #dee2e6;
        padding: 3rem 1rem;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .footer-brand {
        text-align: center;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 0.5rem;
    }
    .footer-tagline {
        color: #6c757d;
        font-size: 0.95rem;
        max-width: 300px;
        margin: 0 auto;
    }
    .footer-nav .nav-list {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }
    .footer-nav a {
        color: #495057;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.2s ease;
    }
    .footer-nav a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .footer-contacts address {
        font-style: normal;
        text-align: center;
        line-height: 1.6;
        color: #555;
    }
    .footer-contacts strong {
        color: #2c3e50;
    }
    .footer-contacts a {
        color: #0066cc;
        text-decoration: none;
    }
    .footer-contacts a:hover {
        text-decoration: underline;
    }
    .footer-legal {
        text-align: center;
        padding-top: 1.5rem;
        border-top: 1px solid #e9ecef;
        color: #6c757d;
        font-size: 0.85rem;
    }
    .legal-links {
        margin-bottom: 0.75rem;
    }
    .legal-links a {
        color: #6c757d;
        text-decoration: none;
        margin: 0 0.25rem;
    }
    .legal-links a:hover {
        text-decoration: underline;
        color: #495057;
    }
    .copyright {
        margin-bottom: 0.5rem;
    }
    .disclaimer {
        font-size: 0.8rem;
        line-height: 1.4;
        max-width: 700px;
        margin: 0 auto;
        color: #868e96;
    }
    @media (min-width: 768px) {
        .footer-container {
            grid-template-columns: repeat(3, 1fr);
            align-items: start;
        }
        .footer-brand,
        .footer-nav,
        .footer-contacts {
            text-align: left;
        }
        .footer-nav .nav-list {
            flex-direction: column;
            justify-content: flex-start;
            gap: 0.75rem;
        }
        .footer-legal {
            grid-column: 1 / -1;
            text-align: left;
        }
        .footer-tagline {
            margin: 0;
        }
    }

.cookie-lv8 {
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: 12px;
        z-index: 1200;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 12px;
        background: var(--surface-1);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-sm);
    }

    .cookie-lv8__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 14px 12px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
        flex-wrap: wrap;
    }

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

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

    .cookie-lv8__actions button {
        border: 0;
        border-radius: 999px;
        background: var(--neutral-100);
        color: var(--fg-on-page);
        padding: 7px 11px;
        cursor: pointer;
    }

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

    @media (max-width: 760px) {
        .cookie-lv8 {
            border-radius: var(--radius-lg);
        }
    }

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

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

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

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

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

    .thank-mode-e a:hover {
        background-color: var(--bg-primary-hover);
    }

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

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

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--gap);
}

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

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

.burger-btn {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 2rem;
    height: 2rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.burger-line {
    width: 100%;
    height: 2px;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
    transform-origin: center;
}

.main-nav {
    display: block;
}

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

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

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

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

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

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

    .main-nav {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        background-color: var(--surface-1);
        box-shadow: var(--shadow-lg);
        transform: translateX(100%);
        transition: transform var(--anim-duration) var(--anim-ease);
        padding: 5rem var(--space-x) var(--space-y);
        z-index: 1000;
        overflow-y: auto;
    }

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

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

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

    .burger-btn.active .burger-line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .burger-btn.active .burger-line:nth-child(2) {
        opacity: 0;
    }

    .burger-btn.active .burger-line:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .site-header::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: var(--overlay);
        opacity: 0;
        visibility: hidden;
        transition: all var(--anim-duration) var(--anim-ease);
        z-index: 999;
    }

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

.footer {
        background-color: #f8f9fa;
        color: #333;
        border-top: 1px solid #dee2e6;
        padding: 3rem 1rem;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .footer-brand {
        text-align: center;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 0.5rem;
    }
    .footer-tagline {
        color: #6c757d;
        font-size: 0.95rem;
        max-width: 300px;
        margin: 0 auto;
    }
    .footer-nav .nav-list {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }
    .footer-nav a {
        color: #495057;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.2s ease;
    }
    .footer-nav a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .footer-contacts address {
        font-style: normal;
        text-align: center;
        line-height: 1.6;
        color: #555;
    }
    .footer-contacts strong {
        color: #2c3e50;
    }
    .footer-contacts a {
        color: #0066cc;
        text-decoration: none;
    }
    .footer-contacts a:hover {
        text-decoration: underline;
    }
    .footer-legal {
        text-align: center;
        padding-top: 1.5rem;
        border-top: 1px solid #e9ecef;
        color: #6c757d;
        font-size: 0.85rem;
    }
    .legal-links {
        margin-bottom: 0.75rem;
    }
    .legal-links a {
        color: #6c757d;
        text-decoration: none;
        margin: 0 0.25rem;
    }
    .legal-links a:hover {
        text-decoration: underline;
        color: #495057;
    }
    .copyright {
        margin-bottom: 0.5rem;
    }
    .disclaimer {
        font-size: 0.8rem;
        line-height: 1.4;
        max-width: 700px;
        margin: 0 auto;
        color: #868e96;
    }
    @media (min-width: 768px) {
        .footer-container {
            grid-template-columns: repeat(3, 1fr);
            align-items: start;
        }
        .footer-brand,
        .footer-nav,
        .footer-contacts {
            text-align: left;
        }
        .footer-nav .nav-list {
            flex-direction: column;
            justify-content: flex-start;
            gap: 0.75rem;
        }
        .footer-legal {
            grid-column: 1 / -1;
            text-align: left;
        }
        .footer-tagline {
            margin: 0;
        }
    }

.cookie-lv8 {
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: 12px;
        z-index: 1200;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 12px;
        background: var(--surface-1);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-sm);
    }

    .cookie-lv8__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 14px 12px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
        flex-wrap: wrap;
    }

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

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

    .cookie-lv8__actions button {
        border: 0;
        border-radius: 999px;
        background: var(--neutral-100);
        color: var(--fg-on-page);
        padding: 7px 11px;
        cursor: pointer;
    }

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

    @media (max-width: 760px) {
        .cookie-lv8 {
            border-radius: var(--radius-lg);
        }
    }

.err-slab-c {
        padding: clamp(56px, 10vw, 114px) 20px;
        background: linear-gradient(180deg, var(--bg-accent), var(--bg-page));
        color: var(--fg-on-page);
    }

    .err-slab-c .tile {
        max-width: 760px;
        margin: 0 auto;
        text-align: center;
        padding: clamp(28px, 4vw, 44px);
        background: var(--surface-1);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-lg);
        border-top: 8px solid var(--accent);
    }

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

    .err-slab-c p {
        margin: 12px 0 0;
        color: var(--neutral-800);
        font-family: var(--font-family);
        line-height: var(--line-height-base);
        font-size: var(--font-size-base);
    }

    .err-slab-c a {
        display: inline-block;
        margin-top: 18px;
        padding: 10px 18px;
        border-radius: 999px;
        border: 1px solid var(--neutral-300);
        color: var(--fg-on-page);
        text-decoration: none;
        background-color: var(--bg-primary);
        color: var(--fg-on-primary);
        font-family: var(--font-family);
        transition: background-color var(--anim-duration) var(--anim-ease);
    }

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