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

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

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

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

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

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

  --neutral-0: #FFFFFF;
  --neutral-100: #F5F7FA;
  --neutral-300: #D1D9E6;
  --neutral-600: #6B7B95;
  --neutral-800: #2D3748;
  --neutral-900: #1A202C;

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

  --bg-alt: #F8FAFC;
  --fg-on-alt: #2D3748;

  --surface-1: #FFFFFF;
  --surface-2: #F5F7FA;
  --fg-on-surface: #1A202C;
  --border-on-surface: #E2E8F0;

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

  --bg-primary: #0066CC;
  --fg-on-primary: #FFFFFF;
  --bg-primary-hover: #0055AA;
  --ring: rgba(0, 102, 204, 0.4);

  --bg-accent: rgba(0, 204, 136, 0.1);
  --fg-on-accent: #006644;
  --bg-accent-hover: #00B377;

  --link: #0066CC;
  --link-hover: #0055AA;

  --gradient-hero: linear-gradient(135deg, #0066CC 0%, #00CC88 100%);
  --gradient-accent: linear-gradient(90deg, #00CC88 0%, #66E0C2 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);
}

.burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
}

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

.main-nav {
    display: block;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .footer-disclaimer {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.4;
    margin: 0;
  }

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

  .footer-nav li {
    margin-bottom: 0.5rem;
  }

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

  .footer-nav a:hover,
  .footer-contact a:hover,
  .social-links a:hover,
  .footer-bottom a:hover {
    color: #000;
    text-decoration: underline;
  }

  .footer-contact p {
    margin: 0 0 0.5rem 0;
    line-height: 1.4;
  }

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

  .social-links a {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background-color: #e9ecef;
    border-radius: 4px;
    font-weight: bold;
  }

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

  .footer-bottom p {
    margin: 0;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            transform: translateY(20px);
        }
    }

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

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

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

.hero {
    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 calc(var(--space-y) * 1.5);
    max-width: 700px;
}

.hero__actions {
    display: flex;
    gap: var(--gap);
    justify-content: center;
    flex-wrap: wrap;
}

.hero__btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: var(--radius-md);
    font-weight: 500;
    text-align: center;
    transition: all var(--anim-duration) var(--anim-ease);
    cursor: pointer;
    border: 1px solid transparent;
    font-size: 1rem;
}

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

.hero__btn--primary:hover {
    background-color: var(--bg-primary-hover);
    border-color: var(--bg-primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

.hero__btn--outline:hover {
    background-color: var(--btn-ghost-bg-hover);
}

.next-step-l2 {

        background: var(--bg-alt);
        color: var(--fg-on-alt);
        padding: clamp(52px, 7vw, 90px) clamp(16px, 3vw, 40px);
        overflow: hidden;
    }

    .next-step-l2__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .next-step-l2__card {
        max-width: 940px;
        margin: 0 auto;
        border-radius: var(--radius-xl);
        background: var(--surface-light);
        color: var(--fg-on-surface-light);
        border: 1px solid var(--border-on-surface-light);
        box-shadow: var(--shadow-lg);
        padding: clamp(18px, 2.8vw, 30px);
        position: relative;
        overflow: hidden;
        text-align: left;
    }

    /* постоянное мягкое вращение “ауры” */
    .next-step-l2__bg {
        position: absolute;
        inset: -120px;
        background: conic-gradient(from 0deg,
        rgba(0, 86, 179, 0.10),
        rgba(255, 107, 53, 0.10),
        rgba(0, 86, 179, 0.10)
        );
        filter: blur(30px);
        opacity: .65;
        animation: l2Spin 12s linear infinite;
        pointer-events: none;
    }

    @keyframes l2Spin {
        to {
            transform: rotate(360deg)
        }
    }

    .next-step-l2__kicker {
        display: inline-flex;
        padding: 8px 12px;
        border-radius: 999px;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border: 1px solid rgba(0, 0, 0, 0.06);
        font-weight: 900;
        position: relative;
        z-index: 1;
    }

    .next-step-l2__title {
        margin: 14px 0 0;
        font-size: clamp(28px, 4.6vw, 44px);
        font-weight: 900;
        letter-spacing: -.02em;
        line-height: 1.1;
        position: relative;
        z-index: 1;
        color: var(--fg-on-surface-light);
    }

    .next-step-l2__text {
        margin: 14px 0 0;
        max-width: 72ch;
        font-size: clamp(16px, 2vw, 20px);
        line-height: var(--line-height-base);
        color: var(--neutral-600);
        position: relative;
        z-index: 1;
    }

    .next-step-l2__actions {
        margin-top: 22px;
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
        position: relative;
        z-index: 1;
    }

    .next-step-l2__btn {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 14px 18px;
        border-radius: var(--radius-lg);
        text-decoration: none;
        font-weight: 900;
        border: 1px solid rgba(0, 0, 0, 0.08);
        background: var(--surface-2);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-sm);
        transform: translate3d(0, 0, 0);
        transition: box-shadow var(--anim-duration) var(--anim-ease), background var(--anim-duration) var(--anim-ease);
        will-change: transform;
        position: relative;
        overflow: hidden;
    }

    .next-step-l2__btn--primary {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border-color: rgba(0, 86, 179, 0.25);
    }

    .next-step-l2__btn--secondary {
        background: var(--surface-2);
        color: var(--fg-on-page);
    }

    .next-step-l2__btn::after {
        content: '';
        position: absolute;
        inset: -40px;
        background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(255, 255, 255, 0.22), transparent 55%);

        transition: opacity 220ms var(--anim-ease);
        pointer-events: none;
    }

    .next-step-l2__btn:hover {
        box-shadow: var(--shadow-md);
    }

    .next-step-l2__btn:hover::after {
        opacity: 1;
    }

    @media (prefers-reduced-motion: reduce) {
        .next-step-l2__bg {
            animation: none;
        }

        .next-step-l2__btn {
            will-change: auto;
        }
    }

