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

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

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

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

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

  --brand: #0052CC;
  --brand-contrast: #FFFFFF;
  --accent: #00B8D9;
  --accent-contrast: #FFFFFF;

  --neutral-0: #FFFFFF;
  --neutral-100: #F5F5F5;
  --neutral-300: #D9D9D9;
  --neutral-600: #8C8C8C;
  --neutral-800: #262626;
  --neutral-900: #000000;

  --bg-page: #FFFFFF;
  --fg-on-page: #1F1F1F;

  --bg-alt: #F8F9FA;
  --fg-on-alt: #1F1F1F;

  --surface-1: #FFFFFF;
  --surface-2: #F5F5F5;
  --fg-on-surface: #1F1F1F;
  --border-on-surface: #E8E8E8;

  --surface-light: #FFFFFF;
  --fg-on-surface-light: #1F1F1F;
  --border-on-surface-light: #F0F0F0;

  --bg-primary: #0052CC;
  --fg-on-primary: #FFFFFF;
  --bg-primary-hover: #096DD9;
  --ring: #ADC6FF;

  --bg-accent: #E6F7FF;
  --fg-on-accent: #003A8C;
  --bg-accent-hover: #1890FF;

  --success: #52C41A;
  --success-contrast: #FFFFFF;
  --warning: #FAAD14;
  --warning-contrast: #1F1F1F;
  --danger: #FF4D4F;
  --danger-contrast: #FFFFFF;

  --link: #0052CC;
  --link-hover: #096DD9;

  --gradient-hero: linear-gradient(135deg, #0052CC 0%, #00B8D9 100%);
  --gradient-accent: linear-gradient(90deg, #E6F7FF 0%, #F6FFED 100%);

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

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

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

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

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

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

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

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

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

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

    .menu-toggle {
        display: none;
        background: none;
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-sm);
        padding: 0.75rem;
        cursor: pointer;
        color: var(--fg-on-surface);
        background-color: var(--surface-light);
    }

    .menu-toggle:hover,
    .menu-toggle:focus {
        background-color: var(--bg-alt);
        outline: 2px solid var(--ring);
        outline-offset: 2px;
    }

    .menu-toggle-icon {
        display: block;
        width: 1.5rem;
        height: 2px;
        background-color: currentColor;
        position: relative;
        transition: background-color var(--anim-duration) var(--anim-ease);
    }

    .menu-toggle-icon::before,
    .menu-toggle-icon::after {
        content: '';
        position: absolute;
        width: 100%;
        height: 2px;
        background-color: currentColor;
        left: 0;
        transition: transform var(--anim-duration) var(--anim-ease);
    }

    .menu-toggle-icon::before {
        top: -6px;
    }

    .menu-toggle-icon::after {
        bottom: -6px;
    }

    .menu-toggle[aria-expanded="true"] .menu-toggle-icon {
        background-color: transparent;
    }

    .menu-toggle[aria-expanded="true"] .menu-toggle-icon::before {
        transform: translateY(6px) rotate(45deg);
    }

    .menu-toggle[aria-expanded="true"] .menu-toggle-icon::after {
        transform: translateY(-6px) rotate(-45deg);
    }

    .site-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: 0.5rem 1rem;
        border-radius: var(--radius-md);
        transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
        white-space: nowrap;
    }

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

    .nav-link[aria-current="page"] {
        background-color: var(--bg-primary);
        color: var(--fg-on-primary);
        font-weight: 600;
    }

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

        .site-nav {
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background-color: var(--surface-1);
            border-top: 1px solid var(--border-on-surface);
            box-shadow: var(--shadow-md);
            padding: var(--space-y) var(--space-x);
            display: none;
            flex-direction: column;
        }

        .site-nav.is-open {
            display: flex;
        }

        .nav-list {
            flex-direction: column;
            width: 100%;
            gap: 0.5rem;
        }

        .nav-link {
            display: block;
            padding: 0.75rem 1rem;
            border-radius: var(--radius-sm);
        }
    }

.site-footer {
        background-color: #1a202c;
        color: #cbd5e0;
        padding-top: 3rem;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    }

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

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

    .footer-logo {
        font-size: 1.875rem;
        font-weight: 800;
        color: #ffffff;
        margin-bottom: 0.75rem;
        letter-spacing: -0.025em;
    }

    .footer-tagline {
        font-size: 0.95rem;
        line-height: 1.5;
        color: #a0aec0;
        max-width: 260px;
    }

    .footer-heading {
        color: #ffffff;
        font-size: 1.125rem;
        font-weight: 600;
        margin-bottom: 1.25rem;
    }

    .footer-nav,
    .footer-social,
    .footer-legal {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }

    .footer-nav a,
    .footer-social a,
    .footer-legal a,
    .footer-contact a {
        color: #cbd5e0;
        text-decoration: none;
        font-size: 0.95rem;
        transition: color 0.2s ease;
    }

    .footer-nav a:hover,
    .footer-social a:hover,
    .footer-legal a:hover,
    .footer-contact a:hover {
        color: #63b3ed;
    }

    .footer-contact p {
        margin: 0 0 0.5rem;
        line-height: 1.5;
        font-size: 0.95rem;
        font-style: normal;
    }

    .footer-social {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 1.25rem;
    }

    .footer-bottom {
        border-top: 1px solid #2d3748;
        padding: 1.5rem 0;
    }

    .footer-bottom-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 1.5rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        text-align: center;
    }

    .footer-copyright {
        font-size: 0.9rem;
        color: #a0aec0;
        margin: 0;
        order: 2;
    }

    .footer-legal {
        flex-direction: row;
        gap: 1.5rem;
        order: 1;
    }

    .footer-disclaimer {
        font-size: 0.8rem;
        color: #718096;
        margin: 0;
        line-height: 1.4;
        max-width: 800px;
        order: 3;
    }

    @media (min-width: 768px) {
        .footer-bottom-container {
            flex-direction: row;
            justify-content: space-between;
            text-align: left;
        }

        .footer-copyright {
            order: 1;
        }

        .footer-legal {
            order: 2;
        }

        .footer-disclaimer {
            order: 3;
            flex-basis: 100%;
            margin-top: 0.5rem;
        }
    }

    @media (min-width: 1024px) {
        .footer-disclaimer {
            flex-basis: auto;
            margin-top: 0;
            order: 2;
            text-align: center;
        }

        .footer-legal {
            order: 3;
        }
    }

.cookie-banner {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        box-shadow: 0 -8px 24px rgba(0,0,0,.15);
        padding: clamp(14px, 2.5vw, 22px);
    }

    .cookie-banner__c {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        align-items: center;
        gap: 1.25rem;
    }

    .cookie-banner__icon {
        font-size: 2.5rem;
        flex-shrink: 0;
        line-height: 1;
    }

    .cookie-banner__text {
        flex: 1;
    }

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

    .cookie-banner__text p {
        margin: 0;
        font-size: 0.9rem;
        color: var(--fg-on-accent);
        opacity: 0.9;
        line-height: 1.5;
    }

    .cookie-banner__actions {
        display: flex;
        gap: 0.75rem;
        flex-shrink: 0;
    }

    .cookie-banner__btn {
        padding: 0.75rem 1.3rem;
        border: 2px solid var(--fg-on-accent);
        border-radius: var(--radius-lg);
        font-size: 0.95rem;
        cursor: pointer;
        transition: all .25s;
        font-weight: 500;
    }

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

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

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

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

    @media (max-width: 767px) {
        .cookie-banner__c {
            flex-wrap: wrap;
        }

        .cookie-banner__icon {
            font-size: 2rem;
        }

        .cookie-banner__actions {
            width: 100%;
        }

        .cookie-banner__btn {
            flex: 1;
        }
    }

.index-hero {
        font-family: var(--font-family);
        color: var(--fg-on-primary);
        background: var(--bg-primary);
        padding: clamp(24px, 4vw, 56px) clamp(16px, 4vw, 40px);
    }

    .index-hero .index-hero__c {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        gap: clamp(20px, 4vw, 48px);
        grid-template-columns: 1.1fr 0.9fr;
        align-items: center;
    }

    .index-hero h1 {
        font-size: clamp(28px, 6vw, 64px);
        line-height: 1.05;
        margin: 0 0 .35em;
        color: inherit;
        background: inherit;
    }

    .index-hero p {
        font-size: clamp(16px, 2.4vw, 22px);
        opacity: .9;
        margin: 0 0 1.25rem;
        color: inherit;
        background: inherit;
    }

    .index-hero .index-hero__actions {
        display: flex;
        gap: 12px;
        flex-wrap: wrap;
    }

    .index-hero .index-hero__btn {
        display: inline-block;
        padding: .9rem 1.4rem;
        border-radius: var(--radius-lg);
        text-decoration: none;
        transition: transform var(--anim-duration) var(--anim-ease), box-shadow .3s;
    }

    .index-hero .index-hero__btn.index-hero__primary {
        background: var(--fg-on-page);
        color: var(--bg-page);
        box-shadow: var(--shadow-md);
    }

    .index-hero .index-hero__btn.index-hero__ghost {
        border: 1px solid var(--fg-on-primary);
        color: var(--fg-on-primary);
    }

    .index-hero .index-hero__btn:hover {
        transform: translateY(-2px);
    }

    .index-hero .index-hero__art img {
        width: 100%;
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-lg);
    }
    @media (max-width: 767px) {
        .index-hero .index-hero__c {
            grid-template-columns: repeat(1, minmax(0, 1fr));
        }
    }

