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

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

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

  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);

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

  --brand: #2c5282;
  --brand-contrast: #ffffff;
  --accent: #3182ce;
  --accent-contrast: #ffffff;

  --neutral-0: #ffffff;
  --neutral-100: #f7fafc;
  --neutral-300: #e2e8f0;
  --neutral-600: #718096;
  --neutral-800: #2d3748;
  --neutral-900: #1a202c;

  --bg-page: #ffffff;
  --fg-on-page: #2d3748;

  --bg-alt: #f7fafc;
  --fg-on-alt: #4a5568;

  --surface-1: #ffffff;
  --surface-2: #f7fafc;
  --fg-on-surface: #2d3748;
  --border-on-surface: #e2e8f0;

  --surface-light: #ffffff;
  --fg-on-surface-light: #4a5568;
  --border-on-surface-light: #e2e8f0;

  --bg-primary: #2c5282;
  --fg-on-primary: #ffffff;
  --bg-primary-hover: #2a4365;
  --ring: #3182ce;

  --bg-accent: #ebf8ff;
  --fg-on-accent: #2c5282;
  --bg-accent-hover: #2b6cb0;

  --success: #38a169;
  --success-contrast: #ffffff;
  --warning: #d69e2e;
  --warning-contrast: #1a202c;
  --danger: #e53e3e;
  --danger-contrast: #ffffff;

  --link: #3182ce;
  --link-hover: #2c5282;

  --gradient-hero: linear-gradient(135deg, #ebf8ff 0%, #ffffff 100%);
  --gradient-accent: linear-gradient(90deg, #3182ce 0%, #2c5282 100%);

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

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

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

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

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

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

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

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

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

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

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

.header__burger span {
    display: block;
    height: 2px;
    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);
}

.header__nav {
    display: flex;
}

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

.header__link {
    color: var(--fg-on-surface);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}

.header__link:hover {
    background-color: var(--bg-alt);
    color: var(--link-hover);
}

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

    .header__nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: var(--surface-2);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right var(--anim-duration) var(--anim-ease);
        box-shadow: var(--shadow-lg);
        z-index: 100;
    }

    .header__nav.is-active {
        right: 0;
    }

    .header__menu {
        flex-direction: column;
        align-items: center;
        gap: calc(var(--gap) * 2);
    }

    .header__burger[aria-expanded="true"] span:nth-child(1) {
        transform: translateY(0.65rem) rotate(45deg);
    }

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

    .header__burger[aria-expanded="true"] span:nth-child(3) {
        transform: translateY(-0.65rem) rotate(-45deg);
    }
}

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

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        gap: 2.5rem;
        justify-content: space-between;
        padding-bottom: 2rem;
        border-bottom: 1px solid #e9ecef;
    }

    .footer-section {
        flex: 1;
        min-width: 200px;
    }

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

    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 0.7rem;
    }

    .footer-nav a {
        color: #495057;
        text-decoration: none;
        transition: color 0.2s;
    }

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

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

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

    .footer-contact a {
        color: #495057;
        text-decoration: none;
    }

    .footer-contact a:hover {
        color: #007bff;
        text-decoration: underline;
    }

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

    .footer-social a {
        display: inline-block;
        padding: 0.4rem 0.8rem;
        background-color: #6c757d;
        color: white;
        border-radius: 4px;
        text-decoration: none;
        font-weight: bold;
        transition: background-color 0.2s;
    }

    .footer-social a:hover {
        background-color: #5a6268;
    }

    .footer-bottom {
        max-width: 1200px;
        margin: 1.5rem auto 0;
        text-align: center;
        color: #6c757d;
        font-size: 0.9rem;
        display: flex;
        flex-direction: column;
        gap: 0.8rem;
    }

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

    .footer-legal a {
        color: #6c757d;
        text-decoration: none;
    }

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

    .disclaimer {
        font-style: italic;
        margin-top: 0.5rem;
    }

    @media (max-width: 768px) {
        .footer-container {
            flex-direction: column;
            gap: 2rem;
        }

        .footer-nav ul {
            flex-direction: row;
            flex-wrap: wrap;
            gap: 1.5rem;
        }

        .footer-bottom {
            text-align: left;
        }

        .footer-legal {
            justify-content: flex-start;
            gap: 1rem;
        }
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .index-cta p {
        margin: 0;
        color: var(--neutral-600);
        font-size: var(--font-size-base);
        line-height: var(--line-height-base);
        max-width: 90%;
    }

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

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

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

    .slider .slider__container {
        position: relative;
        min-height: 400px;
    }

    .slider .slider__slide {
        display: none;
        background: var(--surface-1);
        border-radius: var(--radius-xl);
        overflow: hidden;
        box-shadow: var(--shadow-md);
    }

    .slider .slider__slide:first-child {
        display: block;
    }

    .slider .slider__image {
        width: 100%;
        height: 300px;
        overflow: hidden;
    }

    .slider .slider__image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform var(--anim-duration) var(--anim-ease);
    }

    .slider .slider__slide:hover .slider__image img {
        transform: scale(1.03);
    }

    .slider .slider__content {
        padding: clamp(24px, 4vw, 40px);
        text-align: center;
    }

    .slider .slider__content h3 {
        font-size: clamp(22px, 3.5vw, 28px);
        margin: 0 0 1rem;
        color: var(--fg-on-surface);
    }

    .slider .slider__content p {
        font-size: clamp(16px, 2.5vw, 18px);
        line-height: 1.6;
        color: var(--neutral-600);
        margin: 0;
    }

    .slider .slider__dots {
        display: flex;
        justify-content: center;
        gap: 12px;
        margin-top: clamp(24px, 4vw, 32px);
    }

    .slider .dot {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: var(--neutral-300);
        cursor: pointer;
        transition: background var(--anim-duration) var(--anim-ease);
    }

    .slider .dot.active {
        background: var(--bg-accent);
    }

    .slider .dot:hover {
        background: var(--neutral-600);
    }

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

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

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

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

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

