:root {
  --font-family: "DM 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: 0.3s;
  --anim-ease: ease-in-out;
  --random-number: 1;

  --brand: #0056B3;
  --brand-contrast: #FFFFFF;
  --accent: #00A86B;
  --accent-contrast: #FFFFFF;

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

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

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

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

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

  --bg-primary: #0056B3;
  --fg-on-primary: #FFFFFF;
  --bg-primary-hover: #004494;
  --ring: #0056B3;

  --bg-accent: #E6F7F0;
  --fg-on-accent: #003D29;
  --bg-accent-hover: #008F5A;

  --link: #0056B3;
  --link-hover: #004494;

  --gradient-hero: linear-gradient(135deg, #0056B3 0%, #00A86B 100%);
  --gradient-accent: linear-gradient(135deg, #E6F7F0 0%, #F0F9FF 100%);

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

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

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

.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.5px;
    transition: color var(--anim-duration) var(--anim-ease);
}

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

.main-nav {
    display: flex;
    align-items: center;
}

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

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

.nav-link:hover,
.nav-link:focus-visible {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}

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

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

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

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

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

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

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

    .burger-menu.active .burger-line:nth-child(1) {
        transform: translateY(10.5px) rotate(45deg);
    }

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

    .burger-menu.active .burger-line:nth-child(3) {
        transform: translateY(-10.5px) rotate(-45deg);
    }

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

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

.site-footer {
        background-color: #1a1a1a;
        color: #ccc;
        font-family: sans-serif;
        padding-top: 3rem;
        margin-top: 4rem;
    }

    .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.8rem;
        font-weight: 700;
        letter-spacing: 2px;
        color: #fff;
        margin-bottom: 1rem;
    }

    .footer-disclaimer {
        font-size: 0.85rem;
        line-height: 1.5;
        color: #999;
        max-width: 280px;
    }

    .footer-heading {
        color: #fff;
        font-size: 1.1rem;
        margin-bottom: 1.2rem;
        border-bottom: 1px solid #333;
        padding-bottom: 0.5rem;
    }

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

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

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

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

    .footer-contact p {
        margin-bottom: 0.7rem;
        line-height: 1.5;
        font-size: 0.95rem;
    }

    .footer-contact strong {
        color: #eee;
    }

    .footer-bottom {
        border-top: 1px solid #333;
        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;
        text-align: center;
        gap: 1rem;
    }

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

    .footer-legal {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }

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

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

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

    .cookies__inner h2 {
        margin: 0 0 6px;
        font-size: 1rem;
    }

    .cookies__inner p {
        margin: 0;
    }

    .cookie-banner__buttons {
        margin-top: 1rem;
        display: flex;
        gap: 1rem;
        flex-shrink: 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.next-check {
        padding: clamp(60px, 9vw, 108px) 16px;
        background: var(--bg-alt);
        color: var(--fg-on-page);
    }

    .next-check .wrap {
        max-width: 780px;
        margin: 0 auto;
        background: var(--neutral-0);
        border: 1px solid var(--border-on-surface-light);
        border-radius: 18px;
        padding: clamp(18px, 3vw, 28px);
    }

    .next-check .k {
        margin: 0;
        color: var(--bg-primary);
        font-weight: 600;
    }

    .next-check h2 {
        margin: 8px 0;
        font-size: clamp(30px, 4.2vw, 44px);
    }

    .next-check .text {
        margin: 0;
        color: var(--fg-on-accent);
    }

    .next-check ul {
        margin: 14px 0 0;
        padding: 0;
        list-style: none;
        display: grid;
        gap: 8px;
    }

    .next-check li a {
        text-decoration: none;
        color: var(--fg-on-page);
        border: 1px solid var(--border-on-surface-light);
        background: var(--surface-2);
        border-radius: 10px;
        padding: 9px 12px;
        display: flex;
        justify-content: space-between;
        gap: 8px;
    }

    .next-check .cta {
        display: inline-block;
        margin-top: 12px;
        text-decoration: none;
        background: var(--bg-primary);
        color: var(--neutral-0);
        border-radius: 10px;
        padding: 10px 14px;
    }

.why-choose-alt {
        background: var(--gradient-accent);
        color: var(--fg-on-primary);
        padding: clamp(40px, 6vw, 80px) clamp(16px, 3vw, 40px);
        position: relative;
        overflow: hidden;
    }

    .why-choose-alt::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
        animation: backgroundPulse 4s ease-in-out infinite;
    }

    @keyframes backgroundPulse {
        0%, 100% {
            transform: scale(1);
        }
        50% {
            opacity: 1;
            transform: scale(1.1);
        }
    }

    .why-choose-alt .why-choose-alt__c {
        max-width: var(--max-w);
        margin: 0 auto;
        position: relative;
        z-index: 1;
    }

    .why-choose-alt .why-choose-alt__h {
        color: var(--fg-on-surface-light);
        text-align: center;
        margin-bottom: clamp(32px, 5vw, 64px);
    }

    .why-choose-alt h2 {
        font-size: clamp(32px, 5vw, 48px);
        margin: 0 0 1rem;
        color: var(--fg-on-surface-light);
    }

    .why-choose-alt .why-choose-alt__subtitle {
        font-size: clamp(16px, 2vw, 20px);
        margin: 0;
        opacity: 0.9;
    }

    .why-choose-alt .why-choose-alt__list {
        display: flex;
        flex-direction: column;
        gap: clamp(16px, 2vw, 24px);
    }

    .why-choose-alt .why-choose-alt__item {
        display: flex;
        gap: clamp(16px, 2vw, 24px);
        background: var(--surface-light);
        padding: clamp(20px, 3vw, 32px);
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-on-surface-light);
        align-items: flex-start;
        position: relative;
        overflow: hidden;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .why-choose-alt .why-choose-alt__item::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: left 0.6s ease;
    }

    .why-choose-alt .why-choose-alt__item:hover {
        transform: translateX(8px);
        box-shadow: -8px 8px 24px rgba(0, 0, 0, 0.15);
    }

    .why-choose-alt .why-choose-alt__item:hover::before {
        left: 100%;
    }

    .why-choose-alt .why-choose-alt__number {
        flex-shrink: 0;
        width: 56px;
        height: 56px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-radius: var(--radius-md);
        font-size: clamp(20px, 2.5vw, 28px);
        font-weight: 700;
        position: relative;
        transition: transform var(--anim-duration) var(--anim-ease);
    }

    .why-choose-alt .why-choose-alt__item:hover .why-choose-alt__number {
        transform: rotate(360deg) scale(1.1);
    }

    .why-choose-alt .why-choose-alt__number::after {
        content: '';
        position: absolute;
        top: -3px;
        left: -3px;
        right: -3px;
        bottom: -3px;
        border-radius: var(--radius-md);
        border: 2px solid var(--bg-accent);
        animation: numberPulse 2s ease-in-out infinite;
    }

    @keyframes numberPulse {
        0%, 100% {
            transform: scale(1);
        }
        50% {
            opacity: 0.6;
            transform: scale(1.2);
        }
    }

    .why-choose-alt .why-choose-alt__content {
        flex: 1;
    }

    .why-choose-alt .why-choose-alt__item h3 {
        font-size: clamp(18px, 2.2vw, 24px);
        margin: 0 0 0.75rem;
        color: var(--fg-on-surface-light);
        transition: color var(--anim-duration) var(--anim-ease);
    }

    .why-choose-alt .why-choose-alt__item:hover h3 {
        color: var(--bg-accent);
    }

    .why-choose-alt .why-choose-alt__item p {
        margin: 0;
        color: var(--fg-on-surface-light);
        opacity: 0.85;
        line-height: var(--line-height-base);
    }