.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: var(--font-size-base);
        line-height: var(--line-height-base);
        max-width: 90%;
    }

    @media (max-width: 767px) {
        .index-cta .index-cta__cta {
            grid-template-columns: 1fr;
            text-align: center;
        }
        .index-cta p {
            max-width: 100%;
            margin-bottom: var(--gap);
        }
    }

.subscribe--colored-v5 {
    font-family: var(--font-family);
    padding: 48px 20px;
    background: var(--gradient-accent);
    color: var(--fg-on-surface);
}

.subscribe__inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0,1.2fr) minmax(0,1fr);
    gap: 18px;
    align-items: center;
}

.subscribe__content h2 {
    margin: 0 0 4px;
    font-size: clamp(24px,4vw,30px);
    color: var(--neutral-900);
}

.subscribe__content p {
    margin: 0;
    opacity: 0.9;
    color: var(--neutral-800);
}

.subscribe__form {
    display: grid;
    grid-template-columns: minmax(0,1.4fr) auto;
    gap: 8px;
    background: var(--surface-1);
    border-radius: var(--radius-xl);
    padding: 6px 6px 6px 12px;
    border: 1px solid var(--border-on-surface-light);
    box-shadow: var(--shadow-sm);
}

.subscribe__form input {
    border: none;
    background: transparent;
    color: var(--fg-on-surface);
    font-family: inherit;
    font-size: 0.9rem;
    outline: none;
}

.subscribe__form input::placeholder {
    color: var(--input-placeholder);
}

.subscribe__form button {
    border: none;
    border-radius: var(--radius-lg);
    padding: 8px 14px;
    font-size: 0.9rem;
    font-weight: 600;
    background: var(--btn-primary-bg);
    color: var(--btn-primary-fg);
    cursor: pointer;
}

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

    .subscribe__form button:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-lg);
        background-color: var(--btn-primary-bg-hover);
    }

@media (max-width: 768px) {
    .subscribe__inner {
        grid-template-columns: minmax(0,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);
        box-shadow: var(--shadow-sm);
        position: sticky;
        top: 0;
        z-index: 1000;
        font-family: var(--font-family);
        font-size: var(--font-size-base);
        line-height: var(--line-height-base);
    }

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

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

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

    .menu-toggle {
        display: none;
        background: none;
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-sm);
        padding: 0.75rem;
        cursor: pointer;
        color: var(--fg-on-surface);
        background-color: var(--surface-light);
    }

    .menu-toggle:hover,
    .menu-toggle:focus {
        background-color: var(--bg-alt);
        outline: 2px solid var(--ring);
        outline-offset: 2px;
    }

    .menu-toggle-icon {
        display: block;
        width: 1.5rem;
        height: 2px;
        background-color: currentColor;
        position: relative;
        transition: background-color var(--anim-duration) var(--anim-ease);
    }

    .menu-toggle-icon::before,
    .menu-toggle-icon::after {
        content: '';
        position: absolute;
        width: 100%;
        height: 2px;
        background-color: currentColor;
        left: 0;
        transition: transform var(--anim-duration) var(--anim-ease);
    }

    .menu-toggle-icon::before {
        top: -6px;
    }

    .menu-toggle-icon::after {
        bottom: -6px;
    }

    .menu-toggle[aria-expanded="true"] .menu-toggle-icon {
        background-color: transparent;
    }

    .menu-toggle[aria-expanded="true"] .menu-toggle-icon::before {
        transform: translateY(6px) rotate(45deg);
    }

    .menu-toggle[aria-expanded="true"] .menu-toggle-icon::after {
        transform: translateY(-6px) rotate(-45deg);
    }

    .site-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: 0.5rem 1rem;
        border-radius: var(--radius-md);
        transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
        white-space: nowrap;
    }

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

    .nav-link[aria-current="page"] {
        background-color: var(--bg-primary);
        color: var(--fg-on-primary);
        font-weight: 600;
    }

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

        .site-nav {
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background-color: var(--surface-1);
            border-top: 1px solid var(--border-on-surface);
            box-shadow: var(--shadow-md);
            padding: var(--space-y) var(--space-x);
            display: none;
            flex-direction: column;
        }

        .site-nav.is-open {
            display: flex;
        }

        .nav-list {
            flex-direction: column;
            width: 100%;
            gap: 0.5rem;
        }

        .nav-link {
            display: block;
            padding: 0.75rem 1rem;
            border-radius: var(--radius-sm);
        }
    }

.site-footer {
        background-color: #1a202c;
        color: #cbd5e0;
        padding-top: 3rem;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    }

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

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

    .footer-logo {
        font-size: 1.875rem;
        font-weight: 800;
        color: #ffffff;
        margin-bottom: 0.75rem;
        letter-spacing: -0.025em;
    }

    .footer-tagline {
        font-size: 0.95rem;
        line-height: 1.5;
        color: #a0aec0;
        max-width: 260px;
    }

    .footer-heading {
        color: #ffffff;
        font-size: 1.125rem;
        font-weight: 600;
        margin-bottom: 1.25rem;
    }

    .footer-nav,
    .footer-social,
    .footer-legal {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }

    .footer-nav a,
    .footer-social a,
    .footer-legal a,
    .footer-contact a {
        color: #cbd5e0;
        text-decoration: none;
        font-size: 0.95rem;
        transition: color 0.2s ease;
    }

    .footer-nav a:hover,
    .footer-social a:hover,
    .footer-legal a:hover,
    .footer-contact a:hover {
        color: #63b3ed;
    }

    .footer-contact p {
        margin: 0 0 0.5rem;
        line-height: 1.5;
        font-size: 0.95rem;
        font-style: normal;
    }

    .footer-social {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 1.25rem;
    }

    .footer-bottom {
        border-top: 1px solid #2d3748;
        padding: 1.5rem 0;
    }

    .footer-bottom-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 1.5rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        text-align: center;
    }

    .footer-copyright {
        font-size: 0.9rem;
        color: #a0aec0;
        margin: 0;
        order: 2;
    }

    .footer-legal {
        flex-direction: row;
        gap: 1.5rem;
        order: 1;
    }

    .footer-disclaimer {
        font-size: 0.8rem;
        color: #718096;
        margin: 0;
        line-height: 1.4;
        max-width: 800px;
        order: 3;
    }

    @media (min-width: 768px) {
        .footer-bottom-container {
            flex-direction: row;
            justify-content: space-between;
            text-align: left;
        }

        .footer-copyright {
            order: 1;
        }

        .footer-legal {
            order: 2;
        }

        .footer-disclaimer {
            order: 3;
            flex-basis: 100%;
            margin-top: 0.5rem;
        }
    }

    @media (min-width: 1024px) {
        .footer-disclaimer {
            flex-basis: auto;
            margin-top: 0;
            order: 2;
            text-align: center;
        }

        .footer-legal {
            order: 3;
        }
    }

.cookie-banner {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        box-shadow: 0 -8px 24px rgba(0,0,0,.15);
        padding: clamp(14px, 2.5vw, 22px);
    }

    .cookie-banner__c {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        align-items: center;
        gap: 1.25rem;
    }

    .cookie-banner__icon {
        font-size: 2.5rem;
        flex-shrink: 0;
        line-height: 1;
    }

    .cookie-banner__text {
        flex: 1;
    }

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

    .cookie-banner__text p {
        margin: 0;
        font-size: 0.9rem;
        color: var(--fg-on-accent);
        opacity: 0.9;
        line-height: 1.5;
    }

    .cookie-banner__actions {
        display: flex;
        gap: 0.75rem;
        flex-shrink: 0;
    }

    .cookie-banner__btn {
        padding: 0.75rem 1.3rem;
        border: 2px solid var(--fg-on-accent);
        border-radius: var(--radius-lg);
        font-size: 0.95rem;
        cursor: pointer;
        transition: all .25s;
        font-weight: 500;
    }

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

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

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

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

    @media (max-width: 767px) {
        .cookie-banner__c {
            flex-wrap: wrap;
        }

        .cookie-banner__icon {
            font-size: 2rem;
        }

        .cookie-banner__actions {
            width: 100%;
        }

        .cookie-banner__btn {
            flex: 1;
        }
    }

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

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

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

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

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

.blog-list__card h3 {
    margin: 0;
    font-size: 1rem;
}

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

.blog-list__tag {
    font-size: 0.8rem;
    color: rgba(191,219,254,0.95);
}

.subscribe--colored-v5 {
    font-family: var(--font-family);
    padding: 48px 20px;
    background: var(--gradient-accent);
    color: var(--fg-on-surface);
}

.subscribe__inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0,1.2fr) minmax(0,1fr);
    gap: 18px;
    align-items: center;
}