.clarifications-c1 {

        padding: clamp(18px, 3vw, 44px);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        overflow: hidden;
        position: relative;
    }

    .clarifications-c1::before {
        content: '';
        position: absolute;
        inset: -40%;
        background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.16), transparent 55%),
        radial-gradient(circle at 70% 60%, rgba(255, 107, 53, 0.18), transparent 52%);
        filter: blur(18px);
        animation: c1Glow 6s var(--anim-ease) infinite;
        opacity: .8;
        pointer-events: none;
    }

    @keyframes c1Glow {
        0%, 100% {
            transform: translate3d(-1%, 0, 0) scale(1);
        }
        50% {
            transform: translate3d(1.5%, -1%, 0) scale(1.03);
        }
    }

    .clarifications-c1__c {
        max-width: var(--max-w);
        margin: 0 auto;
        position: relative;
    }

    .clarifications-c1__h {
        margin-bottom: clamp(14px, 2.2vw, 22px);
    }

    .clarifications-c1__title {
        margin: 0;
        font-size: clamp(24px, 4.6vw, 44px);
        line-height: 1.1;
        letter-spacing: -.02em;
    }

    .clarifications-c1__sub {
        margin: 10px 0 0;
        max-width: 70ch;
        color: rgba(255, 255, 255, .82);
    }

    .clarifications-c1__grid {
        display: grid;
        gap: 12px;
    }

    .clarifications-c1__item {
        border-radius: var(--radius-xl);
        background: rgba(255, 255, 255, 0.10);
        border: 1px solid rgba(255, 255, 255, 0.16);
        box-shadow: var(--shadow-md);
        overflow: hidden;
        backdrop-filter: blur(8px);
    }

    .clarifications-c1__q {
        width: 100%;
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 14px 16px;
        background: transparent;
        border: 0;
        color: inherit;
        cursor: pointer;
        text-align: left;
    }

    .clarifications-c1__dot {
        width: 10px;
        height: 10px;
        border-radius: 999px;
        background: var(--accent);
        box-shadow: 0 0 0 6px rgba(0, 0, 0, 0.12);
        flex: 0 0 auto;
        animation: c1Dot 1.8s ease-in-out infinite;
    }

    @keyframes c1Dot {
        0%, 100% {
            transform: scale(1);
            opacity: .9
        }
        50% {
            transform: scale(1.15);
            opacity: 1
        }
    }

    .clarifications-c1__qText {
        font-weight: 800;
        letter-spacing: -.01em
    }

    .clarifications-c1__chev {
        margin-left: auto;
        opacity: .85;
        transition: transform var(--anim-duration) var(--anim-ease);
    }

    .clarifications-c1__a {
        display: none;
        padding: 0 16px 16px 38px;
        color: rgba(255, 255, 255, .82);
        line-height: var(--line-height-base);
    }

    .clarifications-c1__item.is-open .clarifications-c1__chev {
        transform: rotate(180deg);
    }

    .clarifications-c1__item.is-open .clarifications-c1__a {
        display: block;
    }

    @media (prefers-reduced-motion: reduce) {
        .clarifications-c1::before, .clarifications-c1__dot {
            animation: none;
        }
    }