.header__burger span {
    display: block;
    height: 2px;
    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);
}

.header__nav {
    display: flex;
}

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

.header__link {
    color: var(--fg-on-surface);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}

.header__link:hover {
    background-color: var(--bg-alt);
    color: var(--link-hover);
}

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

    .header__nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: var(--surface-2);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right var(--anim-duration) var(--anim-ease);
        box-shadow: var(--shadow-lg);
        z-index: 100;
    }

    .header__nav.is-active {
        right: 0;
    }

    .header__menu {
        flex-direction: column;
        align-items: center;
        gap: calc(var(--gap) * 2);
    }

    .header__burger[aria-expanded="true"] span:nth-child(1) {
        transform: translateY(0.65rem) rotate(45deg);
    }

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

    .header__burger[aria-expanded="true"] span:nth-child(3) {
        transform: translateY(-0.65rem) rotate(-45deg);
    }
}

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

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        gap: 2.5rem;
        justify-content: space-between;
        padding-bottom: 2rem;
        border-bottom: 1px solid #e9ecef;
    }

    .footer-section {
        flex: 1;
        min-width: 200px;
    }

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

    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 0.7rem;
    }

    .footer-nav a {
        color: #495057;
        text-decoration: none;
        transition: color 0.2s;
    }

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

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

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

    .footer-contact a {
        color: #495057;
        text-decoration: none;
    }

    .footer-contact a:hover {
        color: #007bff;
        text-decoration: underline;
    }

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

    .footer-social a {
        display: inline-block;
        padding: 0.4rem 0.8rem;
        background-color: #6c757d;
        color: white;
        border-radius: 4px;
        text-decoration: none;
        font-weight: bold;
        transition: background-color 0.2s;
    }

    .footer-social a:hover {
        background-color: #5a6268;
    }

    .footer-bottom {
        max-width: 1200px;
        margin: 1.5rem auto 0;
        text-align: center;
        color: #6c757d;
        font-size: 0.9rem;
        display: flex;
        flex-direction: column;
        gap: 0.8rem;
    }

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

    .footer-legal a {
        color: #6c757d;
        text-decoration: none;
    }

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

    .disclaimer {
        font-style: italic;
        margin-top: 0.5rem;
    }

    @media (max-width: 768px) {
        .footer-container {
            flex-direction: column;
            gap: 2rem;
        }

        .footer-nav ul {
            flex-direction: row;
            flex-wrap: wrap;
            gap: 1.5rem;
        }

        .footer-bottom {
            text-align: left;
        }

        .footer-legal {
            justify-content: flex-start;
            gap: 1rem;
        }
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.about__text {
    margin: 0;
    color: var(--neutral-600);
    line-height: 1.7;
}

.about__highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 12px;
}

.about__highlight {
    background: var(--bg-page);
    border-radius: var(--radius-lg);
    padding: 12px 14px;
    border: 1px solid var(--border-on-surface-light);
}

.about__highlight-label {
    display: block;
    font-size: 0.8rem;
    color: var(--neutral-600);
}

.about__highlight-value {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--fg-on-page);
}

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