.subscribe__content h2 {
    margin: 0 0 4px;
    font-size: clamp(24px,4vw,30px);
    color: var(--neutral-900);
}

.subscribe__content p {
    margin: 0;
    opacity: 0.9;
    color: var(--neutral-800);
}

.subscribe__form {
    display: grid;
    grid-template-columns: minmax(0,1.4fr) auto;
    gap: 8px;
    background: var(--surface-1);
    border-radius: var(--radius-xl);
    padding: 6px 6px 6px 12px;
    border: 1px solid var(--border-on-surface-light);
    box-shadow: var(--shadow-sm);
}

.subscribe__form input {
    border: none;
    background: transparent;
    color: var(--fg-on-surface);
    font-family: inherit;
    font-size: 0.9rem;
    outline: none;
}

.subscribe__form input::placeholder {
    color: var(--input-placeholder);
}

.subscribe__form button {
    border: none;
    border-radius: var(--radius-lg);
    padding: 8px 14px;
    font-size: 0.9rem;
    font-weight: 600;
    background: var(--btn-primary-bg);
    color: var(--btn-primary-fg);
    cursor: pointer;
}

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

    .subscribe__form button:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-lg);
        background-color: var(--btn-primary-bg-hover);
    }

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

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

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

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

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

    .menu-toggle {
        display: none;
        background: none;
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-sm);
        padding: 0.75rem;
        cursor: pointer;
        color: var(--fg-on-surface);
        background-color: var(--surface-light);
    }

    .menu-toggle:hover,
    .menu-toggle:focus {
        background-color: var(--bg-alt);
        outline: 2px solid var(--ring);
        outline-offset: 2px;
    }

    .menu-toggle-icon {
        display: block;
        width: 1.5rem;
        height: 2px;
        background-color: currentColor;
        position: relative;
        transition: background-color var(--anim-duration) var(--anim-ease);
    }

    .menu-toggle-icon::before,
    .menu-toggle-icon::after {
        content: '';
        position: absolute;
        width: 100%;
        height: 2px;
        background-color: currentColor;
        left: 0;
        transition: transform var(--anim-duration) var(--anim-ease);
    }

    .menu-toggle-icon::before {
        top: -6px;
    }

    .menu-toggle-icon::after {
        bottom: -6px;
    }

    .menu-toggle[aria-expanded="true"] .menu-toggle-icon {
        background-color: transparent;
    }

    .menu-toggle[aria-expanded="true"] .menu-toggle-icon::before {
        transform: translateY(6px) rotate(45deg);
    }

    .menu-toggle[aria-expanded="true"] .menu-toggle-icon::after {
        transform: translateY(-6px) rotate(-45deg);
    }

    .site-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: 0.5rem 1rem;
        border-radius: var(--radius-md);
        transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
        white-space: nowrap;
    }

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

    .nav-link[aria-current="page"] {
        background-color: var(--bg-primary);
        color: var(--fg-on-primary);
        font-weight: 600;
    }

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

        .site-nav {
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background-color: var(--surface-1);
            border-top: 1px solid var(--border-on-surface);
            box-shadow: var(--shadow-md);
            padding: var(--space-y) var(--space-x);
            display: none;
            flex-direction: column;
        }

        .site-nav.is-open {
            display: flex;
        }

        .nav-list {
            flex-direction: column;
            width: 100%;
            gap: 0.5rem;
        }

        .nav-link {
            display: block;
            padding: 0.75rem 1rem;
            border-radius: var(--radius-sm);
        }
    }

.site-footer {
        background-color: #1a202c;
        color: #cbd5e0;
        padding-top: 3rem;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    }

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

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

    .footer-logo {
        font-size: 1.875rem;
        font-weight: 800;
        color: #ffffff;
        margin-bottom: 0.75rem;
        letter-spacing: -0.025em;
    }

    .footer-tagline {
        font-size: 0.95rem;
        line-height: 1.5;
        color: #a0aec0;
        max-width: 260px;
    }

    .footer-heading {
        color: #ffffff;
        font-size: 1.125rem;
        font-weight: 600;
        margin-bottom: 1.25rem;
    }

    .footer-nav,
    .footer-social,
    .footer-legal {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }

    .footer-nav a,
    .footer-social a,
    .footer-legal a,
    .footer-contact a {
        color: #cbd5e0;
        text-decoration: none;
        font-size: 0.95rem;
        transition: color 0.2s ease;
    }

    .footer-nav a:hover,
    .footer-social a:hover,
    .footer-legal a:hover,
    .footer-contact a:hover {
        color: #63b3ed;
    }

    .footer-contact p {
        margin: 0 0 0.5rem;
        line-height: 1.5;
        font-size: 0.95rem;
        font-style: normal;
    }

    .footer-social {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 1.25rem;
    }

    .footer-bottom {
        border-top: 1px solid #2d3748;
        padding: 1.5rem 0;
    }

    .footer-bottom-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 1.5rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        text-align: center;
    }

    .footer-copyright {
        font-size: 0.9rem;
        color: #a0aec0;
        margin: 0;
        order: 2;
    }

    .footer-legal {
        flex-direction: row;
        gap: 1.5rem;
        order: 1;
    }

    .footer-disclaimer {
        font-size: 0.8rem;
        color: #718096;
        margin: 0;
        line-height: 1.4;
        max-width: 800px;
        order: 3;
    }

    @media (min-width: 768px) {
        .footer-bottom-container {
            flex-direction: row;
            justify-content: space-between;
            text-align: left;
        }

        .footer-copyright {
            order: 1;
        }

        .footer-legal {
            order: 2;
        }

        .footer-disclaimer {
            order: 3;
            flex-basis: 100%;
            margin-top: 0.5rem;
        }
    }

    @media (min-width: 1024px) {
        .footer-disclaimer {
            flex-basis: auto;
            margin-top: 0;
            order: 2;
            text-align: center;
        }

        .footer-legal {
            order: 3;
        }
    }

.cookie-banner {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        box-shadow: 0 -8px 24px rgba(0,0,0,.15);
        padding: clamp(14px, 2.5vw, 22px);
    }

    .cookie-banner__c {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        align-items: center;
        gap: 1.25rem;
    }

    .cookie-banner__icon {
        font-size: 2.5rem;
        flex-shrink: 0;
        line-height: 1;
    }

    .cookie-banner__text {
        flex: 1;
    }

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

    .cookie-banner__text p {
        margin: 0;
        font-size: 0.9rem;
        color: var(--fg-on-accent);
        opacity: 0.9;
        line-height: 1.5;
    }

    .cookie-banner__actions {
        display: flex;
        gap: 0.75rem;
        flex-shrink: 0;
    }

    .cookie-banner__btn {
        padding: 0.75rem 1.3rem;
        border: 2px solid var(--fg-on-accent);
        border-radius: var(--radius-lg);
        font-size: 0.95rem;
        cursor: pointer;
        transition: all .25s;
        font-weight: 500;
    }

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

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

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

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

    @media (max-width: 767px) {
        .cookie-banner__c {
            flex-wrap: wrap;
        }

        .cookie-banner__icon {
            font-size: 2rem;
        }

        .cookie-banner__actions {
            width: 100%;
        }

        .cookie-banner__btn {
            flex: 1;
        }
    }

.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);
        box-shadow: var(--shadow-sm);
        position: sticky;
        top: 0;
        z-index: 1000;
        font-family: var(--font-family);
        font-size: var(--font-size-base);
        line-height: var(--line-height-base);
    }

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

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

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

    .menu-toggle {
        display: none;
        background: none;
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-sm);
        padding: 0.75rem;
        cursor: pointer;
        color: var(--fg-on-surface);
        background-color: var(--surface-light);
    }

    .menu-toggle:hover,
    .menu-toggle:focus {
        background-color: var(--bg-alt);
        outline: 2px solid var(--ring);
        outline-offset: 2px;
    }

    .menu-toggle-icon {
        display: block;
        width: 1.5rem;
        height: 2px;
        background-color: currentColor;
        position: relative;
        transition: background-color var(--anim-duration) var(--anim-ease);
    }

    .menu-toggle-icon::before,
    .menu-toggle-icon::after {
        content: '';
        position: absolute;
        width: 100%;
        height: 2px;
        background-color: currentColor;
        left: 0;
        transition: transform var(--anim-duration) var(--anim-ease);
    }

    .menu-toggle-icon::before {
        top: -6px;
    }

    .menu-toggle-icon::after {
        bottom: -6px;
    }

    .menu-toggle[aria-expanded="true"] .menu-toggle-icon {
        background-color: transparent;
    }

    .menu-toggle[aria-expanded="true"] .menu-toggle-icon::before {
        transform: translateY(6px) rotate(45deg);
    }

    .menu-toggle[aria-expanded="true"] .menu-toggle-icon::after {
        transform: translateY(-6px) rotate(-45deg);
    }

    .site-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: 0.5rem 1rem;
        border-radius: var(--radius-md);
        transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
        white-space: nowrap;
    }

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

    .nav-link[aria-current="page"] {
        background-color: var(--bg-primary);
        color: var(--fg-on-primary);
        font-weight: 600;
    }

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

        .site-nav {
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background-color: var(--surface-1);
            border-top: 1px solid var(--border-on-surface);
            box-shadow: var(--shadow-md);
            padding: var(--space-y) var(--space-x);
            display: none;
            flex-direction: column;
        }

        .site-nav.is-open {
            display: flex;
        }

        .nav-list {
            flex-direction: column;
            width: 100%;
            gap: 0.5rem;
        }

        .nav-link {
            display: block;
            padding: 0.75rem 1rem;
            border-radius: var(--radius-sm);
        }
    }

