:root {
  --font-family: "Source Sans Pro", sans-serif;
  --font-size-base: 16px;
  --line-height-base: 1.6;

  --max-w: 1200px;
  --space-x: 24px;
  --space-y: 20px;
  --gap: 16px;

  --radius-xl: 24px;
  --radius-lg: 16px;
  --radius-md: 12px;
  --radius-sm: 6px;

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);

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

  --brand: #1a1a1a;
  --brand-contrast: #ffffff;
  --accent: #d4af37;
  --accent-contrast: #1a1a1a;

  --neutral-0: #ffffff;
  --neutral-100: #f5f5f5;
  --neutral-300: #d4d4d4;
  --neutral-600: #737373;
  --neutral-800: #262626;
  --neutral-900: #0a0a0a;

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

  --bg-alt: #fafafa;
  --fg-on-alt: #262626;

  --surface-1: #ffffff;
  --surface-2: #f5f5f5;
  --fg-on-surface: #0a0a0a;
  --border-on-surface: #e5e5e5;

  --surface-light: rgba(255,255,255,0.95);
  --fg-on-surface-light: #262626;
  --border-on-surface-light: rgba(229,229,229,0.8);

  --bg-primary: #1a1a1a;
  --fg-on-primary: #ffffff;
  --bg-primary-hover: #000000;
  --ring: rgba(26,26,26,0.2);

  --bg-accent: rgba(212, 175, 55, 0.1);
  --fg-on-accent: #1a1a1a;
  --bg-accent-hover: #b8941f;

  --success: #10b981;
  --success-contrast: #ffffff;
  --warning: #f59e0b;
  --warning-contrast: #1a1a1a;
  --danger: #ef4444;
  --danger-contrast: #ffffff;

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

  --gradient-hero: linear-gradient(135deg, #1a1a1a 0%, #404040 100%);
  --gradient-accent: linear-gradient(90deg, #d4af37 0%, #f5d76e 100%);

  --btn-primary-bg: var(--bg-primary);
  --btn-primary-fg: var(--fg-on-primary);
  --btn-primary-bg-hover: var(--bg-primary-hover);

  --btn-ghost-bg: transparent;
  --btn-ghost-fg: var(--fg-on-page);
  --btn-ghost-bg-hover: rgba(255,255,255,0.06);

  --card-bg-dark: var(--surface-1);
  --card-fg-dark: var(--fg-on-surface);
  --card-border-dark: var(--border-on-surface);

  --card-bg-light: var(--surface-light);
  --card-fg-light: var(--fg-on-surface-light);
  --card-border-light: var(--border-on-surface-light);

  --chip-bg: rgba(255,255,255,0.08);
  --chip-fg: var(--fg-on-page);

  --input-bg: var(--surface-2);
  --input-fg: var(--fg-on-surface);
  --input-border: var(--border-on-surface);
  --input-placeholder: rgba(255,255,255,0.55);
}
body{margin:0;padding:0;font-family:var(--font-family);}

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

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

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

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

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

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

.main-nav {
    display: block;
}

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

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

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

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

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

    .main-nav.active {
        right: 0;
    }

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

    .nav-link {
        display: block;
        padding: calc(var(--space-y) * 1.2) var(--space-x);
        border-radius: var(--radius-lg);
        background-color: var(--surface-light);
    }

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

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(2) {
        opacity: 0;
    }

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

.site-footer {
        background-color: #1a1a1a;
        color: #ccc;
        padding: 2.5rem 1rem;
        font-family: sans-serif;
        border-top: 1px solid #333;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 2rem;
        padding-bottom: 2rem;
    }

    .footer-section h3 {
        color: #fff;
        margin-bottom: 1rem;
        font-size: 1.1rem;
    }

    .footer-logo {
        color: #fff;
        font-size: 1.8rem;
        margin-bottom: 1rem;
        font-weight: bold;
    }

    .footer-disclaimer {
        font-size: 0.85rem;
        line-height: 1.4;
        color: #999;
        margin-bottom: 1.5rem;
    }

    .footer-nav ul,
    .footer-social ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-nav li,
    .footer-social li {
        margin-bottom: 0.6rem;
    }

    .footer-nav a,
    .footer-social a,
    .footer-contacts a,
    .footer-legal a {
        color: #ccc;
        text-decoration: none;
        transition: color 0.2s ease;
    }

    .footer-nav a:hover,
    .footer-social a:hover,
    .footer-contacts a:hover,
    .footer-legal a:hover {
        color: #fff;
        text-decoration: underline;
    }

    .footer-contacts p {
        margin-bottom: 0.5rem;
        line-height: 1.4;
    }

    .footer-bottom {
        max-width: 1200px;
        margin: 0 auto;
        padding-top: 2rem;
        border-top: 1px solid #333;
        text-align: center;
        font-size: 0.9rem;
        color: #999;
        display: flex;
        flex-direction: column;
        gap: 0.8rem;
    }

    .footer-legal a {
        margin: 0 0.5rem;
    }

    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 1.5rem;
            text-align: center;
        }

        .footer-bottom {
            flex-direction: column;
            align-items: center;
        }

        .footer-legal {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .footer-legal a {
            margin: 0;
        }
    }

.cookies--light-v6 {
   width: 100%;
    position: fixed;
    bottom: 0;
    font-family: var(--font-family);
    padding: 40px 20px;
    background: var(--bg-page);
    color: var(--fg-on-page);
    border-top: 1px solid var(--border-on-surface-light);
}

.cookies__inner {
    width: var(--max-w);
    margin: 0 auto;
    font-size: 0.9rem;
    color: var(--neutral-700);
}

.cookies__inner h2 {
    margin: 0 0 6px;
    font-size: 1rem;
}
.cookies__inner p {
    margin: 0;
}
    .cookie-banner__buttons {
        margin-top: 1rem;
        display: flex;
        gap: 1rem;
        flex-shrink: 0;
    }

    .cookie-banner__btn {
        padding: 1rem 2rem;
        border: 2px solid var(--ring);
        border-radius: var(--radius-lg);
        font-size: 1rem;
        cursor: pointer;
        transition: all .25s;
        white-space: nowrap;
        font-weight: 500;
    }

    .cookie-banner__accept {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-color: var(--bg-accent);
    }

    .cookie-banner__accept:hover {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
    }

    .cookie-banner__reject {
        background: transparent;
        color: var(--fg-on-page);
    }

    .cookie-banner__reject:hover {
        background: var(--bg-alt);
    }

    .cookie-banner__manage {
        background: transparent;
        color: var(--link);
        border-color: var(--link);
    }

    .cookie-banner__manage:hover {
        background: var(--link);
        color: var(--bg-page);
    }

    @media (max-width: 767px) {
        .cookie-banner__c {
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }

        .cookie-banner__buttons {
            width: 100%;
            flex-wrap: wrap;
        }

        .cookie-banner__btn {
            flex: 1;
            min-width: 0;
            padding: 0.85rem 1.5rem;
        }
    }

.hero--colored-v5 {
    font-family: var(--font-family);
    padding: 96px 20px;
    background: var(--gradient-accent);
    color: var(--brand);
    text-align: center;
}

.hero__inner {
    max-width: 720px;
    margin: 0 auto;
}

.hero__eyebrow {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    opacity: 0.9;
    margin: 0 0 0.5rem;
    color: var(--neutral-800);
}

.hero__title {
    margin: 0 0 8px;
    font-size: clamp(28px, 5vw, 40px);
    color: var(--neutral-900);
}

.hero__subtitle {
    margin: 0 0 20px;
    color: var(--neutral-600);
    line-height: var(--line-height-base);
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.hero__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 22px;
    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
}

    .hero__btn {
        background: var(--surface-1);
        color: var(--fg-on-surface);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-sm);
        transition:
            transform var(--anim-duration) var(--anim-ease),
            box-shadow var(--anim-duration) var(--anim-ease),
            background-color var(--anim-duration) var(--anim-ease);
    }

    .hero__btn:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-lg);
        background: var(--surface-2);
    }

.hero__btn--primary {
    background: var(--neutral-900);
    color: var(--neutral-0);
}

.hero__btn--ghost {
    background: transparent;
    color: var(--fg-on-primary);
    border: 1px solid rgba(191,219,254,0.9);
}

.index-cta {
        font-family: var(--font-family);
        color: var(--fg-on-page);
        background: linear-gradient(135deg, var(--ring), var(--bg-accent));
        padding: clamp(28px, 5vw, 80px) clamp(16px, 3vw, 40px);
        background-size: 300% 300%;

        animation: gradientFlow 4s ease-in-out infinite;
    }

    @keyframes gradientFlow {
        0% {
            background-position: 0% 50%;
        }
        50% {
            background-position: 100% 50%;
        }
        100% {
            background-position: 0% 50%;
        }
    }

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

    .index-cta h4 {
        margin: 0;
        font-size: clamp(1.25rem, 2vw, 1.5rem);
        font-weight: 700;
    }

    .index-cta .index-cta__ribbon {
        position: relative;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-radius: var(--radius-xl);
        padding: clamp(14px, 2.5vw, 24px);
        display: flex;
        justify-content: space-between;
        align-items: center;
        box-shadow: var(--shadow-lg);
    }

    .index-cta .index-cta__btn {
        background-color: var(--fg-on-page);
        color: var(--bg-page);
        text-decoration: none;
        padding: .8rem 1.1rem;
        border-radius: var(--radius-md);
        font-weight: 600;
        transition: background-color var(--anim-duration) var(--anim-ease);
    }

    .index-cta .index-cta__btn:hover {
        background-color: var(--neutral-800);
    }

    @media (max-width: 767px) {
        .index-cta .index-cta__ribbon {
            flex-direction: column;
            align-items: flex-start;
            gap: 16px;
        }

        .index-cta__c {
            grid-template-columns: auto;
        }
    }