.testimonials {
        font-family: var(--font-family);
        color: var(--fg-on-primary);
        background: var(--gradient-hero);
        padding: clamp(32px, 5vw, 64px) clamp(16px, 4vw, 40px);
    }

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

    .testimonials .testimonials__h {
        text-align: center;
        margin-bottom: clamp(40px, 6vw, 64px);
    }

    .testimonials h1 {
        font-size: clamp(32px, 6vw, 56px);
        margin: 0 0 0.75rem;
        color: var(--fg-on-primary);
        font-weight: 700;
    }

    .testimonials .testimonials__h p {
        font-size: clamp(16px, 2.4vw, 20px);
        opacity: 0.9;
        margin: 0;
    }

    .testimonials .testimonials__carousel {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: clamp(24px, 4vw, 40px);
        margin-bottom: clamp(32px, 5vw, 48px);
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        
    }

    /* Pokud randomNumber sudé (2) - první dítě dostane order: 2 */
    .testimonials .testimonials__carousel > *:first-child {
        order: calc((var(--random-number) % 2) * 2);
    }

    .testimonials .testimonials__slide {
        scroll-snap-align: start;
        min-width: 320px;
    }

    .testimonials .testimonials__card {
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(12px);
        border: 1px solid rgba(255, 255, 255, 0.25);
        border-radius: var(--radius-xl);
        padding: clamp(28px, 4vw, 40px);
        box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
        transition: all var(--anim-duration) var(--anim-ease);
        height: 100%;
        display: flex;
        flex-direction: column;
    }

    .testimonials .testimonials__card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 48px rgba(0, 0, 0, 0.3);
        border-color: rgba(255, 255, 255, 0.4);
    }

    .testimonials .testimonials__avatar-wrapper {
        position: relative;
        width: 80px;
        height: 80px;
        margin: 0 auto clamp(20px, 3vw, 28px);
    }

    .testimonials .testimonials__avatar {
        width: 100%;
        height: 100%;
        border-radius: 50%;
        background: var(--fg-on-primary);
        color: var(--bg-primary);
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        font-size: 1.5rem;
        border: 4px solid rgba(255, 255, 255, 0.3);
    }

    .testimonials .testimonials__badge {
        position: absolute;
        bottom: 0;
        right: 0;
        width: 28px;
        height: 28px;
        border-radius: 50%;
        background: var(--success);
        color: var(--success-contrast);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.875rem;
        border: 3px solid var(--fg-on-primary);
    }

    .testimonials .testimonials__content {
        text-align: center;
        flex: 1;
        display: flex;
        flex-direction: column;
    }

    .testimonials .testimonials__stars {
        font-size: 1.125rem;
        margin-bottom: clamp(16px, 2.5vw, 24px);
        letter-spacing: 2px;
    }

    .testimonials .testimonials__text {
        color: var(--fg-on-primary);
        line-height: 1.8;
        margin: 0 0 clamp(24px, 3.5vw, 32px);
        font-size: clamp(15px, 2vw, 17px);
        font-style: italic;
        flex: 1;
    }

    .testimonials .testimonials__author {
        margin-top: auto;
    }

    .testimonials h4 {
        margin: 0 0 0.25rem;
        color: var(--fg-on-primary);
        font-size: clamp(18px, 2.2vw, 20px);
        font-weight: 600;
    }

    .testimonials .testimonials__role {
        font-size: 0.875rem;
        opacity: 0.85;
        color: var(--fg-on-primary);
    }

    .testimonials .testimonials__dots {
        display: flex;
        justify-content: center;
        gap: 0.75rem;
    }

    /* Pokud randomNumber sudé (2) - první dítě dostane order: 2 */
    .testimonials .testimonials__dots > *:first-child {
        order: calc((var(--random-number) % 2) * 2);
    }

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

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

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

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

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

.header__burger span {
    display: block;
    height: 2px;
    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);
}

.header__nav {
    display: flex;
}

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

.header__link {
    color: var(--fg-on-surface);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}

