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

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

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

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.1);

  --overlay: rgba(0, 0, 0, 0.5);
  --anim-duration: 0.2s;
  --anim-ease: ease-in-out;
  --random-number: 2;

  --brand: #0066CC;
  --brand-contrast: #FFFFFF;
  --accent: #00A86B;
  --accent-contrast: #FFFFFF;

  --neutral-0: #FFFFFF;
  --neutral-100: #F8FAFC;
  --neutral-300: #CBD5E1;
  --neutral-600: #64748B;
  --neutral-800: #1E293B;
  --neutral-900: #0F172A;

  --bg-page: #F8FAFC;
  --fg-on-page: #0F172A;

  --bg-alt: #FFFFFF;
  --fg-on-alt: #1E293B;

  --surface-1: #FFFFFF;
  --surface-2: #F1F5F9;
  --fg-on-surface: #1E293B;
  --border-on-surface: #E2E8F0;

  --surface-light: rgba(255, 255, 255, 0.7);
  --fg-on-surface-light: #1E293B;
  --border-on-surface-light: rgba(226, 232, 240, 0.7);

  --bg-primary: #0066CC;
  --fg-on-primary: #FFFFFF;
  --bg-primary-hover: #0052A3;
  --ring: #0066CC;

  --bg-accent: rgba(0, 168, 107, 0.1);
  --fg-on-accent: #00A86B;
  --bg-accent-hover: #008F5A;

  --success: #00A86B;
  --success-contrast: #FFFFFF;
  --warning: #F59E0B;
  --warning-contrast: #FFFFFF;
  --danger: #EF4444;
  --danger-contrast: #FFFFFF;

  --link: #0066CC;
  --link-hover: #0052A3;

  --gradient-hero: linear-gradient(135deg, #0066CC 0%, #004D99 100%);
  --gradient-accent: linear-gradient(135deg, #00A86B 0%, #008F5A 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);
    padding: var(--space-y) 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

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

.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    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: var(--gap);
}

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    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);
    font-weight: 500;
}

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

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

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

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

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

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

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

    .nav-list {
        flex-direction: column;
        gap: calc(var(--gap) * 1.5);
        margin-top: calc(var(--space-y) * 3);
    }

    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
        font-size: calc(var(--font-size-base) * 1.1);
    }

    .header-container {
        padding: 0 var(--space-x);
    }
}

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        padding: 3rem 1rem 1rem;
        border-top: 1px solid #dee2e6;
        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;
        padding-bottom: 2rem;
    }

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

    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #0d6efd;
        margin-bottom: 0.75rem;
    }

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

    .social-links {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
    }

    .social-links a {
        color: #495057;
        text-decoration: none;
        font-size: 0.9rem;
        transition: color 0.2s;
    }

    .social-links a:hover {
        color: #0d6efd;
    }

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

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

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

    .footer-nav a:hover,
    .legal-links a:hover {
        color: #0d6efd;
        padding-left: 5px;
    }

    .contact-info p {
        margin-bottom: 0.7rem;
        line-height: 1.5;
    }

    .contact-info a {
        color: #0d6efd;
        text-decoration: none;
    }

    .contact-info a:hover {
        text-decoration: underline;
    }

    .footer-bottom {
        max-width: 1200px;
        margin: 0 auto;
        padding-top: 1.5rem;
        border-top: 1px solid #dee2e6;
        text-align: center;
        color: #6c757d;
        font-size: 0.9rem;
    }

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

        .footer-section {
            text-align: center;
        }

        .social-links {
            justify-content: center;
        }

        .footer-disclaimer {
            max-width: 100%;
            margin-left: auto;
            margin-right: auto;
        }
    }

.cookie-banner {
        position: fixed;
        bottom: 20px;
        right: 20px;
        left: auto;
        max-width: 420px;
        z-index: 1000;
        background: linear-gradient(135deg, var(--bg-accent) 0%, var(--bg-primary) 100%);
        color: var(--fg-on-primary);
        box-shadow: 0 10px 30px rgba(0,0,0,.2);
        padding: clamp(18px, 3vw, 28px);
        border-radius: var(--radius-xl);
    }

    .cookie-banner__c {
        display: grid;
        gap: 1.5rem;
    }

    .cookie-banner__text strong {
        display: block;
        font-size: 1.15rem;
        margin-bottom: 0.5rem;
        color: var(--fg-on-primary);
        font-weight: 600;
    }

    .cookie-banner__text p {
        margin: 0;
        font-size: 0.95rem;
        color: var(--fg-on-primary);
        opacity: 0.95;
        line-height: 1.6;
    }

    .cookie-banner__controls {
        display: flex;
        gap: 0.85rem;
        flex-direction: column;
    }

    .cookie-banner__btn {
        padding: 0.8rem 1.5rem;
        border: 2px solid var(--fg-on-primary);
        border-radius: var(--radius-lg);
        font-size: 0.95rem;
        cursor: pointer;
        transition: all .25s;
        font-weight: 500;
        width: 100%;
    }

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

    .cookie-banner__accept:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(0,0,0,.25);
    }

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

    .cookie-banner__reject:hover {
        background: rgba(255,255,255,.15);
    }

    .cookie-banner__manage {
        background: rgba(255,255,255,.1);
        color: var(--fg-on-primary);
        border-color: rgba(255,255,255,.3);
    }

    .cookie-banner__manage:hover {
        background: rgba(255,255,255,.2);
        border-color: rgba(255,255,255,.5);
    }

    @keyframes slideDown {
        from {
            opacity: 1;
            transform: translateY(0);
        }
        to {
            opacity: 0;
            transform: translateY(20px);
        }
    }

    @media (max-width: 767px) {
        .cookie-banner {
            bottom: 0;
            right: 0;
            left: 0;
            max-width: 100%;
            border-radius: var(--radius-xl) var(--radius-xl) 0 0;
        }

        .cookie-banner__controls {
            flex-direction: row;
            flex-wrap: wrap;
        }

        .cookie-banner__btn {
            flex: 1;
            min-width: 0;
        }
    }

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

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

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

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

.hero__subtitle {
    margin: 0 0 20px;
    color: rgba(249,250,251,0.9);
}

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

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

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

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

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

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

