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

  --max-w: 1200px;
  --space-x: 2rem;
  --space-y: 1.25rem;
  --gap: 1rem;

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

  --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.4);
  --anim-duration: 0.3s;
  --anim-ease: ease-in-out;
  --random-number: 2;

  --brand: #2563eb;
  --brand-contrast: #ffffff;
  --accent: #059669;
  --accent-contrast: #ffffff;

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

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

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

  --surface-1: #ffffff;
  --surface-2: #f8fafc;
  --fg-on-surface: #1e293b;
  --border-on-surface: #e2e8f0;

  --surface-light: rgba(255, 255, 255, 0.9);
  --fg-on-surface-light: #1e293b;
  --border-on-surface-light: rgba(226, 232, 240, 0.8);

  --bg-primary: #2563eb;
  --fg-on-primary: #ffffff;
  --bg-primary-hover: #1d4ed8;
  --ring: #3b82f6;

  --bg-accent: #d1fae5;
  --fg-on-accent: #065f46;
  --bg-accent-hover: #10b981;

  --success: #059669;
  --success-contrast: #ffffff;
  --warning: #d97706;
  --warning-contrast: #ffffff;
  --danger: #dc2626;
  --danger-contrast: #ffffff;

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

  --gradient-hero: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  --gradient-accent: linear-gradient(135deg, #059669 0%, #047857 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);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}
.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);
}
.main-nav {
    display: flex;
}
.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: calc(var(--gap) * 1.5);
}
.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: 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);
}
.menu-toggle {
    display: none;
    background: none;
    border: 1px solid var(--border-on-surface-light);
    border-radius: var(--radius-sm);
    cursor: pointer;
    padding: calc(var(--space-y) / 2) var(--space-x);
    background-color: var(--bg-page);
}
.menu-toggle-icon {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--fg-on-surface);
    position: relative;
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.menu-toggle-icon::before,
.menu-toggle-icon::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: var(--fg-on-surface);
    left: 0;
    transition: transform var(--anim-duration) var(--anim-ease), top var(--anim-duration) var(--anim-ease);
}
.menu-toggle-icon::before {
    top: -8px;
}
.menu-toggle-icon::after {
    top: 8px;
}
.menu-toggle[aria-expanded="true"] .menu-toggle-icon {
    background-color: transparent;
}
.menu-toggle[aria-expanded="true"] .menu-toggle-icon::before {
    top: 0;
    transform: rotate(45deg);
}
.menu-toggle[aria-expanded="true"] .menu-toggle-icon::after {
    top: 0;
    transform: rotate(-45deg);
}
@media (max-width: 767px) {
    .menu-toggle {
        display: block;
    }
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-2);
        padding: calc(var(--space-y) * 2) var(--space-x);
        transition: right var(--anim-duration) var(--anim-ease);
        box-shadow: var(--shadow-lg);
        z-index: 999;
        overflow-y: auto;
    }
    .main-nav.is-open {
        right: 0;
    }
    .nav-list {
        flex-direction: column;
        gap: var(--gap);
        margin-top: calc(var(--space-y) * 3);
    }
    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-lg);
    }
    .nav-link:hover {
        background-color: var(--bg-primary-hover);
        color: var(--fg-on-primary);
    }
}

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        border-top: 1px solid #dee2e6;
        padding: 3rem 1rem;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    }

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

    .footer-section {
        display: flex;
        flex-direction: column;
    }

    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 1rem;
    }

    .footer-disclaimer {
        font-size: 0.85rem;
        color: #6c757d;
        line-height: 1.4;
        margin-bottom: 1.5rem;
        max-width: 300px;
    }

    .copyright {
        font-size: 0.9rem;
        color: #6c757d;
        margin-top: auto;
    }

    .footer-section h3 {
        font-size: 1.1rem;
        margin-bottom: 1.2rem;
        color: #2c3e50;
    }

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

    .footer-nav li,
    .social-links li,
    .legal-links li {
        margin-bottom: 0.7rem;
    }

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

    .footer-nav a:hover,
    .social-links a:hover,
    .legal-links a:hover {
        color: #007bff;
        text-decoration: underline;
    }

    address p {
        margin-bottom: 0.7rem;
        font-style: normal;
        line-height: 1.5;
    }

    address a {
        color: #495057;
        text-decoration: none;
    }

    address a:hover {
        color: #007bff;
        text-decoration: underline;
    }

    .legal-links {
        margin-top: 1.5rem;
        font-size: 0.9rem;
    }

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

        .footer-section {
            border-bottom: 1px solid #e9ecef;
            padding-bottom: 2rem;
        }

        .footer-section:last-of-type {
            border-bottom: none;
            padding-bottom: 0;
        }
    }