.visual-highlights-carousel {

        background: var(--bg-alt);
        color: var(--fg-on-alt);
        padding: clamp(60px, 8vw, 108px) clamp(18px, 4vw, 56px);
    }

    .visual-highlights-carousel__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .visual-highlights-carousel__h {
        text-align: center;
        margin-bottom: clamp(40px, 6vw, 72px);

        transform: translateY(-20px);
    }

    .visual-highlights-carousel__h p {
        margin: 0 0 0.75rem;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        color: var(--brand);
        font-size: 13px;
    }

    .visual-highlights-carousel__h h2 {
        margin: 0;
        font-size: clamp(30px, 4.8vw, 50px);
        font-weight: 800;
        color: var(--fg-on-alt);
    }

    .visual-highlights-carousel__row {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: clamp(20px, 3vw, 32px);
    }

    .visual-highlights-carousel__slide {
        border-radius: var(--radius-lg);
        background: var(--surface-light);
        border: 1px solid var(--border-on-surface-light);
        overflow: hidden;

        transform: translateY(30px);
        box-shadow: var(--shadow-lg);
        display: flex;
        flex-direction: column;
    }

    .visual-highlights-carousel__img {
        position: relative;
        padding-top: 60%;
    }

    .visual-highlights-carousel__img img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .visual-highlights-carousel__slide:hover img {
        transform: scale(1.05);
    }

    .visual-highlights-carousel__flag {
        position: absolute;
        top: 16px;
        right: 16px;
        background: var(--bg-page);
        border-radius: 999px;
        padding: 6px 14px;
        font-size: 12px;
        color: var(--accent);
        font-weight: 600;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        box-shadow: 0 12px 20px rgba(0, 86, 179, 0.15);
    }

    .visual-highlights-carousel__text {
        padding: clamp(20px, 3vw, 28px);
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }

    .visual-highlights-carousel__text h3 {
        margin: 0;
        font-size: clamp(18px, 2.4vw, 24px);
        color: var(--fg-on-page);
    }

    .visual-highlights-carousel__text p {
        margin: 0;
        color: var(--neutral-600);
    }

    .visual-highlights-carousel__note {
        font-size: 13px;
        text-transform: uppercase;
        letter-spacing: 0.18em;
        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);
}

.burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
}

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

.main-nav {
    display: block;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .footer-disclaimer {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.4;
    margin: 0;
  }

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

  .footer-nav li {
    margin-bottom: 0.5rem;
  }

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

  .footer-nav a:hover,
  .footer-contact a:hover,
  .social-links a:hover,
  .footer-bottom a:hover {
    color: #000;
    text-decoration: underline;
  }

  .footer-contact p {
    margin: 0 0 0.5rem 0;
    line-height: 1.4;
  }

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

  .social-links a {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background-color: #e9ecef;
    border-radius: 4px;
    font-weight: bold;
  }

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

  .footer-bottom p {
    margin: 0;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            transform: translateY(20px);
        }
    }

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

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

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