.index-cta {
        font-family: var(--font-family);
        color: var(--fg-on-page);
        background: #fff;
        padding: clamp(24px, 4vw, 64px) clamp(16px, 3vw, 40px);
    }

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

    .index-cta .index-cta__cta {
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 20px;
        align-items: center;
        background: var(--bg-page);
        border: 1px solid var(--ring);
        border-radius: var(--radius-xl);
        padding: clamp(16px, 3vw, 28px);
        box-shadow: var(--shadow-md);
    }

    .index-cta .index-cta__btn {
        display: inline-block;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        text-decoration: none;
        padding: .9rem 1.2rem;
        border-radius: var(--radius-lg);
        font-weight: 600;
        white-space: nowrap;
        transition: background-color var(--anim-duration) var(--anim-ease);
    }

    .index-cta .index-cta__btn:hover {
        background: var(--bg-primary-hover);
    }

    .index-cta h3 {
        margin: 0 0 .25rem;
        font-size: clamp(1.5rem, 2.5vw, 2rem);
        color: var(--neutral-900);
    }

    .index-cta p {
        margin: 0;
        color: var(--neutral-600);
        font-size: clamp(1rem, 1.5vw, 1.125rem);
        line-height: 1.6;
    }

    @media (max-width: 767px) {
        .index-cta .index-cta__cta {
            grid-template-columns: 1fr;
            text-align: center;
        }
        .index-cta .index-cta__btn {
            justify-self: center;
        }
    }

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

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

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

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

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

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

    }

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

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

.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    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: var(--gap);
}

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    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);
    font-weight: 500;
}

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

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

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

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

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

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

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

    .nav-list {
        flex-direction: column;
        gap: calc(var(--gap) * 1.5);
        margin-top: calc(var(--space-y) * 3);
    }

    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
        font-size: calc(var(--font-size-base) * 1.1);
    }

    .header-container {
        padding: 0 var(--space-x);
    }
}

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        padding: 3rem 1rem 1rem;
        border-top: 1px solid #dee2e6;
        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;
        padding-bottom: 2rem;
    }

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

    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #0d6efd;
        margin-bottom: 0.75rem;
    }

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

    .social-links {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
    }

    .social-links a {
        color: #495057;
        text-decoration: none;
        font-size: 0.9rem;
        transition: color 0.2s;
    }

    .social-links a:hover {
        color: #0d6efd;
    }

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

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

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

    .footer-nav a:hover,
    .legal-links a:hover {
        color: #0d6efd;
        padding-left: 5px;
    }

    .contact-info p {
        margin-bottom: 0.7rem;
        line-height: 1.5;
    }

    .contact-info a {
        color: #0d6efd;
        text-decoration: none;
    }

    .contact-info a:hover {
        text-decoration: underline;
    }

    .footer-bottom {
        max-width: 1200px;
        margin: 0 auto;
        padding-top: 1.5rem;
        border-top: 1px solid #dee2e6;
        text-align: center;
        color: #6c757d;
        font-size: 0.9rem;
    }

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

        .footer-section {
            text-align: center;
        }

        .social-links {
            justify-content: center;
        }

        .footer-disclaimer {
            max-width: 100%;
            margin-left: auto;
            margin-right: auto;
        }
    }

.cookie-banner {
        position: fixed;
        bottom: 20px;
        right: 20px;
        left: auto;
        max-width: 420px;
        z-index: 1000;
        background: linear-gradient(135deg, var(--bg-accent) 0%, var(--bg-primary) 100%);
        color: var(--fg-on-primary);
        box-shadow: 0 10px 30px rgba(0,0,0,.2);
        padding: clamp(18px, 3vw, 28px);
        border-radius: var(--radius-xl);
    }

    .cookie-banner__c {
        display: grid;
        gap: 1.5rem;
    }

    .cookie-banner__text strong {
        display: block;
        font-size: 1.15rem;
        margin-bottom: 0.5rem;
        color: var(--fg-on-primary);
        font-weight: 600;
    }

    .cookie-banner__text p {
        margin: 0;
        font-size: 0.95rem;
        color: var(--fg-on-primary);
        opacity: 0.95;
        line-height: 1.6;
    }

    .cookie-banner__controls {
        display: flex;
        gap: 0.85rem;
        flex-direction: column;
    }

    .cookie-banner__btn {
        padding: 0.8rem 1.5rem;
        border: 2px solid var(--fg-on-primary);
        border-radius: var(--radius-lg);
        font-size: 0.95rem;
        cursor: pointer;
        transition: all .25s;
        font-weight: 500;
        width: 100%;
    }

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

    .cookie-banner__accept:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(0,0,0,.25);
    }

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

    .cookie-banner__reject:hover {
        background: rgba(255,255,255,.15);
    }

    .cookie-banner__manage {
        background: rgba(255,255,255,.1);
        color: var(--fg-on-primary);
        border-color: rgba(255,255,255,.3);
    }

    .cookie-banner__manage:hover {
        background: rgba(255,255,255,.2);
        border-color: rgba(255,255,255,.5);
    }

    @keyframes slideDown {
        from {
            opacity: 1;
            transform: translateY(0);
        }
        to {
            opacity: 0;
            transform: translateY(20px);
        }
    }

    @media (max-width: 767px) {
        .cookie-banner {
            bottom: 0;
            right: 0;
            left: 0;
            max-width: 100%;
            border-radius: var(--radius-xl) var(--radius-xl) 0 0;
        }

        .cookie-banner__controls {
            flex-direction: row;
            flex-wrap: wrap;
        }

        .cookie-banner__btn {
            flex: 1;
            min-width: 0;
        }
    }

.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-primary);
        background: var(--gradient-hero);
        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-primary);
    }

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

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

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

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

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

.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    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: var(--gap);
}

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    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);
    font-weight: 500;
}

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

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

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

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

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

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

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

    .nav-list {
        flex-direction: column;
        gap: calc(var(--gap) * 1.5);
        margin-top: calc(var(--space-y) * 3);
    }

    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
        font-size: calc(var(--font-size-base) * 1.1);
    }

    .header-container {
        padding: 0 var(--space-x);
    }
}

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        padding: 3rem 1rem 1rem;
        border-top: 1px solid #dee2e6;
        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;
        padding-bottom: 2rem;
    }

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

    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #0d6efd;
        margin-bottom: 0.75rem;
    }

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

    .social-links {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
    }

    .social-links a {
        color: #495057;
        text-decoration: none;
        font-size: 0.9rem;
        transition: color 0.2s;
    }

    .social-links a:hover {
        color: #0d6efd;
    }

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

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

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

    .footer-nav a:hover,
    .legal-links a:hover {
        color: #0d6efd;
        padding-left: 5px;
    }

    .contact-info p {
        margin-bottom: 0.7rem;
        line-height: 1.5;
    }

    .contact-info a {
        color: #0d6efd;
        text-decoration: none;
    }

    .contact-info a:hover {
        text-decoration: underline;
    }

    .footer-bottom {
        max-width: 1200px;
        margin: 0 auto;
        padding-top: 1.5rem;
        border-top: 1px solid #dee2e6;
        text-align: center;
        color: #6c757d;
        font-size: 0.9rem;
    }

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

        .footer-section {
            text-align: center;
        }

        .social-links {
            justify-content: center;
        }

        .footer-disclaimer {
            max-width: 100%;
            margin-left: auto;
            margin-right: auto;
        }
    }