.cookie-banner {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        top: auto;
        z-index: 1000;
        background: var(--bg-page);
        border-bottom: 2px solid var(--ring);
        box-shadow: 0 6px 20px rgba(0,0,0,.12);
        padding: clamp(20px, 3vw, 32px);
    }

    .cookie-banner__c {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 2rem;
        align-items: center;
    }

    .cookie-banner__content strong {
        display: block;
        font-size: 1.2rem;
        margin-bottom: 0.6rem;
        color: var(--fg-on-page);
        font-weight: 700;
    }

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

    .cookie-banner__buttons {
        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-primary);
        color: var(--fg-on-primary);
        border-color: var(--bg-primary);
    }

    .cookie-banner__accept {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-md);
        animation: section-pulse-border 3s var(--anim-ease) infinite;
    }

    @keyframes section-pulse-border {
        0%, 100% {
            border-color: var(--border-on-surface);
            box-shadow: none;
        }
        50% {
            border-color: var(--brand);
            box-shadow: 0 0 0 3px var(--accent);
        }
    }

    .cookie-banner__accept:hover {
        background: var(--bg-primary-hover);
        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--light-v6 {
    font-family: var(--font-family);
    padding: 80px 20px;
    color: var(--fg-on-page);
    border-bottom: 1px solid var(--border-on-surface-light);
}

    .hero--light-v6 {
        background: linear-gradient(45deg, var(--fg-on-page) 0%, var(--fg-on-primary) 50%, var(--accent) 100%);
        background-size: 400% 400%;
        animation: gradientWave 6s ease infinite;
    }

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

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

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

.hero__subtitle {
    margin: 0;
    color: var(--neutral-600);
}

.index-cta {
        font-family: var(--font-family);
        color: white;
        padding: clamp(28px, 5vw, 72px) clamp(16px, 3vw, 40px);
        background: linear-gradient(120deg, var(--bg-primary), var(--bg-accent), var(--ring));
        background-size: 300% 300%;
        animation: gradientFlow 8s 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 .index-cta__row {
        text-align: center;
    }

    .index-cta h2 {
        font-size: clamp(22px, 4.5vw, 40px);
        margin: 0 0 .3rem;
    }

    .index-cta p {
        color: var(--fg-on-page);
        margin: 2rem 0;
    }

    .index-cta .index-cta__actions {
        display: flex;
        gap: 12px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .index-cta .index-cta__btn {
        display: inline-block;
        text-decoration: none;
        padding: .85rem 1.2rem;
        border-radius: var(--radius-lg);
        transition: transform .2s;
        background: var(--bg-accent)
    }

    .index-cta .index-cta__btn.index-cta__primary {
        background: #fff;
        color: black;
        box-shadow: var(--shadow-md);
    }

    .index-cta .index-cta__btn.index-cta__ghost {
        border: 1px solid rgba(255, 255, 255, .5);
        color: var(--fg-on-page);
    }

    .index-cta .index-cta__btn:hover {
        transform: translateY(-2px);
    }

    @media (max-width: 767px) {
        .index-cta .index-cta__actions {
            flex-direction: column;
        }

        .index-cta .index-cta__btn {
            width: 100%;
            text-align: center;
        }
    }

.subscribe {
        font-family: var(--font-family);
        color: var(--fg-on-page);
        background: linear-gradient(135deg, var(--bg-alt) 0%, var(--bg-page) 100%);
        padding: clamp(40px, 6vw, 80px) clamp(16px, 4vw, 40px);
    }

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

    .subscribe .subscribe__card {
        background: var(--card-bg-light);
        border: 2px solid var(--border-on-surface-light);
        border-radius: var(--radius-xl);
        padding: clamp(40px, 6vw, 64px) clamp(32px, 5vw, 48px);
        box-shadow: var(--shadow-lg);
        text-align: center;
    }

    .subscribe .subscribe__header {
        margin-bottom: clamp(32px, 5vw, 48px);
    }

    .subscribe .subscribe__icon-wrapper {
        margin-bottom: clamp(20px, 3vw, 28px);
    }

    .subscribe .subscribe__icon {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2.5rem;
        margin: 0 auto;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    }

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

    .subscribe .subscribe__header p {
        font-size: clamp(15px, 2.2vw, 18px);
        color: var(--neutral-600);
        margin: 0;
        line-height: 1.6;
    }

    .subscribe .subscribe__form {
        margin-bottom: clamp(24px, 4vw, 32px);
    }

    .subscribe .subscribe__input-group {
        display: flex;
        gap: 0.75rem;
        margin-bottom: 1rem;
    }

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

    @media (max-width: 767px) {
        .subscribe .subscribe__input-group {
            flex-direction: column;
        }
    }

    .subscribe .subscribe__input-group input {
        flex: 1;
        padding: 1rem 1.5rem;
        border-radius: var(--radius-lg);
        border: 2px solid var(--ring);
        background: var(--bg-page);
        color: var(--fg-on-page);
        font-size: 1rem;
        outline: none;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .subscribe .subscribe__input-group input:focus {
        border-color: var(--bg-primary);
        box-shadow: 0 0 0 3px var(--ring);
    }

    .subscribe .subscribe__input-group input::placeholder {
        color: var(--neutral-600);
    }

    .subscribe .subscribe__input-group button {
        padding: 1rem 2rem;
        border-radius: var(--radius-lg);
        border: none;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        font-weight: 700;
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
        display: flex;
        align-items: center;
        gap: 0.5rem;
        box-shadow: var(--shadow-md);
    }

    @media (max-width: 767px) {
        .subscribe .subscribe__input-group button {
            width: 100%;
            justify-content: center;
        }
    }

    .subscribe .subscribe__input-group button:hover {
        background: var(--bg-primary-hover);
        transform: translateY(-2px);
        box-shadow: var(--shadow-lg);
    }

    .subscribe .subscribe__arrow {
        font-size: 1.25rem;
        transition: transform var(--anim-duration) var(--anim-ease);
    }

    .subscribe .subscribe__input-group button:hover .subscribe__arrow {
        transform: translateX(4px);
    }

    .subscribe .subscribe__privacy {
        font-size: 0.75rem;
        color: var(--neutral-600);
        margin: 0;
        line-height: 1.5;
    }

    .subscribe .subscribe__social {
        padding-top: clamp(24px, 4vw, 32px);
        border-top: 1px solid var(--border-on-surface-light);
        display: flex;
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .subscribe .subscribe__social > span {
        font-size: 0.875rem;
        color: var(--neutral-600);
    }

    .subscribe .subscribe__social-links {
        display: flex;
        gap: 1rem;
    }

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

    .subscribe .subscribe__social-link {
        padding: 0.5rem 1rem;
        border-radius: var(--radius-md);
        border: 1px solid var(--ring);
        color: var(--fg-on-page);
        text-decoration: none;
        font-size: 0.875rem;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .subscribe .subscribe__social-link:hover {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border-color: var(--bg-primary);
        transform: translateY(-2px);
    }

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}
.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);
}
.main-nav {
    display: flex;
}
.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: calc(var(--gap) * 1.5);
}
.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: 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);
}
.menu-toggle {
    display: none;
    background: none;
    border: 1px solid var(--border-on-surface-light);
    border-radius: var(--radius-sm);
    cursor: pointer;
    padding: calc(var(--space-y) / 2) var(--space-x);
    background-color: var(--bg-page);
}
.menu-toggle-icon {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--fg-on-surface);
    position: relative;
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.menu-toggle-icon::before,
.menu-toggle-icon::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: var(--fg-on-surface);
    left: 0;
    transition: transform var(--anim-duration) var(--anim-ease), top var(--anim-duration) var(--anim-ease);
}
.menu-toggle-icon::before {
    top: -8px;
}
.menu-toggle-icon::after {
    top: 8px;
}
.menu-toggle[aria-expanded="true"] .menu-toggle-icon {
    background-color: transparent;
}
.menu-toggle[aria-expanded="true"] .menu-toggle-icon::before {
    top: 0;
    transform: rotate(45deg);
}
.menu-toggle[aria-expanded="true"] .menu-toggle-icon::after {
    top: 0;
    transform: rotate(-45deg);
}
@media (max-width: 767px) {
    .menu-toggle {
        display: block;
    }
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-2);
        padding: calc(var(--space-y) * 2) var(--space-x);
        transition: right var(--anim-duration) var(--anim-ease);
        box-shadow: var(--shadow-lg);
        z-index: 999;
        overflow-y: auto;
    }
    .main-nav.is-open {
        right: 0;
    }
    .nav-list {
        flex-direction: column;
        gap: var(--gap);
        margin-top: calc(var(--space-y) * 3);
    }
    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-lg);
    }
    .nav-link:hover {
        background-color: var(--bg-primary-hover);
        color: var(--fg-on-primary);
    }
}

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        border-top: 1px solid #dee2e6;
        padding: 3rem 1rem;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    }

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

    .footer-section {
        display: flex;
        flex-direction: column;
    }

    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 1rem;
    }

    .footer-disclaimer {
        font-size: 0.85rem;
        color: #6c757d;
        line-height: 1.4;
        margin-bottom: 1.5rem;
        max-width: 300px;
    }

    .copyright {
        font-size: 0.9rem;
        color: #6c757d;
        margin-top: auto;
    }

    .footer-section h3 {
        font-size: 1.1rem;
        margin-bottom: 1.2rem;
        color: #2c3e50;
    }

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

    .footer-nav li,
    .social-links li,
    .legal-links li {
        margin-bottom: 0.7rem;
    }

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

    .footer-nav a:hover,
    .social-links a:hover,
    .legal-links a:hover {
        color: #007bff;
        text-decoration: underline;
    }

    address p {
        margin-bottom: 0.7rem;
        font-style: normal;
        line-height: 1.5;
    }

    address a {
        color: #495057;
        text-decoration: none;
    }

    address a:hover {
        color: #007bff;
        text-decoration: underline;
    }

    .legal-links {
        margin-top: 1.5rem;
        font-size: 0.9rem;
    }

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

        .footer-section {
            border-bottom: 1px solid #e9ecef;
            padding-bottom: 2rem;
        }

        .footer-section:last-of-type {
            border-bottom: none;
            padding-bottom: 0;
        }
    }