.value-points-cards {
        background: var(--bg-page);
        color: var(--fg-on-page);
        padding: clamp(60px, 8vw, 110px) clamp(20px, 4vw, 56px);
    }

    .value-points-cards__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .value-points-cards__h {
        text-align: center;
        margin-bottom: clamp(40px, 6vw, 72px);

        transform: translateY(-20px);
    }

    .value-points-cards__h h2 {
        margin: 0 0 0.75rem;
        font-size: clamp(32px, 4.8vw, 52px);
        font-weight: 800;
    }

    .value-points-cards__h p {
        margin: 0;
        color: var(--neutral-600);
    }

    .value-points-cards__grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: clamp(20px, 3vw, 32px);
    }

    .value-points-cards__card {
        border-radius: var(--radius-xl);
        background: var(--surface-light);
        border: 1px solid var(--border-on-surface-light);
        padding: clamp(24px, 3vw, 32px);
        display: flex;
        gap: 1rem;
        box-shadow: var(--shadow-md);

        transform: translateY(30px);
    }

    .value-points-cards__card h3 {
        margin: 0 0 0.5rem;
        font-size: clamp(20px, 2.4vw, 26px);
    }

    .value-points-cards__card p {
        margin: 0 0 0.5rem;
        color: var(--neutral-600);
    }

    .value-points-cards__card span {
        display: inline-flex;
        text-transform: uppercase;
        letter-spacing: 0.18em;
        font-size: 11px;
        color: var(--brand);
    }

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

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

.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.5px;
    transition: color var(--anim-duration) var(--anim-ease);
}

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

.main-nav {
    display: flex;
    align-items: center;
}

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

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

.nav-link:hover,
.nav-link:focus-visible {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}

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

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

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

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

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

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

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

    .burger-menu.active .burger-line:nth-child(1) {
        transform: translateY(10.5px) rotate(45deg);
    }

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

    .burger-menu.active .burger-line:nth-child(3) {
        transform: translateY(-10.5px) rotate(-45deg);
    }

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

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

.site-footer {
        background-color: #1a1a1a;
        color: #ccc;
        font-family: sans-serif;
        padding-top: 3rem;
        margin-top: 4rem;
    }

    .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.8rem;
        font-weight: 700;
        letter-spacing: 2px;
        color: #fff;
        margin-bottom: 1rem;
    }

    .footer-disclaimer {
        font-size: 0.85rem;
        line-height: 1.5;
        color: #999;
        max-width: 280px;
    }

    .footer-heading {
        color: #fff;
        font-size: 1.1rem;
        margin-bottom: 1.2rem;
        border-bottom: 1px solid #333;
        padding-bottom: 0.5rem;
    }

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

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

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

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

    .footer-contact p {
        margin-bottom: 0.7rem;
        line-height: 1.5;
        font-size: 0.95rem;
    }

    .footer-contact strong {
        color: #eee;
    }

    .footer-bottom {
        border-top: 1px solid #333;
        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;
        text-align: center;
        gap: 1rem;
    }

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

    .footer-legal {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }

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

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

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

    .cookies__inner h2 {
        margin: 0 0 6px;
        font-size: 1rem;
    }

    .cookies__inner p {
        margin: 0;
    }

    .cookie-banner__buttons {
        margin-top: 1rem;
        display: flex;
        gap: 1rem;
        flex-shrink: 0;
    }

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

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

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

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

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

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

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

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

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

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