.subscribe {
        font-family: var(--font-family);
        color: var(--fg-on-page);
        background: var(--gradient-hero);
        padding: clamp(48px, 6vw, 96px) clamp(16px, 4vw, 40px);
    }

    .subscribe .subscribe__c {
        max-width: 600px;
        margin: 0 auto;
    }

    .subscribe .subscribe__content {
        text-align: center;
    }

    .subscribe h1 {
        font-size: clamp(28px, 5vw, 48px);
        margin: 0 0 1rem;
        color: var(--fg-on-page);
    }

    .subscribe p {
        font-size: clamp(16px, 2.4vw, 20px);
        margin: 0 0 2rem;
        color: rgba(255, 255, 255, 0.9);
    }

    .subscribe .subscribe__form {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
        margin-bottom: 1rem;
    }

    /* Если randomNumber четное (2) - первый ребенок получает order: 2 */
    .subscribe .subscribe__form > *:first-child {
        order: calc((var(--random-number) % 2) * 2);
    }

    .subscribe .subscribe__form input {
        flex: 1;
        min-width: 200px;
        padding: 0.875rem 1rem;
        border-radius: var(--radius-lg);
        border: none;
        outline: none;
        font-size: 1rem;
        color: var(--fg-on-page);
        background: var(--bg-page);
    }

    .subscribe .subscribe__form input:focus {
        box-shadow: 0 0 0 3px var(--ring);
    }

    .subscribe .subscribe__form button {
        padding: 0.875rem 2rem;
        border-radius: var(--radius-lg);
        border: none;
        background: var(--bg-page);
        color: var(--bg-primary);
        font-weight: 600;
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
        box-shadow: var(--shadow-md);
    }

    .subscribe .subscribe__form button:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-lg);
    }

    .subscribe .subscribe__privacy {
        font-size: 0.875rem;
        color: rgba(255, 255, 255, 0.7);
        margin: 0;
    }

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

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

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

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

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

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

.main-nav {
    display: block;
}

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

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

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

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

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

    .main-nav.active {
        right: 0;
    }

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

    .nav-link {
        display: block;
        padding: calc(var(--space-y) * 1.2) var(--space-x);
        border-radius: var(--radius-lg);
        background-color: var(--surface-light);
    }

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

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(2) {
        opacity: 0;
    }

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

.site-footer {
        background-color: #1a1a1a;
        color: #ccc;
        padding: 2.5rem 1rem;
        font-family: sans-serif;
        border-top: 1px solid #333;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 2rem;
        padding-bottom: 2rem;
    }

    .footer-section h3 {
        color: #fff;
        margin-bottom: 1rem;
        font-size: 1.1rem;
    }

    .footer-logo {
        color: #fff;
        font-size: 1.8rem;
        margin-bottom: 1rem;
        font-weight: bold;
    }

    .footer-disclaimer {
        font-size: 0.85rem;
        line-height: 1.4;
        color: #999;
        margin-bottom: 1.5rem;
    }

    .footer-nav ul,
    .footer-social ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-nav li,
    .footer-social li {
        margin-bottom: 0.6rem;
    }

    .footer-nav a,
    .footer-social a,
    .footer-contacts a,
    .footer-legal a {
        color: #ccc;
        text-decoration: none;
        transition: color 0.2s ease;
    }

    .footer-nav a:hover,
    .footer-social a:hover,
    .footer-contacts a:hover,
    .footer-legal a:hover {
        color: #fff;
        text-decoration: underline;
    }

    .footer-contacts p {
        margin-bottom: 0.5rem;
        line-height: 1.4;
    }

    .footer-bottom {
        max-width: 1200px;
        margin: 0 auto;
        padding-top: 2rem;
        border-top: 1px solid #333;
        text-align: center;
        font-size: 0.9rem;
        color: #999;
        display: flex;
        flex-direction: column;
        gap: 0.8rem;
    }

    .footer-legal a {
        margin: 0 0.5rem;
    }

    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 1.5rem;
            text-align: center;
        }

        .footer-bottom {
            flex-direction: column;
            align-items: center;
        }

        .footer-legal {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .footer-legal a {
            margin: 0;
        }
    }

.cookies--light-v6 {
   width: 100%;
    position: fixed;
    bottom: 0;
    font-family: var(--font-family);
    padding: 40px 20px;
    background: var(--bg-page);
    color: var(--fg-on-page);
    border-top: 1px solid var(--border-on-surface-light);
}

.cookies__inner {
    width: var(--max-w);
    margin: 0 auto;
    font-size: 0.9rem;
    color: var(--neutral-700);
}

.cookies__inner h2 {
    margin: 0 0 6px;
    font-size: 1rem;
}
.cookies__inner p {
    margin: 0;
}
    .cookie-banner__buttons {
        margin-top: 1rem;
        display: flex;
        gap: 1rem;
        flex-shrink: 0;
    }

    .cookie-banner__btn {
        padding: 1rem 2rem;
        border: 2px solid var(--ring);
        border-radius: var(--radius-lg);
        font-size: 1rem;
        cursor: pointer;
        transition: all .25s;
        white-space: nowrap;
        font-weight: 500;
    }

    .cookie-banner__accept {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-color: var(--bg-accent);
    }

    .cookie-banner__accept:hover {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
    }

    .cookie-banner__reject {
        background: transparent;
        color: var(--fg-on-page);
    }

    .cookie-banner__reject:hover {
        background: var(--bg-alt);
    }

    .cookie-banner__manage {
        background: transparent;
        color: var(--link);
        border-color: var(--link);
    }

    .cookie-banner__manage:hover {
        background: var(--link);
        color: var(--bg-page);
    }

    @media (max-width: 767px) {
        .cookie-banner__c {
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }

        .cookie-banner__buttons {
            width: 100%;
            flex-wrap: wrap;
        }

        .cookie-banner__btn {
            flex: 1;
            min-width: 0;
            padding: 0.85rem 1.5rem;
        }
    }