.cookie-banner {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        top: auto;
        z-index: 1000;
        background: var(--bg-page);
        border-bottom: 2px solid var(--ring);
        box-shadow: 0 6px 20px rgba(0,0,0,.12);
        padding: clamp(20px, 3vw, 32px);
    }

    .cookie-banner__c {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 2rem;
        align-items: center;
    }

    .cookie-banner__content strong {
        display: block;
        font-size: 1.2rem;
        margin-bottom: 0.6rem;
        color: var(--fg-on-page);
        font-weight: 700;
    }

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

    .cookie-banner__buttons {
        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-primary);
        color: var(--fg-on-primary);
        border-color: var(--bg-primary);
    }

    .cookie-banner__accept {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-md);
        animation: section-pulse-border 3s var(--anim-ease) infinite;
    }

    @keyframes section-pulse-border {
        0%, 100% {
            border-color: var(--border-on-surface);
            box-shadow: none;
        }
        50% {
            border-color: var(--brand);
            box-shadow: 0 0 0 3px var(--accent);
        }
    }

    .cookie-banner__accept:hover {
        background: var(--bg-primary-hover);
        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__content h2 {
        margin-top: 2rem;
        color: var(--neutral-800);
    }

    .blog-item .blog-item__content p {
        margin-bottom: 1.2rem;
    }

    .blog-item .blog-item__content ul {
        margin-bottom: 1.5rem;
        padding-left: 1.5rem;
    }

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

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

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

    .contact-support .banner {
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-radius: var(--radius-xl);
        padding: clamp(12px, 2vw, 20px);
        box-shadow: var(--shadow-lg);
    }

    .contact-support .btn {
        background: var(--fg-on-page);
        text-align: center;
        color: var(--bg-page);
        text-decoration: none;
        padding: .7rem 1rem;
        border-radius: var(--radius-md);
    }

    .contact-support .txt {
        margin: .8rem 0 0;
        color: var(--fg-on-page);
    }

    @media (max-width: 767px) {
        .contact-support .banner {
            flex-direction: column;
            align-items: flex-start;
            gap: 16px;
        }
    }

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}
.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);
}
.main-nav {
    display: flex;
}
.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: calc(var(--gap) * 1.5);
}
.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: 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);
}
.menu-toggle {
    display: none;
    background: none;
    border: 1px solid var(--border-on-surface-light);
    border-radius: var(--radius-sm);
    cursor: pointer;
    padding: calc(var(--space-y) / 2) var(--space-x);
    background-color: var(--bg-page);
}
.menu-toggle-icon {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--fg-on-surface);
    position: relative;
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.menu-toggle-icon::before,
.menu-toggle-icon::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: var(--fg-on-surface);
    left: 0;
    transition: transform var(--anim-duration) var(--anim-ease), top var(--anim-duration) var(--anim-ease);
}
.menu-toggle-icon::before {
    top: -8px;
}
.menu-toggle-icon::after {
    top: 8px;
}
.menu-toggle[aria-expanded="true"] .menu-toggle-icon {
    background-color: transparent;
}
.menu-toggle[aria-expanded="true"] .menu-toggle-icon::before {
    top: 0;
    transform: rotate(45deg);
}
.menu-toggle[aria-expanded="true"] .menu-toggle-icon::after {
    top: 0;
    transform: rotate(-45deg);
}
@media (max-width: 767px) {
    .menu-toggle {
        display: block;
    }
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-2);
        padding: calc(var(--space-y) * 2) var(--space-x);
        transition: right var(--anim-duration) var(--anim-ease);
        box-shadow: var(--shadow-lg);
        z-index: 999;
        overflow-y: auto;
    }
    .main-nav.is-open {
        right: 0;
    }
    .nav-list {
        flex-direction: column;
        gap: var(--gap);
        margin-top: calc(var(--space-y) * 3);
    }
    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-lg);
    }
    .nav-link:hover {
        background-color: var(--bg-primary-hover);
        color: var(--fg-on-primary);
    }
}

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        border-top: 1px solid #dee2e6;
        padding: 3rem 1rem;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    }

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

    .footer-section {
        display: flex;
        flex-direction: column;
    }

    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 1rem;
    }

    .footer-disclaimer {
        font-size: 0.85rem;
        color: #6c757d;
        line-height: 1.4;
        margin-bottom: 1.5rem;
        max-width: 300px;
    }

    .copyright {
        font-size: 0.9rem;
        color: #6c757d;
        margin-top: auto;
    }

    .footer-section h3 {
        font-size: 1.1rem;
        margin-bottom: 1.2rem;
        color: #2c3e50;
    }

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

    .footer-nav li,
    .social-links li,
    .legal-links li {
        margin-bottom: 0.7rem;
    }

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

    .footer-nav a:hover,
    .social-links a:hover,
    .legal-links a:hover {
        color: #007bff;
        text-decoration: underline;
    }

    address p {
        margin-bottom: 0.7rem;
        font-style: normal;
        line-height: 1.5;
    }

    address a {
        color: #495057;
        text-decoration: none;
    }

    address a:hover {
        color: #007bff;
        text-decoration: underline;
    }

    .legal-links {
        margin-top: 1.5rem;
        font-size: 0.9rem;
    }

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

        .footer-section {
            border-bottom: 1px solid #e9ecef;
            padding-bottom: 2rem;
        }

        .footer-section:last-of-type {
            border-bottom: none;
            padding-bottom: 0;
        }
    }

.cookie-banner {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        top: auto;
        z-index: 1000;
        background: var(--bg-page);
        border-bottom: 2px solid var(--ring);
        box-shadow: 0 6px 20px rgba(0,0,0,.12);
        padding: clamp(20px, 3vw, 32px);
    }

    .cookie-banner__c {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 2rem;
        align-items: center;
    }

    .cookie-banner__content strong {
        display: block;
        font-size: 1.2rem;
        margin-bottom: 0.6rem;
        color: var(--fg-on-page);
        font-weight: 700;
    }

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

    .cookie-banner__buttons {
        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-primary);
        color: var(--fg-on-primary);
        border-color: var(--bg-primary);
    }

    .cookie-banner__accept {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-md);
        animation: section-pulse-border 3s var(--anim-ease) infinite;
    }

    @keyframes section-pulse-border {
        0%, 100% {
            border-color: var(--border-on-surface);
            box-shadow: none;
        }
        50% {
            border-color: var(--brand);
            box-shadow: 0 0 0 3px var(--accent);
        }
    }

    .cookie-banner__accept:hover {
        background: var(--bg-primary-hover);
        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: 32px;
}

.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 0 32px;
    font-size: 0.9rem;
    color: var(--neutral-300);
    padding-bottom: 16px;
    border-bottom: 1px solid var(--neutral-600);
}

.blog-item__body {
    line-height: var(--line-height-base);
    color: var(--neutral-100);
}

.blog-item__body h2 {
    color: var(--neutral-0);
    margin-top: 32px;
    margin-bottom: 12px;
    font-size: 1.5rem;
}

.blog-item__body p {
    margin-bottom: 16px;
}

.blog-item__body ul {
    margin-bottom: 16px;
    padding-left: 20px;
}

.blog-item__body li {
    margin-bottom: 8px;
}

.blog-item__body li strong {
    color: var(--accent-color);
}

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

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

    .author .author__card {
        max-width: 600px;
        margin: 0 auto;
        text-align: center;
        background: var(--surface-1);
        padding: clamp(32px, 5vw, 48px);
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-md);
        border: 1px solid var(--border-on-surface);
    }

    .author .author__image {
        width: clamp(140px, 20vw, 200px);
        height: clamp(140px, 20vw, 200px);
        margin: 0 auto clamp(24px, 4vw, 32px);
        border-radius: 50%;
        overflow: hidden;
        border: 4px solid var(--surface-2);
    }

    .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.5rem;
        color: var(--fg-on-surface);
    }

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

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

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

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

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

.articles__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
}

.articles__card {
    background: rgba(15,23,42,0.9);
    border-radius: var(--radius-lg);
    padding: 16px 18px;
    border: 1px solid rgba(148,163,184,0.6);
}

.articles__badge {
    display: inline-block;
    margin-bottom: 6px;
    padding: 3px 10px;
    border-radius: 999px;
    font-size: 0.75rem;
    background: rgba(15,23,42,0.95);
    border: 1px solid rgba(55,65,81,0.9);
}

.articles__card h3 {
    margin: 0 0 6px;
    font-size: 1rem;
}

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

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}
.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);
}
.main-nav {
    display: flex;
}
.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: calc(var(--gap) * 1.5);
}
.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: 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);
}
.menu-toggle {
    display: none;
    background: none;
    border: 1px solid var(--border-on-surface-light);
    border-radius: var(--radius-sm);
    cursor: pointer;
    padding: calc(var(--space-y) / 2) var(--space-x);
    background-color: var(--bg-page);
}
.menu-toggle-icon {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--fg-on-surface);
    position: relative;
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.menu-toggle-icon::before,
.menu-toggle-icon::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: var(--fg-on-surface);
    left: 0;
    transition: transform var(--anim-duration) var(--anim-ease), top var(--anim-duration) var(--anim-ease);
}
.menu-toggle-icon::before {
    top: -8px;
}
.menu-toggle-icon::after {
    top: 8px;
}
.menu-toggle[aria-expanded="true"] .menu-toggle-icon {
    background-color: transparent;
}
.menu-toggle[aria-expanded="true"] .menu-toggle-icon::before {
    top: 0;
    transform: rotate(45deg);
}
.menu-toggle[aria-expanded="true"] .menu-toggle-icon::after {
    top: 0;
    transform: rotate(-45deg);
}
@media (max-width: 767px) {
    .menu-toggle {
        display: block;
    }
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-2);
        padding: calc(var(--space-y) * 2) var(--space-x);
        transition: right var(--anim-duration) var(--anim-ease);
        box-shadow: var(--shadow-lg);
        z-index: 999;
        overflow-y: auto;
    }
    .main-nav.is-open {
        right: 0;
    }
    .nav-list {
        flex-direction: column;
        gap: var(--gap);
        margin-top: calc(var(--space-y) * 3);
    }
    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-lg);
    }
    .nav-link:hover {
        background-color: var(--bg-primary-hover);
        color: var(--fg-on-primary);
    }
}

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        border-top: 1px solid #dee2e6;
        padding: 3rem 1rem;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    }

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

    .footer-section {
        display: flex;
        flex-direction: column;
    }

    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 1rem;
    }

    .footer-disclaimer {
        font-size: 0.85rem;
        color: #6c757d;
        line-height: 1.4;
        margin-bottom: 1.5rem;
        max-width: 300px;
    }

    .copyright {
        font-size: 0.9rem;
        color: #6c757d;
        margin-top: auto;
    }

    .footer-section h3 {
        font-size: 1.1rem;
        margin-bottom: 1.2rem;
        color: #2c3e50;
    }

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

    .footer-nav li,
    .social-links li,
    .legal-links li {
        margin-bottom: 0.7rem;
    }

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

    .footer-nav a:hover,
    .social-links a:hover,
    .legal-links a:hover {
        color: #007bff;
        text-decoration: underline;
    }

    address p {
        margin-bottom: 0.7rem;
        font-style: normal;
        line-height: 1.5;
    }

    address a {
        color: #495057;
        text-decoration: none;
    }

    address a:hover {
        color: #007bff;
        text-decoration: underline;
    }

    .legal-links {
        margin-top: 1.5rem;
        font-size: 0.9rem;
    }

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

        .footer-section {
            border-bottom: 1px solid #e9ecef;
            padding-bottom: 2rem;
        }

        .footer-section:last-of-type {
            border-bottom: none;
            padding-bottom: 0;
        }
    }