.messages {

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

    .messages .messages__c {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        gap: var(--space-x);
        height: 600px;
    }

    @media (max-width: 767px) {
        .messages .messages__c {
            grid-template-columns: 1fr;
            height: auto;
        }

        .messages .messages__chat-form {
            flex-direction: column;
        }
    }

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

    .messages .messages__list {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        border-radius: var(--radius-lg);
        border: 1px solid rgba(255, 255, 255, 0.2);
        padding: 1rem;
        overflow-y: auto;
    }

    .messages h2 {
        margin: 0 0 1rem;
        color: var(--fg-on-page);
        font-size: 1.25rem;
    }

    .messages .messages__items {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

    .messages .messages__item {
        display: flex;
        gap: 1rem;
        padding: 1rem;
        border-radius: var(--radius-md);
        background: rgba(255, 255, 255, 0.1);
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .messages .messages__item:hover {
        background: rgba(255, 255, 255, 0.2);
    }

    .messages .messages__avatar {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.2);
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 600;
        color: var(--fg-on-page);
        flex-shrink: 0;
    }

    .messages .messages__info {
        flex: 1;
        min-width: 0;
    }

    .messages h4 {
        margin: 0 0 0.25rem;
        color: var(--fg-on-page);
        font-size: 1rem;
    }

    .messages .messages__info p {
        margin: 0 0 0.25rem;
        color: rgba(255, 255, 255, 0.9);
        font-size: 0.875rem;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .messages .messages__time {
        font-size: 0.75rem;
        color: rgba(255, 255, 255, 0.7);
    }

    .messages .messages__chat {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        border-radius: var(--radius-lg);
        border: 1px solid rgba(255, 255, 255, 0.2);
        display: flex;
        flex-direction: column;
    }

    .messages .messages__chat-header {
        padding: 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    .messages h3 {
        margin: 0;
        color: var(--fg-on-page);
    }

    .messages .messages__chat-messages {
        flex: 1;
        padding: 1rem;
        overflow-y: auto;
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .messages .messages__message {
        background: var(--bg-page);
        padding: 0.875rem 1rem;
        border-radius: var(--radius-md);
        max-width: 70%;
    }

    .messages .messages__message-text {
        color: var(--fg-on-page);
        margin-bottom: 0.25rem;
    }

    .messages .messages__message-time {
        font-size: 0.75rem;
    }

    .messages .messages__chat-form {
        display: flex;
        gap: 0.5rem;
        padding: 1rem;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
    }

    .messages .messages__chat-form input {
        flex: 1;
        padding: 0.875rem;
        border-radius: var(--radius-md);
        border: 1px solid rgba(255, 255, 255, 0.3);
        background: rgba(255, 255, 255, 0.1);
        color: var(--fg-on-page);
        outline: none;
    }

    .messages .messages__chat-form input::placeholder {
        color: rgba(255, 255, 255, 0.7);
    }

    .messages .messages__chat-form button {
        padding: 0.875rem 1.5rem;
        border-radius: var(--radius-md);
        border: none;
        background: var(--bg-page);
        color: var(--bg-primary);
        font-weight: 600;
        cursor: pointer;
    }

.index-feedback-list {
        background: var(--bg-alt);
        color: var(--fg-on-alt);
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 40px);
    }

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

    .index-feedback-list__h {
        text-align: center;
        margin-bottom: clamp(22px, 5vw, 44px);

        transform: translateY(-18px);
    }

    .index-feedback-list__eyebrow {
        margin: 0 0 10px;
        text-transform: uppercase;
        letter-spacing: 0.22em;
        font-size: 12px;
        color: var(--neutral-600);
    }

    .index-feedback-list__h h2 {
        margin: 0;
        font-size: clamp(26px, 4.4vw, 44px);
        letter-spacing: -0.02em;
        color: var(--fg-on-page);
    }

    .index-feedback-list__list {
        display: grid;
        gap: 12px;
    }

    .index-feedback-list__row {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        background: var(--surface-light);
        box-shadow: var(--shadow-sm);
        overflow: hidden;

        transform: translateY(24px);
    }

    .index-feedback-list__q {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        cursor: pointer;
        padding: 14px 16px;
        border: 0;
        background: transparent;
        color: var(--fg-on-page);
        font: inherit;
        text-align: left;
    }

    .index-feedback-list__who {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        min-width: 0;
    }

    .index-feedback-list__avatar {
        width: 36px;
        height: 36px;
        border-radius: 12px;
        background: var(--bg-accent);
        border: 1px solid var(--border-on-surface);
        display: flex;
        align-items: center;
        justify-content: center;
        flex: 0 0 auto;
    }

    .index-feedback-list__name {
        font-weight: 800;
        font-size: 14px;
        color: var(--fg-on-page);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 18ch;
    }

    .index-feedback-list__meta {
        font-size: 12px;
        color: var(--neutral-600);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 24ch;
    }

    .index-feedback-list__rating {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        flex: 0 0 auto;
        padding: 6px 10px;
        border-radius: 999px;
        background: var(--surface-2);
        border: 1px solid var(--border-on-surface);
    }

    .index-feedback-list__stars {
        color: var(--accent);
        letter-spacing: 0.08em;
        font-size: 13px;
        line-height: 1;
    }

    .index-feedback-list__score {
        font-weight: 800;
        font-size: 12px;
        color: var(--fg-on-page);
    }

    .index-feedback-list__a {
        display: none;
        padding: 0 16px 14px;
        color: var(--neutral-800);
        overflow: hidden;
    }

    .index-feedback-list__a p {
        margin: 0;
        font-size: 14px;
        line-height: 1.65;
        color: var(--fg-on-surface-light);
    }

    .index-feedback-list__chip {
        display: inline-flex;
        margin-top: 10px;
        padding: 6px 10px;
        border-radius: 999px;
        background: var(--bg-primary);
        border: 1px solid var(--ring);
        color: var(--fg-on-primary);
        letter-spacing: 0.14em;
        text-transform: uppercase;
        font-size: 10px;
    }

    @media (max-width: 560px) {
        .index-feedback-list__q {
            align-items: flex-start;
        }

        .index-feedback-list__rating {
            margin-top: 2px;
        }

        .index-feedback-list__meta {
            display: none;
        }
    }

.about-timeline {

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

    .about-timeline .about-timeline__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .about-timeline .about-timeline__grid {
        display: grid;
        gap: var(--space-x);
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .about-timeline .about-timeline__cell {
        background: rgba(255, 255, 255, .12);
        border: 1px solid rgba(255, 255, 255, .25);
        border-radius: var(--radius-lg);
        padding: clamp(12px, 2vw, 20px);
    }

    .about-timeline time {
        opacity: .9;
    }

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

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

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

.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.5px;
    transition: color var(--anim-duration) var(--anim-ease);
}

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

.main-nav {
    display: flex;
    align-items: center;
}

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

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

.nav-link:hover,
.nav-link:focus-visible {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}

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

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

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

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

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

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

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

    .burger-menu.active .burger-line:nth-child(1) {
        transform: translateY(10.5px) rotate(45deg);
    }

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

    .burger-menu.active .burger-line:nth-child(3) {
        transform: translateY(-10.5px) rotate(-45deg);
    }

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

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

.site-footer {
        background-color: #1a1a1a;
        color: #ccc;
        font-family: sans-serif;
        padding-top: 3rem;
        margin-top: 4rem;
    }

    .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.8rem;
        font-weight: 700;
        letter-spacing: 2px;
        color: #fff;
        margin-bottom: 1rem;
    }

    .footer-disclaimer {
        font-size: 0.85rem;
        line-height: 1.5;
        color: #999;
        max-width: 280px;
    }

    .footer-heading {
        color: #fff;
        font-size: 1.1rem;
        margin-bottom: 1.2rem;
        border-bottom: 1px solid #333;
        padding-bottom: 0.5rem;
    }

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

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

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

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

    .footer-contact p {
        margin-bottom: 0.7rem;
        line-height: 1.5;
        font-size: 0.95rem;
    }

    .footer-contact strong {
        color: #eee;
    }

    .footer-bottom {
        border-top: 1px solid #333;
        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;
        text-align: center;
        gap: 1rem;
    }

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

    .footer-legal {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }

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

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

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

    .cookies__inner h2 {
        margin: 0 0 6px;
        font-size: 1rem;
    }

    .cookies__inner p {
        margin: 0;
    }

    .cookie-banner__buttons {
        margin-top: 1rem;
        display: flex;
        gap: 1rem;
        flex-shrink: 0;
    }

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

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

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

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

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

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

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

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

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

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

.touch-orbit {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 3vw, 36px);
        background: var(--gradient-accent);
        color: var(--fg-on-surface);
    }

    .touch-orbit .wrap {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .touch-orbit header {
        margin-bottom: 14px;
        text-align: center;
    }

    .touch-orbit h2 {
        margin: 0;
        font-size: clamp(28px, 4vw, 40px);
        color: var(--neutral-900);
    }

    .touch-orbit header p {
        margin: 10px auto 0;
        max-width: 64ch;
        opacity: .92;
        color: var(--neutral-800);
    }

    .touch-orbit .grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 10px;
        margin-top: 40px;
    }

    .touch-orbit .card {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-md);
        background: var(--surface-1);
        padding: 24px;
        animation: orbitIn 420ms ease both;
        color: var(--fg-on-surface);
    }

    .touch-orbit .card:nth-child(2) {
        animation-delay: 90ms;
    }

    .touch-orbit .card:nth-child(3) {
        animation-delay: 180ms;
    }

    .touch-orbit .icon,
    .touch-orbit .badge,
    .touch-orbit h3,
    .touch-orbit .card p {
        margin: 0 0 8px;
    }

    .touch-orbit .icon {
        font-size: 2rem;
        margin-bottom: 12px;
    }

    .touch-orbit .badge {
        display: inline-block;
        background: var(--chip-bg);
        color: var(--fg-on-surface);
        padding: 4px 10px;
        border-radius: var(--radius-sm);
        font-size: 0.85rem;
        margin-bottom: 12px;
    }

    .touch-orbit .card h3 {
        color: var(--neutral-900);
        margin-bottom: 12px;
    }

    .touch-orbit .card p {
        color: var(--neutral-600);
        line-height: var(--line-height-base);
        margin-bottom: 20px;
    }

    .touch-orbit .card a {
        color: var(--link);
        text-decoration: none;
        font-weight: 500;
    }

    .touch-orbit .card a:hover {
        color: var(--link-hover);
        text-decoration: underline;
    }

    .touch-orbit .main-form button:hover {
        background: var(--bg-primary-hover);
    }

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

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

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

.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.5px;
    transition: color var(--anim-duration) var(--anim-ease);
}

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

.main-nav {
    display: flex;
    align-items: center;
}

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

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

.nav-link:hover,
.nav-link:focus-visible {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}

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

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

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

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

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

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

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

    .burger-menu.active .burger-line:nth-child(1) {
        transform: translateY(10.5px) rotate(45deg);
    }

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

    .burger-menu.active .burger-line:nth-child(3) {
        transform: translateY(-10.5px) rotate(-45deg);
    }

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

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

.site-footer {
        background-color: #1a1a1a;
        color: #ccc;
        font-family: sans-serif;
        padding-top: 3rem;
        margin-top: 4rem;
    }

    .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.8rem;
        font-weight: 700;
        letter-spacing: 2px;
        color: #fff;
        margin-bottom: 1rem;
    }

    .footer-disclaimer {
        font-size: 0.85rem;
        line-height: 1.5;
        color: #999;
        max-width: 280px;
    }

    .footer-heading {
        color: #fff;
        font-size: 1.1rem;
        margin-bottom: 1.2rem;
        border-bottom: 1px solid #333;
        padding-bottom: 0.5rem;
    }

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

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

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

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

    .footer-contact p {
        margin-bottom: 0.7rem;
        line-height: 1.5;
        font-size: 0.95rem;
    }

    .footer-contact strong {
        color: #eee;
    }

    .footer-bottom {
        border-top: 1px solid #333;
        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;
        text-align: center;
        gap: 1rem;
    }

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

    .footer-legal {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }

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

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

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

    .cookies__inner h2 {
        margin: 0 0 6px;
        font-size: 1rem;
    }

    .cookies__inner p {
        margin: 0;
    }

    .cookie-banner__buttons {
        margin-top: 1rem;
        display: flex;
        gap: 1rem;
        flex-shrink: 0;
    }

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

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

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

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

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

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

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

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

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

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