.blog-list {
        font-family: var(--font-family);
        color: var(--fg-on-primary);
        background: var(--gradient-hero);
        padding: clamp(16px, 3vw, 40px);
    }

    .blog-list .blog-list__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .blog-list .blog-list__h {
        text-align: center;
        margin-bottom: var(--space-y);
        color: var(--fg-on-primary);
    }

    .blog-list h1 {
        font-size: clamp(28px, 5vw, 48px);
        margin: 0 0 0.5rem;
    }

    .blog-list .blog-list__grid {
        display: grid;
        gap: var(--space-x);
    }

    @media (min-width: 768px) {
        .blog-list .blog-list__grid {
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }
    }

    @media (min-width: 1024px) {
        .blog-list .blog-list__grid {
            grid-template-columns: repeat(3, minmax(0, 1fr));
        }
    }

    .blog-list .blog-list__card {
        background: var(--card-bg-dark);
        border-radius: var(--radius-lg);
        overflow: hidden;
        box-shadow: var(--shadow-md);
        transition: transform var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
    }

    .blog-list__card {
        position: relative;
        overflow: hidden;
    }

    /* 8 минимальных частиц */
    .blog-list__card::before,
    .blog-list__card::after {
        content: "";
        position: absolute;
        inset: 0;
        background:
                radial-gradient(circle 2px, #000 60%, transparent 61%) 10% -20px,
                radial-gradient(circle 2px, #000 60%, transparent 61%) 40% -40px,
                radial-gradient(circle 2px, #000 60%, transparent 61%) 80% -10px,
                radial-gradient(circle 2px, #000 60%, transparent 61%) 60% -50px,
                radial-gradient(circle 2px, #000 60%, transparent 61%) 20% -70px;
        background-size: 100% 100%;
        animation: fall 4s linear infinite;
        opacity: 0.5;
    }

    .blog-list__card::after {
        animation-duration: 6s;
        opacity: 0.3;
    }

    @keyframes fall {
        from { transform: translateY(-80px); }
        to   { transform: translateY(80px); }
    }

    .blog-list .blog-list__card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-lg);
    }

    .blog-list .blog-list__image img {
        width: 100%;
        height: 200px;
        object-fit: cover;
    }

    .blog-list .blog-list__content {
        padding: clamp(16px, 2vw, 24px);
        color: var(--fg-on-primary);
    }

    .blog-list .blog-list__date {
        color: var(--neutral-300);
        font-size: 0.875rem;
    }

    .blog-list h3 {
        margin: 0.5rem 0;
        font-size: clamp(18px, 2.2vw, 22px);
    }

    .blog-list h3 a {
        color: var(--fg-on-primary);
        text-decoration: none;
    }

    .blog-list p {
        color: var(--neutral-300);
        margin: 0.5rem 0 1rem;
    }

    .blog-list .blog-list__read-more {
        color: var(--bg-primary);
        text-decoration: none;
        font-weight: 600;
    }

    .blog-list .blog-list__read-more:hover {
        text-decoration: underline;
    }

.blog-item {
        font-family: var(--font-family);
        color: var(--fg-on-page);
        background: var(--bg-page);
        padding: clamp(16px, 3vw, 40px);
    }

    .blog-item .blog-item__c {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        gap: var(--space-x);
    }

    @media (min-width: 1024px) {
        .blog-item .blog-item__c {
            grid-template-columns: 1fr 300px;
        }
    }

    .blog-item .blog-item__header {
        margin-bottom: var(--space-y);
    }

    .blog-item h1 {
        font-size: clamp(28px, 5vw, 42px);
        margin: 0 0 1rem;
        color: var(--fg-on-page);
    }

    .blog-item .blog-item__meta {
        display: flex;
        gap: 1rem;
        color: var(--neutral-600);
        font-size: 0.875rem;
    }

    .blog-item .blog-item__content {
        line-height: 1.8;
        color: var(--fg-on-page);
    }

    .blog-item .blog-item__related {
        background: var(--card-bg-light);
        padding: clamp(16px, 2vw, 24px);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-sm);
    }

    .blog-item .blog-item__related h3 {
        margin: 0 0 1rem;
        font-size: 1.25rem;
        color: var(--fg-on-page);
    }

    .blog-item .blog-item__related-list {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }

    .blog-item .blog-item__related-item a {
        color: var(--link);
        text-decoration: none;
    }

    .blog-item .blog-item__related-item a:hover {
        color: var(--link-hover);
        text-decoration: underline;
    }

.contact-support {
        font-family: var(--font-family);
        background: #fff;
        color: var(--fg-on-page);
        padding: clamp(16px, 3vw, 40px);
    }

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

    .contact-support .columns {
        display: grid;
        gap: var(--space-x);
        grid-template-columns: 1fr 1fr;
    }

    .contact-support .col {
        background: var(--bg-page);
        border: 1px solid var(--ring);
        border-radius: var(--radius-lg);
        padding: clamp(12px, 2vw, 20px);
    }

    @media (max-width: 767px) {
        .contact-support .columns {
            grid-template-columns: repeat(1, minmax(0, 1fr));
        }
    }

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

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

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

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

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

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

.main-nav {
    display: block;
}

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

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

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

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

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

    .main-nav.active {
        right: 0;
    }

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

    .nav-link {
        display: block;
        padding: calc(var(--space-y) * 1.2) var(--space-x);
        border-radius: var(--radius-lg);
        background-color: var(--surface-light);
    }

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

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(2) {
        opacity: 0;
    }

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

.site-footer {
        background-color: #1a1a1a;
        color: #ccc;
        padding: 2.5rem 1rem;
        font-family: sans-serif;
        border-top: 1px solid #333;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 2rem;
        padding-bottom: 2rem;
    }

    .footer-section h3 {
        color: #fff;
        margin-bottom: 1rem;
        font-size: 1.1rem;
    }

    .footer-logo {
        color: #fff;
        font-size: 1.8rem;
        margin-bottom: 1rem;
        font-weight: bold;
    }

    .footer-disclaimer {
        font-size: 0.85rem;
        line-height: 1.4;
        color: #999;
        margin-bottom: 1.5rem;
    }

    .footer-nav ul,
    .footer-social ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-nav li,
    .footer-social li {
        margin-bottom: 0.6rem;
    }

    .footer-nav a,
    .footer-social a,
    .footer-contacts a,
    .footer-legal a {
        color: #ccc;
        text-decoration: none;
        transition: color 0.2s ease;
    }

    .footer-nav a:hover,
    .footer-social a:hover,
    .footer-contacts a:hover,
    .footer-legal a:hover {
        color: #fff;
        text-decoration: underline;
    }

    .footer-contacts p {
        margin-bottom: 0.5rem;
        line-height: 1.4;
    }

    .footer-bottom {
        max-width: 1200px;
        margin: 0 auto;
        padding-top: 2rem;
        border-top: 1px solid #333;
        text-align: center;
        font-size: 0.9rem;
        color: #999;
        display: flex;
        flex-direction: column;
        gap: 0.8rem;
    }

    .footer-legal a {
        margin: 0 0.5rem;
    }

    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 1.5rem;
            text-align: center;
        }

        .footer-bottom {
            flex-direction: column;
            align-items: center;
        }

        .footer-legal {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .footer-legal a {
            margin: 0;
        }
    }

.cookies--light-v6 {
   width: 100%;
    position: fixed;
    bottom: 0;
    font-family: var(--font-family);
    padding: 40px 20px;
    background: var(--bg-page);
    color: var(--fg-on-page);
    border-top: 1px solid var(--border-on-surface-light);
}

.cookies__inner {
    width: var(--max-w);
    margin: 0 auto;
    font-size: 0.9rem;
    color: var(--neutral-700);
}

.cookies__inner h2 {
    margin: 0 0 6px;
    font-size: 1rem;
}
.cookies__inner p {
    margin: 0;
}
    .cookie-banner__buttons {
        margin-top: 1rem;
        display: flex;
        gap: 1rem;
        flex-shrink: 0;
    }

    .cookie-banner__btn {
        padding: 1rem 2rem;
        border: 2px solid var(--ring);
        border-radius: var(--radius-lg);
        font-size: 1rem;
        cursor: pointer;
        transition: all .25s;
        white-space: nowrap;
        font-weight: 500;
    }

    .cookie-banner__accept {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-color: var(--bg-accent);
    }

    .cookie-banner__accept:hover {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
    }

    .cookie-banner__reject {
        background: transparent;
        color: var(--fg-on-page);
    }

    .cookie-banner__reject:hover {
        background: var(--bg-alt);
    }

    .cookie-banner__manage {
        background: transparent;
        color: var(--link);
        border-color: var(--link);
    }

    .cookie-banner__manage:hover {
        background: var(--link);
        color: var(--bg-page);
    }

    @media (max-width: 767px) {
        .cookie-banner__c {
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }

        .cookie-banner__buttons {
            width: 100%;
            flex-wrap: wrap;
        }

        .cookie-banner__btn {
            flex: 1;
            min-width: 0;
            padding: 0.85rem 1.5rem;
        }
    }

.blog-item {
        font-family: var(--font-family);
        color: var(--fg-on-page);
        background: var(--bg-page);
        padding: clamp(16px, 3vw, 40px);
    }

    .blog-item .blog-item__c {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        gap: var(--space-x);
    }

    @media (min-width: 1024px) {
        .blog-item .blog-item__c {
            grid-template-columns: 1fr 300px;
        }
    }

    .blog-item .blog-item__header {
        margin-bottom: var(--space-y);
    }

    .blog-item h1 {
        font-size: clamp(28px, 5vw, 42px);
        margin: 0 0 1rem;
        color: var(--bg-page);
    }

    .blog-item .blog-item__meta {
        display: flex;
        gap: 1rem;
        color: var(--neutral-600);
        font-size: 0.875rem;
    }

    .blog-item .blog-item__content {
        line-height: 1.8;
        color: var(--fg-on-page);
    }

    .blog-item .blog-item__related {
        background: var(--card-bg-light);
        padding: clamp(16px, 2vw, 24px);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-sm);
    }

    .blog-item .blog-item__related h3 {
        margin: 0 0 1rem;
        font-size: 1.25rem;
        color: var(--fg-on-page);
    }

    .blog-item .blog-item__related-list {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }

    .blog-item .blog-item__related-item a {
        color: var(--bg-page);
        text-decoration: none;
    }

    .blog-item .blog-item__related-item a:hover {
        text-decoration: underline;
    }

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

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

    .author .author__content {
        display: grid;
        grid-template-columns: auto 1fr;
        gap: clamp(32px, 5vw, 48px);
        align-items: center;
    }

    .author .author__image {
        width: clamp(150px, 22vw, 220px);
        height: clamp(150px, 22vw, 220px);
        border-radius: var(--radius-lg);
        overflow: hidden;
        flex-shrink: 0;
    }

    .author .author__image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .author .author__info h3 {
        font-size: clamp(26px, 4.5vw, 36px);
        margin: 0 0 0.75rem;
        color: var(--fg-on-surface-light);
    }

    .author .author__role {
        font-size: clamp(16px, 2.5vw, 18px);
        color: var(--bg-accent);
        margin: 0 0 1.25rem;
        font-weight: 600;
    }

    .author .author__bio {
        font-size: clamp(15px, 2.2vw, 17px);
        line-height: 1.7;
        color: var(--neutral-600);
        margin: 0;
    }

    @media (max-width: 768px) {
        .author .author__content {
            grid-template-columns: 1fr;
            text-align: center;
        }
    }