.header__link:hover {
    background-color: var(--bg-alt);
    color: var(--link-hover);
}

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

    .header__nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: var(--surface-2);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right var(--anim-duration) var(--anim-ease);
        box-shadow: var(--shadow-lg);
        z-index: 100;
    }

    .header__nav.is-active {
        right: 0;
    }

    .header__menu {
        flex-direction: column;
        align-items: center;
        gap: calc(var(--gap) * 2);
    }

    .header__burger[aria-expanded="true"] span:nth-child(1) {
        transform: translateY(0.65rem) rotate(45deg);
    }

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

    .header__burger[aria-expanded="true"] span:nth-child(3) {
        transform: translateY(-0.65rem) rotate(-45deg);
    }
}

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

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        gap: 2.5rem;
        justify-content: space-between;
        padding-bottom: 2rem;
        border-bottom: 1px solid #e9ecef;
    }

    .footer-section {
        flex: 1;
        min-width: 200px;
    }

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

    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 0.7rem;
    }

    .footer-nav a {
        color: #495057;
        text-decoration: none;
        transition: color 0.2s;
    }

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

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

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

    .footer-contact a {
        color: #495057;
        text-decoration: none;
    }

    .footer-contact a:hover {
        color: #007bff;
        text-decoration: underline;
    }

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

    .footer-social a {
        display: inline-block;
        padding: 0.4rem 0.8rem;
        background-color: #6c757d;
        color: white;
        border-radius: 4px;
        text-decoration: none;
        font-weight: bold;
        transition: background-color 0.2s;
    }

    .footer-social a:hover {
        background-color: #5a6268;
    }

    .footer-bottom {
        max-width: 1200px;
        margin: 1.5rem auto 0;
        text-align: center;
        color: #6c757d;
        font-size: 0.9rem;
        display: flex;
        flex-direction: column;
        gap: 0.8rem;
    }

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

    .footer-legal a {
        color: #6c757d;
        text-decoration: none;
    }

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

    .disclaimer {
        font-style: italic;
        margin-top: 0.5rem;
    }

    @media (max-width: 768px) {
        .footer-container {
            flex-direction: column;
            gap: 2rem;
        }

        .footer-nav ul {
            flex-direction: row;
            flex-wrap: wrap;
            gap: 1.5rem;
        }

        .footer-bottom {
            text-align: left;
        }

        .footer-legal {
            justify-content: flex-start;
            gap: 1rem;
        }
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .advantages .advantages__header {
        text-align: center;
        margin-bottom: clamp(32px, 5vw, 48px);
    }

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

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

    .advantages .advantages__grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: clamp(24px, 4vw, 40px);
    }

    .advantages .advantages__item {
        text-align: center;
        padding: clamp(24px, 4vw, 32px);
        background: var(--bg-page);
        border-radius: var(--radius-lg);
    }

    .advantages .advantages__icon {
        font-size: clamp(48px, 8vw, 80px);
        margin: 0 auto clamp(16px, 3vw, 24px);
        display: flex;
        align-items: center;
        justify-content: center;
        width: clamp(80px, 12vw, 120px);
        height: clamp(80px, 12vw, 120px);
        background: var(--bg-accent);
        border-radius: 50%;
    }

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

    .advantages .advantages__item p {
        font-size: clamp(14px, 2vw, 16px);
        line-height: 1.6;
        color: var(--neutral-600);
        margin: 0;
    }

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

    .index-features-v5 .index-features-v5__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .index-features-v5 .index-features-v5__h {
        text-align: center;
        margin-bottom: var(--space-y);
    }

    .index-features-v5 h2 {
        font-size: clamp(24px, 4vw, 30px);
        font-weight: 700;
        margin: 0 0 0.5rem;
        color: var(--fg-on-page);
    }

    .index-features-v5 .index-features-v5__grid {
        display: grid;
        gap: var(--space-x);
    }

    @media (min-width: 768px) {
        .index-features-v5 .index-features-v5__grid {
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }
    }

    @media (min-width: 1024px) {
        .index-features-v5 .index-features-v5__grid {
            grid-template-columns: repeat(3, minmax(0, 1fr));
        }
    }

    .index-features-v5 .index-features-v5__card {
        background: var(--card-bg-light);
        border: 1px solid var(--ring);
        padding: clamp(16px, 2vw, 24px);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-md);
        transition: transform var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
    }

    .index-features-v5 .index-features-v5__card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-lg);
    }

    .index-features-v5 .index-features-v5__icon {
        font-size: clamp(24px, 3vw, 48px);
        margin-bottom: 1rem;
        line-height: 1;
    }

    .index-features-v5 .index-features-v5__icon img {
        width: 48px;
        height: 48px;
    }

    .index-features-v5 h3 {
        font-size: clamp(18px, 2.2vw, 20px);
        font-weight: 600;
        margin: 0 0 0.75rem;
        color: var(--fg-on-page);
    }

    .index-features-v5 p {
        font-size: clamp(14px, 1.8vw, 16px);
        color: var(--neutral-600);
        margin: 0;
        line-height: 1.6;
    }

    @media (max-width: 767px) {
        .index-features-v5 .index-features-v5__grid {
            grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
        }
    }

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

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

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

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

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

.header__burger span {
    display: block;
    height: 2px;
    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);
}

.header__nav {
    display: flex;
}

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

.header__link {
    color: var(--fg-on-surface);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}