.cookie-banner {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        top: auto;
        z-index: 1000;
        background: var(--bg-page);
        border-bottom: 2px solid var(--ring);
        box-shadow: 0 6px 20px rgba(0,0,0,.12);
        padding: clamp(20px, 3vw, 32px);
    }

    .cookie-banner__c {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 2rem;
        align-items: center;
    }

    .cookie-banner__content strong {
        display: block;
        font-size: 1.2rem;
        margin-bottom: 0.6rem;
        color: var(--fg-on-page);
        font-weight: 700;
    }

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

    .cookie-banner__buttons {
        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-primary);
        color: var(--fg-on-primary);
        border-color: var(--bg-primary);
    }

    .cookie-banner__accept {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-md);
        animation: section-pulse-border 3s var(--anim-ease) infinite;
    }

    @keyframes section-pulse-border {
        0%, 100% {
            border-color: var(--border-on-surface);
            box-shadow: none;
        }
        50% {
            border-color: var(--brand);
            box-shadow: 0 0 0 3px var(--accent);
        }
    }

    .cookie-banner__accept:hover {
        background: var(--bg-primary-hover);
        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);
}
.blog-item__body h2 {
    color: var(--neutral-100);
    margin-top: 1.8em;
    margin-bottom: 0.6em;
    font-size: 1.5rem;
}
.blog-item__body p {
    margin-bottom: 1em;
}
.blog-item__body blockquote {
    border-left: 4px solid var(--accent);
    padding-left: var(--space-x);
    margin: var(--space-y) 0;
    font-style: italic;
    color: var(--neutral-300);
}
.blog-item__body blockquote cite {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.9em;
    color: var(--neutral-600);
    font-style: normal;
}

.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);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}
.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);
}
.main-nav {
    display: flex;
}
.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: calc(var(--gap) * 1.5);
}
.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: 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);
}
.menu-toggle {
    display: none;
    background: none;
    border: 1px solid var(--border-on-surface-light);
    border-radius: var(--radius-sm);
    cursor: pointer;
    padding: calc(var(--space-y) / 2) var(--space-x);
    background-color: var(--bg-page);
}
.menu-toggle-icon {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--fg-on-surface);
    position: relative;
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.menu-toggle-icon::before,
.menu-toggle-icon::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: var(--fg-on-surface);
    left: 0;
    transition: transform var(--anim-duration) var(--anim-ease), top var(--anim-duration) var(--anim-ease);
}
.menu-toggle-icon::before {
    top: -8px;
}
.menu-toggle-icon::after {
    top: 8px;
}
.menu-toggle[aria-expanded="true"] .menu-toggle-icon {
    background-color: transparent;
}
.menu-toggle[aria-expanded="true"] .menu-toggle-icon::before {
    top: 0;
    transform: rotate(45deg);
}
.menu-toggle[aria-expanded="true"] .menu-toggle-icon::after {
    top: 0;
    transform: rotate(-45deg);
}
@media (max-width: 767px) {
    .menu-toggle {
        display: block;
    }
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-2);
        padding: calc(var(--space-y) * 2) var(--space-x);
        transition: right var(--anim-duration) var(--anim-ease);
        box-shadow: var(--shadow-lg);
        z-index: 999;
        overflow-y: auto;
    }
    .main-nav.is-open {
        right: 0;
    }
    .nav-list {
        flex-direction: column;
        gap: var(--gap);
        margin-top: calc(var(--space-y) * 3);
    }
    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-lg);
    }
    .nav-link:hover {
        background-color: var(--bg-primary-hover);
        color: var(--fg-on-primary);
    }
}

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        border-top: 1px solid #dee2e6;
        padding: 3rem 1rem;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    }

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

    .footer-section {
        display: flex;
        flex-direction: column;
    }

    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 1rem;
    }

    .footer-disclaimer {
        font-size: 0.85rem;
        color: #6c757d;
        line-height: 1.4;
        margin-bottom: 1.5rem;
        max-width: 300px;
    }

    .copyright {
        font-size: 0.9rem;
        color: #6c757d;
        margin-top: auto;
    }

    .footer-section h3 {
        font-size: 1.1rem;
        margin-bottom: 1.2rem;
        color: #2c3e50;
    }

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

    .footer-nav li,
    .social-links li,
    .legal-links li {
        margin-bottom: 0.7rem;
    }

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

    .footer-nav a:hover,
    .social-links a:hover,
    .legal-links a:hover {
        color: #007bff;
        text-decoration: underline;
    }

    address p {
        margin-bottom: 0.7rem;
        font-style: normal;
        line-height: 1.5;
    }

    address a {
        color: #495057;
        text-decoration: none;
    }

    address a:hover {
        color: #007bff;
        text-decoration: underline;
    }

    .legal-links {
        margin-top: 1.5rem;
        font-size: 0.9rem;
    }

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

        .footer-section {
            border-bottom: 1px solid #e9ecef;
            padding-bottom: 2rem;
        }

        .footer-section:last-of-type {
            border-bottom: none;
            padding-bottom: 0;
        }
    }

.cookie-banner {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        top: auto;
        z-index: 1000;
        background: var(--bg-page);
        border-bottom: 2px solid var(--ring);
        box-shadow: 0 6px 20px rgba(0,0,0,.12);
        padding: clamp(20px, 3vw, 32px);
    }

    .cookie-banner__c {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 2rem;
        align-items: center;
    }

    .cookie-banner__content strong {
        display: block;
        font-size: 1.2rem;
        margin-bottom: 0.6rem;
        color: var(--fg-on-page);
        font-weight: 700;
    }

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

    .cookie-banner__buttons {
        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-primary);
        color: var(--fg-on-primary);
        border-color: var(--bg-primary);
    }

    .cookie-banner__accept {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-md);
        animation: section-pulse-border 3s var(--anim-ease) infinite;
    }

    @keyframes section-pulse-border {
        0%, 100% {
            border-color: var(--border-on-surface);
            box-shadow: none;
        }
        50% {
            border-color: var(--brand);
            box-shadow: 0 0 0 3px var(--accent);
        }
    }

    .cookie-banner__accept:hover {
        background: var(--bg-primary-hover);
        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;
    }

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

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

    .author .author__card {
        max-width: 600px;
        margin: 0 auto;
        text-align: center;
        background: var(--surface-1);
        padding: clamp(32px, 5vw, 48px);
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-md);
        border: 1px solid var(--border-on-surface);
    }

    .author .author__image {
        width: clamp(140px, 20vw, 200px);
        height: clamp(140px, 20vw, 200px);
        margin: 0 auto clamp(24px, 4vw, 32px);
        border-radius: 50%;
        overflow: hidden;
        border: 4px solid var(--surface-2);
    }

    .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.5rem;
        color: var(--fg-on-surface);
    }

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

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

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}
.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);
}
.main-nav {
    display: flex;
}
.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: calc(var(--gap) * 1.5);
}
.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: 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);
}
.menu-toggle {
    display: none;
    background: none;
    border: 1px solid var(--border-on-surface-light);
    border-radius: var(--radius-sm);
    cursor: pointer;
    padding: calc(var(--space-y) / 2) var(--space-x);
    background-color: var(--bg-page);
}
.menu-toggle-icon {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--fg-on-surface);
    position: relative;
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.menu-toggle-icon::before,
.menu-toggle-icon::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: var(--fg-on-surface);
    left: 0;
    transition: transform var(--anim-duration) var(--anim-ease), top var(--anim-duration) var(--anim-ease);
}
.menu-toggle-icon::before {
    top: -8px;
}
.menu-toggle-icon::after {
    top: 8px;
}
.menu-toggle[aria-expanded="true"] .menu-toggle-icon {
    background-color: transparent;
}
.menu-toggle[aria-expanded="true"] .menu-toggle-icon::before {
    top: 0;
    transform: rotate(45deg);
}
.menu-toggle[aria-expanded="true"] .menu-toggle-icon::after {
    top: 0;
    transform: rotate(-45deg);
}
@media (max-width: 767px) {
    .menu-toggle {
        display: block;
    }
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-2);
        padding: calc(var(--space-y) * 2) var(--space-x);
        transition: right var(--anim-duration) var(--anim-ease);
        box-shadow: var(--shadow-lg);
        z-index: 999;
        overflow-y: auto;
    }
    .main-nav.is-open {
        right: 0;
    }
    .nav-list {
        flex-direction: column;
        gap: var(--gap);
        margin-top: calc(var(--space-y) * 3);
    }
    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-lg);
    }
    .nav-link:hover {
        background-color: var(--bg-primary-hover);
        color: var(--fg-on-primary);
    }
}

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        border-top: 1px solid #dee2e6;
        padding: 3rem 1rem;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    }

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

    .footer-section {
        display: flex;
        flex-direction: column;
    }

    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 1rem;
    }

    .footer-disclaimer {
        font-size: 0.85rem;
        color: #6c757d;
        line-height: 1.4;
        margin-bottom: 1.5rem;
        max-width: 300px;
    }

    .copyright {
        font-size: 0.9rem;
        color: #6c757d;
        margin-top: auto;
    }

    .footer-section h3 {
        font-size: 1.1rem;
        margin-bottom: 1.2rem;
        color: #2c3e50;
    }

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

    .footer-nav li,
    .social-links li,
    .legal-links li {
        margin-bottom: 0.7rem;
    }

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

    .footer-nav a:hover,
    .social-links a:hover,
    .legal-links a:hover {
        color: #007bff;
        text-decoration: underline;
    }

    address p {
        margin-bottom: 0.7rem;
        font-style: normal;
        line-height: 1.5;
    }

    address a {
        color: #495057;
        text-decoration: none;
    }

    address a:hover {
        color: #007bff;
        text-decoration: underline;
    }

    .legal-links {
        margin-top: 1.5rem;
        font-size: 0.9rem;
    }

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

        .footer-section {
            border-bottom: 1px solid #e9ecef;
            padding-bottom: 2rem;
        }

        .footer-section:last-of-type {
            border-bottom: none;
            padding-bottom: 0;
        }
    }