.site-footer {
        background-color: #1a202c;
        color: #cbd5e0;
        padding-top: 3rem;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    }

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

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

    .footer-logo {
        font-size: 1.875rem;
        font-weight: 800;
        color: #ffffff;
        margin-bottom: 0.75rem;
        letter-spacing: -0.025em;
    }

    .footer-tagline {
        font-size: 0.95rem;
        line-height: 1.5;
        color: #a0aec0;
        max-width: 260px;
    }

    .footer-heading {
        color: #ffffff;
        font-size: 1.125rem;
        font-weight: 600;
        margin-bottom: 1.25rem;
    }

    .footer-nav,
    .footer-social,
    .footer-legal {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }

    .footer-nav a,
    .footer-social a,
    .footer-legal a,
    .footer-contact a {
        color: #cbd5e0;
        text-decoration: none;
        font-size: 0.95rem;
        transition: color 0.2s ease;
    }

    .footer-nav a:hover,
    .footer-social a:hover,
    .footer-legal a:hover,
    .footer-contact a:hover {
        color: #63b3ed;
    }

    .footer-contact p {
        margin: 0 0 0.5rem;
        line-height: 1.5;
        font-size: 0.95rem;
        font-style: normal;
    }

    .footer-social {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 1.25rem;
    }

    .footer-bottom {
        border-top: 1px solid #2d3748;
        padding: 1.5rem 0;
    }

    .footer-bottom-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 1.5rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        text-align: center;
    }

    .footer-copyright {
        font-size: 0.9rem;
        color: #a0aec0;
        margin: 0;
        order: 2;
    }

    .footer-legal {
        flex-direction: row;
        gap: 1.5rem;
        order: 1;
    }

    .footer-disclaimer {
        font-size: 0.8rem;
        color: #718096;
        margin: 0;
        line-height: 1.4;
        max-width: 800px;
        order: 3;
    }

    @media (min-width: 768px) {
        .footer-bottom-container {
            flex-direction: row;
            justify-content: space-between;
            text-align: left;
        }

        .footer-copyright {
            order: 1;
        }

        .footer-legal {
            order: 2;
        }

        .footer-disclaimer {
            order: 3;
            flex-basis: 100%;
            margin-top: 0.5rem;
        }
    }

    @media (min-width: 1024px) {
        .footer-disclaimer {
            flex-basis: auto;
            margin-top: 0;
            order: 2;
            text-align: center;
        }

        .footer-legal {
            order: 3;
        }
    }

.cookie-banner {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        box-shadow: 0 -8px 24px rgba(0,0,0,.15);
        padding: clamp(14px, 2.5vw, 22px);
    }

    .cookie-banner__c {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        align-items: center;
        gap: 1.25rem;
    }

    .cookie-banner__icon {
        font-size: 2.5rem;
        flex-shrink: 0;
        line-height: 1;
    }

    .cookie-banner__text {
        flex: 1;
    }

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

    .cookie-banner__text p {
        margin: 0;
        font-size: 0.9rem;
        color: var(--fg-on-accent);
        opacity: 0.9;
        line-height: 1.5;
    }

    .cookie-banner__actions {
        display: flex;
        gap: 0.75rem;
        flex-shrink: 0;
    }

    .cookie-banner__btn {
        padding: 0.75rem 1.3rem;
        border: 2px solid var(--fg-on-accent);
        border-radius: var(--radius-lg);
        font-size: 0.95rem;
        cursor: pointer;
        transition: all .25s;
        font-weight: 500;
    }

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

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

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

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

    @media (max-width: 767px) {
        .cookie-banner__c {
            flex-wrap: wrap;
        }

        .cookie-banner__icon {
            font-size: 2rem;
        }

        .cookie-banner__actions {
            width: 100%;
        }

        .cookie-banner__btn {
            flex: 1;
        }
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

    .menu-toggle {
        display: none;
        background: none;
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-sm);
        padding: 0.75rem;
        cursor: pointer;
        color: var(--fg-on-surface);
        background-color: var(--surface-light);
    }

    .menu-toggle:hover,
    .menu-toggle:focus {
        background-color: var(--bg-alt);
        outline: 2px solid var(--ring);
        outline-offset: 2px;
    }

    .menu-toggle-icon {
        display: block;
        width: 1.5rem;
        height: 2px;
        background-color: currentColor;
        position: relative;
        transition: background-color var(--anim-duration) var(--anim-ease);
    }

    .menu-toggle-icon::before,
    .menu-toggle-icon::after {
        content: '';
        position: absolute;
        width: 100%;
        height: 2px;
        background-color: currentColor;
        left: 0;
        transition: transform var(--anim-duration) var(--anim-ease);
    }

    .menu-toggle-icon::before {
        top: -6px;
    }

    .menu-toggle-icon::after {
        bottom: -6px;
    }

    .menu-toggle[aria-expanded="true"] .menu-toggle-icon {
        background-color: transparent;
    }

    .menu-toggle[aria-expanded="true"] .menu-toggle-icon::before {
        transform: translateY(6px) rotate(45deg);
    }

    .menu-toggle[aria-expanded="true"] .menu-toggle-icon::after {
        transform: translateY(-6px) rotate(-45deg);
    }

    .site-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: 0.5rem 1rem;
        border-radius: var(--radius-md);
        transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
        white-space: nowrap;
    }

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

    .nav-link[aria-current="page"] {
        background-color: var(--bg-primary);
        color: var(--fg-on-primary);
        font-weight: 600;
    }

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

        .site-nav {
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background-color: var(--surface-1);
            border-top: 1px solid var(--border-on-surface);
            box-shadow: var(--shadow-md);
            padding: var(--space-y) var(--space-x);
            display: none;
            flex-direction: column;
        }

        .site-nav.is-open {
            display: flex;
        }

        .nav-list {
            flex-direction: column;
            width: 100%;
            gap: 0.5rem;
        }

        .nav-link {
            display: block;
            padding: 0.75rem 1rem;
            border-radius: var(--radius-sm);
        }
    }

.site-footer {
        background-color: #1a202c;
        color: #cbd5e0;
        padding-top: 3rem;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    }

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

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

    .footer-logo {
        font-size: 1.875rem;
        font-weight: 800;
        color: #ffffff;
        margin-bottom: 0.75rem;
        letter-spacing: -0.025em;
    }

    .footer-tagline {
        font-size: 0.95rem;
        line-height: 1.5;
        color: #a0aec0;
        max-width: 260px;
    }

    .footer-heading {
        color: #ffffff;
        font-size: 1.125rem;
        font-weight: 600;
        margin-bottom: 1.25rem;
    }

    .footer-nav,
    .footer-social,
    .footer-legal {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }

    .footer-nav a,
    .footer-social a,
    .footer-legal a,
    .footer-contact a {
        color: #cbd5e0;
        text-decoration: none;
        font-size: 0.95rem;
        transition: color 0.2s ease;
    }

    .footer-nav a:hover,
    .footer-social a:hover,
    .footer-legal a:hover,
    .footer-contact a:hover {
        color: #63b3ed;
    }

    .footer-contact p {
        margin: 0 0 0.5rem;
        line-height: 1.5;
        font-size: 0.95rem;
        font-style: normal;
    }

    .footer-social {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 1.25rem;
    }

    .footer-bottom {
        border-top: 1px solid #2d3748;
        padding: 1.5rem 0;
    }

    .footer-bottom-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 1.5rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        text-align: center;
    }

    .footer-copyright {
        font-size: 0.9rem;
        color: #a0aec0;
        margin: 0;
        order: 2;
    }

    .footer-legal {
        flex-direction: row;
        gap: 1.5rem;
        order: 1;
    }

    .footer-disclaimer {
        font-size: 0.8rem;
        color: #718096;
        margin: 0;
        line-height: 1.4;
        max-width: 800px;
        order: 3;
    }

    @media (min-width: 768px) {
        .footer-bottom-container {
            flex-direction: row;
            justify-content: space-between;
            text-align: left;
        }

        .footer-copyright {
            order: 1;
        }

        .footer-legal {
            order: 2;
        }

        .footer-disclaimer {
            order: 3;
            flex-basis: 100%;
            margin-top: 0.5rem;
        }
    }

    @media (min-width: 1024px) {
        .footer-disclaimer {
            flex-basis: auto;
            margin-top: 0;
            order: 2;
            text-align: center;
        }

        .footer-legal {
            order: 3;
        }
    }