.contact-support--colored-v3 {
        padding: 64px 20px;
        background: radial-gradient(calc(var(--random-number) * 80%) calc(var(--random-number) * 60%) at 0% calc(var(--random-number) * 10%), var(--accent), transparent 55%),
        radial-gradient(calc(var(--random-number) * 80%) calc(var(--random-number) * 80%) at 100% 0%, var(--bg-primary), transparent 55%),
        var(--fg-on-surface);
        color: var(--neutral-0);

    }

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

    .contact-support__qa {
        display: grid;
        gap: 14px;
    }

    .contact-support__card {
        padding: 18px 20px;
        border-radius: 20px;
        background: rgba(17, 24, 39, 0.8);
        border: 1px solid rgba(148, 163, 184, 0.35);
        box-shadow: 0 16px 30px rgba(3, 7, 18, 0.35);
        transition: transform var(--anim-duration) var(--anim-ease),
        box-shadow var(--anim-duration) var(--anim-ease);
    }

    .contact-support__card:hover {
        transform: translateY(-3px);
        box-shadow: 0 20px 36px rgba(3, 7, 18, 0.5);
    }

    .contact-support__question {
        font-size: 1rem;
        font-weight: 600;
        margin-bottom: 6px;
        color: var(--neutral-0);
    }

    .contact-support__answer {
        font-size: 0.92rem;
        color: rgba(226, 232, 240, 0.75);
    }
    .contact-support__answer a {
        color: var(--link);
        text-decoration: underline;
    }
    .contact-support__answer a:hover {
        color: var(--link-hover);
    }