.cookie-banner {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        top: auto;
        z-index: 1000;
        background: var(--bg-page);
        border-bottom: 2px solid var(--ring);
        box-shadow: 0 6px 20px rgba(0,0,0,.12);
        padding: clamp(20px, 3vw, 32px);
    }

    .cookie-banner__c {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 2rem;
        align-items: center;
    }

    .cookie-banner__content strong {
        display: block;
        font-size: 1.2rem;
        margin-bottom: 0.6rem;
        color: var(--fg-on-page);
        font-weight: 700;
    }

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

    .cookie-banner__buttons {
        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-primary);
        color: var(--fg-on-primary);
        border-color: var(--bg-primary);
    }

    .cookie-banner__accept {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-md);
        animation: section-pulse-border 3s var(--anim-ease) infinite;
    }

    @keyframes section-pulse-border {
        0%, 100% {
            border-color: var(--border-on-surface);
            box-shadow: none;
        }
        50% {
            border-color: var(--brand);
            box-shadow: 0 0 0 3px var(--accent);
        }
    }

    .cookie-banner__accept:hover {
        background: var(--bg-primary-hover);
        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: var(--bg-page);
        color: var(--fg-on-page);
        padding: clamp(16px, 3vw, 40px);
    }

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

    .contact-support .banner {
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-radius: var(--radius-xl);
        padding: clamp(12px, 2vw, 20px);
        box-shadow: var(--shadow-lg);
    }

    .contact-support .btn {
        background: var(--fg-on-page);
        text-align: center;
        color: var(--bg-page);
        text-decoration: none;
        padding: .7rem 1rem;
        border-radius: var(--radius-md);
    }

    .contact-support .txt {
        margin: .8rem 0 0;
        color: var(--fg-on-page);
    }

    @media (max-width: 767px) {
        .contact-support .banner {
            flex-direction: column;
            align-items: flex-start;
            gap: 16px;
        }
    }

.contacts--light-v6 {
    font-family: var(--font-family);
    padding: 56px 20px;
    background: var(--surface-light);
    color: var(--fg-on-surface-light);
}

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

.contacts__content h2 {
    margin: 0 0 6px;
    font-size: clamp(22px,3.5vw,28px);
    color: var(--fg-on-page);
}

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

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

.contacts__item {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    background: var(--bg-page);
    border-radius: var(--radius-lg);
    padding: 8px 10px;
    border: 1px solid var(--border-on-surface-light);
}

.contacts__item-label {
    font-size: 0.9rem;
    color: var(--neutral-600);
}

.contacts__item-value {
    font-size: 0.9rem;
    color: var(--fg-on-page);
}

.contacts__map {
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: var(--neutral-100);
    border: 1px solid var(--border-on-surface-light);
    box-shadow: var(--shadow-md);
}

.contacts__map iframe {
    width: 100%;
    height: 260px;
    border: 0;
}

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

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

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

    .connect .connect__header {
        text-align: center;
        margin-bottom: clamp(40px, 6vw, 56px);
    }

    .connect .connect__header h2 {
        font-size: clamp(28px, 5vw, 48px);
        margin: 0 0 0.5rem;
        color: var(--fg-on-alt);
    }

    .connect .connect__header p {
        font-size: clamp(16px, 2vw, 18px);
        color: var(--neutral-600);
        margin: 0;
    }

    .connect .connect__grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: clamp(20px, 3vw, 28px);
    }

    .connect .connect__item {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: clamp(12px, 2vw, 16px);
        padding: clamp(24px, 4vw, 32px);
        background: var(--bg-page);
        border-radius: var(--radius-lg);
        text-decoration: none;
        color: inherit;
        transition: transform 0.3s, box-shadow 0.3s;
    }

    .connect .connect__item:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-md);
    }

    .connect .connect__icon {
        font-size: clamp(40px, 7vw, 64px);
        width: clamp(80px, 12vw, 120px);
        height: clamp(80px, 12vw, 120px);
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--bg-accent);
        border-radius: 50%;
    }

    .connect .connect__name {
        font-size: clamp(16px, 2.5vw, 18px);
        font-weight: 600;
        color: var(--fg-on-page);
    }

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}
.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);
}
.main-nav {
    display: flex;
}
.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: calc(var(--gap) * 1.5);
}
.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: 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);
}
.menu-toggle {
    display: none;
    background: none;
    border: 1px solid var(--border-on-surface-light);
    border-radius: var(--radius-sm);
    cursor: pointer;
    padding: calc(var(--space-y) / 2) var(--space-x);
    background-color: var(--bg-page);
}
.menu-toggle-icon {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--fg-on-surface);
    position: relative;
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.menu-toggle-icon::before,
.menu-toggle-icon::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: var(--fg-on-surface);
    left: 0;
    transition: transform var(--anim-duration) var(--anim-ease), top var(--anim-duration) var(--anim-ease);
}
.menu-toggle-icon::before {
    top: -8px;
}
.menu-toggle-icon::after {
    top: 8px;
}
.menu-toggle[aria-expanded="true"] .menu-toggle-icon {
    background-color: transparent;
}
.menu-toggle[aria-expanded="true"] .menu-toggle-icon::before {
    top: 0;
    transform: rotate(45deg);
}
.menu-toggle[aria-expanded="true"] .menu-toggle-icon::after {
    top: 0;
    transform: rotate(-45deg);
}
@media (max-width: 767px) {
    .menu-toggle {
        display: block;
    }
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-2);
        padding: calc(var(--space-y) * 2) var(--space-x);
        transition: right var(--anim-duration) var(--anim-ease);
        box-shadow: var(--shadow-lg);
        z-index: 999;
        overflow-y: auto;
    }
    .main-nav.is-open {
        right: 0;
    }
    .nav-list {
        flex-direction: column;
        gap: var(--gap);
        margin-top: calc(var(--space-y) * 3);
    }
    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-lg);
    }
    .nav-link:hover {
        background-color: var(--bg-primary-hover);
        color: var(--fg-on-primary);
    }
}

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        border-top: 1px solid #dee2e6;
        padding: 3rem 1rem;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    }

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

    .footer-section {
        display: flex;
        flex-direction: column;
    }

    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 1rem;
    }

    .footer-disclaimer {
        font-size: 0.85rem;
        color: #6c757d;
        line-height: 1.4;
        margin-bottom: 1.5rem;
        max-width: 300px;
    }

    .copyright {
        font-size: 0.9rem;
        color: #6c757d;
        margin-top: auto;
    }

    .footer-section h3 {
        font-size: 1.1rem;
        margin-bottom: 1.2rem;
        color: #2c3e50;
    }

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

    .footer-nav li,
    .social-links li,
    .legal-links li {
        margin-bottom: 0.7rem;
    }

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

    .footer-nav a:hover,
    .social-links a:hover,
    .legal-links a:hover {
        color: #007bff;
        text-decoration: underline;
    }

    address p {
        margin-bottom: 0.7rem;
        font-style: normal;
        line-height: 1.5;
    }

    address a {
        color: #495057;
        text-decoration: none;
    }

    address a:hover {
        color: #007bff;
        text-decoration: underline;
    }

    .legal-links {
        margin-top: 1.5rem;
        font-size: 0.9rem;
    }

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

        .footer-section {
            border-bottom: 1px solid #e9ecef;
            padding-bottom: 2rem;
        }

        .footer-section:last-of-type {
            border-bottom: none;
            padding-bottom: 0;
        }
    }