.header__link:hover {
    background-color: var(--bg-alt);
    color: var(--link-hover);
}

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

    .header__nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: var(--surface-2);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right var(--anim-duration) var(--anim-ease);
        box-shadow: var(--shadow-lg);
        z-index: 100;
    }

    .header__nav.is-active {
        right: 0;
    }

    .header__menu {
        flex-direction: column;
        align-items: center;
        gap: calc(var(--gap) * 2);
    }

    .header__burger[aria-expanded="true"] span:nth-child(1) {
        transform: translateY(0.65rem) rotate(45deg);
    }

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

    .header__burger[aria-expanded="true"] span:nth-child(3) {
        transform: translateY(-0.65rem) rotate(-45deg);
    }
}

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

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        gap: 2.5rem;
        justify-content: space-between;
        padding-bottom: 2rem;
        border-bottom: 1px solid #e9ecef;
    }

    .footer-section {
        flex: 1;
        min-width: 200px;
    }

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

    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 0.7rem;
    }

    .footer-nav a {
        color: #495057;
        text-decoration: none;
        transition: color 0.2s;
    }

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

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

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

    .footer-contact a {
        color: #495057;
        text-decoration: none;
    }

    .footer-contact a:hover {
        color: #007bff;
        text-decoration: underline;
    }

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

    .footer-social a {
        display: inline-block;
        padding: 0.4rem 0.8rem;
        background-color: #6c757d;
        color: white;
        border-radius: 4px;
        text-decoration: none;
        font-weight: bold;
        transition: background-color 0.2s;
    }

    .footer-social a:hover {
        background-color: #5a6268;
    }

    .footer-bottom {
        max-width: 1200px;
        margin: 1.5rem auto 0;
        text-align: center;
        color: #6c757d;
        font-size: 0.9rem;
        display: flex;
        flex-direction: column;
        gap: 0.8rem;
    }

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

    .footer-legal a {
        color: #6c757d;
        text-decoration: none;
    }

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

    .disclaimer {
        font-style: italic;
        margin-top: 0.5rem;
    }

    @media (max-width: 768px) {
        .footer-container {
            flex-direction: column;
            gap: 2rem;
        }

        .footer-nav ul {
            flex-direction: row;
            flex-wrap: wrap;
            gap: 1.5rem;
        }

        .footer-bottom {
            text-align: left;
        }

        .footer-legal {
            justify-content: flex-start;
            gap: 1rem;
        }
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .policy-contacts .policy-contacts__mini {

        margin-bottom: 1rem;
        align-items: center;
    }

    .policy-contacts .policy-contacts__mini label:not(.policy-contacts__agree) {
        margin-top: var(--space-y);
        display: grid;
        gap: 6px;
        color: black;
        font-size: var(--space-x);
    }

    .policy-contacts .policy-contacts__mini input {
        padding: .7rem 1rem;
        border: 1px solid var(--ring);
        border-radius: var(--radius-md);
    }

    .policy-contacts .policy-contacts__agree {
        display: flex;
        align-items: center;
        gap: .5rem;
        color: var(--neutral-600);
        margin: 1rem 0
    }

    .policy-contacts button {
        padding: .75rem 1rem;
        border-radius: var(--radius-md);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border: 0;
    }

    .policy-contacts .item {
        color: black
    }

.glossary {
        font-family: var(--font-family);
        color: var(--fg-on-page);
        background: var(--bg-page);
        padding: clamp(var(--space-y), 5vw, calc(var(--space-y) * 2)) clamp(var(--space-x), 4vw, calc(var(--space-x) * 1.5));
    }

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

    .glossary .glossary__header {
        text-align: center;
        margin-bottom: clamp(32px, 5vw, 48px);
    }

    .glossary .glossary__header h2 {
        font-size: clamp(28px, 4vw, 36px);
        margin: 0 0 0.75rem;
        color: var(--neutral-900);
    }

    .glossary .glossary__header p {
        font-size: clamp(16px, 2.2vw, 18px);
        line-height: var(--line-height-base);
        color: var(--neutral-600);
        max-width: 700px;
        margin: 0 auto;
    }

    .glossary .glossary__grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: var(--gap);
    }

    .glossary .glossary__card {
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        padding: clamp(20px, 3vw, 24px);
        transition: all var(--anim-duration) var(--anim-ease);
        box-shadow: var(--shadow-sm);
        display: flex;
        flex-direction: column;
    }

    .glossary .glossary__card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-md);
        border-color: var(--brand);
    }

    .glossary .glossary__card-header {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        margin-bottom: 1rem;
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .glossary .glossary__term {
        font-size: clamp(18px, 2.5vw, 20px);
        margin: 0;
        color: var(--neutral-900);
        font-weight: 600;
    }

    .glossary .glossary__category {
        font-size: clamp(12px, 1.8vw, 14px);
        color: var(--brand-contrast);
        background: var(--brand);
        padding: 0.25rem 0.75rem;
        border-radius: var(--radius-sm);
        font-weight: 500;
        white-space: nowrap;
    }

    .glossary .glossary__definition {
        font-size: clamp(15px, 2.2vw, 16px);
        line-height: 1.7;
        color: var(--neutral-800);
        margin: 0 0 1rem;
        flex-grow: 1;
    }

    .glossary .glossary__example {
        font-size: clamp(14px, 2vw, 15px);
        line-height: 1.6;
        color: var(--neutral-600);
        background: var(--bg-alt);
        padding: 0.75rem;
        border-radius: var(--radius-md);
        border-left: 3px solid var(--accent);
    }

    .glossary .glossary__example strong {
        color: var(--accent);
    }

    @media (max-width: 768px) {
        .glossary .glossary__grid {
            grid-template-columns: 1fr;
        }
    }

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

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

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

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

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

.header__burger span {
    display: block;
    height: 2px;
    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);
}