.post-list {

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

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

    .post-list .post-list__h {
        text-align: center;
        margin-bottom: var(--space-y);
    }

    .post-list h1 {
        font-size: clamp(28px, 5vw, 48px);
        margin: 0 0 0.5rem;
        color: var(--fg-on-primary);
    }

    .post-list .post-list__categories {
        display: flex;
        gap: 0.5rem;
        flex-wrap: wrap;
        margin-bottom: var(--space-y);
        justify-content: center;
    }

    .post-list .post-list__category {
        padding: 0.5rem 1rem;
        border-radius: var(--radius-md);
        background: var(--surface-light);
        color: var(--fg-on-primary);
        text-decoration: none;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .post-list .post-list__category:hover {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
    }

    .post-list .post-list__list {
        display: flex;
        flex-direction: column;
        gap: var(--space-x);
    }

    .post-list .post-list__item {
        background: var(--surface-light);
        border: 1px solid var(--ring);
        border-radius: var(--radius-lg);
        padding: clamp(16px, 2vw, 24px);
        box-shadow: var(--shadow-sm);
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .post-list .post-list__item:hover {
        box-shadow: var(--shadow-md);
        transform: translateX(4px);
    }

    .post-list .post-list__meta {
        display: flex;
        gap: 1rem;
        color: var(--neutral-600);
        font-size: 0.875rem;
        margin-bottom: 0.75rem;
    }

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

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

    .post-list h3 a:hover {
        color: var(--bg-primary);
    }

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

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

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

.faq__inner h2 {
    margin: 0 0 16px;
    font-size: clamp(24px,4vw,30px);
    color: var(--fg-on-page);
}

.faq__cols {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 16px;
}

.faq__card {
    background: var(--bg-page);
    border-radius: var(--radius-lg);
    padding: 14px 16px;
    border: 1px solid var(--border-on-surface-light);
    box-shadow: var(--shadow-sm);
}

.faq__card h3 {
    margin: 0 0 4px;
    font-size: 1rem;
}

.faq__card p {
    margin: 0;
    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);
}

.burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
}

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

.main-nav {
    display: block;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .footer-disclaimer {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.4;
    margin: 0;
  }

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

  .footer-nav li {
    margin-bottom: 0.5rem;
  }

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

  .footer-nav a:hover,
  .footer-contact a:hover,
  .social-links a:hover,
  .footer-bottom a:hover {
    color: #000;
    text-decoration: underline;
  }

  .footer-contact p {
    margin: 0 0 0.5rem 0;
    line-height: 1.4;
  }

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

  .social-links a {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background-color: #e9ecef;
    border-radius: 4px;
    font-weight: bold;
  }

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

  .footer-bottom p {
    margin: 0;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            transform: translateY(20px);
        }
    }

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

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

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

.post-item--light-v6 {

    padding: 48px 20px;
    background: var(--bg-page);
    color: var(--fg-on-page);
}

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

.post-item__inner h1 {
    margin: 0 0 4px;
    font-size: clamp(24px,4vw,32px);
}

.post-item__meta {
    margin: 0 0 8px;
    font-size: 0.85rem;
    color: var(--neutral-600);
}

.post-item__lead {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.post-list {

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

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

    .post-list .post-list__h {
        text-align: center;
        margin-bottom: var(--space-y);
    }

    .post-list h1 {
        font-size: clamp(28px, 5vw, 48px);
        margin: 0 0 0.5rem;
        color: var(--fg-on-primary);
    }

    .post-list .post-list__categories {
        display: flex;
        gap: 0.5rem;
        flex-wrap: wrap;
        margin-bottom: var(--space-y);
        justify-content: center;
    }

    .post-list .post-list__category {
        padding: 0.5rem 1rem;
        border-radius: var(--radius-md);
        background: var(--surface-light);
        color: var(--fg-on-primary);
        text-decoration: none;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .post-list .post-list__category:hover {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
    }

    .post-list .post-list__list {
        display: flex;
        flex-direction: column;
        gap: var(--space-x);
    }

    .post-list .post-list__item {
        background: var(--surface-light);
        border: 1px solid var(--ring);
        border-radius: var(--radius-lg);
        padding: clamp(16px, 2vw, 24px);
        box-shadow: var(--shadow-sm);
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .post-list .post-list__item:hover {
        box-shadow: var(--shadow-md);
        transform: translateX(4px);
    }

    .post-list .post-list__meta {
        display: flex;
        gap: 1rem;
        color: var(--neutral-600);
        font-size: 0.875rem;
        margin-bottom: 0.75rem;
    }

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

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

    .post-list h3 a:hover {
        color: var(--bg-primary);
    }

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

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

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

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

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

.burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
}

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

.main-nav {
    display: block;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .footer-disclaimer {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.4;
    margin: 0;
  }

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

  .footer-nav li {
    margin-bottom: 0.5rem;
  }

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

  .footer-nav a:hover,
  .footer-contact a:hover,
  .social-links a:hover,
  .footer-bottom a:hover {
    color: #000;
    text-decoration: underline;
  }

  .footer-contact p {
    margin: 0 0 0.5rem 0;
    line-height: 1.4;
  }

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

  .social-links a {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background-color: #e9ecef;
    border-radius: 4px;
    font-weight: bold;
  }

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

  .footer-bottom p {
    margin: 0;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            transform: translateY(20px);
        }
    }

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

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

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

.post-item {

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

    .post-item .post-item__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

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

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

    .post-item .post-item__meta {
        display: flex;
        gap: 1rem;
        color: rgba(255, 255, 255, 0.9);
        font-size: 0.875rem;
    }

    .post-item .post-item__content {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        padding: clamp(24px, 3vw, 40px);
        border-radius: var(--radius-lg);
        line-height: 1.8;
        color: var(--fg-on-primary);
        margin-bottom: var(--space-y);
    }

    .post-item .post-item__comments {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        padding: clamp(24px, 3vw, 40px);
        border-radius: var(--radius-lg);
    }

    .post-item .post-item__comments h3 {
        margin: 0 0 1.5rem;
        color: var(--fg-on-primary);
    }

    .post-item .post-item__comments-list {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        margin-bottom: var(--space-y);
    }

    .post-item .post-item__comment {
        background: rgba(255, 255, 255, 0.1);
        padding: 1rem;
        border-radius: var(--radius-md);
    }

    .post-item .post-item__comment-author {
        font-weight: 600;
        color: var(--fg-on-primary);
        margin-bottom: 0.5rem;
    }

    .post-item .post-item__comment-text {
        color: rgba(255, 255, 255, 0.9);
        margin-bottom: 0.5rem;
    }

    .post-item .post-item__comment-date {
        font-size: 0.875rem;
        color: rgba(255, 255, 255, 0.7);
    }

    .post-item .post-item__reply-form {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .post-item .post-item__reply-form textarea {
        padding: 1rem;
        border-radius: var(--radius-md);
        border: none;
        outline: none;
        min-height: 100px;

    }

    .post-item .post-item__reply-form button {
        padding: 0.875rem 2rem;
        border-radius: var(--radius-md);
        border: none;
        background: var(--gradient-hero);
        color: var(--bg-primary);
        font-weight: 600;
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .post-item .post-item__reply-form button:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
    }

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

.burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
}

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

.main-nav {
    display: block;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .footer-disclaimer {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.4;
    margin: 0;
  }

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

  .footer-nav li {
    margin-bottom: 0.5rem;
  }

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

  .footer-nav a:hover,
  .footer-contact a:hover,
  .social-links a:hover,
  .footer-bottom a:hover {
    color: #000;
    text-decoration: underline;
  }

  .footer-contact p {
    margin: 0 0 0.5rem 0;
    line-height: 1.4;
  }

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

  .social-links a {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background-color: #e9ecef;
    border-radius: 4px;
    font-weight: bold;
  }

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

  .footer-bottom p {
    margin: 0;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            transform: translateY(20px);
        }
    }

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

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

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

.post-item--light-v6 {

    padding: 48px 20px;
    background: var(--bg-page);
    color: var(--fg-on-page);
}

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

.post-item__inner h1 {
    margin: 0 0 4px;
    font-size: clamp(24px,4vw,32px);
}

.post-item__meta {
    margin: 0 0 8px;
    font-size: 0.85rem;
    color: var(--neutral-600);
}

.post-item__lead {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

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

.burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
}

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

.main-nav {
    display: block;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .footer-disclaimer {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.4;
    margin: 0;
  }

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

  .footer-nav li {
    margin-bottom: 0.5rem;
  }

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

  .footer-nav a:hover,
  .footer-contact a:hover,
  .social-links a:hover,
  .footer-bottom a:hover {
    color: #000;
    text-decoration: underline;
  }

  .footer-contact p {
    margin: 0 0 0.5rem 0;
    line-height: 1.4;
  }

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

  .social-links a {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background-color: #e9ecef;
    border-radius: 4px;
    font-weight: bold;
  }

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

  .footer-bottom p {
    margin: 0;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            transform: translateY(20px);
        }
    }

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

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

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

.article-list {

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

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

    .article-list .article-list__h {
        text-align: center;
        margin-bottom: var(--space-y);
    }

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

    .article-list .article-list__filters {
        display: flex;
        gap: 0.5rem;
        flex-wrap: wrap;
        margin-bottom: var(--space-y);
        justify-content: center;
    }

    .article-list .article-list__filter {
        padding: 0.5rem 1rem;
        border-radius: var(--radius-md);
        border: 1px solid var(--ring);
        background: var(--bg-page);
        color: var(--fg-on-page);
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .article-list .article-list__filter:hover {
        background: var(--bg-primary);
        color: var(--fg-on-primary) fff;
        border-color: var(--bg-primary);
    }

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

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

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

    .article-list .article-list__card {
        background: var(--surface-light);
        border: 1px solid var(--ring);
        border-radius: var(--radius-lg);
        overflow: hidden;
        box-shadow: var(--shadow-sm);
        transition: transform var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
    }

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

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

    .article-list .article-list__content {
        padding: clamp(16px, 2vw, 24px);
    }

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

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

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

    .article-list h3 a:hover {
        color: var(--bg-primary);
    }

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

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

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

.index-recommendations-split {
        background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.75), transparent 60%),
        linear-gradient(135deg, rgba(212, 165, 165, 0.45), rgba(248, 225, 231, 0.95));
        color: var(--fg-on-page);
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 40px);
        overflow: hidden;
    }

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

    .index-recommendations-split__h {
        text-align: center;
        margin-bottom: clamp(24px, 6vw, 52px);

        transform: translateY(-18px);
    }

    .index-recommendations-split__h h2 {
        margin: 0 0 10px;
        font-size: clamp(28px, 4.6vw, 48px);
        letter-spacing: -0.02em;
    }

    .index-recommendations-split__h p {
        margin: 0;
        color: rgba(58, 46, 61, 0.75);
    }

    .index-recommendations-split__grid {
        display: grid;
        grid-template-columns: repeat(12, 1fr);
        gap: clamp(14px, 2.6vw, 22px);
    }

    .index-recommendations-split__card {
        grid-column: span 6;
        border-radius: var(--radius-xl);
        overflow: hidden;
        box-shadow: var(--shadow-lg);
        background: rgba(255, 255, 255, 0.65);
        border: 1px solid rgba(58, 46, 61, 0.12);
        display: grid;
        grid-template-rows: 170px 1fr;

        transform: translateY(26px);
        backdrop-filter: blur(10px);
    }

    .index-recommendations-split__card:nth-child(1) {
        grid-column: span 12;
        grid-template-columns: 1.2fr 1fr;
        grid-template-rows: 1fr;
        min-height: 320px;
    }

    .index-recommendations-split__media {
        position: relative;
        background-size: cover;
        background-position: center;
        background-color: rgba(58, 46, 61, 0.08);
    }

    .index-recommendations-split__card:nth-child(1) .index-recommendations-split__media {
        border-right: 1px solid rgba(58, 46, 61, 0.12);
    }

    .index-recommendations-split__media::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));
        pointer-events: none;
    }

    .index-recommendations-split__pill {
        position: absolute;
        left: 14px;
        top: 14px;
        padding: 7px 10px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.78);
        border: 1px solid rgba(58, 46, 61, 0.14);
        color: var(--fg-on-page);
        font-size: 10px;
        letter-spacing: 0.16em;
        text-transform: uppercase;
        z-index: 1;
    }

    .index-recommendations-split__body {
        padding: 18px 18px 16px;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .index-recommendations-split__icon {
        width: 44px;
        height: 44px;
        border-radius: 16px;
        background: var(--bg-accent);
        border: 1px solid var(--border-on-surface);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 22px;
    }

    .index-recommendations-split__body h3 {
        margin: 0;
        font-size: 18px;
        font-weight: 900;
        letter-spacing: -0.01em;
        color: var(--fg-on-page);
    }

    .index-recommendations-split__body p {
        margin: 0;
        color: rgba(58, 46, 61, 0.84);
        font-size: 14px;
        line-height: 1.65;
    }

    .index-recommendations-split__link {
        margin-top: auto;
        color: var(--link);
        text-decoration: none;
        font-weight: 800;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        font-size: 11px;
        display: inline-flex;
        align-items: center;
        gap: 8px;
    }

    .index-recommendations-split__link::after {
        content: '->';
    }

    .index-recommendations-split__link:hover {
        color: var(--link-hover);
    }

    @media (max-width: 900px) {
        .index-recommendations-split__grid {
            grid-template-columns: repeat(6, 1fr);
        }

        .index-recommendations-split__card {
            grid-column: span 6;
        }

        .index-recommendations-split__card:nth-child(1) {
            grid-template-columns: 1fr;
            grid-template-rows: 200px 1fr;
            min-height: 0;
        }

        .index-recommendations-split__card:nth-child(1) .index-recommendations-split__media {
            border-right: 0;
            border-bottom: 1px solid rgba(58, 46, 61, 0.12);
        }
    }

.next-step-l2 {

        background: var(--bg-alt);
        color: var(--fg-on-alt);
        padding: clamp(52px, 7vw, 90px) clamp(16px, 3vw, 40px);
        overflow: hidden;
    }

    .next-step-l2__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .next-step-l2__card {
        max-width: 940px;
        margin: 0 auto;
        border-radius: var(--radius-xl);
        background: var(--surface-light);
        color: var(--fg-on-surface-light);
        border: 1px solid var(--border-on-surface-light);
        box-shadow: var(--shadow-lg);
        padding: clamp(18px, 2.8vw, 30px);
        position: relative;
        overflow: hidden;
        text-align: left;
    }

    /* постоянное мягкое вращение “ауры” */
    .next-step-l2__bg {
        position: absolute;
        inset: -120px;
        background: conic-gradient(from 0deg,
        rgba(0, 86, 179, 0.10),
        rgba(255, 107, 53, 0.10),
        rgba(0, 86, 179, 0.10)
        );
        filter: blur(30px);
        opacity: .65;
        animation: l2Spin 12s linear infinite;
        pointer-events: none;
    }

    @keyframes l2Spin {
        to {
            transform: rotate(360deg)
        }
    }

    .next-step-l2__kicker {
        display: inline-flex;
        padding: 8px 12px;
        border-radius: 999px;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border: 1px solid rgba(0, 0, 0, 0.06);
        font-weight: 900;
        position: relative;
        z-index: 1;
    }

    .next-step-l2__title {
        margin: 14px 0 0;
        font-size: clamp(28px, 4.6vw, 44px);
        font-weight: 900;
        letter-spacing: -.02em;
        line-height: 1.1;
        position: relative;
        z-index: 1;
        color: var(--fg-on-surface-light);
    }

    .next-step-l2__text {
        margin: 14px 0 0;
        max-width: 72ch;
        font-size: clamp(16px, 2vw, 20px);
        line-height: var(--line-height-base);
        color: var(--neutral-600);
        position: relative;
        z-index: 1;
    }

    .next-step-l2__actions {
        margin-top: 22px;
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
        position: relative;
        z-index: 1;
    }

    .next-step-l2__btn {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 14px 18px;
        border-radius: var(--radius-lg);
        text-decoration: none;
        font-weight: 900;
        border: 1px solid rgba(0, 0, 0, 0.08);
        background: var(--surface-2);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-sm);
        transform: translate3d(0, 0, 0);
        transition: box-shadow var(--anim-duration) var(--anim-ease), background var(--anim-duration) var(--anim-ease);
        will-change: transform;
        position: relative;
        overflow: hidden;
    }

    .next-step-l2__btn--primary {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border-color: rgba(0, 86, 179, 0.25);
    }

    .next-step-l2__btn--secondary {
        background: var(--surface-2);
        color: var(--fg-on-page);
    }

    .next-step-l2__btn::after {
        content: '';
        position: absolute;
        inset: -40px;
        background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(255, 255, 255, 0.22), transparent 55%);

        transition: opacity 220ms var(--anim-ease);
        pointer-events: none;
    }

    .next-step-l2__btn:hover {
        box-shadow: var(--shadow-md);
    }

    .next-step-l2__btn:hover::after {
        opacity: 1;
    }

    @media (prefers-reduced-motion: reduce) {
        .next-step-l2__bg {
            animation: none;
        }

        .next-step-l2__btn {
            will-change: auto;
        }
    }

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

.burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
}

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

.main-nav {
    display: block;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .footer-disclaimer {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.4;
    margin: 0;
  }

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

  .footer-nav li {
    margin-bottom: 0.5rem;
  }

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

  .footer-nav a:hover,
  .footer-contact a:hover,
  .social-links a:hover,
  .footer-bottom a:hover {
    color: #000;
    text-decoration: underline;
  }

  .footer-contact p {
    margin: 0 0 0.5rem 0;
    line-height: 1.4;
  }

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

  .social-links a {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background-color: #e9ecef;
    border-radius: 4px;
    font-weight: bold;
  }

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

  .footer-bottom p {
    margin: 0;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            transform: translateY(20px);
        }
    }

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

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

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

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

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

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

    .connect .connect__grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: clamp(24px, 4vw, 32px);
    }

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

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

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

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

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

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

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

.faq__inner h2 {
    margin: 0 0 16px;
    font-size: clamp(24px,4vw,30px);
    color: var(--fg-on-page);
}

.faq__cols {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 16px;
}

.faq__card {
    background: var(--bg-page);
    border-radius: var(--radius-lg);
    padding: 14px 16px;
    border: 1px solid var(--border-on-surface-light);
    box-shadow: var(--shadow-sm);
}

.faq__card h3 {
    margin: 0 0 4px;
    font-size: 1rem;
}