.cookie-banner {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        top: auto;
        z-index: 1000;
        background: var(--bg-page);
        border-bottom: 2px solid var(--ring);
        box-shadow: 0 6px 20px rgba(0,0,0,.12);
        padding: clamp(20px, 3vw, 32px);
    }

    .cookie-banner__c {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 2rem;
        align-items: center;
    }

    .cookie-banner__content strong {
        display: block;
        font-size: 1.2rem;
        margin-bottom: 0.6rem;
        color: var(--fg-on-page);
        font-weight: 700;
    }

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

    .cookie-banner__buttons {
        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-primary);
        color: var(--fg-on-primary);
        border-color: var(--bg-primary);
    }

    .cookie-banner__accept {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-md);
        animation: section-pulse-border 3s var(--anim-ease) infinite;
    }

    @keyframes section-pulse-border {
        0%, 100% {
            border-color: var(--border-on-surface);
            box-shadow: none;
        }
        50% {
            border-color: var(--brand);
            box-shadow: 0 0 0 3px var(--accent);
        }
    }

    .cookie-banner__accept:hover {
        background: var(--bg-primary-hover);
        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: var(--bg-page);
        color: var(--fg-on-page);
        padding: clamp(16px, 3vw, 40px);
    }

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

    .contact-support .banner {
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-radius: var(--radius-xl);
        padding: clamp(12px, 2vw, 20px);
        box-shadow: var(--shadow-lg);
    }

    .contact-support .btn {
        background: var(--fg-on-page);
        text-align: center;
        color: var(--bg-page);
        text-decoration: none;
        padding: .7rem 1rem;
        border-radius: var(--radius-md);
    }

    .contact-support .txt {
        margin: .8rem 0 0;
        color: var(--fg-on-page);
    }

    @media (max-width: 767px) {
        .contact-support .banner {
            flex-direction: column;
            align-items: flex-start;
            gap: 16px;
        }
    }

.contact-map {
        font-family: var(--font-family);
        background: var(--bg-alt);
        color: var(--fg-on-alt);
        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(--surface-1);
        color: var(--fg-on-surface);
        border-radius: var(--radius-lg);
        padding: clamp(14px, 2vw, 20px);
        text-align: center;
        box-shadow: var(--shadow-md);
        transition: transform .2s;
        border: 1px solid var(--border-on-surface);
    }

    .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;
        color: var(--neutral-800);
    }

    .contact-map .contact-card p {
        margin: 0;
        font-size: .9rem;
        color: var(--neutral-600);
        line-height: 1.5;
    }

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

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

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

    .contact-form h2 {
        color: black
    }

    .contact-form .grid {
        display: grid;
        gap: var(--space-x);
        grid-template-columns: 1fr 1fr;
        align-items: start;
    }

    .contact-form .f {
        display: grid;
        gap: 10px;
        background: var(--bg-page);
        border: 1px solid var(--ring);
        border-radius: var(--radius-lg);
        padding: clamp(12px, 2vw, 20px);
    }

    .contact-form .f label:not(.agree) {
        display: grid;
        gap: 6px;
    }

    .contact-form .f input,
    .contact-form .f textarea {
        padding: .8rem 1rem;
        border: 1px solid var(--input-border);
        border-radius: var(--radius-md);
        background: var(--input-bg);
        color: var(--input-fg);
        box-sizing: border-box;
        font-family: var(--font-family);
        font-size: var(--font-size-base);
    }

    .contact-form .f textarea {
        resize: vertical;
        min-height: 120px;
    }

    .contact-form .f input::placeholder,
    .contact-form .f textarea::placeholder {
        color: var(--input-placeholder);
    }

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

    .contact-form .agree a {
        color: var(--link);
        text-decoration: underline;
    }

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

    .contact-form .info {
        list-style: none;
        margin: 0;
        padding: 0;
        display: grid;
        gap: 1rem;
        color: var(--fg-on-page);
        background: var(--surface-2);
        border-radius: var(--radius-lg);
        padding: clamp(12px, 2vw, 20px);
        border: 1px solid var(--border-on-surface);
    }

    .contact-form .info div {
        padding-bottom: 0.5rem;
        border-bottom: 1px solid var(--border-on-surface-light);
    }

    .contact-form .info div:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .contact-form .info strong {
        color: var(--neutral-800);
        display: block;
        margin-bottom: 0.25rem;
    }

    .form-submit {
        padding: 1rem;
        background: var(--btn-primary-bg);
        color: var(--btn-primary-fg);
        border-radius: var(--radius-md);
        border: none;
        font-weight: 600;
        cursor: pointer;
        transition: background-color var(--anim-duration) var(--anim-ease);
        font-family: var(--font-family);
        font-size: 1rem;
    }

    .form-submit:hover {
        background: var(--btn-primary-bg-hover);
    }

    @media (max-width: 767px) {
        .contact-form .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);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}
.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);
}
.main-nav {
    display: flex;
}
.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: calc(var(--gap) * 1.5);
}
.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: 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);
}
.menu-toggle {
    display: none;
    background: none;
    border: 1px solid var(--border-on-surface-light);
    border-radius: var(--radius-sm);
    cursor: pointer;
    padding: calc(var(--space-y) / 2) var(--space-x);
    background-color: var(--bg-page);
}
.menu-toggle-icon {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--fg-on-surface);
    position: relative;
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.menu-toggle-icon::before,
.menu-toggle-icon::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: var(--fg-on-surface);
    left: 0;
    transition: transform var(--anim-duration) var(--anim-ease), top var(--anim-duration) var(--anim-ease);
}
.menu-toggle-icon::before {
    top: -8px;
}
.menu-toggle-icon::after {
    top: 8px;
}
.menu-toggle[aria-expanded="true"] .menu-toggle-icon {
    background-color: transparent;
}
.menu-toggle[aria-expanded="true"] .menu-toggle-icon::before {
    top: 0;
    transform: rotate(45deg);
}
.menu-toggle[aria-expanded="true"] .menu-toggle-icon::after {
    top: 0;
    transform: rotate(-45deg);
}
@media (max-width: 767px) {
    .menu-toggle {
        display: block;
    }
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-2);
        padding: calc(var(--space-y) * 2) var(--space-x);
        transition: right var(--anim-duration) var(--anim-ease);
        box-shadow: var(--shadow-lg);
        z-index: 999;
        overflow-y: auto;
    }
    .main-nav.is-open {
        right: 0;
    }
    .nav-list {
        flex-direction: column;
        gap: var(--gap);
        margin-top: calc(var(--space-y) * 3);
    }
    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-lg);
    }
    .nav-link:hover {
        background-color: var(--bg-primary-hover);
        color: var(--fg-on-primary);
    }
}

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        border-top: 1px solid #dee2e6;
        padding: 3rem 1rem;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    }

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

    .footer-section {
        display: flex;
        flex-direction: column;
    }

    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 1rem;
    }

    .footer-disclaimer {
        font-size: 0.85rem;
        color: #6c757d;
        line-height: 1.4;
        margin-bottom: 1.5rem;
        max-width: 300px;
    }

    .copyright {
        font-size: 0.9rem;
        color: #6c757d;
        margin-top: auto;
    }

    .footer-section h3 {
        font-size: 1.1rem;
        margin-bottom: 1.2rem;
        color: #2c3e50;
    }

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

    .footer-nav li,
    .social-links li,
    .legal-links li {
        margin-bottom: 0.7rem;
    }

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

    .footer-nav a:hover,
    .social-links a:hover,
    .legal-links a:hover {
        color: #007bff;
        text-decoration: underline;
    }

    address p {
        margin-bottom: 0.7rem;
        font-style: normal;
        line-height: 1.5;
    }

    address a {
        color: #495057;
        text-decoration: none;
    }

    address a:hover {
        color: #007bff;
        text-decoration: underline;
    }

    .legal-links {
        margin-top: 1.5rem;
        font-size: 0.9rem;
    }

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

        .footer-section {
            border-bottom: 1px solid #e9ecef;
            padding-bottom: 2rem;
        }

        .footer-section:last-of-type {
            border-bottom: none;
            padding-bottom: 0;
        }
    }