.cookie-banner {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        box-shadow: 0 -8px 24px rgba(0,0,0,.15);
        padding: clamp(14px, 2.5vw, 22px);
    }

    .cookie-banner__c {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        align-items: center;
        gap: 1.25rem;
    }

    .cookie-banner__icon {
        font-size: 2.5rem;
        flex-shrink: 0;
        line-height: 1;
    }

    .cookie-banner__text {
        flex: 1;
    }

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

    .cookie-banner__text p {
        margin: 0;
        font-size: 0.9rem;
        color: var(--fg-on-accent);
        opacity: 0.9;
        line-height: 1.5;
    }

    .cookie-banner__actions {
        display: flex;
        gap: 0.75rem;
        flex-shrink: 0;
    }

    .cookie-banner__btn {
        padding: 0.75rem 1.3rem;
        border: 2px solid var(--fg-on-accent);
        border-radius: var(--radius-lg);
        font-size: 0.95rem;
        cursor: pointer;
        transition: all .25s;
        font-weight: 500;
    }

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

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

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

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

    @media (max-width: 767px) {
        .cookie-banner__c {
            flex-wrap: wrap;
        }

        .cookie-banner__icon {
            font-size: 2rem;
        }

        .cookie-banner__actions {
            width: 100%;
        }

        .cookie-banner__btn {
            flex: 1;
        }
    }

.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-primary);
        color: var(--fg-on-primary);
        padding: clamp(16px, 3vw, 40px);
    }

    .index-faq h3 {
        margin: 0
    }

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

    .index-faq .index-faq__grid {
        display: grid;
        gap: var(--space-x);
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .index-faq .index-faq__cell {
        background: rgba(255, 255, 255, .14);
        border: 1px solid rgba(255, 255, 255, .25);
        backdrop-filter: blur(8px);
        border-radius: var(--radius-lg);
        padding: clamp(12px, 2vw, 20px);
    }

    .index-faq p {
        margin: .8rem 0 0;
        color: rgba(255, 255, 255, .9);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .menu-toggle {
        display: none;
        background: none;
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-sm);
        padding: 0.75rem;
        cursor: pointer;
        color: var(--fg-on-surface);
        background-color: var(--surface-light);
    }

    .menu-toggle:hover,
    .menu-toggle:focus {
        background-color: var(--bg-alt);
        outline: 2px solid var(--ring);
        outline-offset: 2px;
    }

    .menu-toggle-icon {
        display: block;
        width: 1.5rem;
        height: 2px;
        background-color: currentColor;
        position: relative;
        transition: background-color var(--anim-duration) var(--anim-ease);
    }

    .menu-toggle-icon::before,
    .menu-toggle-icon::after {
        content: '';
        position: absolute;
        width: 100%;
        height: 2px;
        background-color: currentColor;
        left: 0;
        transition: transform var(--anim-duration) var(--anim-ease);
    }

    .menu-toggle-icon::before {
        top: -6px;
    }

    .menu-toggle-icon::after {
        bottom: -6px;
    }

    .menu-toggle[aria-expanded="true"] .menu-toggle-icon {
        background-color: transparent;
    }

    .menu-toggle[aria-expanded="true"] .menu-toggle-icon::before {
        transform: translateY(6px) rotate(45deg);
    }

    .menu-toggle[aria-expanded="true"] .menu-toggle-icon::after {
        transform: translateY(-6px) rotate(-45deg);
    }

    .site-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: 0.5rem 1rem;
        border-radius: var(--radius-md);
        transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
        white-space: nowrap;
    }

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

    .nav-link[aria-current="page"] {
        background-color: var(--bg-primary);
        color: var(--fg-on-primary);
        font-weight: 600;
    }

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

        .site-nav {
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background-color: var(--surface-1);
            border-top: 1px solid var(--border-on-surface);
            box-shadow: var(--shadow-md);
            padding: var(--space-y) var(--space-x);
            display: none;
            flex-direction: column;
        }

        .site-nav.is-open {
            display: flex;
        }

        .nav-list {
            flex-direction: column;
            width: 100%;
            gap: 0.5rem;
        }

        .nav-link {
            display: block;
            padding: 0.75rem 1rem;
            border-radius: var(--radius-sm);
        }
    }

.site-footer {
        background-color: #1a202c;
        color: #cbd5e0;
        padding-top: 3rem;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    }

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

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

    .footer-logo {
        font-size: 1.875rem;
        font-weight: 800;
        color: #ffffff;
        margin-bottom: 0.75rem;
        letter-spacing: -0.025em;
    }

    .footer-tagline {
        font-size: 0.95rem;
        line-height: 1.5;
        color: #a0aec0;
        max-width: 260px;
    }

    .footer-heading {
        color: #ffffff;
        font-size: 1.125rem;
        font-weight: 600;
        margin-bottom: 1.25rem;
    }

    .footer-nav,
    .footer-social,
    .footer-legal {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }

    .footer-nav a,
    .footer-social a,
    .footer-legal a,
    .footer-contact a {
        color: #cbd5e0;
        text-decoration: none;
        font-size: 0.95rem;
        transition: color 0.2s ease;
    }

    .footer-nav a:hover,
    .footer-social a:hover,
    .footer-legal a:hover,
    .footer-contact a:hover {
        color: #63b3ed;
    }

    .footer-contact p {
        margin: 0 0 0.5rem;
        line-height: 1.5;
        font-size: 0.95rem;
        font-style: normal;
    }

    .footer-social {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 1.25rem;
    }

    .footer-bottom {
        border-top: 1px solid #2d3748;
        padding: 1.5rem 0;
    }

    .footer-bottom-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 1.5rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        text-align: center;
    }

    .footer-copyright {
        font-size: 0.9rem;
        color: #a0aec0;
        margin: 0;
        order: 2;
    }

    .footer-legal {
        flex-direction: row;
        gap: 1.5rem;
        order: 1;
    }

    .footer-disclaimer {
        font-size: 0.8rem;
        color: #718096;
        margin: 0;
        line-height: 1.4;
        max-width: 800px;
        order: 3;
    }

    @media (min-width: 768px) {
        .footer-bottom-container {
            flex-direction: row;
            justify-content: space-between;
            text-align: left;
        }

        .footer-copyright {
            order: 1;
        }

        .footer-legal {
            order: 2;
        }

        .footer-disclaimer {
            order: 3;
            flex-basis: 100%;
            margin-top: 0.5rem;
        }
    }

    @media (min-width: 1024px) {
        .footer-disclaimer {
            flex-basis: auto;
            margin-top: 0;
            order: 2;
            text-align: center;
        }

        .footer-legal {
            order: 3;
        }
    }

.cookie-banner {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        box-shadow: 0 -8px 24px rgba(0,0,0,.15);
        padding: clamp(14px, 2.5vw, 22px);
    }

    .cookie-banner__c {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        align-items: center;
        gap: 1.25rem;
    }

    .cookie-banner__icon {
        font-size: 2.5rem;
        flex-shrink: 0;
        line-height: 1;
    }

    .cookie-banner__text {
        flex: 1;
    }

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

    .cookie-banner__text p {
        margin: 0;
        font-size: 0.9rem;
        color: var(--fg-on-accent);
        opacity: 0.9;
        line-height: 1.5;
    }

    .cookie-banner__actions {
        display: flex;
        gap: 0.75rem;
        flex-shrink: 0;
    }

    .cookie-banner__btn {
        padding: 0.75rem 1.3rem;
        border: 2px solid var(--fg-on-accent);
        border-radius: var(--radius-lg);
        font-size: 0.95rem;
        cursor: pointer;
        transition: all .25s;
        font-weight: 500;
    }

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

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

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

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

    @media (max-width: 767px) {
        .cookie-banner__c {
            flex-wrap: wrap;
        }

        .cookie-banner__icon {
            font-size: 2rem;
        }

        .cookie-banner__actions {
            width: 100%;
        }

        .cookie-banner__btn {
            flex: 1;
        }
    }

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

.contact-form {
    text-align: left;
    margin-bottom: 24px;
}

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

.form-label {
    display: block;
    margin-bottom: 8px;
    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(--brand);
    box-shadow: 0 0 0 3px var(--ring);
}

.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: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color var(--anim-duration) var(--anim-ease);
}

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

.form-note {
    margin: 0;
    font-size: 14px;
    color: var(--neutral-600);
}

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