.faq__card p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--neutral-600);
}

@keyframes pulseIn {
        from {
            transform: scale(.98);
            opacity: .6
        }
        to {
            transform: scale(1);
            opacity: 1
        }
    }

    .contact-form {

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

    .contact-form .c {
        max-width: 720px;
        margin: 0 auto;
    }

    .contact-form .glass {
        display: grid;
        gap: 12px;
        background: rgba(255, 255, 255, .14);
        border: 1px solid rgba(255, 255, 255, .25);
        backdrop-filter: blur(8px);
        border-radius: var(--radius-xl);
        padding: clamp(14px, 2.5vw, 26px);
    }

    .contact-form label {
        display: grid;
        gap: 6px;
        font-size: .9rem;
        opacity: .9;
    }

    .contact-form input, .contact-form textarea {
        padding: .8rem 1rem;
        border-radius: var(--radius-md);
        border: 1px solid rgba(255, 255, 255, .45);
        background: rgba(255, 255, 255, .9);
        color: #000;
        box-sizing: border-box;
    }

    .contact-form .agree {
        display: flex;
        align-items: center;
        gap: .5rem;
    }

    .contact-form .submit {
        padding: .9rem 1.2rem;
        border-radius: var(--radius-lg);
        background: #fff;
        color: var(--bg-page);
        border: 0;
        animation: pulseIn .35s ease;
    }

.policy-contacts--light-v4 {
        padding: 56px 20px;
        background:
                radial-gradient(120% 120% at 0% 0%, rgba(253, 186, 116, 0.2), transparent 50%),
                radial-gradient(120% 120% at 100% 20%, rgba(134, 239, 172, 0.2), transparent 50%),
                #fff;
        color: var(--fg-on-page);

    }

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

    .policy-contacts__layout {
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(0, 0.8fr);
        gap: 20px;
        align-items: start;
    }

    .policy-contacts__list {
        background: var(--bg-page);
        border-radius: 20px;
        border: 1px solid var(--ring);
        padding: 16px;
        display: grid;
        gap: 10px;
        box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
    }

    .policy-contacts__item {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 12px;
        padding: 12px 14px;
        border-radius: 14px;
        background: var(--surface-light);
    }

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

    .policy-contacts__item strong {
        font-weight: 600;
    }

    .policy-contacts__mini {
        background: #fff;
        border-radius: 20px;
        border: 1px solid var(--ring);
        padding: 18px;
        display: grid;
        gap: 12px;
        box-shadow: 0 12px 28px rgba(15, 23, 42, 0.1);
    }

    .policy-contacts__mini label {
        display: grid;
        gap: 6px;
        font-size: 0.9rem;
        color: var(--neutral-700);
    }

    .policy-contacts__mini input[type="email"] {
        padding: 0.75rem 0.9rem;
        border-radius: 12px;
        border: 1px solid var(--ring);
        background: #fff;
        font-family: inherit;
    }

    .policy-contacts__agree {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 0.85rem;
        color: var(--neutral-600);
    }

    .policy-contacts__mini button {
        padding: 0.8rem 1rem;
        border-radius: 999px;
        border: 0;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        font-weight: 600;
        cursor: pointer;
        box-shadow: 0 12px 26px rgba(15, 23, 42, 0.15);
        transition: transform var(--anim-duration) var(--anim-ease);
    }

    .policy-contacts__mini button:hover {
        transform: translateY(-2px);
    }

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

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    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);
}

.burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
}

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

.main-nav {
    display: block;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .footer-disclaimer {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.4;
    margin: 0;
  }

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

  .footer-nav li {
    margin-bottom: 0.5rem;
  }

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

  .footer-nav a:hover,
  .footer-contact a:hover,
  .social-links a:hover,
  .footer-bottom a:hover {
    color: #000;
    text-decoration: underline;
  }

  .footer-contact p {
    margin: 0 0 0.5rem 0;
    line-height: 1.4;
  }

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

  .social-links a {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background-color: #e9ecef;
    border-radius: 4px;
    font-weight: bold;
  }

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

  .footer-bottom p {
    margin: 0;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            transform: translateY(20px);
        }
    }

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

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

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

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

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

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

.policy-items__intro {
    margin: 0 0 12px;
    font-size: 0.95rem;
    color: var(--neutral-300);
}

.policy-items__list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

.policy-items__item {
    border-radius: var(--radius-lg);
    padding: 10px 12px;
    background: rgba(15,23,42,0.96);
    border: 1px solid rgba(148,163,184,0.7);
}

.policy-items__item--important {
    border-color: var(--accent);
}
.policy-items__item--critical {
    border-color: var(--accent);
}

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

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

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    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);
}

.burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
}

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

.main-nav {
    display: block;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .footer-disclaimer {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.4;
    margin: 0;
  }

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

  .footer-nav li {
    margin-bottom: 0.5rem;
  }

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

  .footer-nav a:hover,
  .footer-contact a:hover,
  .social-links a:hover,
  .footer-bottom a:hover {
    color: #000;
    text-decoration: underline;
  }

  .footer-contact p {
    margin: 0 0 0.5rem 0;
    line-height: 1.4;
  }

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

  .social-links a {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background-color: #e9ecef;
    border-radius: 4px;
    font-weight: bold;
  }

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

  .footer-bottom p {
    margin: 0;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            transform: translateY(20px);
        }
    }

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

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

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