.cookie-banner {
        position: fixed;
        bottom: 20px;
        right: 20px;
        left: auto;
        max-width: 420px;
        z-index: 1000;
        background: linear-gradient(135deg, var(--bg-accent) 0%, var(--bg-primary) 100%);
        color: var(--fg-on-primary);
        box-shadow: 0 10px 30px rgba(0,0,0,.2);
        padding: clamp(18px, 3vw, 28px);
        border-radius: var(--radius-xl);
    }

    .cookie-banner__c {
        display: grid;
        gap: 1.5rem;
    }

    .cookie-banner__text strong {
        display: block;
        font-size: 1.15rem;
        margin-bottom: 0.5rem;
        color: var(--fg-on-primary);
        font-weight: 600;
    }

    .cookie-banner__text p {
        margin: 0;
        font-size: 0.95rem;
        color: var(--fg-on-primary);
        opacity: 0.95;
        line-height: 1.6;
    }

    .cookie-banner__controls {
        display: flex;
        gap: 0.85rem;
        flex-direction: column;
    }

    .cookie-banner__btn {
        padding: 0.8rem 1.5rem;
        border: 2px solid var(--fg-on-primary);
        border-radius: var(--radius-lg);
        font-size: 0.95rem;
        cursor: pointer;
        transition: all .25s;
        font-weight: 500;
        width: 100%;
    }

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

    .cookie-banner__accept:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(0,0,0,.25);
    }

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

    .cookie-banner__reject:hover {
        background: rgba(255,255,255,.15);
    }

    .cookie-banner__manage {
        background: rgba(255,255,255,.1);
        color: var(--fg-on-primary);
        border-color: rgba(255,255,255,.3);
    }

    .cookie-banner__manage:hover {
        background: rgba(255,255,255,.2);
        border-color: rgba(255,255,255,.5);
    }

    @keyframes slideDown {
        from {
            opacity: 1;
            transform: translateY(0);
        }
        to {
            opacity: 0;
            transform: translateY(20px);
        }
    }

    @media (max-width: 767px) {
        .cookie-banner {
            bottom: 0;
            right: 0;
            left: 0;
            max-width: 100%;
            border-radius: var(--radius-xl) var(--radius-xl) 0 0;
        }

        .cookie-banner__controls {
            flex-direction: row;
            flex-wrap: wrap;
        }

        .cookie-banner__btn {
            flex: 1;
            min-width: 0;
        }
    }

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

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

    .blog-item .blog-item__content li {
        margin-bottom: 0.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;
        }
    }

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

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

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

    .articles .articles__header h2 {
        font-size: clamp(28px, 5vw, 48px);
        margin: 0;
        color: var(--fg-on-page);
    }

    .articles .articles__list {
        display: flex;
        flex-direction: column;
        gap: clamp(20px, 3vw, 28px);
    }

    .articles .articles__item {
        padding-bottom: clamp(20px, 3vw, 28px);
        border-bottom: 1px solid var(--border-on-surface);
    }

    .articles .articles__item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

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

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

    .articles .articles__link:hover h3 {
        color: var(--link-hover);
    }

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

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

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

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

.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    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: var(--gap);
}

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    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);
    font-weight: 500;
}

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

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

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

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

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

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

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

    .nav-list {
        flex-direction: column;
        gap: calc(var(--gap) * 1.5);
        margin-top: calc(var(--space-y) * 3);
    }

    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
        font-size: calc(var(--font-size-base) * 1.1);
    }

    .header-container {
        padding: 0 var(--space-x);
    }
}

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        padding: 3rem 1rem 1rem;
        border-top: 1px solid #dee2e6;
        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;
        padding-bottom: 2rem;
    }

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

    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #0d6efd;
        margin-bottom: 0.75rem;
    }

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

    .social-links {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
    }

    .social-links a {
        color: #495057;
        text-decoration: none;
        font-size: 0.9rem;
        transition: color 0.2s;
    }

    .social-links a:hover {
        color: #0d6efd;
    }

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

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

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

    .footer-nav a:hover,
    .legal-links a:hover {
        color: #0d6efd;
        padding-left: 5px;
    }

    .contact-info p {
        margin-bottom: 0.7rem;
        line-height: 1.5;
    }

    .contact-info a {
        color: #0d6efd;
        text-decoration: none;
    }

    .contact-info a:hover {
        text-decoration: underline;
    }

    .footer-bottom {
        max-width: 1200px;
        margin: 0 auto;
        padding-top: 1.5rem;
        border-top: 1px solid #dee2e6;
        text-align: center;
        color: #6c757d;
        font-size: 0.9rem;
    }

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

        .footer-section {
            text-align: center;
        }

        .social-links {
            justify-content: center;
        }

        .footer-disclaimer {
            max-width: 100%;
            margin-left: auto;
            margin-right: auto;
        }
    }

.cookie-banner {
        position: fixed;
        bottom: 20px;
        right: 20px;
        left: auto;
        max-width: 420px;
        z-index: 1000;
        background: linear-gradient(135deg, var(--bg-accent) 0%, var(--bg-primary) 100%);
        color: var(--fg-on-primary);
        box-shadow: 0 10px 30px rgba(0,0,0,.2);
        padding: clamp(18px, 3vw, 28px);
        border-radius: var(--radius-xl);
    }

    .cookie-banner__c {
        display: grid;
        gap: 1.5rem;
    }

    .cookie-banner__text strong {
        display: block;
        font-size: 1.15rem;
        margin-bottom: 0.5rem;
        color: var(--fg-on-primary);
        font-weight: 600;
    }

    .cookie-banner__text p {
        margin: 0;
        font-size: 0.95rem;
        color: var(--fg-on-primary);
        opacity: 0.95;
        line-height: 1.6;
    }

    .cookie-banner__controls {
        display: flex;
        gap: 0.85rem;
        flex-direction: column;
    }

    .cookie-banner__btn {
        padding: 0.8rem 1.5rem;
        border: 2px solid var(--fg-on-primary);
        border-radius: var(--radius-lg);
        font-size: 0.95rem;
        cursor: pointer;
        transition: all .25s;
        font-weight: 500;
        width: 100%;
    }

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

    .cookie-banner__accept:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(0,0,0,.25);
    }

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

    .cookie-banner__reject:hover {
        background: rgba(255,255,255,.15);
    }

    .cookie-banner__manage {
        background: rgba(255,255,255,.1);
        color: var(--fg-on-primary);
        border-color: rgba(255,255,255,.3);
    }

    .cookie-banner__manage:hover {
        background: rgba(255,255,255,.2);
        border-color: rgba(255,255,255,.5);
    }

    @keyframes slideDown {
        from {
            opacity: 1;
            transform: translateY(0);
        }
        to {
            opacity: 0;
            transform: translateY(20px);
        }
    }

    @media (max-width: 767px) {
        .cookie-banner {
            bottom: 0;
            right: 0;
            left: 0;
            max-width: 100%;
            border-radius: var(--radius-xl) var(--radius-xl) 0 0;
        }

        .cookie-banner__controls {
            flex-direction: row;
            flex-wrap: wrap;
        }

        .cookie-banner__btn {
            flex: 1;
            min-width: 0;
        }
    }

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

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

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