.header__nav {
    display: flex;
}

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

.header__link {
    color: var(--fg-on-surface);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}

.header__link:hover {
    background-color: var(--bg-alt);
    color: var(--link-hover);
}

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

    .header__nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: var(--surface-2);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right var(--anim-duration) var(--anim-ease);
        box-shadow: var(--shadow-lg);
        z-index: 100;
    }

    .header__nav.is-active {
        right: 0;
    }

    .header__menu {
        flex-direction: column;
        align-items: center;
        gap: calc(var(--gap) * 2);
    }

    .header__burger[aria-expanded="true"] span:nth-child(1) {
        transform: translateY(0.65rem) rotate(45deg);
    }

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

    .header__burger[aria-expanded="true"] span:nth-child(3) {
        transform: translateY(-0.65rem) rotate(-45deg);
    }
}

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

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        gap: 2.5rem;
        justify-content: space-between;
        padding-bottom: 2rem;
        border-bottom: 1px solid #e9ecef;
    }

    .footer-section {
        flex: 1;
        min-width: 200px;
    }

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

    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 0.7rem;
    }

    .footer-nav a {
        color: #495057;
        text-decoration: none;
        transition: color 0.2s;
    }

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

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

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

    .footer-contact a {
        color: #495057;
        text-decoration: none;
    }

    .footer-contact a:hover {
        color: #007bff;
        text-decoration: underline;
    }

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

    .footer-social a {
        display: inline-block;
        padding: 0.4rem 0.8rem;
        background-color: #6c757d;
        color: white;
        border-radius: 4px;
        text-decoration: none;
        font-weight: bold;
        transition: background-color 0.2s;
    }

    .footer-social a:hover {
        background-color: #5a6268;
    }

    .footer-bottom {
        max-width: 1200px;
        margin: 1.5rem auto 0;
        text-align: center;
        color: #6c757d;
        font-size: 0.9rem;
        display: flex;
        flex-direction: column;
        gap: 0.8rem;
    }

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

    .footer-legal a {
        color: #6c757d;
        text-decoration: none;
    }

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

    .disclaimer {
        font-style: italic;
        margin-top: 0.5rem;
    }

    @media (max-width: 768px) {
        .footer-container {
            flex-direction: column;
            gap: 2rem;
        }

        .footer-nav ul {
            flex-direction: row;
            flex-wrap: wrap;
            gap: 1.5rem;
        }

        .footer-bottom {
            text-align: left;
        }

        .footer-legal {
            justify-content: flex-start;
            gap: 1rem;
        }
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.header__burger span {
    display: block;
    height: 2px;
    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);
}

.header__nav {
    display: flex;
}

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

.header__link {
    color: var(--fg-on-surface);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}