.faq-board {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 3vw, 36px);
        background: var(--bg-alt);
        color: var(--fg-on-page);
    }

    .faq-board .wrap {
        max-width: 860px;
        margin: 0 auto;
    }

    .faq-board .head {
        margin-bottom: 14px;
    }

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

    .faq-board .head p {
        margin: 10px 0 0;
        color: var(--neutral-600);
    }

    .faq-board .board {
        display: grid;
        gap: 8px;
    }

    .faq-board details {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-md);
        background: var(--surface-1);
        padding: 10px 12px;
    }

    .faq-board summary {
        cursor: pointer;
        font-weight: 600;
    }

    .faq-board details p {
        margin: 8px 0 0;
        color: var(--neutral-600);
    }

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

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

.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.5px;
    transition: color var(--anim-duration) var(--anim-ease);
}

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

.main-nav {
    display: flex;
    align-items: center;
}

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

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

.nav-link:hover,
.nav-link:focus-visible {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}

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

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

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

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

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

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

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

    .burger-menu.active .burger-line:nth-child(1) {
        transform: translateY(10.5px) rotate(45deg);
    }

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

    .burger-menu.active .burger-line:nth-child(3) {
        transform: translateY(-10.5px) rotate(-45deg);
    }

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

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

.site-footer {
        background-color: #1a1a1a;
        color: #ccc;
        font-family: sans-serif;
        padding-top: 3rem;
        margin-top: 4rem;
    }

    .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.8rem;
        font-weight: 700;
        letter-spacing: 2px;
        color: #fff;
        margin-bottom: 1rem;
    }

    .footer-disclaimer {
        font-size: 0.85rem;
        line-height: 1.5;
        color: #999;
        max-width: 280px;
    }

    .footer-heading {
        color: #fff;
        font-size: 1.1rem;
        margin-bottom: 1.2rem;
        border-bottom: 1px solid #333;
        padding-bottom: 0.5rem;
    }

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

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

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

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

    .footer-contact p {
        margin-bottom: 0.7rem;
        line-height: 1.5;
        font-size: 0.95rem;
    }

    .footer-contact strong {
        color: #eee;
    }

    .footer-bottom {
        border-top: 1px solid #333;
        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;
        text-align: center;
        gap: 1rem;
    }

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

    .footer-legal {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }

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

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

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

    .cookies__inner h2 {
        margin: 0 0 6px;
        font-size: 1rem;
    }

    .cookies__inner p {
        margin: 0;
    }

    .cookie-banner__buttons {
        margin-top: 1rem;
        display: flex;
        gap: 1rem;
        flex-shrink: 0;
    }

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

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

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

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

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

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

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

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

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

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