.form-note a:hover {
    color: var(--link-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;
        }
    }

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

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

    .connect .connect__title {
        font-size: clamp(28px, 5vw, 48px);
        text-align: center;
        margin: 0 0 clamp(48px, 7vw, 72px);
        color: var(--fg-on-page);
    }

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

    .connect .connect__item {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: clamp(12px, 2vw, 16px);
        padding: var(--space-x);
        background: var(--surface-1);
        border-radius: var(--radius-xl);
        border: 2px solid var(--border-on-surface);
        text-decoration: none;
        color: inherit;
        transition: all 0.3s;
    }

    .connect .connect__item:hover {
        transform: translateY(-6px);
        border-color: var(--bg-accent);
        box-shadow: var(--shadow-md);
    }

    .connect .connect__icon {
        font-size: clamp(46px, 8vw, 70px);
        width: clamp(95px, 13.5vw, 135px);
        height: clamp(95px, 13.5vw, 135px);
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--surface-2);
        border-radius: 50%;
        border: 2px solid var(--border-on-surface);
    }

    .connect .connect__item span {
        font-size: clamp(17px, 2.8vw, 20px);
        font-weight: 600;
        color: var(--fg-on-surface);
    }

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

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

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

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

    .menu-toggle {
        display: none;
        background: none;
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-sm);
        padding: 0.75rem;
        cursor: pointer;
        color: var(--fg-on-surface);
        background-color: var(--surface-light);
    }

    .menu-toggle:hover,
    .menu-toggle:focus {
        background-color: var(--bg-alt);
        outline: 2px solid var(--ring);
        outline-offset: 2px;
    }

    .menu-toggle-icon {
        display: block;
        width: 1.5rem;
        height: 2px;
        background-color: currentColor;
        position: relative;
        transition: background-color var(--anim-duration) var(--anim-ease);
    }

    .menu-toggle-icon::before,
    .menu-toggle-icon::after {
        content: '';
        position: absolute;
        width: 100%;
        height: 2px;
        background-color: currentColor;
        left: 0;
        transition: transform var(--anim-duration) var(--anim-ease);
    }

    .menu-toggle-icon::before {
        top: -6px;
    }

    .menu-toggle-icon::after {
        bottom: -6px;
    }

    .menu-toggle[aria-expanded="true"] .menu-toggle-icon {
        background-color: transparent;
    }

    .menu-toggle[aria-expanded="true"] .menu-toggle-icon::before {
        transform: translateY(6px) rotate(45deg);
    }

    .menu-toggle[aria-expanded="true"] .menu-toggle-icon::after {
        transform: translateY(-6px) rotate(-45deg);
    }

    .site-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: 0.5rem 1rem;
        border-radius: var(--radius-md);
        transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
        white-space: nowrap;
    }

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

    .nav-link[aria-current="page"] {
        background-color: var(--bg-primary);
        color: var(--fg-on-primary);
        font-weight: 600;
    }

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

        .site-nav {
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background-color: var(--surface-1);
            border-top: 1px solid var(--border-on-surface);
            box-shadow: var(--shadow-md);
            padding: var(--space-y) var(--space-x);
            display: none;
            flex-direction: column;
        }

        .site-nav.is-open {
            display: flex;
        }

        .nav-list {
            flex-direction: column;
            width: 100%;
            gap: 0.5rem;
        }

        .nav-link {
            display: block;
            padding: 0.75rem 1rem;
            border-radius: var(--radius-sm);
        }
    }

.site-footer {
        background-color: #1a202c;
        color: #cbd5e0;
        padding-top: 3rem;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    }

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

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

    .footer-logo {
        font-size: 1.875rem;
        font-weight: 800;
        color: #ffffff;
        margin-bottom: 0.75rem;
        letter-spacing: -0.025em;
    }

    .footer-tagline {
        font-size: 0.95rem;
        line-height: 1.5;
        color: #a0aec0;
        max-width: 260px;
    }

    .footer-heading {
        color: #ffffff;
        font-size: 1.125rem;
        font-weight: 600;
        margin-bottom: 1.25rem;
    }

    .footer-nav,
    .footer-social,
    .footer-legal {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }

    .footer-nav a,
    .footer-social a,
    .footer-legal a,
    .footer-contact a {
        color: #cbd5e0;
        text-decoration: none;
        font-size: 0.95rem;
        transition: color 0.2s ease;
    }

    .footer-nav a:hover,
    .footer-social a:hover,
    .footer-legal a:hover,
    .footer-contact a:hover {
        color: #63b3ed;
    }

    .footer-contact p {
        margin: 0 0 0.5rem;
        line-height: 1.5;
        font-size: 0.95rem;
        font-style: normal;
    }

    .footer-social {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 1.25rem;
    }

    .footer-bottom {
        border-top: 1px solid #2d3748;
        padding: 1.5rem 0;
    }

    .footer-bottom-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 1.5rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        text-align: center;
    }

    .footer-copyright {
        font-size: 0.9rem;
        color: #a0aec0;
        margin: 0;
        order: 2;
    }

    .footer-legal {
        flex-direction: row;
        gap: 1.5rem;
        order: 1;
    }

    .footer-disclaimer {
        font-size: 0.8rem;
        color: #718096;
        margin: 0;
        line-height: 1.4;
        max-width: 800px;
        order: 3;
    }

    @media (min-width: 768px) {
        .footer-bottom-container {
            flex-direction: row;
            justify-content: space-between;
            text-align: left;
        }

        .footer-copyright {
            order: 1;
        }

        .footer-legal {
            order: 2;
        }

        .footer-disclaimer {
            order: 3;
            flex-basis: 100%;
            margin-top: 0.5rem;
        }
    }

    @media (min-width: 1024px) {
        .footer-disclaimer {
            flex-basis: auto;
            margin-top: 0;
            order: 2;
            text-align: center;
        }

        .footer-legal {
            order: 3;
        }
    }

.cookie-banner {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        box-shadow: 0 -8px 24px rgba(0,0,0,.15);
        padding: clamp(14px, 2.5vw, 22px);
    }

    .cookie-banner__c {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        align-items: center;
        gap: 1.25rem;
    }

    .cookie-banner__icon {
        font-size: 2.5rem;
        flex-shrink: 0;
        line-height: 1;
    }

    .cookie-banner__text {
        flex: 1;
    }

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

    .cookie-banner__text p {
        margin: 0;
        font-size: 0.9rem;
        color: var(--fg-on-accent);
        opacity: 0.9;
        line-height: 1.5;
    }

    .cookie-banner__actions {
        display: flex;
        gap: 0.75rem;
        flex-shrink: 0;
    }

    .cookie-banner__btn {
        padding: 0.75rem 1.3rem;
        border: 2px solid var(--fg-on-accent);
        border-radius: var(--radius-lg);
        font-size: 0.95rem;
        cursor: pointer;
        transition: all .25s;
        font-weight: 500;
    }

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

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

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

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

    @media (max-width: 767px) {
        .cookie-banner__c {
            flex-wrap: wrap;
        }

        .cookie-banner__icon {
            font-size: 2rem;
        }

        .cookie-banner__actions {
            width: 100%;
        }

        .cookie-banner__btn {
            flex: 1;
        }
    }

.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 h1 {
        margin: 0 0 2.5rem;
        font-size: clamp(28px, 5vw, 48px);
        color: var(--fg-on-page);
        text-align: center;
    }

    .policy-items__wrapper {
        display: grid;
        gap: 1.25rem;
    }

    .policy-items__item {
        display: grid;
        grid-template-columns: auto 1fr;
        gap: 1.5rem;
        padding: 1.75rem;
        background: linear-gradient(135deg, var(--bg-accent) 0%, var(--bg-primary) 100%);
        color: var(--fg-on-primary);
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-lg);
        align-items: start;
    }

    .policy-items__icon {
        font-size: 2rem;
        flex-shrink: 0;
    }

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

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

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

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

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

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

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

    .menu-toggle {
        display: none;
        background: none;
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-sm);
        padding: 0.75rem;
        cursor: pointer;
        color: var(--fg-on-surface);
        background-color: var(--surface-light);
    }

    .menu-toggle:hover,
    .menu-toggle:focus {
        background-color: var(--bg-alt);
        outline: 2px solid var(--ring);
        outline-offset: 2px;
    }

    .menu-toggle-icon {
        display: block;
        width: 1.5rem;
        height: 2px;
        background-color: currentColor;
        position: relative;
        transition: background-color var(--anim-duration) var(--anim-ease);
    }

    .menu-toggle-icon::before,
    .menu-toggle-icon::after {
        content: '';
        position: absolute;
        width: 100%;
        height: 2px;
        background-color: currentColor;
        left: 0;
        transition: transform var(--anim-duration) var(--anim-ease);
    }

    .menu-toggle-icon::before {
        top: -6px;
    }

    .menu-toggle-icon::after {
        bottom: -6px;
    }

    .menu-toggle[aria-expanded="true"] .menu-toggle-icon {
        background-color: transparent;
    }

    .menu-toggle[aria-expanded="true"] .menu-toggle-icon::before {
        transform: translateY(6px) rotate(45deg);
    }

    .menu-toggle[aria-expanded="true"] .menu-toggle-icon::after {
        transform: translateY(-6px) rotate(-45deg);
    }

    .site-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: 0.5rem 1rem;
        border-radius: var(--radius-md);
        transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
        white-space: nowrap;
    }

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

    .nav-link[aria-current="page"] {
        background-color: var(--bg-primary);
        color: var(--fg-on-primary);
        font-weight: 600;
    }

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

        .site-nav {
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background-color: var(--surface-1);
            border-top: 1px solid var(--border-on-surface);
            box-shadow: var(--shadow-md);
            padding: var(--space-y) var(--space-x);
            display: none;
            flex-direction: column;
        }

        .site-nav.is-open {
            display: flex;
        }

        .nav-list {
            flex-direction: column;
            width: 100%;
            gap: 0.5rem;
        }

        .nav-link {
            display: block;
            padding: 0.75rem 1rem;
            border-radius: var(--radius-sm);
        }
    }