.blog-list {
        font-family: var(--font-family);
        color: var(--fg-on-primary);
        background: var(--gradient-hero);
        padding: clamp(16px, 3vw, 40px);
    }

    .blog-list .blog-list__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .blog-list .blog-list__h {
        text-align: center;
        margin-bottom: var(--space-y);
        color: var(--fg-on-primary);
    }

    .blog-list h1 {
        font-size: clamp(28px, 5vw, 48px);
        margin: 0 0 0.5rem;
    }

    .blog-list .blog-list__grid {
        display: grid;
        gap: var(--space-x);
    }

    @media (min-width: 768px) {
        .blog-list .blog-list__grid {
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }
    }

    @media (min-width: 1024px) {
        .blog-list .blog-list__grid {
            grid-template-columns: repeat(3, minmax(0, 1fr));
        }
    }

    .blog-list .blog-list__card {
        background: var(--card-bg-dark);
        border-radius: var(--radius-lg);
        overflow: hidden;
        box-shadow: var(--shadow-md);
        transition: transform var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
    }

    .blog-list__card {
        position: relative;
        overflow: hidden;
    }

    /* 8 минимальных частиц */
    .blog-list__card::before,
    .blog-list__card::after {
        content: "";
        position: absolute;
        inset: 0;
        background:
                radial-gradient(circle 2px, #000 60%, transparent 61%) 10% -20px,
                radial-gradient(circle 2px, #000 60%, transparent 61%) 40% -40px,
                radial-gradient(circle 2px, #000 60%, transparent 61%) 80% -10px,
                radial-gradient(circle 2px, #000 60%, transparent 61%) 60% -50px,
                radial-gradient(circle 2px, #000 60%, transparent 61%) 20% -70px;
        background-size: 100% 100%;
        animation: fall 4s linear infinite;
        opacity: 0.5;
    }

    .blog-list__card::after {
        animation-duration: 6s;
        opacity: 0.3;
    }

    @keyframes fall {
        from { transform: translateY(-80px); }
        to   { transform: translateY(80px); }
    }

    .blog-list .blog-list__card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-lg);
    }

    .blog-list .blog-list__image img {
        width: 100%;
        height: 200px;
        object-fit: cover;
    }

    .blog-list .blog-list__content {
        padding: clamp(16px, 2vw, 24px);
        color: var(--fg-on-primary);
    }

    .blog-list .blog-list__date {
        color: var(--neutral-300);
        font-size: 0.875rem;
    }

    .blog-list h3 {
        margin: 0.5rem 0;
        font-size: clamp(18px, 2.2vw, 22px);
    }

    .blog-list h3 a {
        color: var(--fg-on-primary);
        text-decoration: none;
    }

    .blog-list p {
        color: var(--neutral-300);
        margin: 0.5rem 0 1rem;
    }

    .blog-list .blog-list__read-more {
        color: var(--bg-primary);
        text-decoration: none;
        font-weight: 600;
    }

    .blog-list .blog-list__read-more:hover {
        text-decoration: underline;
    }

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

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

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

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

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

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

.main-nav {
    display: block;
}

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

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

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

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

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

    .main-nav.active {
        right: 0;
    }

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

    .nav-link {
        display: block;
        padding: calc(var(--space-y) * 1.2) var(--space-x);
        border-radius: var(--radius-lg);
        background-color: var(--surface-light);
    }

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

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(2) {
        opacity: 0;
    }

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

.site-footer {
        background-color: #1a1a1a;
        color: #ccc;
        padding: 2.5rem 1rem;
        font-family: sans-serif;
        border-top: 1px solid #333;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 2rem;
        padding-bottom: 2rem;
    }

    .footer-section h3 {
        color: #fff;
        margin-bottom: 1rem;
        font-size: 1.1rem;
    }

    .footer-logo {
        color: #fff;
        font-size: 1.8rem;
        margin-bottom: 1rem;
        font-weight: bold;
    }

    .footer-disclaimer {
        font-size: 0.85rem;
        line-height: 1.4;
        color: #999;
        margin-bottom: 1.5rem;
    }

    .footer-nav ul,
    .footer-social ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-nav li,
    .footer-social li {
        margin-bottom: 0.6rem;
    }

    .footer-nav a,
    .footer-social a,
    .footer-contacts a,
    .footer-legal a {
        color: #ccc;
        text-decoration: none;
        transition: color 0.2s ease;
    }

    .footer-nav a:hover,
    .footer-social a:hover,
    .footer-contacts a:hover,
    .footer-legal a:hover {
        color: #fff;
        text-decoration: underline;
    }

    .footer-contacts p {
        margin-bottom: 0.5rem;
        line-height: 1.4;
    }

    .footer-bottom {
        max-width: 1200px;
        margin: 0 auto;
        padding-top: 2rem;
        border-top: 1px solid #333;
        text-align: center;
        font-size: 0.9rem;
        color: #999;
        display: flex;
        flex-direction: column;
        gap: 0.8rem;
    }

    .footer-legal a {
        margin: 0 0.5rem;
    }

    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 1.5rem;
            text-align: center;
        }

        .footer-bottom {
            flex-direction: column;
            align-items: center;
        }

        .footer-legal {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .footer-legal a {
            margin: 0;
        }
    }

.cookies--light-v6 {
   width: 100%;
    position: fixed;
    bottom: 0;
    font-family: var(--font-family);
    padding: 40px 20px;
    background: var(--bg-page);
    color: var(--fg-on-page);
    border-top: 1px solid var(--border-on-surface-light);
}

.cookies__inner {
    width: var(--max-w);
    margin: 0 auto;
    font-size: 0.9rem;
    color: var(--neutral-700);
}

.cookies__inner h2 {
    margin: 0 0 6px;
    font-size: 1rem;
}
.cookies__inner p {
    margin: 0;
}
    .cookie-banner__buttons {
        margin-top: 1rem;
        display: flex;
        gap: 1rem;
        flex-shrink: 0;
    }

    .cookie-banner__btn {
        padding: 1rem 2rem;
        border: 2px solid var(--ring);
        border-radius: var(--radius-lg);
        font-size: 1rem;
        cursor: pointer;
        transition: all .25s;
        white-space: nowrap;
        font-weight: 500;
    }

    .cookie-banner__accept {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-color: var(--bg-accent);
    }

    .cookie-banner__accept:hover {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
    }

    .cookie-banner__reject {
        background: transparent;
        color: var(--fg-on-page);
    }

    .cookie-banner__reject:hover {
        background: var(--bg-alt);
    }

    .cookie-banner__manage {
        background: transparent;
        color: var(--link);
        border-color: var(--link);
    }

    .cookie-banner__manage:hover {
        background: var(--link);
        color: var(--bg-page);
    }

    @media (max-width: 767px) {
        .cookie-banner__c {
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }

        .cookie-banner__buttons {
            width: 100%;
            flex-wrap: wrap;
        }

        .cookie-banner__btn {
            flex: 1;
            min-width: 0;
            padding: 0.85rem 1.5rem;
        }
    }

.blog-item {
        font-family: var(--font-family);
        color: var(--fg-on-page);
        background: var(--bg-page);
        padding: clamp(16px, 3vw, 40px);
    }

    .blog-item .blog-item__c {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        gap: var(--space-x);
    }

    @media (min-width: 1024px) {
        .blog-item .blog-item__c {
            grid-template-columns: 1fr 300px;
        }
    }

    .blog-item .blog-item__header {
        margin-bottom: var(--space-y);
    }

    .blog-item h1 {
        font-size: clamp(28px, 5vw, 42px);
        margin: 0 0 1rem;
        color: var(--fg-on-page);
    }

    .blog-item .blog-item__meta {
        display: flex;
        gap: 1rem;
        color: var(--neutral-600);
        font-size: 0.875rem;
    }

    .blog-item .blog-item__content {
        line-height: 1.8;
        color: var(--fg-on-page);
    }

    .blog-item .blog-item__related {
        background: var(--card-bg-light);
        padding: clamp(16px, 2vw, 24px);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-sm);
    }

    .blog-item .blog-item__related h3 {
        margin: 0 0 1rem;
        font-size: 1.25rem;
        color: var(--fg-on-page);
    }

    .blog-item .blog-item__related-list {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }

    .blog-item .blog-item__related-item a {
        color: var(--bg-primary);
        text-decoration: none;
    }

    .blog-item .blog-item__related-item a:hover {
        text-decoration: underline;
    }

.blog-list {
        font-family: var(--font-family);
        color: var(--fg-on-primary);
        background: var(--gradient-hero);
        padding: clamp(16px, 3vw, 40px);
    }

    .blog-list .blog-list__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .blog-list .blog-list__h {
        text-align: center;
        margin-bottom: var(--space-y);
        color: var(--fg-on-primary);
    }

    .blog-list h1 {
        font-size: clamp(28px, 5vw, 48px);
        margin: 0 0 0.5rem;
    }

    .blog-list .blog-list__grid {
        display: grid;
        gap: var(--space-x);
    }

    @media (min-width: 768px) {
        .blog-list .blog-list__grid {
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }
    }

    @media (min-width: 1024px) {
        .blog-list .blog-list__grid {
            grid-template-columns: repeat(3, minmax(0, 1fr));
        }
    }

    .blog-list .blog-list__card {
        background: var(--card-bg-dark);
        border-radius: var(--radius-lg);
        overflow: hidden;
        box-shadow: var(--shadow-md);
        transition: transform var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
    }

    .blog-list__card {
        position: relative;
        overflow: hidden;
    }

    /* 8 минимальных частиц */
    .blog-list__card::before,
    .blog-list__card::after {
        content: "";
        position: absolute;
        inset: 0;
        background:
                radial-gradient(circle 2px, #000 60%, transparent 61%) 10% -20px,
                radial-gradient(circle 2px, #000 60%, transparent 61%) 40% -40px,
                radial-gradient(circle 2px, #000 60%, transparent 61%) 80% -10px,
                radial-gradient(circle 2px, #000 60%, transparent 61%) 60% -50px,
                radial-gradient(circle 2px, #000 60%, transparent 61%) 20% -70px;
        background-size: 100% 100%;
        animation: fall 4s linear infinite;
        opacity: 0.5;
    }

    .blog-list__card::after {
        animation-duration: 6s;
        opacity: 0.3;
    }

    @keyframes fall {
        from { transform: translateY(-80px); }
        to   { transform: translateY(80px); }
    }

    .blog-list .blog-list__card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-lg);
    }

    .blog-list .blog-list__image img {
        width: 100%;
        height: 200px;
        object-fit: cover;
    }

    .blog-list .blog-list__content {
        padding: clamp(16px, 2vw, 24px);
        color: var(--fg-on-primary);
    }

    .blog-list .blog-list__date {
        color: var(--neutral-300);
        font-size: 0.875rem;
    }

    .blog-list h3 {
        margin: 0.5rem 0;
        font-size: clamp(18px, 2.2vw, 22px);
    }

    .blog-list h3 a {
        color: var(--fg-on-primary);
        text-decoration: none;
    }

    .blog-list p {
        color: var(--neutral-300);
        margin: 0.5rem 0 1rem;
    }

    .blog-list .blog-list__read-more {
        color: var(--bg-primary);
        text-decoration: none;
        font-weight: 600;
    }

    .blog-list .blog-list__read-more:hover {
        text-decoration: underline;
    }

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

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

    .author .author__content {
        display: grid;
        grid-template-columns: auto 1fr;
        gap: clamp(32px, 5vw, 48px);
        align-items: center;
    }

    .author .author__image {
        width: clamp(150px, 22vw, 220px);
        height: clamp(150px, 22vw, 220px);
        border-radius: var(--radius-lg);
        overflow: hidden;
        flex-shrink: 0;
    }

    .author .author__image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .author .author__info h3 {
        font-size: clamp(26px, 4.5vw, 36px);
        margin: 0 0 0.75rem;
        color: var(--fg-on-surface-light);
    }

    .author .author__role {
        font-size: clamp(16px, 2.5vw, 18px);
        color: var(--bg-accent);
        margin: 0 0 1.25rem;
        font-weight: 600;
    }

    .author .author__bio {
        font-size: clamp(15px, 2.2vw, 17px);
        line-height: 1.7;
        color: var(--neutral-600);
        margin: 0;
    }

    @media (max-width: 768px) {
        .author .author__content {
            grid-template-columns: 1fr;
            text-align: center;
        }
    }

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

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

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

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

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

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

.main-nav {
    display: block;
}

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

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

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

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

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

    .main-nav.active {
        right: 0;
    }

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

    .nav-link {
        display: block;
        padding: calc(var(--space-y) * 1.2) var(--space-x);
        border-radius: var(--radius-lg);
        background-color: var(--surface-light);
    }

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

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(2) {
        opacity: 0;
    }

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

.site-footer {
        background-color: #1a1a1a;
        color: #ccc;
        padding: 2.5rem 1rem;
        font-family: sans-serif;
        border-top: 1px solid #333;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 2rem;
        padding-bottom: 2rem;
    }

    .footer-section h3 {
        color: #fff;
        margin-bottom: 1rem;
        font-size: 1.1rem;
    }

    .footer-logo {
        color: #fff;
        font-size: 1.8rem;
        margin-bottom: 1rem;
        font-weight: bold;
    }

    .footer-disclaimer {
        font-size: 0.85rem;
        line-height: 1.4;
        color: #999;
        margin-bottom: 1.5rem;
    }

    .footer-nav ul,
    .footer-social ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-nav li,
    .footer-social li {
        margin-bottom: 0.6rem;
    }

    .footer-nav a,
    .footer-social a,
    .footer-contacts a,
    .footer-legal a {
        color: #ccc;
        text-decoration: none;
        transition: color 0.2s ease;
    }

    .footer-nav a:hover,
    .footer-social a:hover,
    .footer-contacts a:hover,
    .footer-legal a:hover {
        color: #fff;
        text-decoration: underline;
    }

    .footer-contacts p {
        margin-bottom: 0.5rem;
        line-height: 1.4;
    }

    .footer-bottom {
        max-width: 1200px;
        margin: 0 auto;
        padding-top: 2rem;
        border-top: 1px solid #333;
        text-align: center;
        font-size: 0.9rem;
        color: #999;
        display: flex;
        flex-direction: column;
        gap: 0.8rem;
    }

    .footer-legal a {
        margin: 0 0.5rem;
    }

    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 1.5rem;
            text-align: center;
        }

        .footer-bottom {
            flex-direction: column;
            align-items: center;
        }

        .footer-legal {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .footer-legal a {
            margin: 0;
        }
    }

.cookies--light-v6 {
   width: 100%;
    position: fixed;
    bottom: 0;
    font-family: var(--font-family);
    padding: 40px 20px;
    background: var(--bg-page);
    color: var(--fg-on-page);
    border-top: 1px solid var(--border-on-surface-light);
}

.cookies__inner {
    width: var(--max-w);
    margin: 0 auto;
    font-size: 0.9rem;
    color: var(--neutral-700);
}

.cookies__inner h2 {
    margin: 0 0 6px;
    font-size: 1rem;
}
.cookies__inner p {
    margin: 0;
}
    .cookie-banner__buttons {
        margin-top: 1rem;
        display: flex;
        gap: 1rem;
        flex-shrink: 0;
    }

    .cookie-banner__btn {
        padding: 1rem 2rem;
        border: 2px solid var(--ring);
        border-radius: var(--radius-lg);
        font-size: 1rem;
        cursor: pointer;
        transition: all .25s;
        white-space: nowrap;
        font-weight: 500;
    }

    .cookie-banner__accept {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-color: var(--bg-accent);
    }

    .cookie-banner__accept:hover {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
    }

    .cookie-banner__reject {
        background: transparent;
        color: var(--fg-on-page);
    }

    .cookie-banner__reject:hover {
        background: var(--bg-alt);
    }

    .cookie-banner__manage {
        background: transparent;
        color: var(--link);
        border-color: var(--link);
    }

    .cookie-banner__manage:hover {
        background: var(--link);
        color: var(--bg-page);
    }

    @media (max-width: 767px) {
        .cookie-banner__c {
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }

        .cookie-banner__buttons {
            width: 100%;
            flex-wrap: wrap;
        }

        .cookie-banner__btn {
            flex: 1;
            min-width: 0;
            padding: 0.85rem 1.5rem;
        }
    }

.blog-item--colored-v5 {
    font-family: var(--font-family);
    padding: 56px 20px;
    background: var(--neutral-900);
    color: var(--neutral-0);
}

.blog-item__inner {
    max-width: 720px;
    margin: 0 auto;
}

.blog-item__cover {
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid rgba(148,163,184,0.6);
    margin-bottom: 16px;
}

.blog-item__cover img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

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

.blog-item__meta {
    margin: 0;
    font-size: 0.9rem;
    color: var(--neutral-300);
}
.blog-item__body {
    margin-top: var(--space-y);
    line-height: var(--line-height-base);
    color: var(--neutral-100);
}
.blog-item__body p {
    margin-bottom: var(--gap);
}

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

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

    .author .author__content {
        display: grid;
        grid-template-columns: auto 1fr;
        gap: clamp(32px, 5vw, 48px);
        align-items: center;
    }

    .author .author__image {
        width: clamp(150px, 22vw, 220px);
        height: clamp(150px, 22vw, 220px);
        border-radius: var(--radius-lg);
        overflow: hidden;
        flex-shrink: 0;
    }

    .author .author__image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .author .author__info h3 {
        font-size: clamp(26px, 4.5vw, 36px);
        margin: 0 0 0.75rem;
        color: var(--fg-on-surface-light);
    }

    .author .author__role {
        font-size: clamp(16px, 2.5vw, 18px);
        color: var(--bg-accent);
        margin: 0 0 1.25rem;
        font-weight: 600;
    }

    .author .author__bio {
        font-size: clamp(15px, 2.2vw, 17px);
        line-height: 1.7;
        color: var(--neutral-600);
        margin: 0;
    }

    @media (max-width: 768px) {
        .author .author__content {
            grid-template-columns: 1fr;
            text-align: center;
        }
    }

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

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

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

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

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

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

.main-nav {
    display: block;
}

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

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

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

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

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

    .main-nav.active {
        right: 0;
    }

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

    .nav-link {
        display: block;
        padding: calc(var(--space-y) * 1.2) var(--space-x);
        border-radius: var(--radius-lg);
        background-color: var(--surface-light);
    }

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

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(2) {
        opacity: 0;
    }

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

.site-footer {
        background-color: #1a1a1a;
        color: #ccc;
        padding: 2.5rem 1rem;
        font-family: sans-serif;
        border-top: 1px solid #333;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 2rem;
        padding-bottom: 2rem;
    }

    .footer-section h3 {
        color: #fff;
        margin-bottom: 1rem;
        font-size: 1.1rem;
    }

    .footer-logo {
        color: #fff;
        font-size: 1.8rem;
        margin-bottom: 1rem;
        font-weight: bold;
    }

    .footer-disclaimer {
        font-size: 0.85rem;
        line-height: 1.4;
        color: #999;
        margin-bottom: 1.5rem;
    }

    .footer-nav ul,
    .footer-social ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-nav li,
    .footer-social li {
        margin-bottom: 0.6rem;
    }

    .footer-nav a,
    .footer-social a,
    .footer-contacts a,
    .footer-legal a {
        color: #ccc;
        text-decoration: none;
        transition: color 0.2s ease;
    }

    .footer-nav a:hover,
    .footer-social a:hover,
    .footer-contacts a:hover,
    .footer-legal a:hover {
        color: #fff;
        text-decoration: underline;
    }

    .footer-contacts p {
        margin-bottom: 0.5rem;
        line-height: 1.4;
    }

    .footer-bottom {
        max-width: 1200px;
        margin: 0 auto;
        padding-top: 2rem;
        border-top: 1px solid #333;
        text-align: center;
        font-size: 0.9rem;
        color: #999;
        display: flex;
        flex-direction: column;
        gap: 0.8rem;
    }

    .footer-legal a {
        margin: 0 0.5rem;
    }

    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 1.5rem;
            text-align: center;
        }

        .footer-bottom {
            flex-direction: column;
            align-items: center;
        }

        .footer-legal {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .footer-legal a {
            margin: 0;
        }
    }

.cookies--light-v6 {
   width: 100%;
    position: fixed;
    bottom: 0;
    font-family: var(--font-family);
    padding: 40px 20px;
    background: var(--bg-page);
    color: var(--fg-on-page);
    border-top: 1px solid var(--border-on-surface-light);
}

.cookies__inner {
    width: var(--max-w);
    margin: 0 auto;
    font-size: 0.9rem;
    color: var(--neutral-700);
}

.cookies__inner h2 {
    margin: 0 0 6px;
    font-size: 1rem;
}
.cookies__inner p {
    margin: 0;
}
    .cookie-banner__buttons {
        margin-top: 1rem;
        display: flex;
        gap: 1rem;
        flex-shrink: 0;
    }

    .cookie-banner__btn {
        padding: 1rem 2rem;
        border: 2px solid var(--ring);
        border-radius: var(--radius-lg);
        font-size: 1rem;
        cursor: pointer;
        transition: all .25s;
        white-space: nowrap;
        font-weight: 500;
    }

    .cookie-banner__accept {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-color: var(--bg-accent);
    }

    .cookie-banner__accept:hover {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
    }

    .cookie-banner__reject {
        background: transparent;
        color: var(--fg-on-page);
    }

    .cookie-banner__reject:hover {
        background: var(--bg-alt);
    }

    .cookie-banner__manage {
        background: transparent;
        color: var(--link);
        border-color: var(--link);
    }

    .cookie-banner__manage:hover {
        background: var(--link);
        color: var(--bg-page);
    }

    @media (max-width: 767px) {
        .cookie-banner__c {
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }

        .cookie-banner__buttons {
            width: 100%;
            flex-wrap: wrap;
        }

        .cookie-banner__btn {
            flex: 1;
            min-width: 0;
            padding: 0.85rem 1.5rem;
        }
    }

.contact-support {
        font-family: var(--font-family);
        background: #fff;
        color: var(--fg-on-page);
        padding: clamp(16px, 3vw, 40px);
    }

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

    .contact-support .columns {
        display: grid;
        gap: var(--space-x);
        grid-template-columns: 1fr 1fr;
    }

    .contact-support .col {
        background: var(--bg-page);
        border: 1px solid var(--ring);
        border-radius: var(--radius-lg);
        padding: clamp(12px, 2vw, 20px);
    }

    @media (max-width: 767px) {
        .contact-support .columns {
            grid-template-columns: repeat(1, minmax(0, 1fr));
        }
    }

.index-faq {
        font-family: var(--font-family);
        background: var(--bg-page);
        color: var(--fg-on-page);
        padding: clamp(16px, 3vw, 40px);
    }

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

    .index-faq .index-faq__acc {
        display: grid;
        gap: 1rem;
    }

    .index-faq .index-faq__it {
        border: 1px solid var(--ring);
        border-radius: var(--radius-lg);
        background: var(--fg-on-page);
        box-shadow: var(--shadow-sm);
    }

    .index-faq summary {
        cursor: pointer;
        padding: 1rem 1.1rem;
        font-weight: 600;
        color: var(--bg-page);
        font-size: 22px;
    }

    .index-faq .index-faq__a {
        padding: 0 1.1rem 1rem;
        color: var(--bg-page);

    }

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

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

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

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

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

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

.main-nav {
    display: block;
}

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

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

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

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

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

    .main-nav.active {
        right: 0;
    }

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

    .nav-link {
        display: block;
        padding: calc(var(--space-y) * 1.2) var(--space-x);
        border-radius: var(--radius-lg);
        background-color: var(--surface-light);
    }

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

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(2) {
        opacity: 0;
    }

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

.site-footer {
        background-color: #1a1a1a;
        color: #ccc;
        padding: 2.5rem 1rem;
        font-family: sans-serif;
        border-top: 1px solid #333;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 2rem;
        padding-bottom: 2rem;
    }

    .footer-section h3 {
        color: #fff;
        margin-bottom: 1rem;
        font-size: 1.1rem;
    }

    .footer-logo {
        color: #fff;
        font-size: 1.8rem;
        margin-bottom: 1rem;
        font-weight: bold;
    }

    .footer-disclaimer {
        font-size: 0.85rem;
        line-height: 1.4;
        color: #999;
        margin-bottom: 1.5rem;
    }

    .footer-nav ul,
    .footer-social ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-nav li,
    .footer-social li {
        margin-bottom: 0.6rem;
    }

    .footer-nav a,
    .footer-social a,
    .footer-contacts a,
    .footer-legal a {
        color: #ccc;
        text-decoration: none;
        transition: color 0.2s ease;
    }

    .footer-nav a:hover,
    .footer-social a:hover,
    .footer-contacts a:hover,
    .footer-legal a:hover {
        color: #fff;
        text-decoration: underline;
    }

    .footer-contacts p {
        margin-bottom: 0.5rem;
        line-height: 1.4;
    }

    .footer-bottom {
        max-width: 1200px;
        margin: 0 auto;
        padding-top: 2rem;
        border-top: 1px solid #333;
        text-align: center;
        font-size: 0.9rem;
        color: #999;
        display: flex;
        flex-direction: column;
        gap: 0.8rem;
    }

    .footer-legal a {
        margin: 0 0.5rem;
    }

    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 1.5rem;
            text-align: center;
        }

        .footer-bottom {
            flex-direction: column;
            align-items: center;
        }

        .footer-legal {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .footer-legal a {
            margin: 0;
        }
    }

.cookies--light-v6 {
   width: 100%;
    position: fixed;
    bottom: 0;
    font-family: var(--font-family);
    padding: 40px 20px;
    background: var(--bg-page);
    color: var(--fg-on-page);
    border-top: 1px solid var(--border-on-surface-light);
}

.cookies__inner {
    width: var(--max-w);
    margin: 0 auto;
    font-size: 0.9rem;
    color: var(--neutral-700);
}

.cookies__inner h2 {
    margin: 0 0 6px;
    font-size: 1rem;
}
.cookies__inner p {
    margin: 0;
}
    .cookie-banner__buttons {
        margin-top: 1rem;
        display: flex;
        gap: 1rem;
        flex-shrink: 0;
    }

    .cookie-banner__btn {
        padding: 1rem 2rem;
        border: 2px solid var(--ring);
        border-radius: var(--radius-lg);
        font-size: 1rem;
        cursor: pointer;
        transition: all .25s;
        white-space: nowrap;
        font-weight: 500;
    }

    .cookie-banner__accept {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-color: var(--bg-accent);
    }

    .cookie-banner__accept:hover {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
    }

    .cookie-banner__reject {
        background: transparent;
        color: var(--fg-on-page);
    }

    .cookie-banner__reject:hover {
        background: var(--bg-alt);
    }

    .cookie-banner__manage {
        background: transparent;
        color: var(--link);
        border-color: var(--link);
    }

    .cookie-banner__manage:hover {
        background: var(--link);
        color: var(--bg-page);
    }

    @media (max-width: 767px) {
        .cookie-banner__c {
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }

        .cookie-banner__buttons {
            width: 100%;
            flex-wrap: wrap;
        }

        .cookie-banner__btn {
            flex: 1;
            min-width: 0;
            padding: 0.85rem 1.5rem;
        }
    }

.contact-form {
        font-family: var(--font-family);
        background: #fff;
        color: var(--fg-on-page);
        padding: clamp(16px, 3vw, 40px);
    }

    @keyframes scan {
        0% { transform: translateX(-100%); }
        100% { transform: translateX(100%); }
    }

    .contact-form .c {
        max-width: min(720px, var(--max-w));
        margin: 0 auto;
    }

    .contact-form .h h2 {
        margin: 0 0 .25rem;
        font-size: clamp(22px, 4vw, 36px);
        color: black
    }

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

    .contact-form .f {
        display: grid;
        gap: 12px;
        background: var(--bg-page);
        border: 1px solid var(--ring);
        border-radius: var(--radius-xl);
        padding: clamp(14px, 2.5vw, 26px);
        box-shadow: var(--shadow-sm);
    }

    .contact-form .row {
        display: grid;
        gap: 6px;
    }

    .contact-form label {
        font-size: .9rem;
        opacity: .85;
    }

    .contact-form input:not([type="checkbox"]), .contact-form textarea {
        width: 100%;
        padding: .85rem 1rem;
        border: 1px solid var(--ring);
        border-radius: var(--radius-md);
        background: #fff;
        transition: box-shadow .2s, transform .15s;
        box-sizing: border-box;
    }

    .contact-form input:focus, .contact-form textarea:focus {
        box-shadow: 0 0 0 3px var(--bg-accent);
        transform: translateY(-1px);
        outline: none;
    }

    .contact-form .agree {
        display: flex;
        align-items: center;
        gap: .5rem;
        font-size: .9rem;
        color: var(--neutral-600);
    }

    .contact-form button {
        padding: .9rem 1.2rem;
        border-radius: var(--radius-lg);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border: 0;
        cursor: pointer;
        transition: transform .2s;
    }

    .contact-form button:hover {
        transform: translateY(-2px);
    }

.contact-map {
        font-family: var(--font-family);
        background: var(--accent);
        color: var(--fg-on-accent);
        padding: clamp(16px, 3vw, 40px);
    }

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

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

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

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

    .contact-map .map-section {
        margin-bottom: 2.5rem;
    }

    .contact-map .map-wrapper {
        width: 100%;
        border-radius: var(--radius-xl);
        overflow: hidden;
        box-shadow: var(--shadow-lg);
        border: 3px solid var(--bg-accent);
    }

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

    .contact-map .contacts-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }

    .contact-map .contact-card {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-radius: var(--radius-lg);
        padding: clamp(14px, 2vw, 20px);
        text-align: center;
        box-shadow: var(--shadow-md);
        transition: transform .2s;
    }

    .contact-map .contact-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-lg);
    }

    .contact-map .contact-card .icon {
        font-size: 2rem;
        margin-bottom: .75rem;
    }

    .contact-map .contact-card h4 {
        margin: 0 0 .5rem;
        font-size: .95rem;
        opacity: .9;
    }

    .contact-map .contact-card p {
        margin: 0;
        font-size: .9rem;
        color: var(--fg-on-accent);
    }

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

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

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

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

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

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

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

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