.contact-wave {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 3vw, 36px);
        background: var(--gradient-hero);
        color: var(--gradient-accent);
    }

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

    .contact-wave header {
        margin-bottom: 14px;
    }

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

    .contact-wave header p {
        margin: 10px 0 0;
        opacity: .9;
    }

    .contact-wave .grid {
        display: grid;
        grid-template-columns: 1.2fr .8fr;
        gap: 12px;
    }

    .contact-wave .panel {
        border: 1px solid rgba(255, 255, 255, .28);
        background: rgba(255, 255, 255, .1);
        border-radius: var(--radius-lg);
        padding: 14px;
        backdrop-filter: blur(5px);
    }

    .contact-wave h3 {
        margin: 0 0 10px;
    }

    .contact-wave label {
        display: grid;
        gap: 6px;
        margin-bottom: 9px;
    }

    .contact-wave input,
    .contact-wave textarea,
    .contact-wave select {
        width: 100%;
        border: 1px solid rgba(255, 255, 255, .35);
        border-radius: var(--radius-sm);
        background: rgba(255, 255, 255, .12);
        color: var(--fg-on-primary);
        padding: 9px;
        font: inherit;
    }

    .contact-wave button {
        border: 0;
        background: var(--accent);
        color: var(--accent-contrast);
        border-radius: var(--radius-sm);
        padding: 9px 12px;
        cursor: pointer;
    }

    .contact-wave .info p {
        margin: 0 0 10px;
        opacity: .92;
    }

    .contact-wave .social {
        display: flex;
        gap: 8px;
    }

    .contact-wave .social a {
        width: 34px;
        height: 34px;
        display: grid;
        place-items: center;
        border-radius: 50%;
        border: 1px solid rgba(255, 255, 255, .35);
        color: inherit;
        text-decoration: none;
    }

    @media (max-width: 860px) {
        .contact-wave .grid {
            grid-template-columns: 1fr;
        }
    }

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

.identity-canvas {
        background: var(--fg-on-primary);
        color: var(--bg-primary);
        padding: clamp(56px, 8vw, 100px) clamp(18px, 4vw, 48px);
    }

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

    .identity-canvas__h {
        margin-bottom: clamp(32px, 5vw, 64px);
        text-align: center;

        transform: translateY(-16px);
    }

    .identity-canvas__h h2 {
        margin: 0 0 0.5rem;
        font-size: clamp(30px, 4.5vw, 52px);
    }

    .identity-canvas__h p {
        margin: 0 auto;
        max-width: 640px;
        color: var(--neutral-500);
    }

    .identity-canvas__stack {
        display: flex;
        flex-direction: column;
        gap: clamp(16px, 3vw, 24px);
    }

    .identity-canvas__row {
        display: grid;
        grid-template-columns: minmax(120px, 180px) 1fr;
        gap: clamp(16px, 3vw, 32px);
        background: var(--bg-page);
        border-radius: var(--radius-lg);
        border: 1px solid var(--neutral-200);
        padding: clamp(18px, 3vw, 32px);
        box-shadow: 0 15px 40px rgba(9, 24, 56, 0.08);

        transform: translateY(20px);
    }

    @media (max-width: 640px) {
        .identity-canvas__row {
            grid-template-columns: 1fr;
        }
    }

    .identity-canvas__mark {
        align-self: start;
        font-size: 0.85rem;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        color: rgba(14, 27, 60, 0.5);
        border-left: 4px solid var(--bg-accent);
        padding-left: 1rem;
    }

    .identity-canvas__body h3 {
        margin: 0 0 0.75rem;
        font-size: clamp(20px, 2.4vw, 28px);
    }

    .identity-canvas__body p {
        margin: 0 0 1rem;
        color: var(--neutral-600);
    }

    .identity-canvas__body blockquote {
        margin: 0;
        padding: 0.75rem 1rem;
        border-radius: var(--radius-sm);
        background: var(--neutral-100);
        border-left: 4px solid var(--bg-accent);
        font-weight: 600;
        color: var(--accent);
    }

.form-layers {
        padding: clamp(56px, 8vw, 96px) 16px;
        background: var(--gradient-hero);
    }

    .form-layers .wrap {
        max-width: 980px;
        margin: 0 auto;
        display: grid;
        gap: 12px;
    }

    .form-layers .intro h2 {
        margin: 0;
        font-size: clamp(28px, 4vw, 42px);
        color: var(--brand-contrast);
    }

    .form-layers .intro p {
        margin: 10px 0 0;
        color: var(--brand-contrast);
    }

    .form-layers .layers {
        border: 1px solid var(--neutral-300);
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        padding: var(--space-x);
        display: grid;
        gap: var(--space-y);
        color: var(--fg-on-surface);
    }

    .form-layers fieldset {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-md);
        padding: var(--space-y);
        display: grid;
        gap: var(--gap);
        border: none;
        padding: 0;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: var(--space-x);
    }

    @media (max-width: 768px) {
        .form-layers fieldset {
            grid-template-columns: 1fr;
        }
    }

    .form-layers legend {
        padding: 0 6px;
        font-weight: bold;
        color: var(--fg-on-surface);
    }

    .form-layers label {
        display: grid;
        gap: 8px;
        font-weight: 500;
        color: var(--fg-on-surface);
    }

    .form-layers input:not([type="checkbox"]),
    .form-layers textarea {
        width: 100%;
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-sm);
        background: var(--surface-light-bg);
        color: var(--fg-on-surface);
        padding: 12px 16px;
        font: inherit;
        transition: border-color var(--anim-duration) var(--anim-ease);
    }

    .form-layers input:not([type="checkbox"]):focus,
    .form-layers textarea:focus {
        outline: none;
        border-color: var(--ring);
        box-shadow: 0 0 0 3px rgba(0, 86, 179, 0.1);
    }

    .form-layers .agree {
        display: flex;
        gap: var(--gap);
        align-items: center;
        grid-column: 1 / -1;
        margin-top: 8px;
    }

    .form-layers .agree input[type="checkbox"] {
        width: 18px;
        height: 18px;
    }

    .form-layers button {
        justify-self: start;
        border: 0;
        border-radius: var(--radius-md);
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        padding: 16px 40px;
        margin: 0 auto;
        font-weight: 600;
        font-size: 1.1rem;
        cursor: pointer;
        transition: background-color var(--anim-duration) var(--anim-ease);
        grid-column: 1 / -1;
        width: 100%;
        max-width: 300px;
    }

    .form-layers button:hover {
        background: var(--bg-accent-hover);
    }

    .form-layers .notes {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-md);
        background: var(--surface-2);
        padding: var(--space-y);
        margin-top: var(--space-y);
    }

    .form-layers .notes p {
        margin: 0 0 6px;
        font-size: 0.9rem;
        color: var(--neutral-600);
    }

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

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