.site-footer {
        background-color: #1a202c;
        color: #cbd5e0;
        padding-top: 3rem;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    }

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

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

    .footer-logo {
        font-size: 1.875rem;
        font-weight: 800;
        color: #ffffff;
        margin-bottom: 0.75rem;
        letter-spacing: -0.025em;
    }

    .footer-tagline {
        font-size: 0.95rem;
        line-height: 1.5;
        color: #a0aec0;
        max-width: 260px;
    }

    .footer-heading {
        color: #ffffff;
        font-size: 1.125rem;
        font-weight: 600;
        margin-bottom: 1.25rem;
    }

    .footer-nav,
    .footer-social,
    .footer-legal {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }

    .footer-nav a,
    .footer-social a,
    .footer-legal a,
    .footer-contact a {
        color: #cbd5e0;
        text-decoration: none;
        font-size: 0.95rem;
        transition: color 0.2s ease;
    }

    .footer-nav a:hover,
    .footer-social a:hover,
    .footer-legal a:hover,
    .footer-contact a:hover {
        color: #63b3ed;
    }

    .footer-contact p {
        margin: 0 0 0.5rem;
        line-height: 1.5;
        font-size: 0.95rem;
        font-style: normal;
    }

    .footer-social {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 1.25rem;
    }

    .footer-bottom {
        border-top: 1px solid #2d3748;
        padding: 1.5rem 0;
    }

    .footer-bottom-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 1.5rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        text-align: center;
    }

    .footer-copyright {
        font-size: 0.9rem;
        color: #a0aec0;
        margin: 0;
        order: 2;
    }

    .footer-legal {
        flex-direction: row;
        gap: 1.5rem;
        order: 1;
    }

    .footer-disclaimer {
        font-size: 0.8rem;
        color: #718096;
        margin: 0;
        line-height: 1.4;
        max-width: 800px;
        order: 3;
    }

    @media (min-width: 768px) {
        .footer-bottom-container {
            flex-direction: row;
            justify-content: space-between;
            text-align: left;
        }

        .footer-copyright {
            order: 1;
        }

        .footer-legal {
            order: 2;
        }

        .footer-disclaimer {
            order: 3;
            flex-basis: 100%;
            margin-top: 0.5rem;
        }
    }

    @media (min-width: 1024px) {
        .footer-disclaimer {
            flex-basis: auto;
            margin-top: 0;
            order: 2;
            text-align: center;
        }

        .footer-legal {
            order: 3;
        }
    }

.cookie-banner {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        box-shadow: 0 -8px 24px rgba(0,0,0,.15);
        padding: clamp(14px, 2.5vw, 22px);
    }

    .cookie-banner__c {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        align-items: center;
        gap: 1.25rem;
    }

    .cookie-banner__icon {
        font-size: 2.5rem;
        flex-shrink: 0;
        line-height: 1;
    }

    .cookie-banner__text {
        flex: 1;
    }

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

    .cookie-banner__text p {
        margin: 0;
        font-size: 0.9rem;
        color: var(--fg-on-accent);
        opacity: 0.9;
        line-height: 1.5;
    }

    .cookie-banner__actions {
        display: flex;
        gap: 0.75rem;
        flex-shrink: 0;
    }

    .cookie-banner__btn {
        padding: 0.75rem 1.3rem;
        border: 2px solid var(--fg-on-accent);
        border-radius: var(--radius-lg);
        font-size: 0.95rem;
        cursor: pointer;
        transition: all .25s;
        font-weight: 500;
    }

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

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

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

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

    @media (max-width: 767px) {
        .cookie-banner__c {
            flex-wrap: wrap;
        }

        .cookie-banner__icon {
            font-size: 2rem;
        }

        .cookie-banner__actions {
            width: 100%;
        }

        .cookie-banner__btn {
            flex: 1;
        }
    }

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

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

.terms-items__title {
    margin: 0 0 10px;
    font-size: clamp(22px,3.5vw,28px);
    color: var(--brand-contrast);
}

.terms-items__list {
    margin: 0;
    padding-left: 1.2rem;
    display: grid;
    gap: 10px;
}

.terms-items__item h3 {
    margin: 0 0 3px;
    font-size: 0.95rem;
}

.terms-items__item p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--neutral-300);
}

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

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

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

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

    .menu-toggle {
        display: none;
        background: none;
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-sm);
        padding: 0.75rem;
        cursor: pointer;
        color: var(--fg-on-surface);
        background-color: var(--surface-light);
    }

    .menu-toggle:hover,
    .menu-toggle:focus {
        background-color: var(--bg-alt);
        outline: 2px solid var(--ring);
        outline-offset: 2px;
    }

    .menu-toggle-icon {
        display: block;
        width: 1.5rem;
        height: 2px;
        background-color: currentColor;
        position: relative;
        transition: background-color var(--anim-duration) var(--anim-ease);
    }

    .menu-toggle-icon::before,
    .menu-toggle-icon::after {
        content: '';
        position: absolute;
        width: 100%;
        height: 2px;
        background-color: currentColor;
        left: 0;
        transition: transform var(--anim-duration) var(--anim-ease);
    }

    .menu-toggle-icon::before {
        top: -6px;
    }

    .menu-toggle-icon::after {
        bottom: -6px;
    }

    .menu-toggle[aria-expanded="true"] .menu-toggle-icon {
        background-color: transparent;
    }

    .menu-toggle[aria-expanded="true"] .menu-toggle-icon::before {
        transform: translateY(6px) rotate(45deg);
    }

    .menu-toggle[aria-expanded="true"] .menu-toggle-icon::after {
        transform: translateY(-6px) rotate(-45deg);
    }

    .site-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: 0.5rem 1rem;
        border-radius: var(--radius-md);
        transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
        white-space: nowrap;
    }

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

    .nav-link[aria-current="page"] {
        background-color: var(--bg-primary);
        color: var(--fg-on-primary);
        font-weight: 600;
    }

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

        .site-nav {
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background-color: var(--surface-1);
            border-top: 1px solid var(--border-on-surface);
            box-shadow: var(--shadow-md);
            padding: var(--space-y) var(--space-x);
            display: none;
            flex-direction: column;
        }

        .site-nav.is-open {
            display: flex;
        }

        .nav-list {
            flex-direction: column;
            width: 100%;
            gap: 0.5rem;
        }

        .nav-link {
            display: block;
            padding: 0.75rem 1rem;
            border-radius: var(--radius-sm);
        }
    }

.site-footer {
        background-color: #1a202c;
        color: #cbd5e0;
        padding-top: 3rem;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    }

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

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

    .footer-logo {
        font-size: 1.875rem;
        font-weight: 800;
        color: #ffffff;
        margin-bottom: 0.75rem;
        letter-spacing: -0.025em;
    }

    .footer-tagline {
        font-size: 0.95rem;
        line-height: 1.5;
        color: #a0aec0;
        max-width: 260px;
    }

    .footer-heading {
        color: #ffffff;
        font-size: 1.125rem;
        font-weight: 600;
        margin-bottom: 1.25rem;
    }

    .footer-nav,
    .footer-social,
    .footer-legal {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }

    .footer-nav a,
    .footer-social a,
    .footer-legal a,
    .footer-contact a {
        color: #cbd5e0;
        text-decoration: none;
        font-size: 0.95rem;
        transition: color 0.2s ease;
    }

    .footer-nav a:hover,
    .footer-social a:hover,
    .footer-legal a:hover,
    .footer-contact a:hover {
        color: #63b3ed;
    }

    .footer-contact p {
        margin: 0 0 0.5rem;
        line-height: 1.5;
        font-size: 0.95rem;
        font-style: normal;
    }

    .footer-social {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 1.25rem;
    }

    .footer-bottom {
        border-top: 1px solid #2d3748;
        padding: 1.5rem 0;
    }

    .footer-bottom-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 1.5rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        text-align: center;
    }

    .footer-copyright {
        font-size: 0.9rem;
        color: #a0aec0;
        margin: 0;
        order: 2;
    }

    .footer-legal {
        flex-direction: row;
        gap: 1.5rem;
        order: 1;
    }

    .footer-disclaimer {
        font-size: 0.8rem;
        color: #718096;
        margin: 0;
        line-height: 1.4;
        max-width: 800px;
        order: 3;
    }

    @media (min-width: 768px) {
        .footer-bottom-container {
            flex-direction: row;
            justify-content: space-between;
            text-align: left;
        }

        .footer-copyright {
            order: 1;
        }

        .footer-legal {
            order: 2;
        }

        .footer-disclaimer {
            order: 3;
            flex-basis: 100%;
            margin-top: 0.5rem;
        }
    }

    @media (min-width: 1024px) {
        .footer-disclaimer {
            flex-basis: auto;
            margin-top: 0;
            order: 2;
            text-align: center;
        }

        .footer-legal {
            order: 3;
        }
    }