.main-nav {
    display: block;
}

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

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

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

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

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

    .main-nav.active {
        right: 0;
    }

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

    .nav-link {
        display: block;
        padding: calc(var(--space-y) * 1.2) var(--space-x);
        border-radius: var(--radius-lg);
        background-color: var(--surface-light);
    }

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

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(2) {
        opacity: 0;
    }

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

.site-footer {
        background-color: #1a1a1a;
        color: #ccc;
        padding: 2.5rem 1rem;
        font-family: sans-serif;
        border-top: 1px solid #333;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 2rem;
        padding-bottom: 2rem;
    }

    .footer-section h3 {
        color: #fff;
        margin-bottom: 1rem;
        font-size: 1.1rem;
    }

    .footer-logo {
        color: #fff;
        font-size: 1.8rem;
        margin-bottom: 1rem;
        font-weight: bold;
    }

    .footer-disclaimer {
        font-size: 0.85rem;
        line-height: 1.4;
        color: #999;
        margin-bottom: 1.5rem;
    }

    .footer-nav ul,
    .footer-social ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-nav li,
    .footer-social li {
        margin-bottom: 0.6rem;
    }

    .footer-nav a,
    .footer-social a,
    .footer-contacts a,
    .footer-legal a {
        color: #ccc;
        text-decoration: none;
        transition: color 0.2s ease;
    }

    .footer-nav a:hover,
    .footer-social a:hover,
    .footer-contacts a:hover,
    .footer-legal a:hover {
        color: #fff;
        text-decoration: underline;
    }

    .footer-contacts p {
        margin-bottom: 0.5rem;
        line-height: 1.4;
    }

    .footer-bottom {
        max-width: 1200px;
        margin: 0 auto;
        padding-top: 2rem;
        border-top: 1px solid #333;
        text-align: center;
        font-size: 0.9rem;
        color: #999;
        display: flex;
        flex-direction: column;
        gap: 0.8rem;
    }

    .footer-legal a {
        margin: 0 0.5rem;
    }

    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 1.5rem;
            text-align: center;
        }

        .footer-bottom {
            flex-direction: column;
            align-items: center;
        }

        .footer-legal {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .footer-legal a {
            margin: 0;
        }
    }