.cookie-banner {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        top: auto;
        z-index: 1000;
        background: var(--bg-page);
        border-bottom: 2px solid var(--ring);
        box-shadow: 0 6px 20px rgba(0,0,0,.12);
        padding: clamp(20px, 3vw, 32px);
    }

    .cookie-banner__c {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 2rem;
        align-items: center;
    }

    .cookie-banner__content strong {
        display: block;
        font-size: 1.2rem;
        margin-bottom: 0.6rem;
        color: var(--fg-on-page);
        font-weight: 700;
    }

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

    .cookie-banner__buttons {
        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-primary);
        color: var(--fg-on-primary);
        border-color: var(--bg-primary);
    }

    .cookie-banner__accept {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-md);
        animation: section-pulse-border 3s var(--anim-ease) infinite;
    }

    @keyframes section-pulse-border {
        0%, 100% {
            border-color: var(--border-on-surface);
            box-shadow: none;
        }
        50% {
            border-color: var(--brand);
            box-shadow: 0 0 0 3px var(--accent);
        }
    }

    .cookie-banner__accept:hover {
        background: var(--bg-primary-hover);
        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: var(--bg-page);
        color: var(--fg-on-page);
        padding: clamp(16px, 3vw, 40px);
    }

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

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

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

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

    .policy-items__items {
        display: grid;
        gap: 1.5rem;
    }

    .policy-items__item {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-radius: var(--radius-xl);
        padding: 2rem;
        box-shadow: var(--shadow-md);
    }

    .policy-items__header {
        display: flex;
        align-items: center;
        gap: 1rem;
        margin-bottom: 1rem;
    }

    .policy-items__marker {
        width: 8px;
        height: 8px;
        background: var(--fg-on-accent);
        border-radius: 50%;
        flex-shrink: 0;
    }

    .policy-items__header h3 {
        margin: 0;
        font-size: clamp(20px, 3vw, 26px);
        color: var(--fg-on-accent);
    }

    .policy-items__body p {
        margin: 0;
        font-size: 1rem;
        color: var(--fg-on-accent);
        opacity: .95;
        line-height: 1.7;
    }

    @media (max-width: 767px) {
        .policy-items__item {
            padding: 1.5rem;
        }
    }

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}
.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);
}
.main-nav {
    display: flex;
}
.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: calc(var(--gap) * 1.5);
}
.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: 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);
}
.menu-toggle {
    display: none;
    background: none;
    border: 1px solid var(--border-on-surface-light);
    border-radius: var(--radius-sm);
    cursor: pointer;
    padding: calc(var(--space-y) / 2) var(--space-x);
    background-color: var(--bg-page);
}
.menu-toggle-icon {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--fg-on-surface);
    position: relative;
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.menu-toggle-icon::before,
.menu-toggle-icon::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: var(--fg-on-surface);
    left: 0;
    transition: transform var(--anim-duration) var(--anim-ease), top var(--anim-duration) var(--anim-ease);
}
.menu-toggle-icon::before {
    top: -8px;
}
.menu-toggle-icon::after {
    top: 8px;
}
.menu-toggle[aria-expanded="true"] .menu-toggle-icon {
    background-color: transparent;
}
.menu-toggle[aria-expanded="true"] .menu-toggle-icon::before {
    top: 0;
    transform: rotate(45deg);
}
.menu-toggle[aria-expanded="true"] .menu-toggle-icon::after {
    top: 0;
    transform: rotate(-45deg);
}
@media (max-width: 767px) {
    .menu-toggle {
        display: block;
    }
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-2);
        padding: calc(var(--space-y) * 2) var(--space-x);
        transition: right var(--anim-duration) var(--anim-ease);
        box-shadow: var(--shadow-lg);
        z-index: 999;
        overflow-y: auto;
    }
    .main-nav.is-open {
        right: 0;
    }
    .nav-list {
        flex-direction: column;
        gap: var(--gap);
        margin-top: calc(var(--space-y) * 3);
    }
    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-lg);
    }
    .nav-link:hover {
        background-color: var(--bg-primary-hover);
        color: var(--fg-on-primary);
    }
}

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        border-top: 1px solid #dee2e6;
        padding: 3rem 1rem;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    }

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

    .footer-section {
        display: flex;
        flex-direction: column;
    }

    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 1rem;
    }

    .footer-disclaimer {
        font-size: 0.85rem;
        color: #6c757d;
        line-height: 1.4;
        margin-bottom: 1.5rem;
        max-width: 300px;
    }

    .copyright {
        font-size: 0.9rem;
        color: #6c757d;
        margin-top: auto;
    }

    .footer-section h3 {
        font-size: 1.1rem;
        margin-bottom: 1.2rem;
        color: #2c3e50;
    }

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

    .footer-nav li,
    .social-links li,
    .legal-links li {
        margin-bottom: 0.7rem;
    }

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

    .footer-nav a:hover,
    .social-links a:hover,
    .legal-links a:hover {
        color: #007bff;
        text-decoration: underline;
    }

    address p {
        margin-bottom: 0.7rem;
        font-style: normal;
        line-height: 1.5;
    }

    address a {
        color: #495057;
        text-decoration: none;
    }

    address a:hover {
        color: #007bff;
        text-decoration: underline;
    }

    .legal-links {
        margin-top: 1.5rem;
        font-size: 0.9rem;
    }

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

        .footer-section {
            border-bottom: 1px solid #e9ecef;
            padding-bottom: 2rem;
        }

        .footer-section:last-of-type {
            border-bottom: none;
            padding-bottom: 0;
        }
    }

.cookie-banner {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        top: auto;
        z-index: 1000;
        background: var(--bg-page);
        border-bottom: 2px solid var(--ring);
        box-shadow: 0 6px 20px rgba(0,0,0,.12);
        padding: clamp(20px, 3vw, 32px);
    }

    .cookie-banner__c {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 2rem;
        align-items: center;
    }

    .cookie-banner__content strong {
        display: block;
        font-size: 1.2rem;
        margin-bottom: 0.6rem;
        color: var(--fg-on-page);
        font-weight: 700;
    }

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

    .cookie-banner__buttons {
        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-primary);
        color: var(--fg-on-primary);
        border-color: var(--bg-primary);
    }

    .cookie-banner__accept {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-md);
        animation: section-pulse-border 3s var(--anim-ease) infinite;
    }

    @keyframes section-pulse-border {
        0%, 100% {
            border-color: var(--border-on-surface);
            box-shadow: none;
        }
        50% {
            border-color: var(--brand);
            box-shadow: 0 0 0 3px var(--accent);
        }
    }

    .cookie-banner__accept:hover {
        background: var(--bg-primary-hover);
        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 h1 {
        margin: 0 0 2.5rem;
        font-size: clamp(28px, 5vw, 48px);
        color: black;
        text-align: center;
    }

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

    .terms-items__card h3 {
        margin: 0 0 1rem;
        font-size: clamp(18px, 2.5vw, 22px);
    }

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

    @media (max-width: 1023px) {
        .terms-items__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);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}