.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    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: var(--gap);
}

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    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);
    font-weight: 500;
}

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

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

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

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

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

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

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

    .nav-list {
        flex-direction: column;
        gap: calc(var(--gap) * 1.5);
        margin-top: calc(var(--space-y) * 3);
    }

    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
        font-size: calc(var(--font-size-base) * 1.1);
    }

    .header-container {
        padding: 0 var(--space-x);
    }
}

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        padding: 3rem 1rem 1rem;
        border-top: 1px solid #dee2e6;
        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;
        padding-bottom: 2rem;
    }

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

    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #0d6efd;
        margin-bottom: 0.75rem;
    }

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

    .social-links {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
    }

    .social-links a {
        color: #495057;
        text-decoration: none;
        font-size: 0.9rem;
        transition: color 0.2s;
    }

    .social-links a:hover {
        color: #0d6efd;
    }

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

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

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

    .footer-nav a:hover,
    .legal-links a:hover {
        color: #0d6efd;
        padding-left: 5px;
    }

    .contact-info p {
        margin-bottom: 0.7rem;
        line-height: 1.5;
    }

    .contact-info a {
        color: #0d6efd;
        text-decoration: none;
    }

    .contact-info a:hover {
        text-decoration: underline;
    }

    .footer-bottom {
        max-width: 1200px;
        margin: 0 auto;
        padding-top: 1.5rem;
        border-top: 1px solid #dee2e6;
        text-align: center;
        color: #6c757d;
        font-size: 0.9rem;
    }

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

        .footer-section {
            text-align: center;
        }

        .social-links {
            justify-content: center;
        }

        .footer-disclaimer {
            max-width: 100%;
            margin-left: auto;
            margin-right: auto;
        }
    }

.cookie-banner {
        position: fixed;
        bottom: 20px;
        right: 20px;
        left: auto;
        max-width: 420px;
        z-index: 1000;
        background: linear-gradient(135deg, var(--bg-accent) 0%, var(--bg-primary) 100%);
        color: var(--fg-on-primary);
        box-shadow: 0 10px 30px rgba(0,0,0,.2);
        padding: clamp(18px, 3vw, 28px);
        border-radius: var(--radius-xl);
    }

    .cookie-banner__c {
        display: grid;
        gap: 1.5rem;
    }

    .cookie-banner__text strong {
        display: block;
        font-size: 1.15rem;
        margin-bottom: 0.5rem;
        color: var(--fg-on-primary);
        font-weight: 600;
    }

    .cookie-banner__text p {
        margin: 0;
        font-size: 0.95rem;
        color: var(--fg-on-primary);
        opacity: 0.95;
        line-height: 1.6;
    }

    .cookie-banner__controls {
        display: flex;
        gap: 0.85rem;
        flex-direction: column;
    }

    .cookie-banner__btn {
        padding: 0.8rem 1.5rem;
        border: 2px solid var(--fg-on-primary);
        border-radius: var(--radius-lg);
        font-size: 0.95rem;
        cursor: pointer;
        transition: all .25s;
        font-weight: 500;
        width: 100%;
    }

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

    .cookie-banner__accept:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(0,0,0,.25);
    }

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

    .cookie-banner__reject:hover {
        background: rgba(255,255,255,.15);
    }

    .cookie-banner__manage {
        background: rgba(255,255,255,.1);
        color: var(--fg-on-primary);
        border-color: rgba(255,255,255,.3);
    }

    .cookie-banner__manage:hover {
        background: rgba(255,255,255,.2);
        border-color: rgba(255,255,255,.5);
    }

    @keyframes slideDown {
        from {
            opacity: 1;
            transform: translateY(0);
        }
        to {
            opacity: 0;
            transform: translateY(20px);
        }
    }

    @media (max-width: 767px) {
        .cookie-banner {
            bottom: 0;
            right: 0;
            left: 0;
            max-width: 100%;
            border-radius: var(--radius-xl) var(--radius-xl) 0 0;
        }

        .cookie-banner__controls {
            flex-direction: row;
            flex-wrap: wrap;
        }

        .cookie-banner__btn {
            flex: 1;
            min-width: 0;
        }
    }

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

.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__wrapper {
        max-width: 500px;
        margin: 0 auto;
        text-align: center;
    }

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

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

    .author .author__name {
        font-size: clamp(28px, 5vw, 40px);
        margin: 0 0 0.5rem;
        color: var(--fg-on-page);
    }

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

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

.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    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: var(--gap);
}

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    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);
    font-weight: 500;
}

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

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

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

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

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

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

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

    .nav-list {
        flex-direction: column;
        gap: calc(var(--gap) * 1.5);
        margin-top: calc(var(--space-y) * 3);
    }

    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
        font-size: calc(var(--font-size-base) * 1.1);
    }

    .header-container {
        padding: 0 var(--space-x);
    }
}

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        padding: 3rem 1rem 1rem;
        border-top: 1px solid #dee2e6;
        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;
        padding-bottom: 2rem;
    }

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

    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #0d6efd;
        margin-bottom: 0.75rem;
    }

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

    .social-links {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
    }

    .social-links a {
        color: #495057;
        text-decoration: none;
        font-size: 0.9rem;
        transition: color 0.2s;
    }

    .social-links a:hover {
        color: #0d6efd;
    }

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

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

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

    .footer-nav a:hover,
    .legal-links a:hover {
        color: #0d6efd;
        padding-left: 5px;
    }

    .contact-info p {
        margin-bottom: 0.7rem;
        line-height: 1.5;
    }

    .contact-info a {
        color: #0d6efd;
        text-decoration: none;
    }

    .contact-info a:hover {
        text-decoration: underline;
    }

    .footer-bottom {
        max-width: 1200px;
        margin: 0 auto;
        padding-top: 1.5rem;
        border-top: 1px solid #dee2e6;
        text-align: center;
        color: #6c757d;
        font-size: 0.9rem;
    }

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

        .footer-section {
            text-align: center;
        }

        .social-links {
            justify-content: center;
        }

        .footer-disclaimer {
            max-width: 100%;
            margin-left: auto;
            margin-right: auto;
        }
    }