.terms-items {

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
}

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

.main-nav {
    display: block;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .footer-disclaimer {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.4;
    margin: 0;
  }

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

  .footer-nav li {
    margin-bottom: 0.5rem;
  }

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

  .footer-nav a:hover,
  .footer-contact a:hover,
  .social-links a:hover,
  .footer-bottom a:hover {
    color: #000;
    text-decoration: underline;
  }

  .footer-contact p {
    margin: 0 0 0.5rem 0;
    line-height: 1.4;
  }

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

  .social-links a {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background-color: #e9ecef;
    border-radius: 4px;
    font-weight: bold;
  }

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

  .footer-bottom p {
    margin: 0;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            transform: translateY(20px);
        }
    }

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

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

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

.thanks-light {

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
}

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

.main-nav {
    display: block;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .footer-disclaimer {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.4;
    margin: 0;
  }

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

  .footer-nav li {
    margin-bottom: 0.5rem;
  }

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

  .footer-nav a:hover,
  .footer-contact a:hover,
  .social-links a:hover,
  .footer-bottom a:hover {
    color: #000;
    text-decoration: underline;
  }

  .footer-contact p {
    margin: 0 0 0.5rem 0;
    line-height: 1.4;
  }

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

  .social-links a {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background-color: #e9ecef;
    border-radius: 4px;
    font-weight: bold;
  }

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

  .footer-bottom p {
    margin: 0;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            transform: translateY(20px);
        }
    }

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

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

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

.error-404 {

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

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

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

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

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

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

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

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

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

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

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

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

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

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