.header__link:hover {
    background-color: var(--bg-alt);
    color: var(--link-hover);
}

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

    .header__nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: var(--surface-2);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right var(--anim-duration) var(--anim-ease);
        box-shadow: var(--shadow-lg);
        z-index: 100;
    }

    .header__nav.is-active {
        right: 0;
    }

    .header__menu {
        flex-direction: column;
        align-items: center;
        gap: calc(var(--gap) * 2);
    }

    .header__burger[aria-expanded="true"] span:nth-child(1) {
        transform: translateY(0.65rem) rotate(45deg);
    }

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

    .header__burger[aria-expanded="true"] span:nth-child(3) {
        transform: translateY(-0.65rem) rotate(-45deg);
    }
}

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

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        gap: 2.5rem;
        justify-content: space-between;
        padding-bottom: 2rem;
        border-bottom: 1px solid #e9ecef;
    }

    .footer-section {
        flex: 1;
        min-width: 200px;
    }

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

    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 0.7rem;
    }

    .footer-nav a {
        color: #495057;
        text-decoration: none;
        transition: color 0.2s;
    }

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

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

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

    .footer-contact a {
        color: #495057;
        text-decoration: none;
    }

    .footer-contact a:hover {
        color: #007bff;
        text-decoration: underline;
    }

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

    .footer-social a {
        display: inline-block;
        padding: 0.4rem 0.8rem;
        background-color: #6c757d;
        color: white;
        border-radius: 4px;
        text-decoration: none;
        font-weight: bold;
        transition: background-color 0.2s;
    }

    .footer-social a:hover {
        background-color: #5a6268;
    }

    .footer-bottom {
        max-width: 1200px;
        margin: 1.5rem auto 0;
        text-align: center;
        color: #6c757d;
        font-size: 0.9rem;
        display: flex;
        flex-direction: column;
        gap: 0.8rem;
    }

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

    .footer-legal a {
        color: #6c757d;
        text-decoration: none;
    }

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

    .disclaimer {
        font-style: italic;
        margin-top: 0.5rem;
    }

    @media (max-width: 768px) {
        .footer-container {
            flex-direction: column;
            gap: 2rem;
        }

        .footer-nav ul {
            flex-direction: row;
            flex-wrap: wrap;
            gap: 1.5rem;
        }

        .footer-bottom {
            text-align: left;
        }

        .footer-legal {
            justify-content: flex-start;
            gap: 1rem;
        }
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .terms-items h1 {
        margin: 0 0 2.5rem;
        font-size: clamp(28px, 5vw, 48px);
        color: black;
        text-align: center;
    }

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

    .terms-items__card {
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-sm);
        transition: box-shadow var(--anim-duration) var(--anim-ease);
    }

    .terms-items__card:hover {
        box-shadow: var(--shadow-md);
    }

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

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

    .terms-items__text a {
        color: var(--link);
        text-decoration: underline;
    }

    .terms-items__text a:hover {
        color: var(--link-hover);
    }

    @media (max-width: 1023px) {
        .terms-items__grid {
            grid-template-columns: 1fr;
        }
    }

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

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

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

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

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

.header__burger span {
    display: block;
    height: 2px;
    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);
}

.header__nav {
    display: flex;
}

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

.header__link {
    color: var(--fg-on-surface);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}

.header__link:hover {
    background-color: var(--bg-alt);
    color: var(--link-hover);
}

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

    .header__nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: var(--surface-2);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right var(--anim-duration) var(--anim-ease);
        box-shadow: var(--shadow-lg);
        z-index: 100;
    }

    .header__nav.is-active {
        right: 0;
    }

    .header__menu {
        flex-direction: column;
        align-items: center;
        gap: calc(var(--gap) * 2);
    }

    .header__burger[aria-expanded="true"] span:nth-child(1) {
        transform: translateY(0.65rem) rotate(45deg);
    }

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

    .header__burger[aria-expanded="true"] span:nth-child(3) {
        transform: translateY(-0.65rem) rotate(-45deg);
    }
}

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

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        gap: 2.5rem;
        justify-content: space-between;
        padding-bottom: 2rem;
        border-bottom: 1px solid #e9ecef;
    }

    .footer-section {
        flex: 1;
        min-width: 200px;
    }

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

    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 0.7rem;
    }

    .footer-nav a {
        color: #495057;
        text-decoration: none;
        transition: color 0.2s;
    }

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

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

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

    .footer-contact a {
        color: #495057;
        text-decoration: none;
    }

    .footer-contact a:hover {
        color: #007bff;
        text-decoration: underline;
    }

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

    .footer-social a {
        display: inline-block;
        padding: 0.4rem 0.8rem;
        background-color: #6c757d;
        color: white;
        border-radius: 4px;
        text-decoration: none;
        font-weight: bold;
        transition: background-color 0.2s;
    }

    .footer-social a:hover {
        background-color: #5a6268;
    }

    .footer-bottom {
        max-width: 1200px;
        margin: 1.5rem auto 0;
        text-align: center;
        color: #6c757d;
        font-size: 0.9rem;
        display: flex;
        flex-direction: column;
        gap: 0.8rem;
    }

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

    .footer-legal a {
        color: #6c757d;
        text-decoration: none;
    }

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

    .disclaimer {
        font-style: italic;
        margin-top: 0.5rem;
    }

    @media (max-width: 768px) {
        .footer-container {
            flex-direction: column;
            gap: 2rem;
        }

        .footer-nav ul {
            flex-direction: row;
            flex-wrap: wrap;
            gap: 1.5rem;
        }

        .footer-bottom {
            text-align: left;
        }

        .footer-legal {
            justify-content: flex-start;
            gap: 1rem;
        }
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.header__burger span {
    display: block;
    height: 2px;
    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);
}

.header__nav {
    display: flex;
}

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