.cookie-banner {
        position: fixed;
        bottom: 20px;
        right: 20px;
        left: auto;
        max-width: 420px;
        z-index: 1000;
        background: linear-gradient(135deg, var(--bg-accent) 0%, var(--bg-primary) 100%);
        color: var(--fg-on-primary);
        box-shadow: 0 10px 30px rgba(0,0,0,.2);
        padding: clamp(18px, 3vw, 28px);
        border-radius: var(--radius-xl);
    }

    .cookie-banner__c {
        display: grid;
        gap: 1.5rem;
    }

    .cookie-banner__text strong {
        display: block;
        font-size: 1.15rem;
        margin-bottom: 0.5rem;
        color: var(--fg-on-primary);
        font-weight: 600;
    }

    .cookie-banner__text p {
        margin: 0;
        font-size: 0.95rem;
        color: var(--fg-on-primary);
        opacity: 0.95;
        line-height: 1.6;
    }

    .cookie-banner__controls {
        display: flex;
        gap: 0.85rem;
        flex-direction: column;
    }

    .cookie-banner__btn {
        padding: 0.8rem 1.5rem;
        border: 2px solid var(--fg-on-primary);
        border-radius: var(--radius-lg);
        font-size: 0.95rem;
        cursor: pointer;
        transition: all .25s;
        font-weight: 500;
        width: 100%;
    }

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

    .cookie-banner__accept:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(0,0,0,.25);
    }

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

    .cookie-banner__reject:hover {
        background: rgba(255,255,255,.15);
    }

    .cookie-banner__manage {
        background: rgba(255,255,255,.1);
        color: var(--fg-on-primary);
        border-color: rgba(255,255,255,.3);
    }

    .cookie-banner__manage:hover {
        background: rgba(255,255,255,.2);
        border-color: rgba(255,255,255,.5);
    }

    @keyframes slideDown {
        from {
            opacity: 1;
            transform: translateY(0);
        }
        to {
            opacity: 0;
            transform: translateY(20px);
        }
    }

    @media (max-width: 767px) {
        .cookie-banner {
            bottom: 0;
            right: 0;
            left: 0;
            max-width: 100%;
            border-radius: var(--radius-xl) var(--radius-xl) 0 0;
        }

        .cookie-banner__controls {
            flex-direction: row;
            flex-wrap: wrap;
        }

        .cookie-banner__btn {
            flex: 1;
            min-width: 0;
        }
    }

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

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

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

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

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

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

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

    }

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

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

.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    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: var(--gap);
}

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    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);
    font-weight: 500;
}

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

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

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

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

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

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

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

    .nav-list {
        flex-direction: column;
        gap: calc(var(--gap) * 1.5);
        margin-top: calc(var(--space-y) * 3);
    }

    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
        font-size: calc(var(--font-size-base) * 1.1);
    }

    .header-container {
        padding: 0 var(--space-x);
    }
}

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        padding: 3rem 1rem 1rem;
        border-top: 1px solid #dee2e6;
        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;
        padding-bottom: 2rem;
    }

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

    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #0d6efd;
        margin-bottom: 0.75rem;
    }

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

    .social-links {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
    }

    .social-links a {
        color: #495057;
        text-decoration: none;
        font-size: 0.9rem;
        transition: color 0.2s;
    }

    .social-links a:hover {
        color: #0d6efd;
    }

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

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

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

    .footer-nav a:hover,
    .legal-links a:hover {
        color: #0d6efd;
        padding-left: 5px;
    }

    .contact-info p {
        margin-bottom: 0.7rem;
        line-height: 1.5;
    }

    .contact-info a {
        color: #0d6efd;
        text-decoration: none;
    }

    .contact-info a:hover {
        text-decoration: underline;
    }

    .footer-bottom {
        max-width: 1200px;
        margin: 0 auto;
        padding-top: 1.5rem;
        border-top: 1px solid #dee2e6;
        text-align: center;
        color: #6c757d;
        font-size: 0.9rem;
    }

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

        .footer-section {
            text-align: center;
        }

        .social-links {
            justify-content: center;
        }

        .footer-disclaimer {
            max-width: 100%;
            margin-left: auto;
            margin-right: auto;
        }
    }

.cookie-banner {
        position: fixed;
        bottom: 20px;
        right: 20px;
        left: auto;
        max-width: 420px;
        z-index: 1000;
        background: linear-gradient(135deg, var(--bg-accent) 0%, var(--bg-primary) 100%);
        color: var(--fg-on-primary);
        box-shadow: 0 10px 30px rgba(0,0,0,.2);
        padding: clamp(18px, 3vw, 28px);
        border-radius: var(--radius-xl);
    }

    .cookie-banner__c {
        display: grid;
        gap: 1.5rem;
    }

    .cookie-banner__text strong {
        display: block;
        font-size: 1.15rem;
        margin-bottom: 0.5rem;
        color: var(--fg-on-primary);
        font-weight: 600;
    }

    .cookie-banner__text p {
        margin: 0;
        font-size: 0.95rem;
        color: var(--fg-on-primary);
        opacity: 0.95;
        line-height: 1.6;
    }

    .cookie-banner__controls {
        display: flex;
        gap: 0.85rem;
        flex-direction: column;
    }

    .cookie-banner__btn {
        padding: 0.8rem 1.5rem;
        border: 2px solid var(--fg-on-primary);
        border-radius: var(--radius-lg);
        font-size: 0.95rem;
        cursor: pointer;
        transition: all .25s;
        font-weight: 500;
        width: 100%;
    }

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

    .cookie-banner__accept:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(0,0,0,.25);
    }

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

    .cookie-banner__reject:hover {
        background: rgba(255,255,255,.15);
    }

    .cookie-banner__manage {
        background: rgba(255,255,255,.1);
        color: var(--fg-on-primary);
        border-color: rgba(255,255,255,.3);
    }

    .cookie-banner__manage:hover {
        background: rgba(255,255,255,.2);
        border-color: rgba(255,255,255,.5);
    }

    @keyframes slideDown {
        from {
            opacity: 1;
            transform: translateY(0);
        }
        to {
            opacity: 0;
            transform: translateY(20px);
        }
    }

    @media (max-width: 767px) {
        .cookie-banner {
            bottom: 0;
            right: 0;
            left: 0;
            max-width: 100%;
            border-radius: var(--radius-xl) var(--radius-xl) 0 0;
        }

        .cookie-banner__controls {
            flex-direction: row;
            flex-wrap: wrap;
        }

        .cookie-banner__btn {
            flex: 1;
            min-width: 0;
        }
    }

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

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

.form__inner {
    max-width: 480px;
    margin: 0 auto;
    text-align: center;
}

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

.form__text {
    margin: 0 0 var(--space-y);
    color: var(--neutral-600);
    line-height: var(--line-height-base);
}

.contact-form {
    text-align: left;
    margin-top: var(--space-y);
}

.form-group {
    margin-bottom: var(--gap);
}