.cookies--light-v6 {
   width: 100%;
    position: fixed;
    bottom: 0;
    font-family: var(--font-family);
    padding: 40px 20px;
    background: var(--bg-page);
    color: var(--fg-on-page);
    border-top: 1px solid var(--border-on-surface-light);
}

.cookies__inner {
    width: var(--max-w);
    margin: 0 auto;
    font-size: 0.9rem;
    color: var(--neutral-700);
}

.cookies__inner h2 {
    margin: 0 0 6px;
    font-size: 1rem;
}
.cookies__inner p {
    margin: 0;
}
    .cookie-banner__buttons {
        margin-top: 1rem;
        display: flex;
        gap: 1rem;
        flex-shrink: 0;
    }

    .cookie-banner__btn {
        padding: 1rem 2rem;
        border: 2px solid var(--ring);
        border-radius: var(--radius-lg);
        font-size: 1rem;
        cursor: pointer;
        transition: all .25s;
        white-space: nowrap;
        font-weight: 500;
    }

    .cookie-banner__accept {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-color: var(--bg-accent);
    }

    .cookie-banner__accept:hover {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
    }

    .cookie-banner__reject {
        background: transparent;
        color: var(--fg-on-page);
    }

    .cookie-banner__reject:hover {
        background: var(--bg-alt);
    }

    .cookie-banner__manage {
        background: transparent;
        color: var(--link);
        border-color: var(--link);
    }

    .cookie-banner__manage:hover {
        background: var(--link);
        color: var(--bg-page);
    }

    @media (max-width: 767px) {
        .cookie-banner__c {
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }

        .cookie-banner__buttons {
            width: 100%;
            flex-wrap: wrap;
        }

        .cookie-banner__btn {
            flex: 1;
            min-width: 0;
            padding: 0.85rem 1.5rem;
        }
    }