.cookie-banner {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        box-shadow: 0 -8px 24px rgba(0,0,0,.15);
        padding: clamp(14px, 2.5vw, 22px);
    }

    .cookie-banner__c {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        align-items: center;
        gap: 1.25rem;
    }

    .cookie-banner__icon {
        font-size: 2.5rem;
        flex-shrink: 0;
        line-height: 1;
    }

    .cookie-banner__text {
        flex: 1;
    }

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

    .cookie-banner__text p {
        margin: 0;
        font-size: 0.9rem;
        color: var(--fg-on-accent);
        opacity: 0.9;
        line-height: 1.5;
    }

    .cookie-banner__actions {
        display: flex;
        gap: 0.75rem;
        flex-shrink: 0;
    }

    .cookie-banner__btn {
        padding: 0.75rem 1.3rem;
        border: 2px solid var(--fg-on-accent);
        border-radius: var(--radius-lg);
        font-size: 0.95rem;
        cursor: pointer;
        transition: all .25s;
        font-weight: 500;
    }

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

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

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

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

    @media (max-width: 767px) {
        .cookie-banner__c {
            flex-wrap: wrap;
        }

        .cookie-banner__icon {
            font-size: 2rem;
        }

        .cookie-banner__actions {
            width: 100%;
        }

        .cookie-banner__btn {
            flex: 1;
        }
    }

.thank--colored-v5 {
    font-family: var(--font-family);
    padding: 80px 20px;
    background: var(--neutral-900);
    color: var(--neutral-0);
    text-align: center;
}

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

.thank__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 12px;
    border-radius: 999px;
    background: var(--success);
    color: var(--success-contrast);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
}

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

.thank__text {
    margin: 0 0 16px;
    color: var(--neutral-300);
}

.thank__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-radius: 999px;
    background: var(--bg-primary);
    color: var(--fg-on-primary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
}

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

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

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

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

    .menu-toggle {
        display: none;
        background: none;
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-sm);
        padding: 0.75rem;
        cursor: pointer;
        color: var(--fg-on-surface);
        background-color: var(--surface-light);
    }

    .menu-toggle:hover,
    .menu-toggle:focus {
        background-color: var(--bg-alt);
        outline: 2px solid var(--ring);
        outline-offset: 2px;
    }

    .menu-toggle-icon {
        display: block;
        width: 1.5rem;
        height: 2px;
        background-color: currentColor;
        position: relative;
        transition: background-color var(--anim-duration) var(--anim-ease);
    }

    .menu-toggle-icon::before,
    .menu-toggle-icon::after {
        content: '';
        position: absolute;
        width: 100%;
        height: 2px;
        background-color: currentColor;
        left: 0;
        transition: transform var(--anim-duration) var(--anim-ease);
    }

    .menu-toggle-icon::before {
        top: -6px;
    }

    .menu-toggle-icon::after {
        bottom: -6px;
    }

    .menu-toggle[aria-expanded="true"] .menu-toggle-icon {
        background-color: transparent;
    }

    .menu-toggle[aria-expanded="true"] .menu-toggle-icon::before {
        transform: translateY(6px) rotate(45deg);
    }

    .menu-toggle[aria-expanded="true"] .menu-toggle-icon::after {
        transform: translateY(-6px) rotate(-45deg);
    }

    .site-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: 0.5rem 1rem;
        border-radius: var(--radius-md);
        transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
        white-space: nowrap;
    }

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

    .nav-link[aria-current="page"] {
        background-color: var(--bg-primary);
        color: var(--fg-on-primary);
        font-weight: 600;
    }

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

        .site-nav {
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background-color: var(--surface-1);
            border-top: 1px solid var(--border-on-surface);
            box-shadow: var(--shadow-md);
            padding: var(--space-y) var(--space-x);
            display: none;
            flex-direction: column;
        }

        .site-nav.is-open {
            display: flex;
        }

        .nav-list {
            flex-direction: column;
            width: 100%;
            gap: 0.5rem;
        }

        .nav-link {
            display: block;
            padding: 0.75rem 1rem;
            border-radius: var(--radius-sm);
        }
    }

.site-footer {
        background-color: #1a202c;
        color: #cbd5e0;
        padding-top: 3rem;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    }

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

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

    .footer-logo {
        font-size: 1.875rem;
        font-weight: 800;
        color: #ffffff;
        margin-bottom: 0.75rem;
        letter-spacing: -0.025em;
    }

    .footer-tagline {
        font-size: 0.95rem;
        line-height: 1.5;
        color: #a0aec0;
        max-width: 260px;
    }

    .footer-heading {
        color: #ffffff;
        font-size: 1.125rem;
        font-weight: 600;
        margin-bottom: 1.25rem;
    }

    .footer-nav,
    .footer-social,
    .footer-legal {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }

    .footer-nav a,
    .footer-social a,
    .footer-legal a,
    .footer-contact a {
        color: #cbd5e0;
        text-decoration: none;
        font-size: 0.95rem;
        transition: color 0.2s ease;
    }

    .footer-nav a:hover,
    .footer-social a:hover,
    .footer-legal a:hover,
    .footer-contact a:hover {
        color: #63b3ed;
    }

    .footer-contact p {
        margin: 0 0 0.5rem;
        line-height: 1.5;
        font-size: 0.95rem;
        font-style: normal;
    }

    .footer-social {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 1.25rem;
    }

    .footer-bottom {
        border-top: 1px solid #2d3748;
        padding: 1.5rem 0;
    }

    .footer-bottom-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 1.5rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        text-align: center;
    }

    .footer-copyright {
        font-size: 0.9rem;
        color: #a0aec0;
        margin: 0;
        order: 2;
    }

    .footer-legal {
        flex-direction: row;
        gap: 1.5rem;
        order: 1;
    }

    .footer-disclaimer {
        font-size: 0.8rem;
        color: #718096;
        margin: 0;
        line-height: 1.4;
        max-width: 800px;
        order: 3;
    }

    @media (min-width: 768px) {
        .footer-bottom-container {
            flex-direction: row;
            justify-content: space-between;
            text-align: left;
        }

        .footer-copyright {
            order: 1;
        }

        .footer-legal {
            order: 2;
        }

        .footer-disclaimer {
            order: 3;
            flex-basis: 100%;
            margin-top: 0.5rem;
        }
    }

    @media (min-width: 1024px) {
        .footer-disclaimer {
            flex-basis: auto;
            margin-top: 0;
            order: 2;
            text-align: center;
        }

        .footer-legal {
            order: 3;
        }
    }

.cookie-banner {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        box-shadow: 0 -8px 24px rgba(0,0,0,.15);
        padding: clamp(14px, 2.5vw, 22px);
    }

    .cookie-banner__c {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        align-items: center;
        gap: 1.25rem;
    }

    .cookie-banner__icon {
        font-size: 2.5rem;
        flex-shrink: 0;
        line-height: 1;
    }

    .cookie-banner__text {
        flex: 1;
    }

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

    .cookie-banner__text p {
        margin: 0;
        font-size: 0.9rem;
        color: var(--fg-on-accent);
        opacity: 0.9;
        line-height: 1.5;
    }

    .cookie-banner__actions {
        display: flex;
        gap: 0.75rem;
        flex-shrink: 0;
    }

    .cookie-banner__btn {
        padding: 0.75rem 1.3rem;
        border: 2px solid var(--fg-on-accent);
        border-radius: var(--radius-lg);
        font-size: 0.95rem;
        cursor: pointer;
        transition: all .25s;
        font-weight: 500;
    }

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

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

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

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

    @media (max-width: 767px) {
        .cookie-banner__c {
            flex-wrap: wrap;
        }

        .cookie-banner__icon {
            font-size: 2rem;
        }

        .cookie-banner__actions {
            width: 100%;
        }

        .cookie-banner__btn {
            flex: 1;
        }
    }

.error-404 {
        font-family: var(--font-family);
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
        padding: clamp(40px, 8vw, 96px) clamp(16px, 4vw, 56px);
    }

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

    .error-404__badge {
        display: inline-block;
        padding: 0.25rem 0.75rem;
        border-radius: 999px;
        background: var(--chip-bg);
        color: var(--chip-fg);
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }

    .error-404 h1 {
        font-size: clamp(32px, 6vw, 56px);
        margin: 0 0 0.5rem;
    }

    .error-404__subtitle {
        margin: 0 0 2rem;
        max-width: 560px;
        margin-left: auto;
        margin-right: auto;
        color: var(--neutral-100);
    }

    .error-404__code {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 0.75rem 1.5rem;
        border-radius: var(--radius-xl);
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        font-weight: 600;
        letter-spacing: 0.1em;
        margin-bottom: 2.5rem;
        box-shadow: var(--shadow-md);
    }

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

    .error-404__btn {
        display: inline-block;
        text-decoration: none;
        padding: 0.9rem 1.4rem;
        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(--fg-on-accent);
        color: var(--bg-accent);
        box-shadow: var(--shadow-lg);
    }

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

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

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

    @media (max-width: 767px) {
        .error-404__actions {
            flex-direction: column;
        }

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