.form-label {
    display: block;
    margin-bottom: 4px;
    font-weight: 500;
    color: var(--neutral-800);
}

.form-input, .form-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--input-border);
    border-radius: var(--radius-md);
    background-color: var(--input-bg);
    color: var(--input-fg);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    transition: border-color var(--anim-duration) var(--anim-ease);
    box-sizing: border-box;
}

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

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--ring);
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.form-textarea {
    resize: vertical;
}

.form-submit-btn {
    width: 100%;
    padding: 14px 24px;
    background-color: var(--btn-primary-bg);
    color: var(--btn-primary-fg);
    border: none;
    border-radius: var(--radius-md);
    font-family: var(--font-family);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color var(--anim-duration) var(--anim-ease);
    margin-top: 8px;
}

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

.form-footer {
    margin-top: var(--space-y);
    padding-top: var(--gap);
    border-top: 1px solid var(--border-on-surface);
    color: var(--neutral-600);
    font-size: 0.9rem;
}

.form-footer a {
    color: var(--link);
    text-decoration: none;
}

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

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

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

.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    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: var(--gap);
}

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    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);
    font-weight: 500;
}

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

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

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

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

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

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

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

    .nav-list {
        flex-direction: column;
        gap: calc(var(--gap) * 1.5);
        margin-top: calc(var(--space-y) * 3);
    }

    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
        font-size: calc(var(--font-size-base) * 1.1);
    }

    .header-container {
        padding: 0 var(--space-x);
    }
}

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        padding: 3rem 1rem 1rem;
        border-top: 1px solid #dee2e6;
        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;
        padding-bottom: 2rem;
    }

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

    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #0d6efd;
        margin-bottom: 0.75rem;
    }

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

    .social-links {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
    }

    .social-links a {
        color: #495057;
        text-decoration: none;
        font-size: 0.9rem;
        transition: color 0.2s;
    }

    .social-links a:hover {
        color: #0d6efd;
    }

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

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

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

    .footer-nav a:hover,
    .legal-links a:hover {
        color: #0d6efd;
        padding-left: 5px;
    }

    .contact-info p {
        margin-bottom: 0.7rem;
        line-height: 1.5;
    }

    .contact-info a {
        color: #0d6efd;
        text-decoration: none;
    }

    .contact-info a:hover {
        text-decoration: underline;
    }

    .footer-bottom {
        max-width: 1200px;
        margin: 0 auto;
        padding-top: 1.5rem;
        border-top: 1px solid #dee2e6;
        text-align: center;
        color: #6c757d;
        font-size: 0.9rem;
    }

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

        .footer-section {
            text-align: center;
        }

        .social-links {
            justify-content: center;
        }

        .footer-disclaimer {
            max-width: 100%;
            margin-left: auto;
            margin-right: auto;
        }
    }

.cookie-banner {
        position: fixed;
        bottom: 20px;
        right: 20px;
        left: auto;
        max-width: 420px;
        z-index: 1000;
        background: linear-gradient(135deg, var(--bg-accent) 0%, var(--bg-primary) 100%);
        color: var(--fg-on-primary);
        box-shadow: 0 10px 30px rgba(0,0,0,.2);
        padding: clamp(18px, 3vw, 28px);
        border-radius: var(--radius-xl);
    }

    .cookie-banner__c {
        display: grid;
        gap: 1.5rem;
    }

    .cookie-banner__text strong {
        display: block;
        font-size: 1.15rem;
        margin-bottom: 0.5rem;
        color: var(--fg-on-primary);
        font-weight: 600;
    }

    .cookie-banner__text p {
        margin: 0;
        font-size: 0.95rem;
        color: var(--fg-on-primary);
        opacity: 0.95;
        line-height: 1.6;
    }

    .cookie-banner__controls {
        display: flex;
        gap: 0.85rem;
        flex-direction: column;
    }

    .cookie-banner__btn {
        padding: 0.8rem 1.5rem;
        border: 2px solid var(--fg-on-primary);
        border-radius: var(--radius-lg);
        font-size: 0.95rem;
        cursor: pointer;
        transition: all .25s;
        font-weight: 500;
        width: 100%;
    }

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

    .cookie-banner__accept:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(0,0,0,.25);
    }

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

    .cookie-banner__reject:hover {
        background: rgba(255,255,255,.15);
    }

    .cookie-banner__manage {
        background: rgba(255,255,255,.1);
        color: var(--fg-on-primary);
        border-color: rgba(255,255,255,.3);
    }

    .cookie-banner__manage:hover {
        background: rgba(255,255,255,.2);
        border-color: rgba(255,255,255,.5);
    }

    @keyframes slideDown {
        from {
            opacity: 1;
            transform: translateY(0);
        }
        to {
            opacity: 0;
            transform: translateY(20px);
        }
    }

    @media (max-width: 767px) {
        .cookie-banner {
            bottom: 0;
            right: 0;
            left: 0;
            max-width: 100%;
            border-radius: var(--radius-xl) var(--radius-xl) 0 0;
        }

        .cookie-banner__controls {
            flex-direction: row;
            flex-wrap: wrap;
        }

        .cookie-banner__btn {
            flex: 1;
            min-width: 0;
        }
    }

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

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

.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    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: var(--gap);
}

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    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);
    font-weight: 500;
}

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

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

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

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

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

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

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

    .nav-list {
        flex-direction: column;
        gap: calc(var(--gap) * 1.5);
        margin-top: calc(var(--space-y) * 3);
    }

    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
        font-size: calc(var(--font-size-base) * 1.1);
    }

    .header-container {
        padding: 0 var(--space-x);
    }
}

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        padding: 3rem 1rem 1rem;
        border-top: 1px solid #dee2e6;
        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;
        padding-bottom: 2rem;
    }

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

    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #0d6efd;
        margin-bottom: 0.75rem;
    }

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

    .social-links {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
    }

    .social-links a {
        color: #495057;
        text-decoration: none;
        font-size: 0.9rem;
        transition: color 0.2s;
    }

    .social-links a:hover {
        color: #0d6efd;
    }

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

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

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

    .footer-nav a:hover,
    .legal-links a:hover {
        color: #0d6efd;
        padding-left: 5px;
    }

    .contact-info p {
        margin-bottom: 0.7rem;
        line-height: 1.5;
    }

    .contact-info a {
        color: #0d6efd;
        text-decoration: none;
    }

    .contact-info a:hover {
        text-decoration: underline;
    }

    .footer-bottom {
        max-width: 1200px;
        margin: 0 auto;
        padding-top: 1.5rem;
        border-top: 1px solid #dee2e6;
        text-align: center;
        color: #6c757d;
        font-size: 0.9rem;
    }

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

        .footer-section {
            text-align: center;
        }

        .social-links {
            justify-content: center;
        }

        .footer-disclaimer {
            max-width: 100%;
            margin-left: auto;
            margin-right: auto;
        }
    }