.policy-items {
        font-family: var(--font-family);
        background: #fff;
        color: var(--fg-on-page);
        padding: clamp(16px, 3vw, 40px);
    }

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

    .policy-items h1 {
        margin: 0 0 2.5rem;
        font-size: clamp(28px, 5vw, 48px);
        color: black;
        text-align: center;
    }

    .policy-items__grid {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 1.5rem;
    }

    .policy-items__card {
        padding: 1.75rem;
        background: var(--bg-page);
        border: 1px solid var(--ring);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-sm);
    }

    .policy-items__card h3 {
        margin: 0 0 1rem;
        font-size: clamp(18px, 2.5vw, 22px);
        color: var(--fg-on-page);
    }

    .policy-items__text {
        font-size: .95rem;
        color: var(--neutral-600);
        line-height: 1.7;
    }

    @media (max-width: 1023px) {
        .policy-items__grid {
            grid-template-columns: 1fr;
        }
    }

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

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

    }

    .contacts .contacts__banner {
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: rgba(255, 255, 255, .14);
        border: 1px solid rgba(255, 255, 255, .25);
        border-radius: var(--radius-xl);
        padding: clamp(12px, 2vw, 20px);
    }

    .contacts .contacts__btn {
        background: var(--fg-on-page);
        color: var(--bg-page);
        text-decoration: none;
        padding: .7rem 1rem;
        border-radius: var(--radius-md);
    }

    .contacts .contacts__txt {
        margin: .8rem 0 0;
        opacity: .9;
    }

    .contacts .contacts__btn {
        position: relative;
    }

    .contacts .contacts__btn::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        height: 2px;
        background: var(--gradient-hero);
        transform-origin: left;
        transform: scaleX(0);
        transition: transform var(--anim-duration) var(--anim-ease);
    }

    .contacts .contacts__btn:hover::after {
        transform: scaleX(1);
    }

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

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

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

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

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

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

.main-nav {
    display: block;
}

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

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

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

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

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

    .main-nav.active {
        right: 0;
    }

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

    .nav-link {
        display: block;
        padding: calc(var(--space-y) * 1.2) var(--space-x);
        border-radius: var(--radius-lg);
        background-color: var(--surface-light);
    }

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

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(2) {
        opacity: 0;
    }

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

.site-footer {
        background-color: #1a1a1a;
        color: #ccc;
        padding: 2.5rem 1rem;
        font-family: sans-serif;
        border-top: 1px solid #333;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 2rem;
        padding-bottom: 2rem;
    }

    .footer-section h3 {
        color: #fff;
        margin-bottom: 1rem;
        font-size: 1.1rem;
    }

    .footer-logo {
        color: #fff;
        font-size: 1.8rem;
        margin-bottom: 1rem;
        font-weight: bold;
    }

    .footer-disclaimer {
        font-size: 0.85rem;
        line-height: 1.4;
        color: #999;
        margin-bottom: 1.5rem;
    }

    .footer-nav ul,
    .footer-social ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-nav li,
    .footer-social li {
        margin-bottom: 0.6rem;
    }

    .footer-nav a,
    .footer-social a,
    .footer-contacts a,
    .footer-legal a {
        color: #ccc;
        text-decoration: none;
        transition: color 0.2s ease;
    }

    .footer-nav a:hover,
    .footer-social a:hover,
    .footer-contacts a:hover,
    .footer-legal a:hover {
        color: #fff;
        text-decoration: underline;
    }

    .footer-contacts p {
        margin-bottom: 0.5rem;
        line-height: 1.4;
    }

    .footer-bottom {
        max-width: 1200px;
        margin: 0 auto;
        padding-top: 2rem;
        border-top: 1px solid #333;
        text-align: center;
        font-size: 0.9rem;
        color: #999;
        display: flex;
        flex-direction: column;
        gap: 0.8rem;
    }

    .footer-legal a {
        margin: 0 0.5rem;
    }

    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 1.5rem;
            text-align: center;
        }

        .footer-bottom {
            flex-direction: column;
            align-items: center;
        }

        .footer-legal {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .footer-legal a {
            margin: 0;
        }
    }

.cookies--light-v6 {
   width: 100%;
    position: fixed;
    bottom: 0;
    font-family: var(--font-family);
    padding: 40px 20px;
    background: var(--bg-page);
    color: var(--fg-on-page);
    border-top: 1px solid var(--border-on-surface-light);
}

.cookies__inner {
    width: var(--max-w);
    margin: 0 auto;
    font-size: 0.9rem;
    color: var(--neutral-700);
}

.cookies__inner h2 {
    margin: 0 0 6px;
    font-size: 1rem;
}
.cookies__inner p {
    margin: 0;
}
    .cookie-banner__buttons {
        margin-top: 1rem;
        display: flex;
        gap: 1rem;
        flex-shrink: 0;
    }

    .cookie-banner__btn {
        padding: 1rem 2rem;
        border: 2px solid var(--ring);
        border-radius: var(--radius-lg);
        font-size: 1rem;
        cursor: pointer;
        transition: all .25s;
        white-space: nowrap;
        font-weight: 500;
    }

    .cookie-banner__accept {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-color: var(--bg-accent);
    }

    .cookie-banner__accept:hover {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
    }

    .cookie-banner__reject {
        background: transparent;
        color: var(--fg-on-page);
    }

    .cookie-banner__reject:hover {
        background: var(--bg-alt);
    }

    .cookie-banner__manage {
        background: transparent;
        color: var(--link);
        border-color: var(--link);
    }

    .cookie-banner__manage:hover {
        background: var(--link);
        color: var(--bg-page);
    }

    @media (max-width: 767px) {
        .cookie-banner__c {
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }

        .cookie-banner__buttons {
            width: 100%;
            flex-wrap: wrap;
        }

        .cookie-banner__btn {
            flex: 1;
            min-width: 0;
            padding: 0.85rem 1.5rem;
        }
    }

.terms-items {
        font-family: var(--font-family);
        background: #fff;
        color: var(--fg-on-page);
        padding: clamp(16px, 3vw, 40px);
    }

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

    .terms-items__h {
        text-align: center;
        margin-bottom: 3rem;
    }

    .terms-items__h h1 {
        margin: 0 0 .5rem;
        font-size: clamp(28px, 5vw, 48px);
    }

    .terms-items__h p {
        margin: 0;
        font-size: var(--gap);
        color: var(--neutral-600);
    }

    .terms-items__list {
        display: grid;
        gap: 2rem;
    }

    .terms-items__item {
        display: grid;
        grid-template-columns: auto 1fr;
        gap: 1.5rem;
    }

    .terms-items__num {
        width: 3rem;
        height: 3rem;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border-radius: var(--radius-md);
        font-size: 1.25rem;
        font-weight: 600;
        flex-shrink: 0;
    }

    .terms-items__content h3 {
        margin: 0 0 .75rem;
        font-size: clamp(18px, 3vw, 24px);
        color: var(--fg-on-page);
    }

    .terms-items__content p {
        margin: 0;
        font-size: 1rem;
        color: var(--neutral-600);
        line-height: 1.6;
    }

    @media (max-width: 767px) {
        .terms-items__item {
            grid-template-columns: 1fr;
            gap: 1rem;
        }

        .terms-items__num {
            width: 2.5rem;
            height: 2.5rem;
            font-size: 1rem;
        }
    }

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

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

    }

    .contacts .contacts__banner {
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: rgba(255, 255, 255, .14);
        border: 1px solid rgba(255, 255, 255, .25);
        border-radius: var(--radius-xl);
        padding: clamp(12px, 2vw, 20px);
    }

    .contacts .contacts__btn {
        background: var(--fg-on-page);
        color: var(--bg-page);
        text-decoration: none;
        padding: .7rem 1rem;
        border-radius: var(--radius-md);
    }

    .contacts .contacts__txt {
        margin: .8rem 0 0;
        opacity: .9;
    }

    .contacts .contacts__btn {
        position: relative;
    }

    .contacts .contacts__btn::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        height: 2px;
        background: var(--gradient-hero);
        transform-origin: left;
        transform: scaleX(0);
        transition: transform var(--anim-duration) var(--anim-ease);
    }

    .contacts .contacts__btn:hover::after {
        transform: scaleX(1);
    }

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

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

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

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

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

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

.main-nav {
    display: block;
}

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

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

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

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

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

    .main-nav.active {
        right: 0;
    }

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

    .nav-link {
        display: block;
        padding: calc(var(--space-y) * 1.2) var(--space-x);
        border-radius: var(--radius-lg);
        background-color: var(--surface-light);
    }

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

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(2) {
        opacity: 0;
    }

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

.site-footer {
        background-color: #1a1a1a;
        color: #ccc;
        padding: 2.5rem 1rem;
        font-family: sans-serif;
        border-top: 1px solid #333;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 2rem;
        padding-bottom: 2rem;
    }

    .footer-section h3 {
        color: #fff;
        margin-bottom: 1rem;
        font-size: 1.1rem;
    }

    .footer-logo {
        color: #fff;
        font-size: 1.8rem;
        margin-bottom: 1rem;
        font-weight: bold;
    }

    .footer-disclaimer {
        font-size: 0.85rem;
        line-height: 1.4;
        color: #999;
        margin-bottom: 1.5rem;
    }

    .footer-nav ul,
    .footer-social ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-nav li,
    .footer-social li {
        margin-bottom: 0.6rem;
    }

    .footer-nav a,
    .footer-social a,
    .footer-contacts a,
    .footer-legal a {
        color: #ccc;
        text-decoration: none;
        transition: color 0.2s ease;
    }

    .footer-nav a:hover,
    .footer-social a:hover,
    .footer-contacts a:hover,
    .footer-legal a:hover {
        color: #fff;
        text-decoration: underline;
    }

    .footer-contacts p {
        margin-bottom: 0.5rem;
        line-height: 1.4;
    }

    .footer-bottom {
        max-width: 1200px;
        margin: 0 auto;
        padding-top: 2rem;
        border-top: 1px solid #333;
        text-align: center;
        font-size: 0.9rem;
        color: #999;
        display: flex;
        flex-direction: column;
        gap: 0.8rem;
    }

    .footer-legal a {
        margin: 0 0.5rem;
    }

    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 1.5rem;
            text-align: center;
        }

        .footer-bottom {
            flex-direction: column;
            align-items: center;
        }

        .footer-legal {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .footer-legal a {
            margin: 0;
        }
    }