.header__link {
    color: var(--fg-on-surface);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}

.header__link:hover {
    background-color: var(--bg-alt);
    color: var(--link-hover);
}

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

    .header__nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: var(--surface-2);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right var(--anim-duration) var(--anim-ease);
        box-shadow: var(--shadow-lg);
        z-index: 100;
    }

    .header__nav.is-active {
        right: 0;
    }

    .header__menu {
        flex-direction: column;
        align-items: center;
        gap: calc(var(--gap) * 2);
    }

    .header__burger[aria-expanded="true"] span:nth-child(1) {
        transform: translateY(0.65rem) rotate(45deg);
    }

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

    .header__burger[aria-expanded="true"] span:nth-child(3) {
        transform: translateY(-0.65rem) rotate(-45deg);
    }
}

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

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        gap: 2.5rem;
        justify-content: space-between;
        padding-bottom: 2rem;
        border-bottom: 1px solid #e9ecef;
    }

    .footer-section {
        flex: 1;
        min-width: 200px;
    }

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

    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 0.7rem;
    }

    .footer-nav a {
        color: #495057;
        text-decoration: none;
        transition: color 0.2s;
    }

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

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

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

    .footer-contact a {
        color: #495057;
        text-decoration: none;
    }

    .footer-contact a:hover {
        color: #007bff;
        text-decoration: underline;
    }

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

    .footer-social a {
        display: inline-block;
        padding: 0.4rem 0.8rem;
        background-color: #6c757d;
        color: white;
        border-radius: 4px;
        text-decoration: none;
        font-weight: bold;
        transition: background-color 0.2s;
    }

    .footer-social a:hover {
        background-color: #5a6268;
    }

    .footer-bottom {
        max-width: 1200px;
        margin: 1.5rem auto 0;
        text-align: center;
        color: #6c757d;
        font-size: 0.9rem;
        display: flex;
        flex-direction: column;
        gap: 0.8rem;
    }

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

    .footer-legal a {
        color: #6c757d;
        text-decoration: none;
    }

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

    .disclaimer {
        font-style: italic;
        margin-top: 0.5rem;
    }

    @media (max-width: 768px) {
        .footer-container {
            flex-direction: column;
            gap: 2rem;
        }

        .footer-nav ul {
            flex-direction: row;
            flex-wrap: wrap;
            gap: 1.5rem;
        }

        .footer-bottom {
            text-align: left;
        }

        .footer-legal {
            justify-content: flex-start;
            gap: 1rem;
        }
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.not-found__inner {
    max-width: 520px;
    margin: 0 auto;
    text-align: center;
}

.not-found__code {
    font-size: clamp(56px, 16vw, 96px);
    font-weight: 700;
    color: var(--neutral-800);
}

.not-found__text {
    margin-top: 10px;
    color: var(--neutral-600);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    margin-bottom: var(--space-y);
}

.not-found__actions {
    display: flex;
    flex-direction: column;
    gap: var(--gap);
    margin-top: var(--space-y);
    margin-bottom: var(--space-y);
}

.not-found__btn {
    display: inline-block;
    padding: 12px 32px;
    background: var(--btn-primary-bg);
    color: var(--btn-primary-fg);
    text-decoration: none;
    border-radius: var(--radius-lg);
    font-weight: 600;
    transition: background-color var(--anim-duration) var(--anim-ease);
}

.not-found__btn:hover {
    background: var(--btn-primary-bg-hover);
}

.not-found__search {
    display: flex;
    gap: 8px;
    justify-content: center;
}

.not-found__search-input {
    flex-grow: 1;
    max-width: 300px;
    padding: 12px 16px;
    border: 1px solid var(--input-border);
    background: var(--input-bg);
    color: var(--input-fg);
    border-radius: var(--radius-md);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
}

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

.not-found__search-btn {
    padding: 12px 24px;
    background: var(--btn-ghost-bg);
    color: var(--btn-ghost-fg);
    border: 1px solid var(--border-on-surface);
    border-radius: var(--radius-md);
    cursor: pointer;
    font-family: var(--font-family);
    font-weight: 600;
    transition: background-color var(--anim-duration) var(--anim-ease);
}

.not-found__search-btn:hover {
    background: var(--btn-ghost-bg-hover);
}

.not-found__links {
    margin-top: var(--space-y);
    padding-top: var(--space-y);
    border-top: 1px solid var(--border-on-surface);
}

.not-found__links p {
    color: var(--neutral-600);
    margin-bottom: var(--gap);
}

.not-found__links ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--gap);
}

.not-found__links li a {
    color: var(--link);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--anim-duration) var(--anim-ease);
}

.not-found__links li a:hover {
    color: var(--link-hover);
    text-decoration: underline;
}