.cookie-banner {
        position: fixed;
        bottom: 20px;
        right: 20px;
        left: auto;
        max-width: 420px;
        z-index: 1000;
        background: linear-gradient(135deg, var(--bg-accent) 0%, var(--bg-primary) 100%);
        color: var(--fg-on-primary);
        box-shadow: 0 10px 30px rgba(0,0,0,.2);
        padding: clamp(18px, 3vw, 28px);
        border-radius: var(--radius-xl);
    }

    .cookie-banner__c {
        display: grid;
        gap: 1.5rem;
    }

    .cookie-banner__text strong {
        display: block;
        font-size: 1.15rem;
        margin-bottom: 0.5rem;
        color: var(--fg-on-primary);
        font-weight: 600;
    }

    .cookie-banner__text p {
        margin: 0;
        font-size: 0.95rem;
        color: var(--fg-on-primary);
        opacity: 0.95;
        line-height: 1.6;
    }

    .cookie-banner__controls {
        display: flex;
        gap: 0.85rem;
        flex-direction: column;
    }

    .cookie-banner__btn {
        padding: 0.8rem 1.5rem;
        border: 2px solid var(--fg-on-primary);
        border-radius: var(--radius-lg);
        font-size: 0.95rem;
        cursor: pointer;
        transition: all .25s;
        font-weight: 500;
        width: 100%;
    }

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

    .cookie-banner__accept:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(0,0,0,.25);
    }

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

    .cookie-banner__reject:hover {
        background: rgba(255,255,255,.15);
    }

    .cookie-banner__manage {
        background: rgba(255,255,255,.1);
        color: var(--fg-on-primary);
        border-color: rgba(255,255,255,.3);
    }

    .cookie-banner__manage:hover {
        background: rgba(255,255,255,.2);
        border-color: rgba(255,255,255,.5);
    }

    @keyframes slideDown {
        from {
            opacity: 1;
            transform: translateY(0);
        }
        to {
            opacity: 0;
            transform: translateY(20px);
        }
    }

    @media (max-width: 767px) {
        .cookie-banner {
            bottom: 0;
            right: 0;
            left: 0;
            max-width: 100%;
            border-radius: var(--radius-xl) var(--radius-xl) 0 0;
        }

        .cookie-banner__controls {
            flex-direction: row;
            flex-wrap: wrap;
        }

        .cookie-banner__btn {
            flex: 1;
            min-width: 0;
        }
    }

.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 {
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-sm);
        transition: box-shadow var(--anim-duration) var(--anim-ease);
    }
    .terms-items__card:hover {
        box-shadow: var(--shadow-md);
    }

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

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

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

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

.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    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: var(--gap);
}

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    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);
    font-weight: 500;
}

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

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

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

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

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

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

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

    .nav-list {
        flex-direction: column;
        gap: calc(var(--gap) * 1.5);
        margin-top: calc(var(--space-y) * 3);
    }

    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
        font-size: calc(var(--font-size-base) * 1.1);
    }

    .header-container {
        padding: 0 var(--space-x);
    }
}

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        padding: 3rem 1rem 1rem;
        border-top: 1px solid #dee2e6;
        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;
        padding-bottom: 2rem;
    }

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

    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #0d6efd;
        margin-bottom: 0.75rem;
    }

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

    .social-links {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
    }

    .social-links a {
        color: #495057;
        text-decoration: none;
        font-size: 0.9rem;
        transition: color 0.2s;
    }

    .social-links a:hover {
        color: #0d6efd;
    }

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

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

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

    .footer-nav a:hover,
    .legal-links a:hover {
        color: #0d6efd;
        padding-left: 5px;
    }

    .contact-info p {
        margin-bottom: 0.7rem;
        line-height: 1.5;
    }

    .contact-info a {
        color: #0d6efd;
        text-decoration: none;
    }

    .contact-info a:hover {
        text-decoration: underline;
    }

    .footer-bottom {
        max-width: 1200px;
        margin: 0 auto;
        padding-top: 1.5rem;
        border-top: 1px solid #dee2e6;
        text-align: center;
        color: #6c757d;
        font-size: 0.9rem;
    }

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

        .footer-section {
            text-align: center;
        }

        .social-links {
            justify-content: center;
        }

        .footer-disclaimer {
            max-width: 100%;
            margin-left: auto;
            margin-right: auto;
        }
    }

.cookie-banner {
        position: fixed;
        bottom: 20px;
        right: 20px;
        left: auto;
        max-width: 420px;
        z-index: 1000;
        background: linear-gradient(135deg, var(--bg-accent) 0%, var(--bg-primary) 100%);
        color: var(--fg-on-primary);
        box-shadow: 0 10px 30px rgba(0,0,0,.2);
        padding: clamp(18px, 3vw, 28px);
        border-radius: var(--radius-xl);
    }

    .cookie-banner__c {
        display: grid;
        gap: 1.5rem;
    }

    .cookie-banner__text strong {
        display: block;
        font-size: 1.15rem;
        margin-bottom: 0.5rem;
        color: var(--fg-on-primary);
        font-weight: 600;
    }

    .cookie-banner__text p {
        margin: 0;
        font-size: 0.95rem;
        color: var(--fg-on-primary);
        opacity: 0.95;
        line-height: 1.6;
    }

    .cookie-banner__controls {
        display: flex;
        gap: 0.85rem;
        flex-direction: column;
    }

    .cookie-banner__btn {
        padding: 0.8rem 1.5rem;
        border: 2px solid var(--fg-on-primary);
        border-radius: var(--radius-lg);
        font-size: 0.95rem;
        cursor: pointer;
        transition: all .25s;
        font-weight: 500;
        width: 100%;
    }

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

    .cookie-banner__accept:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(0,0,0,.25);
    }

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

    .cookie-banner__reject:hover {
        background: rgba(255,255,255,.15);
    }

    .cookie-banner__manage {
        background: rgba(255,255,255,.1);
        color: var(--fg-on-primary);
        border-color: rgba(255,255,255,.3);
    }

    .cookie-banner__manage:hover {
        background: rgba(255,255,255,.2);
        border-color: rgba(255,255,255,.5);
    }

    @keyframes slideDown {
        from {
            opacity: 1;
            transform: translateY(0);
        }
        to {
            opacity: 0;
            transform: translateY(20px);
        }
    }

    @media (max-width: 767px) {
        .cookie-banner {
            bottom: 0;
            right: 0;
            left: 0;
            max-width: 100%;
            border-radius: var(--radius-xl) var(--radius-xl) 0 0;
        }

        .cookie-banner__controls {
            flex-direction: row;
            flex-wrap: wrap;
        }

        .cookie-banner__btn {
            flex: 1;
            min-width: 0;
        }
    }

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

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

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

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

    .thanks-light__content p {
        margin: 0 0 1.75rem;
        opacity: 0.9;
    }

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

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

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

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

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

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

    .thanks-light__panel {
        background: var(--surface-1);
        color: var(--fg-on-surface);
        border-radius: var(--radius-xl);
        padding: 1.5rem 1.7rem;
        box-shadow: var(--shadow-md);
        border: 1px solid var(--border-on-surface);
    }

    .thanks-light__row {
        display: flex;
        justify-content: space-between;
        align-items: baseline;
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
    }

    .thanks-light__row--muted {
        opacity: 0.8;
        font-size: 0.9rem;
    }

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

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

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

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

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