.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.5px;
    transition: color var(--anim-duration) var(--anim-ease);
}

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

.main-nav {
    display: flex;
    align-items: center;
}

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

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

.nav-link:hover,
.nav-link:focus-visible {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}

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

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

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

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

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

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

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

    .burger-menu.active .burger-line:nth-child(1) {
        transform: translateY(10.5px) rotate(45deg);
    }

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

    .burger-menu.active .burger-line:nth-child(3) {
        transform: translateY(-10.5px) rotate(-45deg);
    }

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

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

.site-footer {
        background-color: #1a1a1a;
        color: #ccc;
        font-family: sans-serif;
        padding-top: 3rem;
        margin-top: 4rem;
    }

    .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.8rem;
        font-weight: 700;
        letter-spacing: 2px;
        color: #fff;
        margin-bottom: 1rem;
    }

    .footer-disclaimer {
        font-size: 0.85rem;
        line-height: 1.5;
        color: #999;
        max-width: 280px;
    }

    .footer-heading {
        color: #fff;
        font-size: 1.1rem;
        margin-bottom: 1.2rem;
        border-bottom: 1px solid #333;
        padding-bottom: 0.5rem;
    }

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

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

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

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

    .footer-contact p {
        margin-bottom: 0.7rem;
        line-height: 1.5;
        font-size: 0.95rem;
    }

    .footer-contact strong {
        color: #eee;
    }

    .footer-bottom {
        border-top: 1px solid #333;
        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;
        text-align: center;
        gap: 1rem;
    }

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

    .footer-legal {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }

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

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

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

    .cookies__inner h2 {
        margin: 0 0 6px;
        font-size: 1rem;
    }

    .cookies__inner p {
        margin: 0;
    }

    .cookie-banner__buttons {
        margin-top: 1rem;
        display: flex;
        gap: 1rem;
        flex-shrink: 0;
    }

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

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

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

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

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

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

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

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

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

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

.policy-cards {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 3vw, 36px);
        background: linear-gradient(180deg, var(--bg-alt), var(--accent));
        color: var(--fg-on-page);
    }

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

    .policy-cards header {
        margin-bottom: 14px;
    }

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

    .policy-cards header p {
        margin: 10px 0 0;
        color: var(--neutral-600);
        max-width: 72ch;
    }

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

    .policy-cards .card {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        padding: 14px;
    }

    .policy-cards .meta {
        margin: 0;
        font-size: .9rem;
        color: var(--brand);
    }

    .policy-cards h3 {
        margin: 8px 0;
    }

    .policy-cards .card p {
        margin: 0;
        color: var(--neutral-600);
    }

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

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

.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.5px;
    transition: color var(--anim-duration) var(--anim-ease);
}

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

.main-nav {
    display: flex;
    align-items: center;
}

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

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

.nav-link:hover,
.nav-link:focus-visible {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}

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

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

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

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

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

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

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

    .burger-menu.active .burger-line:nth-child(1) {
        transform: translateY(10.5px) rotate(45deg);
    }

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

    .burger-menu.active .burger-line:nth-child(3) {
        transform: translateY(-10.5px) rotate(-45deg);
    }

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

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

.site-footer {
        background-color: #1a1a1a;
        color: #ccc;
        font-family: sans-serif;
        padding-top: 3rem;
        margin-top: 4rem;
    }

    .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.8rem;
        font-weight: 700;
        letter-spacing: 2px;
        color: #fff;
        margin-bottom: 1rem;
    }

    .footer-disclaimer {
        font-size: 0.85rem;
        line-height: 1.5;
        color: #999;
        max-width: 280px;
    }

    .footer-heading {
        color: #fff;
        font-size: 1.1rem;
        margin-bottom: 1.2rem;
        border-bottom: 1px solid #333;
        padding-bottom: 0.5rem;
    }

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

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

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

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

    .footer-contact p {
        margin-bottom: 0.7rem;
        line-height: 1.5;
        font-size: 0.95rem;
    }

    .footer-contact strong {
        color: #eee;
    }

    .footer-bottom {
        border-top: 1px solid #333;
        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;
        text-align: center;
        gap: 1rem;
    }

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

    .footer-legal {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }

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

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

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

    .cookies__inner h2 {
        margin: 0 0 6px;
        font-size: 1rem;
    }

    .cookies__inner p {
        margin: 0;
    }

    .cookie-banner__buttons {
        margin-top: 1rem;
        display: flex;
        gap: 1rem;
        flex-shrink: 0;
    }

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

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

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

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

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

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

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

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

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

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