.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);
}
.main-nav {
    display: flex;
}
.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: calc(var(--gap) * 1.5);
}
.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: 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);
}
.menu-toggle {
    display: none;
    background: none;
    border: 1px solid var(--border-on-surface-light);
    border-radius: var(--radius-sm);
    cursor: pointer;
    padding: calc(var(--space-y) / 2) var(--space-x);
    background-color: var(--bg-page);
}
.menu-toggle-icon {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--fg-on-surface);
    position: relative;
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.menu-toggle-icon::before,
.menu-toggle-icon::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: var(--fg-on-surface);
    left: 0;
    transition: transform var(--anim-duration) var(--anim-ease), top var(--anim-duration) var(--anim-ease);
}
.menu-toggle-icon::before {
    top: -8px;
}
.menu-toggle-icon::after {
    top: 8px;
}
.menu-toggle[aria-expanded="true"] .menu-toggle-icon {
    background-color: transparent;
}
.menu-toggle[aria-expanded="true"] .menu-toggle-icon::before {
    top: 0;
    transform: rotate(45deg);
}
.menu-toggle[aria-expanded="true"] .menu-toggle-icon::after {
    top: 0;
    transform: rotate(-45deg);
}
@media (max-width: 767px) {
    .menu-toggle {
        display: block;
    }
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-2);
        padding: calc(var(--space-y) * 2) var(--space-x);
        transition: right var(--anim-duration) var(--anim-ease);
        box-shadow: var(--shadow-lg);
        z-index: 999;
        overflow-y: auto;
    }
    .main-nav.is-open {
        right: 0;
    }
    .nav-list {
        flex-direction: column;
        gap: var(--gap);
        margin-top: calc(var(--space-y) * 3);
    }
    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-lg);
    }
    .nav-link:hover {
        background-color: var(--bg-primary-hover);
        color: var(--fg-on-primary);
    }
}

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        border-top: 1px solid #dee2e6;
        padding: 3rem 1rem;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    }

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

    .footer-section {
        display: flex;
        flex-direction: column;
    }

    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 1rem;
    }

    .footer-disclaimer {
        font-size: 0.85rem;
        color: #6c757d;
        line-height: 1.4;
        margin-bottom: 1.5rem;
        max-width: 300px;
    }

    .copyright {
        font-size: 0.9rem;
        color: #6c757d;
        margin-top: auto;
    }

    .footer-section h3 {
        font-size: 1.1rem;
        margin-bottom: 1.2rem;
        color: #2c3e50;
    }

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

    .footer-nav li,
    .social-links li,
    .legal-links li {
        margin-bottom: 0.7rem;
    }

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

    .footer-nav a:hover,
    .social-links a:hover,
    .legal-links a:hover {
        color: #007bff;
        text-decoration: underline;
    }

    address p {
        margin-bottom: 0.7rem;
        font-style: normal;
        line-height: 1.5;
    }

    address a {
        color: #495057;
        text-decoration: none;
    }

    address a:hover {
        color: #007bff;
        text-decoration: underline;
    }

    .legal-links {
        margin-top: 1.5rem;
        font-size: 0.9rem;
    }

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

        .footer-section {
            border-bottom: 1px solid #e9ecef;
            padding-bottom: 2rem;
        }

        .footer-section:last-of-type {
            border-bottom: none;
            padding-bottom: 0;
        }
    }

.cookie-banner {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        top: auto;
        z-index: 1000;
        background: var(--bg-page);
        border-bottom: 2px solid var(--ring);
        box-shadow: 0 6px 20px rgba(0,0,0,.12);
        padding: clamp(20px, 3vw, 32px);
    }

    .cookie-banner__c {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 2rem;
        align-items: center;
    }

    .cookie-banner__content strong {
        display: block;
        font-size: 1.2rem;
        margin-bottom: 0.6rem;
        color: var(--fg-on-page);
        font-weight: 700;
    }

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

    .cookie-banner__buttons {
        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-primary);
        color: var(--fg-on-primary);
        border-color: var(--bg-primary);
    }

    .cookie-banner__accept {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-md);
        animation: section-pulse-border 3s var(--anim-ease) infinite;
    }

    @keyframes section-pulse-border {
        0%, 100% {
            border-color: var(--border-on-surface);
            box-shadow: none;
        }
        50% {
            border-color: var(--brand);
            box-shadow: 0 0 0 3px var(--accent);
        }
    }

    .cookie-banner__accept:hover {
        background: var(--bg-primary-hover);
        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;
        }
    }

.thank--light-v6 {
    font-family: var(--font-family);
    padding: 72px 20px;
    background: var(--bg-page);
    color: var(--fg-on-page);
    text-align: center;
}

.thank__inner {
    max-width: 480px;
    margin: 0 auto;
}

.thank__inner h1 {
    margin: 0 0 6px;
    font-size: clamp(26px,4.5vw,34px);
}

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

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}
.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);
}
.main-nav {
    display: flex;
}
.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: calc(var(--gap) * 1.5);
}
.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: 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);
}
.menu-toggle {
    display: none;
    background: none;
    border: 1px solid var(--border-on-surface-light);
    border-radius: var(--radius-sm);
    cursor: pointer;
    padding: calc(var(--space-y) / 2) var(--space-x);
    background-color: var(--bg-page);
}
.menu-toggle-icon {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--fg-on-surface);
    position: relative;
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.menu-toggle-icon::before,
.menu-toggle-icon::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: var(--fg-on-surface);
    left: 0;
    transition: transform var(--anim-duration) var(--anim-ease), top var(--anim-duration) var(--anim-ease);
}
.menu-toggle-icon::before {
    top: -8px;
}
.menu-toggle-icon::after {
    top: 8px;
}
.menu-toggle[aria-expanded="true"] .menu-toggle-icon {
    background-color: transparent;
}
.menu-toggle[aria-expanded="true"] .menu-toggle-icon::before {
    top: 0;
    transform: rotate(45deg);
}
.menu-toggle[aria-expanded="true"] .menu-toggle-icon::after {
    top: 0;
    transform: rotate(-45deg);
}
@media (max-width: 767px) {
    .menu-toggle {
        display: block;
    }
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-2);
        padding: calc(var(--space-y) * 2) var(--space-x);
        transition: right var(--anim-duration) var(--anim-ease);
        box-shadow: var(--shadow-lg);
        z-index: 999;
        overflow-y: auto;
    }
    .main-nav.is-open {
        right: 0;
    }
    .nav-list {
        flex-direction: column;
        gap: var(--gap);
        margin-top: calc(var(--space-y) * 3);
    }
    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-lg);
    }
    .nav-link:hover {
        background-color: var(--bg-primary-hover);
        color: var(--fg-on-primary);
    }
}

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        border-top: 1px solid #dee2e6;
        padding: 3rem 1rem;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    }

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

    .footer-section {
        display: flex;
        flex-direction: column;
    }

    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 1rem;
    }

    .footer-disclaimer {
        font-size: 0.85rem;
        color: #6c757d;
        line-height: 1.4;
        margin-bottom: 1.5rem;
        max-width: 300px;
    }

    .copyright {
        font-size: 0.9rem;
        color: #6c757d;
        margin-top: auto;
    }

    .footer-section h3 {
        font-size: 1.1rem;
        margin-bottom: 1.2rem;
        color: #2c3e50;
    }

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

    .footer-nav li,
    .social-links li,
    .legal-links li {
        margin-bottom: 0.7rem;
    }

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

    .footer-nav a:hover,
    .social-links a:hover,
    .legal-links a:hover {
        color: #007bff;
        text-decoration: underline;
    }

    address p {
        margin-bottom: 0.7rem;
        font-style: normal;
        line-height: 1.5;
    }

    address a {
        color: #495057;
        text-decoration: none;
    }

    address a:hover {
        color: #007bff;
        text-decoration: underline;
    }

    .legal-links {
        margin-top: 1.5rem;
        font-size: 0.9rem;
    }

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

        .footer-section {
            border-bottom: 1px solid #e9ecef;
            padding-bottom: 2rem;
        }

        .footer-section:last-of-type {
            border-bottom: none;
            padding-bottom: 0;
        }
    }

.cookie-banner {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        top: auto;
        z-index: 1000;
        background: var(--bg-page);
        border-bottom: 2px solid var(--ring);
        box-shadow: 0 6px 20px rgba(0,0,0,.12);
        padding: clamp(20px, 3vw, 32px);
    }

    .cookie-banner__c {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 2rem;
        align-items: center;
    }

    .cookie-banner__content strong {
        display: block;
        font-size: 1.2rem;
        margin-bottom: 0.6rem;
        color: var(--fg-on-page);
        font-weight: 700;
    }

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

    .cookie-banner__buttons {
        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-primary);
        color: var(--fg-on-primary);
        border-color: var(--bg-primary);
    }

    .cookie-banner__accept {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-md);
        animation: section-pulse-border 3s var(--anim-ease) infinite;
    }

    @keyframes section-pulse-border {
        0%, 100% {
            border-color: var(--border-on-surface);
            box-shadow: none;
        }
        50% {
            border-color: var(--brand);
            box-shadow: 0 0 0 3px var(--accent);
        }
    }

    .cookie-banner__accept:hover {
        background: var(--bg-primary-hover);
        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;
        }
    }