.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    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: var(--gap);
}

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    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);
    font-weight: 500;
}

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

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

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

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

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

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

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

    .nav-list {
        flex-direction: column;
        gap: calc(var(--gap) * 1.5);
        margin-top: calc(var(--space-y) * 3);
    }

    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
        font-size: calc(var(--font-size-base) * 1.1);
    }

    .header-container {
        padding: 0 var(--space-x);
    }
}

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        padding: 3rem 1rem 1rem;
        border-top: 1px solid #dee2e6;
        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;
        padding-bottom: 2rem;
    }

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

    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #0d6efd;
        margin-bottom: 0.75rem;
    }

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

    .social-links {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
    }

    .social-links a {
        color: #495057;
        text-decoration: none;
        font-size: 0.9rem;
        transition: color 0.2s;
    }

    .social-links a:hover {
        color: #0d6efd;
    }

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

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

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

    .footer-nav a:hover,
    .legal-links a:hover {
        color: #0d6efd;
        padding-left: 5px;
    }

    .contact-info p {
        margin-bottom: 0.7rem;
        line-height: 1.5;
    }

    .contact-info a {
        color: #0d6efd;
        text-decoration: none;
    }

    .contact-info a:hover {
        text-decoration: underline;
    }

    .footer-bottom {
        max-width: 1200px;
        margin: 0 auto;
        padding-top: 1.5rem;
        border-top: 1px solid #dee2e6;
        text-align: center;
        color: #6c757d;
        font-size: 0.9rem;
    }

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

        .footer-section {
            text-align: center;
        }

        .social-links {
            justify-content: center;
        }

        .footer-disclaimer {
            max-width: 100%;
            margin-left: auto;
            margin-right: auto;
        }
    }

.cookie-banner {
        position: fixed;
        bottom: 20px;
        right: 20px;
        left: auto;
        max-width: 420px;
        z-index: 1000;
        background: linear-gradient(135deg, var(--bg-accent) 0%, var(--bg-primary) 100%);
        color: var(--fg-on-primary);
        box-shadow: 0 10px 30px rgba(0,0,0,.2);
        padding: clamp(18px, 3vw, 28px);
        border-radius: var(--radius-xl);
    }

    .cookie-banner__c {
        display: grid;
        gap: 1.5rem;
    }

    .cookie-banner__text strong {
        display: block;
        font-size: 1.15rem;
        margin-bottom: 0.5rem;
        color: var(--fg-on-primary);
        font-weight: 600;
    }

    .cookie-banner__text p {
        margin: 0;
        font-size: 0.95rem;
        color: var(--fg-on-primary);
        opacity: 0.95;
        line-height: 1.6;
    }

    .cookie-banner__controls {
        display: flex;
        gap: 0.85rem;
        flex-direction: column;
    }

    .cookie-banner__btn {
        padding: 0.8rem 1.5rem;
        border: 2px solid var(--fg-on-primary);
        border-radius: var(--radius-lg);
        font-size: 0.95rem;
        cursor: pointer;
        transition: all .25s;
        font-weight: 500;
        width: 100%;
    }

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

    .cookie-banner__accept:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(0,0,0,.25);
    }

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

    .cookie-banner__reject:hover {
        background: rgba(255,255,255,.15);
    }

    .cookie-banner__manage {
        background: rgba(255,255,255,.1);
        color: var(--fg-on-primary);
        border-color: rgba(255,255,255,.3);
    }

    .cookie-banner__manage:hover {
        background: rgba(255,255,255,.2);
        border-color: rgba(255,255,255,.5);
    }

    @keyframes slideDown {
        from {
            opacity: 1;
            transform: translateY(0);
        }
        to {
            opacity: 0;
            transform: translateY(20px);
        }
    }

    @media (max-width: 767px) {
        .cookie-banner {
            bottom: 0;
            right: 0;
            left: 0;
            max-width: 100%;
            border-radius: var(--radius-xl) var(--radius-xl) 0 0;
        }

        .cookie-banner__controls {
            flex-direction: row;
            flex-wrap: wrap;
        }

        .cookie-banner__btn {
            flex: 1;
            min-width: 0;
        }
    }

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

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

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

    .error-404__content h1 {
        font-size: clamp(30px, 5vw, 46px);
        margin: 0 0 0.5rem;
        color: var(--fg-on-accent);
    }

    .error-404__content p {
        margin: 0 0 1.8rem;
        color: var(--fg-on-accent);
        opacity: 0.9;
    }

    .error-404__eyebrow {
        font-size: 0.85rem;
        text-transform: uppercase;
        letter-spacing: 0.15em;
        margin-bottom: 0.5rem;
        opacity: 0.85;
    }

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

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

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

    .error-404__btn--primary:hover {
        transform: translateY(-2px);
        background: var(--bg-primary-hover);
    }

    .error-404__btn--ghost {
        background: rgba(255,255,255,0.08);
        color: var(--fg-on-accent);
        border: 1px solid rgba(255,255,255,0.4);
    }

    .error-404__btn--ghost:hover {
        transform: translateY(-2px);
        background: rgba(255,255,255,0.14);
    }

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

    .error-404__bubble {
        position: relative;
        padding: 2.5rem 2rem;
        border-radius: 32px;
        background: var(--surface-light);
        color: var(--fg-on-surface-light);
        box-shadow: var(--shadow-lg);
        text-align: center;
        min-width: 220px;
    }

    .error-404__code {
        display: block;
        font-size: 2.5rem;
        font-weight: 700;
        letter-spacing: 0.1em;
        margin-bottom: 0.25rem;
    }

    .error-404__label {
        font-size: 0.9rem;
        text-transform: uppercase;
        letter-spacing: 0.15em;
        opacity: 0.8;
    }

    .error-404__label {
        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);
        }
    }

    @media (max-width: 767px) {
        .error-404__grid {
            grid-template-columns: minmax(0, 1fr);
        }

        .error-404__actions {
            flex-direction: column;
        }

        .error-404__btn {
            width: 100%;
            text-align: center;
        }

        .error-404__visual {
            order: -1;
        }
    }