.cookies--light-v6 {
   width: 100%;
    position: fixed;
    bottom: 0;
    font-family: var(--font-family);
    padding: 40px 20px;
    background: var(--bg-page);
    color: var(--fg-on-page);
    border-top: 1px solid var(--border-on-surface-light);
}

.cookies__inner {
    width: var(--max-w);
    margin: 0 auto;
    font-size: 0.9rem;
    color: var(--neutral-700);
}

.cookies__inner h2 {
    margin: 0 0 6px;
    font-size: 1rem;
}
.cookies__inner p {
    margin: 0;
}
    .cookie-banner__buttons {
        margin-top: 1rem;
        display: flex;
        gap: 1rem;
        flex-shrink: 0;
    }

    .cookie-banner__btn {
        padding: 1rem 2rem;
        border: 2px solid var(--ring);
        border-radius: var(--radius-lg);
        font-size: 1rem;
        cursor: pointer;
        transition: all .25s;
        white-space: nowrap;
        font-weight: 500;
    }

    .cookie-banner__accept {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-color: var(--bg-accent);
    }

    .cookie-banner__accept:hover {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
    }

    .cookie-banner__reject {
        background: transparent;
        color: var(--fg-on-page);
    }

    .cookie-banner__reject:hover {
        background: var(--bg-alt);
    }

    .cookie-banner__manage {
        background: transparent;
        color: var(--link);
        border-color: var(--link);
    }

    .cookie-banner__manage:hover {
        background: var(--link);
        color: var(--bg-page);
    }

    @media (max-width: 767px) {
        .cookie-banner__c {
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }

        .cookie-banner__buttons {
            width: 100%;
            flex-wrap: wrap;
        }

        .cookie-banner__btn {
            flex: 1;
            min-width: 0;
            padding: 0.85rem 1.5rem;
        }
    }

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

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

    .thanks-light__card {
        background: var(--surface-light);
        color: var(--fg-on-surface-light);
        border-radius: var(--radius-xl);
        padding: clamp(24px, 4vw, 40px);
        box-shadow: var(--shadow-md);
        text-align: center;
        border: 1px solid var(--border-on-surface-light);
    }

    .thanks-light__mark {
        width: 64px;
        height: 64px;
        border-radius: 50%;
        margin: 0 auto 1rem;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        font-size: 1.6rem;
    }

    .thanks-light h1 {
        font-size: clamp(26px, 4.5vw, 38px);
        margin: 0 0 0.75rem;
    }

    .thanks-light p {
        margin: 0 0 0.75rem;
        opacity: 0.9;
    }

    .thanks-light__note {
        font-size: 0.9rem;
        opacity: 0.8;
        margin-bottom: 2rem;
    }

    .thanks-light__actions {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }

    .thanks-light__btn {
        display: inline-block;
        text-decoration: none;
        padding: 0.85rem 1.3rem;
        border-radius: var(--radius-lg);
        font-weight: 500;
        transition: background var(--anim-duration) var(--anim-ease),
        color var(--anim-duration) var(--anim-ease),
        transform var(--anim-duration) var(--anim-ease),
        box-shadow var(--anim-duration) var(--anim-ease);
    }

    .thanks-light__btn--primary {
        background: var(--btn-primary-bg);
        color: var(--btn-primary-fg);
        box-shadow: var(--shadow-sm);
    }

    .thanks-light__btn--primary:hover {
        background: var(--btn-primary-bg-hover);
        transform: translateY(-2px);
    }

    .thanks-light__btn--ghost {
        background: var(--btn-ghost-bg);
        color: var(--btn-ghost-fg);
        border: 1px solid var(--input-border);
    }

    .thanks-light__btn--ghost:hover {
        background: var(--btn-ghost-bg-hover);
        transform: translateY(-2px);
    }

    @media (max-width: 767px) {
        .thanks-light__card {
            padding: 20px;
        }

        .thanks-light__actions {
            flex-direction: column;
        }

        .thanks-light__btn {
            width: 100%;
            text-align: center;
        }
    }

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

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

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

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

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

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

.main-nav {
    display: block;
}

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

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

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

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

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

    .main-nav.active {
        right: 0;
    }

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

    .nav-link {
        display: block;
        padding: calc(var(--space-y) * 1.2) var(--space-x);
        border-radius: var(--radius-lg);
        background-color: var(--surface-light);
    }

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

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(2) {
        opacity: 0;
    }

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

.site-footer {
        background-color: #1a1a1a;
        color: #ccc;
        padding: 2.5rem 1rem;
        font-family: sans-serif;
        border-top: 1px solid #333;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 2rem;
        padding-bottom: 2rem;
    }

    .footer-section h3 {
        color: #fff;
        margin-bottom: 1rem;
        font-size: 1.1rem;
    }

    .footer-logo {
        color: #fff;
        font-size: 1.8rem;
        margin-bottom: 1rem;
        font-weight: bold;
    }

    .footer-disclaimer {
        font-size: 0.85rem;
        line-height: 1.4;
        color: #999;
        margin-bottom: 1.5rem;
    }

    .footer-nav ul,
    .footer-social ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-nav li,
    .footer-social li {
        margin-bottom: 0.6rem;
    }

    .footer-nav a,
    .footer-social a,
    .footer-contacts a,
    .footer-legal a {
        color: #ccc;
        text-decoration: none;
        transition: color 0.2s ease;
    }

    .footer-nav a:hover,
    .footer-social a:hover,
    .footer-contacts a:hover,
    .footer-legal a:hover {
        color: #fff;
        text-decoration: underline;
    }

    .footer-contacts p {
        margin-bottom: 0.5rem;
        line-height: 1.4;
    }

    .footer-bottom {
        max-width: 1200px;
        margin: 0 auto;
        padding-top: 2rem;
        border-top: 1px solid #333;
        text-align: center;
        font-size: 0.9rem;
        color: #999;
        display: flex;
        flex-direction: column;
        gap: 0.8rem;
    }

    .footer-legal a {
        margin: 0 0.5rem;
    }

    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 1.5rem;
            text-align: center;
        }

        .footer-bottom {
            flex-direction: column;
            align-items: center;
        }

        .footer-legal {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .footer-legal a {
            margin: 0;
        }
    }

.cookies--light-v6 {
   width: 100%;
    position: fixed;
    bottom: 0;
    font-family: var(--font-family);
    padding: 40px 20px;
    background: var(--bg-page);
    color: var(--fg-on-page);
    border-top: 1px solid var(--border-on-surface-light);
}

.cookies__inner {
    width: var(--max-w);
    margin: 0 auto;
    font-size: 0.9rem;
    color: var(--neutral-700);
}

.cookies__inner h2 {
    margin: 0 0 6px;
    font-size: 1rem;
}
.cookies__inner p {
    margin: 0;
}
    .cookie-banner__buttons {
        margin-top: 1rem;
        display: flex;
        gap: 1rem;
        flex-shrink: 0;
    }

    .cookie-banner__btn {
        padding: 1rem 2rem;
        border: 2px solid var(--ring);
        border-radius: var(--radius-lg);
        font-size: 1rem;
        cursor: pointer;
        transition: all .25s;
        white-space: nowrap;
        font-weight: 500;
    }

    .cookie-banner__accept {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-color: var(--bg-accent);
    }

    .cookie-banner__accept:hover {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
    }

    .cookie-banner__reject {
        background: transparent;
        color: var(--fg-on-page);
    }

    .cookie-banner__reject:hover {
        background: var(--bg-alt);
    }

    .cookie-banner__manage {
        background: transparent;
        color: var(--link);
        border-color: var(--link);
    }

    .cookie-banner__manage:hover {
        background: var(--link);
        color: var(--bg-page);
    }

    @media (max-width: 767px) {
        .cookie-banner__c {
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }

        .cookie-banner__buttons {
            width: 100%;
            flex-wrap: wrap;
        }

        .cookie-banner__btn {
            flex: 1;
            min-width: 0;
            padding: 0.85rem 1.5rem;
        }
    }

.error-404-light {
        font-family: var(--font-family);
        background: var(--bg-alt);
        color: var(--fg-on-alt);
        padding: clamp(32px, 7vw, 80px) clamp(16px, 4vw, 56px);
    }

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

    .error-404-light__layout {
        display: grid;
        grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
        gap: clamp(20px, 4vw, 40px);
        align-items: center;
    }

    .error-404-light__illustration {
        display: flex;
        justify-content: center;
    }

    .error-404-light__bubble {
        width: 210px;
        height: 210px;
        border-radius: 50%;
        background: var(--surface-1);
        color: var(--fg-on-surface);
        border: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-md);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .error-404-light__code {
        font-size: 2.4rem;
        font-weight: 700;
        letter-spacing: 0.16em;
    }

    .error-404-light__text {
        margin-top: 0.4rem;
        font-size: 0.9rem;
        text-transform: uppercase;
        letter-spacing: 0.18em;
        opacity: 0.7;
    }

    .error-404-light__content h1 {
        font-size: clamp(26px, 4.5vw, 40px);
        margin: 0 0 0.75rem;
    }

    .error-404-light__content p {
        margin: 0 0 1.75rem;
        color: var(--fg-on-alt);
        opacity: 0.9;
    }

    .error-404-light__actions {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
    }

    .error-404-light__btn {
        display: inline-block;
        text-decoration: none;
        padding: 0.85rem 1.3rem;
        border-radius: var(--radius-lg);
        font-weight: 500;
        transition: background var(--anim-duration) var(--anim-ease),
        color var(--anim-duration) var(--anim-ease),
        transform var(--anim-duration) var(--anim-ease),
        box-shadow var(--anim-duration) var(--anim-ease);
    }

    .error-404-light__btn--primary {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-sm);
    }

    .error-404-light__btn--primary:hover {
        background: var(--bg-primary-hover);
        transform: translateY(-2px);
    }

    .error-404-light__btn--ghost {
        background: var(--btn-ghost-bg);
        color: var(--btn-ghost-fg);
        border: 1px solid var(--input-border);
    }

    .error-404-light__btn--ghost:hover {
        background: var(--btn-ghost-bg-hover);
        transform: translateY(-2px);
    }

    @media (max-width: 767px) {
        .error-404-light__layout {
            grid-template-columns: minmax(0, 1fr);
        }

        .error-404-light__illustration {
            order: -1;
        }

        .error-404-light__actions {
            flex-direction: column;
        }

        .error-404-light__btn {
            width: 100%;
            text-align: center;
        }
    }