.terms-panels {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 3vw, 36px);
        background: linear-gradient(180deg, var(--bg-alt), var(--bg-page));
        color: var(--fg-on-page);
    }

    .terms-panels .wrap {
        max-width: 900px;
        margin: 0 auto;
    }

    .terms-panels header {
        margin-bottom: 16px;
    }

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

    .terms-panels header p {
        margin: 10px 0 0;
        color: var(--neutral-600);
    }

    .terms-panels .panel {
        margin-bottom: 12px;
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        background: rgba(255, 255, 255, .9);
        padding: 14px;
    }

    .terms-panels h3, .terms-panels h4 {
        margin: 0 0 8px;
    }

    .terms-panels p, .terms-panels li {
        color: var(--neutral-600);
    }

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

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

.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.5px;
    transition: color var(--anim-duration) var(--anim-ease);
}

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

.main-nav {
    display: flex;
    align-items: center;
}

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

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

.nav-link:hover,
.nav-link:focus-visible {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}

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

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

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

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

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

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

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

    .burger-menu.active .burger-line:nth-child(1) {
        transform: translateY(10.5px) rotate(45deg);
    }

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

    .burger-menu.active .burger-line:nth-child(3) {
        transform: translateY(-10.5px) rotate(-45deg);
    }

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

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

.site-footer {
        background-color: #1a1a1a;
        color: #ccc;
        font-family: sans-serif;
        padding-top: 3rem;
        margin-top: 4rem;
    }

    .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.8rem;
        font-weight: 700;
        letter-spacing: 2px;
        color: #fff;
        margin-bottom: 1rem;
    }

    .footer-disclaimer {
        font-size: 0.85rem;
        line-height: 1.5;
        color: #999;
        max-width: 280px;
    }

    .footer-heading {
        color: #fff;
        font-size: 1.1rem;
        margin-bottom: 1.2rem;
        border-bottom: 1px solid #333;
        padding-bottom: 0.5rem;
    }

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

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

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

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

    .footer-contact p {
        margin-bottom: 0.7rem;
        line-height: 1.5;
        font-size: 0.95rem;
    }

    .footer-contact strong {
        color: #eee;
    }

    .footer-bottom {
        border-top: 1px solid #333;
        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;
        text-align: center;
        gap: 1rem;
    }

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

    .footer-legal {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }

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

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

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

    .cookies__inner h2 {
        margin: 0 0 6px;
        font-size: 1rem;
    }

    .cookies__inner p {
        margin: 0;
    }

    .cookie-banner__buttons {
        margin-top: 1rem;
        display: flex;
        gap: 1rem;
        flex-shrink: 0;
    }

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

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

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

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

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

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

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

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

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

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

.th-core-e {
        padding: clamp(56px, 10vw, 110px) 16px;
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
    }

    .th-core-e .box {
        max-width: 700px;
        margin: 0 auto;
        text-align: center;
    }

    .th-core-e h1 {
        margin: 0;
        font-size: clamp(30px, 5vw, 50px);
    }

    .th-core-e p {
        margin: 10px 0 0;
        color: var(--border-on-surface-light);
    }

    .th-core-e a {
        display: inline-block;
        margin-top: 18px;
        padding: 10px 16px;
        border-radius: 12px;
        text-decoration: none;
        background: var(--fg-on-primary);
        color: var(--fg-on-accent);
    }

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

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

.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.5px;
    transition: color var(--anim-duration) var(--anim-ease);
}

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

.main-nav {
    display: flex;
    align-items: center;
}

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

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

.nav-link:hover,
.nav-link:focus-visible {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}

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

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

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

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

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

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

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

    .burger-menu.active .burger-line:nth-child(1) {
        transform: translateY(10.5px) rotate(45deg);
    }

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

    .burger-menu.active .burger-line:nth-child(3) {
        transform: translateY(-10.5px) rotate(-45deg);
    }

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

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

.site-footer {
        background-color: #1a1a1a;
        color: #ccc;
        font-family: sans-serif;
        padding-top: 3rem;
        margin-top: 4rem;
    }

    .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.8rem;
        font-weight: 700;
        letter-spacing: 2px;
        color: #fff;
        margin-bottom: 1rem;
    }

    .footer-disclaimer {
        font-size: 0.85rem;
        line-height: 1.5;
        color: #999;
        max-width: 280px;
    }

    .footer-heading {
        color: #fff;
        font-size: 1.1rem;
        margin-bottom: 1.2rem;
        border-bottom: 1px solid #333;
        padding-bottom: 0.5rem;
    }

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

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

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

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

    .footer-contact p {
        margin-bottom: 0.7rem;
        line-height: 1.5;
        font-size: 0.95rem;
    }

    .footer-contact strong {
        color: #eee;
    }

    .footer-bottom {
        border-top: 1px solid #333;
        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;
        text-align: center;
        gap: 1rem;
    }

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

    .footer-legal {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }

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

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

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

    .cookies__inner h2 {
        margin: 0 0 6px;
        font-size: 1rem;
    }

    .cookies__inner p {
        margin: 0;
    }

    .cookie-banner__buttons {
        margin-top: 1rem;
        display: flex;
        gap: 1rem;
        flex-shrink: 0;
    }

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

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

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

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

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

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

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

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

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

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

.nf-core-e {
        padding: clamp(56px, 10vw, 110px) 16px;
        background: var(--gradient-accent);
        color: var(--fg-on-primary);
    }

    .nf-core-e .box {
        max-width: 700px;
        margin: 0 auto;
        text-align: center;
    }

    .nf-core-e h1 {
        margin: 0;
        font-size: clamp(32px, 6vw, 56px);
        letter-spacing: .01em;
    }

    .nf-core-e p {
        margin: 10px 0 0;
        opacity: .94;
    }

    .nf-core-e a {
        display: inline-block;
        margin-top: 18px;
        padding: 10px 16px;
        border-radius: 999px;
        background: var(--fg-on-primary);
        color: var(--fg-on-accent);
        text-decoration: none;
        font-weight: 600;
    }