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

  --max-w: 1200px;
  --space-x: 1.5rem;
  --space-y: 1.25rem;
  --gap: 1rem;

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

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

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

  --brand: #1a365d;
  --brand-contrast: #ffffff;
  --accent: #d4a017;
  --accent-contrast: #ffffff;

  --neutral-0: #ffffff;
  --neutral-100: #f8f9fa;
  --neutral-300: #dee2e6;
  --neutral-600: #6c757d;
  --neutral-800: #343a40;
  --neutral-900: #212529;

  --bg-page: #ffffff;
  --fg-on-page: #212529;

  --bg-alt: #f8f9fa;
  --fg-on-alt: #343a40;

  --surface-1: #ffffff;
  --surface-2: #f8f9fa;
  --fg-on-surface: #212529;
  --border-on-surface: #dee2e6;

  --surface-light: rgba(255, 255, 255, 0.9);
  --fg-on-surface-light: #212529;
  --border-on-surface-light: rgba(222, 226, 230, 0.7);

  --bg-primary: #1a365d;
  --fg-on-primary: #ffffff;
  --bg-primary-hover: #2c5282;
  --ring: #d4a017;

  --bg-accent: #fef9e7;
  --fg-on-accent: #5d4200;
  --bg-accent-hover: #b8860b;

  --link: #1a365d;
  --link-hover: #2c5282;

  --gradient-hero: linear-gradient(135deg, #1a365d 0%, #2c5282 100%);
  --gradient-accent: linear-gradient(135deg, #d4a017 0%, #f4c542 100%);

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

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

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

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

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

.header-nav {
    display: flex;
}

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

.nav-item {
    margin: 0;
}

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

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

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

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

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

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

    .header-nav {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        background-color: var(--surface-1);
        width: 70%;
        max-width: 300px;
        padding: 5rem var(--space-x) var(--space-y);
        transform: translateX(100%);
        transition: transform var(--anim-duration) var(--anim-ease);
        box-shadow: var(--shadow-lg);
        z-index: 1000;
        flex-direction: column;
        overflow-y: auto;
    }

    .header-nav[data-visible="true"] {
        transform: translateX(0);
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
    }

    .nav-link {
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-sm);
    }

    .header-container {
        padding: calc(var(--space-y) * 0.75) var(--space-x);
    }
}

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        border-top: 1px solid #dee2e6;
        padding: 2.5rem 1rem 1rem;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        margin-top: auto;
    }

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

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

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

    .footer-disclaimer {
        font-size: 0.85rem;
        color: #6c757d;
        line-height: 1.4;
        margin-top: 0.5rem;
    }

    .footer-section h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
        color: #495057;
        border-bottom: 2px solid #e9ecef;
        padding-bottom: 0.5rem;
    }

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

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

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

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

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

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

    .footer-bottom a {
        color: #6c757d;
        text-decoration: none;
        margin: 0 0.3rem;
    }

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

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

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

        .footer-section h3 {
            border-bottom: none;
            border-left: 3px solid #007bff;
            padding-left: 0.75rem;
            text-align: left;
        }

        .footer-nav,
        .footer-social,
        .footer-contact {
            text-align: left;
        }
    }

.cookie-banner {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        top: auto;
        z-index: 1000;
        background: var(--bg-page);
        border-bottom: 2px solid var(--ring);
        box-shadow: 0 6px 20px rgba(0, 0, 0, .12);
        padding: clamp(20px, 3vw, 32px);
    }

    .cookie-banner__c {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 2rem;
        align-items: center;
    }

    .cookie-banner__content strong {
        display: block;
        font-size: 1.2rem;
        margin-bottom: 0.6rem;
        color: var(--fg-on-page);
        font-weight: 700;
    }

    .cookie-banner__content p {
        margin: 0;
        font-size: 1rem;
        color: var(--neutral-600);
        line-height: 1.6;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

.wp-lang-switcher-v2 {
        position: fixed;
        right: clamp(16px, 2vw, 24px);
        bottom: clamp(16px, 2vw, 24px);
        z-index: 99999;

        --local-random: var(--random-number, 1);
    }

    .wp-lang-switcher-v2__btn {
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
        padding: calc(10px + var(--local-random) * 2px) calc(16px + var(--local-random) * 2px);
        border-radius: calc(var(--radius-lg) + var(--local-random) * 4px);
        cursor: pointer;
        display: flex;
        gap: 10px;
        align-items: center;
        box-shadow: var(--shadow-lg);
        transition: all var(--anim-duration) var(--anim-ease);
        border: 2px solid transparent;
        position: relative;
        overflow: hidden;
    }

    .wp-lang-switcher-v2__btn::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 100%);

        transition: opacity var(--anim-duration) var(--anim-ease);
    }

    .wp-lang-switcher-v2__btn:hover {
        transform: translateY(calc(-2px - var(--local-random) * 1px));
        box-shadow: 0 12px 32px rgba(59, 130, 246, calc(0.3 + var(--local-random) * 0.1));
    }

    .wp-lang-switcher-v2__btn:hover::before {
        opacity: 1;
    }

    .wp-lang-switcher-v2__icon {
        font-size: calc(18px + var(--local-random) * 2px);
        animation: rotate calc(18s + var(--local-random) * 4s) linear infinite;
    }

    @keyframes rotate {
        from { transform: rotate(0deg); }
        to { transform: rotate(360deg); }
    }

    .wp-lang-switcher-v2__label {
        font-weight: 600;
        font-size: 14px;
        letter-spacing: calc(0.3px + var(--local-random) * 0.2px);
    }

    .wp-lang-switcher-v2__panel {
        display: none;
        position: absolute;
        right: 0;
        bottom: calc(100% + 12px);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: calc(var(--radius-lg) - var(--local-random) * 2px);
        overflow: hidden;
        box-shadow: var(--shadow-lg);
        min-width: calc(190px + var(--local-random) * 10px);

        transform: translateY(10px);
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .wp-lang-switcher-v2__panel.open {
        display: block;
        opacity: 1;
        transform: translateY(0);
    }

    .wp-lang-switcher-v2__panel button,
    .wp-lang-switcher-v2__panel a {
        width: 100%;
        text-align: left;
        padding: calc(10px + var(--local-random) * 2px) calc(14px + var(--local-random) * 2px);
        border: 0;
        background: var(--surface-1);
        color: var(--fg-on-surface);
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: 12px;

        font-size: 15px;
        transition: all var(--anim-duration) var(--anim-ease);
        position: relative;
        text-decoration: none;
    }

    .wp-lang-switcher-v2__panel button::before,
    .wp-lang-switcher-v2__panel a::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: calc(2px + var(--local-random) * 1px);
        background: var(--bg-primary);
        transform: scaleY(0);
        transition: transform var(--anim-duration) var(--anim-ease);
    }

    .wp-lang-switcher-v2__panel button:hover,
    .wp-lang-switcher-v2__panel a:hover {
        background: var(--bg-alt);
        padding-left: calc(18px + var(--local-random) * 4px);
    }

    .wp-lang-switcher-v2__panel button:hover::before,
    .wp-lang-switcher-v2__panel a:hover::before {
        transform: scaleY(1);
    }

    .wp-lang-switcher-v2__flag {
        font-size: 20px;
    }

.intro-focus {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        padding: clamp(60px, 10vw, 120px) clamp(16px, 3vw, 40px);
        position: relative;
        overflow: hidden;
    }

    .intro-focus::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -20%;
        width: 600px;
        height: 600px;
        background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
        animation: floatOrb 20s ease-in-out infinite;
    }

    @keyframes floatOrb {
        0%, 100% {
            transform: translate(0, 0) scale(1);
        }
        33% {
            transform: translate(-30px, 40px) scale(1.1);
        }
        66% {
            transform: translate(20px, -30px) scale(0.9);
        }
    }

    .intro-focus .intro-focus__c {
        max-width: var(--max-w);
        margin: 0 auto;
        position: relative;
        z-index: 1;
    }

    .intro-focus .intro-focus__content {
        max-width: 800px;

    }

    .intro-focus .intro-focus__badge {
        display: inline-block;
        padding: 0.5rem 1rem;
        background: var(--surface-light);
        color: var(--fg-on-surface-light);
        border-radius: var(--radius-xl);
        font-size: 0.875rem;
        font-weight: 600;
        margin-bottom: 1.5rem;

        transform: translateY(20px);
    }

    .intro-focus .intro-focus__title {
        font-size: clamp(36px, 7vw, 64px);
        font-weight: 800;
        margin: 0 0 1.5rem;
        line-height: 1.1;

        transform: translateY(30px);
    }

    .intro-focus .intro-focus__subtitle {
        font-size: clamp(18px, 2.5vw, 24px);
        margin: 0 0 2rem;
        opacity: 0.95;
        line-height: var(--line-height-base);

        transform: translateY(30px);
    }

    .intro-focus .intro-focus__highlight {
        display: inline-flex;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
        padding: 2rem 3rem;
        background: var(--surface-light);
        border-radius: var(--radius-lg);
        border: 2px solid rgba(255, 255, 255, 0.2);

        transform: scale(0.9);
    }

    .intro-focus .intro-focus__number {
        color: var(--fg-on-surface-light);
        font-size: clamp(48px, 8vw, 72px);
        font-weight: 900;
        line-height: 1;
    }

    .intro-focus .intro-focus__label {
        font-size: clamp(14px, 1.5vw, 18px);
        color: var(--fg-on-surface-light);
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

.cta {
    padding: clamp(48px, 8vw, 80px) 0;
    background-color: var(--neutral-900);
    color: var(--neutral-0);
}

.cta__inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
    text-align: center;
}

.cta h2 {
    margin-bottom: var(--space-y);
    font-size: clamp(28px, 4vw, 40px);
}

.cta p {
    max-width: 700px;
    margin: 0 auto calc(var(--space-y) * 1.5);
    color: var(--neutral-300);
}

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

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

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

.clarifications-c1 {

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.why-choose-light-alt {

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

    .why-choose-light-alt .why-choose-light-alt__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

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

    }

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

    .why-choose-light-alt h2::after {
        content: '';
        position: absolute;
        bottom: -8px;
        left: 0;
        width: 100%;
        height: 4px;
        background: var(--bg-primary);
        border-radius: var(--radius-sm);
        animation: shimmer 3s ease-in-out infinite;
    }

    @keyframes shimmer {
        0%, 100% {
            opacity: 1;
            transform: scaleX(1);
        }
        50% {
            opacity: 0.4;
            transform: scaleX(0.8);
        }
    }

    .why-choose-light-alt .why-choose-light-alt__subtitle {
        font-size: clamp(16px, 2vw, 20px);
        margin: 0;
        color: var(--neutral-600);
    }

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

    .why-choose-light-alt .why-choose-light-alt__item {
        display: flex;
        gap: clamp(16px, 2vw, 24px);
        background: var(--surface-1);
        padding: clamp(20px, 3vw, 32px);
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-sm);
        align-items: flex-start;

        position: relative;
        overflow: hidden;
        transition: transform var(--anim-duration) var(--anim-ease);
    }

    .why-choose-light-alt .why-choose-light-alt__wave {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(90deg,
        var(--bg-primary) 0%,
        var(--accent) 50%,
        var(--bg-primary) 100%);
        background-size: 200% 100%;
        animation: wave 3s linear infinite;

        transition: opacity var(--anim-duration) var(--anim-ease);
    }

    @keyframes wave {
        0% {
            background-position: 0% 0%;
        }
        100% {
            background-position: 200% 0%;
        }
    }

    .why-choose-light-alt .why-choose-light-alt__item:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-lg);
    }

    .why-choose-light-alt .why-choose-light-alt__item:hover .why-choose-light-alt__wave {
        opacity: 1;
    }

    .why-choose-light-alt .why-choose-light-alt__number {
        flex-shrink: 0;
        width: 56px;
        height: 56px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border-radius: var(--radius-md);
        font-size: clamp(20px, 2.5vw, 28px);
        font-weight: 700;
        position: relative;
        animation: sparkle 4s ease-in-out infinite;
    }

    @keyframes sparkle {
        0%, 100% {
            box-shadow: 0 0 0 rgba(0, 85, 183, 0);
        }
        10% {
            box-shadow: 0 0 20px rgba(0, 85, 183, 0.6);
        }
        20%, 80% {
            box-shadow: 0 0 0 rgba(0, 85, 183, 0);
        }
        90% {
            box-shadow: 0 0 20px rgba(0, 85, 183, 0.6);
        }
    }

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

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

    .why-choose-light-alt .why-choose-light-alt__item h3::before {
        content: '';
        position: absolute;
        left: -12px;
        top: 50%;
        transform: translateY(-50%);
        width: 4px;
        height: 0;
        background: var(--bg-primary);
        border-radius: var(--radius-sm);
        transition: height var(--anim-duration) var(--anim-ease);
    }

    .why-choose-light-alt .why-choose-light-alt__item:hover h3::before {
        height: 100%;
    }

    .why-choose-light-alt .why-choose-light-alt__item p {
        margin: 0;
        color: var(--neutral-600);
        line-height: var(--line-height-base);
    }

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

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

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

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

.header-nav {
    display: flex;
}

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

.nav-item {
    margin: 0;
}

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

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

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

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

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

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

    .header-nav {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        background-color: var(--surface-1);
        width: 70%;
        max-width: 300px;
        padding: 5rem var(--space-x) var(--space-y);
        transform: translateX(100%);
        transition: transform var(--anim-duration) var(--anim-ease);
        box-shadow: var(--shadow-lg);
        z-index: 1000;
        flex-direction: column;
        overflow-y: auto;
    }

    .header-nav[data-visible="true"] {
        transform: translateX(0);
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
    }

    .nav-link {
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-sm);
    }

    .header-container {
        padding: calc(var(--space-y) * 0.75) var(--space-x);
    }
}

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        border-top: 1px solid #dee2e6;
        padding: 2.5rem 1rem 1rem;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        margin-top: auto;
    }

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

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

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

    .footer-disclaimer {
        font-size: 0.85rem;
        color: #6c757d;
        line-height: 1.4;
        margin-top: 0.5rem;
    }

    .footer-section h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
        color: #495057;
        border-bottom: 2px solid #e9ecef;
        padding-bottom: 0.5rem;
    }

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

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

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

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

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

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

    .footer-bottom a {
        color: #6c757d;
        text-decoration: none;
        margin: 0 0.3rem;
    }

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

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

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

        .footer-section h3 {
            border-bottom: none;
            border-left: 3px solid #007bff;
            padding-left: 0.75rem;
            text-align: left;
        }

        .footer-nav,
        .footer-social,
        .footer-contact {
            text-align: left;
        }
    }

.cookie-banner {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        top: auto;
        z-index: 1000;
        background: var(--bg-page);
        border-bottom: 2px solid var(--ring);
        box-shadow: 0 6px 20px rgba(0, 0, 0, .12);
        padding: clamp(20px, 3vw, 32px);
    }

    .cookie-banner__c {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 2rem;
        align-items: center;
    }

    .cookie-banner__content strong {
        display: block;
        font-size: 1.2rem;
        margin-bottom: 0.6rem;
        color: var(--fg-on-page);
        font-weight: 700;
    }

    .cookie-banner__content p {
        margin: 0;
        font-size: 1rem;
        color: var(--neutral-600);
        line-height: 1.6;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

.faq--colored-v5 {
    padding: 64px 20px;
    background: var(--neutral-900);
    color: var(--neutral-0);
}

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

.faq__header {
    text-align: center;
    margin-bottom: 24px;
}

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

.faq__header p {
    margin: 0;
    color: var(--neutral-300);
}

.faq__list {
    display: grid;
    gap: 10px;
}

.faq__item {
    background: rgba(15,23,42,0.96);
    border-radius: var(--radius-lg);
    padding: 12px 14px;
    border: 1px solid rgba(148,163,184,0.6);
}

.faq__item--accent {
    border-color: var(--accent);
}

.faq__item--accent {
    border-color: var(--accent);
}

.faq__item summary {
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
}

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

.identity-manifest {

        background: var(--fg-on-primary);
        color: var(--bg-primary);
        padding: clamp(60px, 8vw, 100px) clamp(16px, 4vw, 48px);
    }

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

    .identity-manifest__h {
        text-align: center;
        margin-bottom: clamp(40px, 5vw, 72px);

        transform: translateY(-16px);
    }

    .identity-manifest__badge {
        display: inline-flex;
        padding: 0.35rem 1rem;
        border-radius: 999px;
        border: 1px solid rgba(10, 42, 102, 0.2);
        font-size: 0.85rem;
        letter-spacing: 0.1em;
        text-transform: uppercase;
    }

    .identity-manifest h2 {
        font-size: clamp(32px, 4.5vw, 54px);
        margin: 0.75rem 0;
        color: var(--bg-primary);
    }

    .identity-manifest__h > p {
        margin: 0 auto;
        max-width: 720px;
        color: rgba(19, 32, 75, 0.8);
    }

    .identity-manifest__values {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: clamp(18px, 3vw, 28px);
    }

    .identity-manifest__card {
        background: var(--bg-page);
        border: 1px solid var(--border);
        border-radius: var(--radius-xl);
        padding: clamp(20px, 3vw, 28px);
        box-shadow: var(--shadow-sm);
        position: relative;

        transform: translateY(18px);
        transition: border-color var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
    }

    .identity-manifest__card:hover {
        border-color: rgba(255, 139, 92, 0.5);
        box-shadow: var(--shadow-md);
    }

    .identity-manifest__label {
        font-size: 0.8rem;
        letter-spacing: 0.15em;
        text-transform: uppercase;
        color: rgba(19, 32, 75, 0.5);
        margin-bottom: 0.75rem;
    }

    .identity-manifest__card h3 {
        margin: 0 0 0.6rem;
        font-size: clamp(20px, 2.2vw, 24px);
        color: var(--bg-primary);
    }

    .identity-manifest__card p {
        margin: 0 0 1rem;
        color: rgba(19, 32, 75, 0.75);
    }

    .identity-manifest__note {
        font-weight: 600;
        color: var(--bg-accent);
    }

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

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

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

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

.header-nav {
    display: flex;
}

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

.nav-item {
    margin: 0;
}

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

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

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

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

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

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

    .header-nav {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        background-color: var(--surface-1);
        width: 70%;
        max-width: 300px;
        padding: 5rem var(--space-x) var(--space-y);
        transform: translateX(100%);
        transition: transform var(--anim-duration) var(--anim-ease);
        box-shadow: var(--shadow-lg);
        z-index: 1000;
        flex-direction: column;
        overflow-y: auto;
    }

    .header-nav[data-visible="true"] {
        transform: translateX(0);
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
    }

    .nav-link {
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-sm);
    }

    .header-container {
        padding: calc(var(--space-y) * 0.75) var(--space-x);
    }
}

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        border-top: 1px solid #dee2e6;
        padding: 2.5rem 1rem 1rem;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        margin-top: auto;
    }

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

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

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

    .footer-disclaimer {
        font-size: 0.85rem;
        color: #6c757d;
        line-height: 1.4;
        margin-top: 0.5rem;
    }

    .footer-section h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
        color: #495057;
        border-bottom: 2px solid #e9ecef;
        padding-bottom: 0.5rem;
    }

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

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

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

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

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

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

    .footer-bottom a {
        color: #6c757d;
        text-decoration: none;
        margin: 0 0.3rem;
    }

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

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

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

        .footer-section h3 {
            border-bottom: none;
            border-left: 3px solid #007bff;
            padding-left: 0.75rem;
            text-align: left;
        }

        .footer-nav,
        .footer-social,
        .footer-contact {
            text-align: left;
        }
    }

.cookie-banner {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        top: auto;
        z-index: 1000;
        background: var(--bg-page);
        border-bottom: 2px solid var(--ring);
        box-shadow: 0 6px 20px rgba(0, 0, 0, .12);
        padding: clamp(20px, 3vw, 32px);
    }

    .cookie-banner__c {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 2rem;
        align-items: center;
    }

    .cookie-banner__content strong {
        display: block;
        font-size: 1.2rem;
        margin-bottom: 0.6rem;
        color: var(--fg-on-page);
        font-weight: 700;
    }

    .cookie-banner__content p {
        margin: 0;
        font-size: 1rem;
        color: var(--neutral-600);
        line-height: 1.6;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

.plans-c2 {

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

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

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

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

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

    .plans-c2__grid {
        display: grid;
        grid-template-columns:repeat(12, 1fr);
        gap: 14px;
    }

    .plans-c2__card {
        grid-column: span 4;
        border-radius: var(--radius-xl);
        background: rgba(0, 0, 0, 0.14);
        border: 1px solid rgba(255, 255, 255, 0.14);
        box-shadow: var(--shadow-lg);
        padding: 16px;
        position: relative;
        overflow: hidden;
        transition: transform var(--anim-duration) var(--anim-ease), border-color var(--anim-duration) var(--anim-ease);
    }

    /* spotlight */
    .plans-c2__card::before {
        content: '';
        position: absolute;
        inset: -1px;
        background: radial-gradient(220px 220px at var(--sx, 50%) var(--sy, 35%),
        rgba(255, 107, 53, 0.28), transparent 60%);

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

    .plans-c2__card.is-hot {
        transform: translateY(-4px);
        border-color: rgba(255, 255, 255, 0.22);
    }

    .plans-c2__card.is-hot::before {
        opacity: 1;
    }

    .plans-c2__cap {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
    }

    .plans-c2__name {
        font-weight: 900;
        letter-spacing: -.01em;
    }

    .plans-c2__badge {
        display: inline-flex;
        padding: 6px 10px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.10);
        border: 1px solid rgba(255, 255, 255, 0.16);
        color: rgba(255, 255, 255, .92);
        font-weight: 900;
        white-space: nowrap;
    }

    .plans-c2__price {
        margin-top: 12px;
        font-size: clamp(20px, 3vw, 34px);
        font-weight: 900;
        letter-spacing: -.02em;
    }

    .plans-c2__bullets {
        margin-top: 12px;
        display: grid;
        gap: 8px;
        color: rgba(255, 255, 255, .84);
        line-height: var(--line-height-base);
    }

    .plans-c2__btn {
        margin-top: 14px;
        width: 100%;
        padding: 12px 14px;
        border-radius: var(--radius-lg);
        border: 1px solid rgba(255, 255, 255, 0.18);
        background: rgba(255, 255, 255, 0.14);
        color: var(--fg-on-primary);
        font-weight: 900;
        cursor: pointer;
        transition: background var(--anim-duration) var(--anim-ease);
    }

    .plans-c2__btn:hover {
        background: rgba(255, 255, 255, 0.20);
    }

    @media (max-width: 980px) {
        .plans-c2__card {
            grid-column: span 6;
        }
    }

    @media (max-width: 640px) {
        .plans-c2__card {
            grid-column: span 12;
        }
    }

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

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

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

        transform: translateY(-18px);
    }

    .index-feedback-light__h h2 {
        margin: 0 0 10px;
        font-size: clamp(26px, 4.4vw, 44px);
        letter-spacing: -0.02em;
    }

    .index-feedback-light__h p {
        margin: 0;
        color: var(--neutral-600);
    }

    .index-feedback-light__grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: clamp(14px, 2.6vw, 22px);
    }

    .index-feedback-light__card {
        border-radius: var(--radius-xl);
        background: var(--surface-light);
        border: 1px solid var(--border-on-surface-light);
        box-shadow: var(--shadow-md);
        padding: clamp(18px, 3vw, 26px);

        transform: translateY(28px);
    }

    .index-feedback-light__top {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 14px;
    }

    .index-feedback-light__who {
        display: flex;
        align-items: center;
        gap: 12px;
        min-width: 0;
    }

    .index-feedback-light__avatar {
        width: 46px;
        height: 46px;
        border-radius: 14px;
        background: var(--bg-accent);
        border: 1px solid var(--border-on-surface);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 22px;
        flex: 0 0 auto;
    }

    .index-feedback-light__who h3 {
        margin: 0;
        font-size: 16px;
        font-weight: 800;
        color: var(--fg-on-page);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 20ch;
    }

    .index-feedback-light__who p {
        margin: 2px 0 0;
        font-size: 13px;
        color: var(--neutral-600);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 26ch;
    }

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

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

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

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

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

.statistics {
    padding: clamp(48px, 8vw, 80px) 0;
    background: var(--gradient-hero);
    color: var(--fg-on-primary);
}

.statistics__inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
}

.statistics__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--gap);
    text-align: center;
}

.statistics__card {
    padding: clamp(16px, 3vw, 32px);
}

.statistics__number {
    font-size: clamp(32px, 6vw, 48px);
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
}

.statistics__label {
    font-size: 1.1rem;
    font-weight: 400;
}

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

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

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

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

.header-nav {
    display: flex;
}

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

.nav-item {
    margin: 0;
}

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

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

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

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

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

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

    .header-nav {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        background-color: var(--surface-1);
        width: 70%;
        max-width: 300px;
        padding: 5rem var(--space-x) var(--space-y);
        transform: translateX(100%);
        transition: transform var(--anim-duration) var(--anim-ease);
        box-shadow: var(--shadow-lg);
        z-index: 1000;
        flex-direction: column;
        overflow-y: auto;
    }

    .header-nav[data-visible="true"] {
        transform: translateX(0);
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
    }

    .nav-link {
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-sm);
    }

    .header-container {
        padding: calc(var(--space-y) * 0.75) var(--space-x);
    }
}

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        border-top: 1px solid #dee2e6;
        padding: 2.5rem 1rem 1rem;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        margin-top: auto;
    }

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

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

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

    .footer-disclaimer {
        font-size: 0.85rem;
        color: #6c757d;
        line-height: 1.4;
        margin-top: 0.5rem;
    }

    .footer-section h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
        color: #495057;
        border-bottom: 2px solid #e9ecef;
        padding-bottom: 0.5rem;
    }

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

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

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

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

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

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

    .footer-bottom a {
        color: #6c757d;
        text-decoration: none;
        margin: 0 0.3rem;
    }

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

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

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

        .footer-section h3 {
            border-bottom: none;
            border-left: 3px solid #007bff;
            padding-left: 0.75rem;
            text-align: left;
        }

        .footer-nav,
        .footer-social,
        .footer-contact {
            text-align: left;
        }
    }

.cookie-banner {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        top: auto;
        z-index: 1000;
        background: var(--bg-page);
        border-bottom: 2px solid var(--ring);
        box-shadow: 0 6px 20px rgba(0, 0, 0, .12);
        padding: clamp(20px, 3vw, 32px);
    }

    .cookie-banner__c {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 2rem;
        align-items: center;
    }

    .cookie-banner__content strong {
        display: block;
        font-size: 1.2rem;
        margin-bottom: 0.6rem;
        color: var(--fg-on-page);
        font-weight: 700;
    }

    .cookie-banner__content p {
        margin: 0;
        font-size: 1rem;
        color: var(--neutral-600);
        line-height: 1.6;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

.contact-section {
    padding: clamp(48px, 8vw, 80px) 0;
}

.contact-section__inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
}

.contact-section__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: calc(var(--gap) * 2);
}

.contact-section__form {
    background-color: var(--surface-2);
    padding: clamp(16px, 3vw, 32px);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-on-surface);
}

.contact-section__group {
    margin-bottom: var(--space-y);
}

.contact-section__group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--fg-on-page);
}

.contact-section__form input,
.contact-section__form textarea,
.contact-section__form select {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-on-surface);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 1rem;
    transition: all var(--anim-duration) var(--anim-ease);
    background: var(--surface-1);
    color: var(--fg-on-surface);
}

.contact-section__form input:focus,
.contact-section__form textarea:focus,
.contact-section__form select:focus {
    outline: none;
    border-color: var(--ring);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

.contact-section__form textarea {
    resize: vertical;
    min-height: 150px;
}

.contact-section__detail {
    margin-bottom: var(--space-y);
}

.contact-section__detail strong {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--fg-on-page);
}

.contact-section__detail p {
    color: var(--neutral-600);
    margin: 0;
}

.contact-section__socials {
    display: flex;
    gap: var(--gap);
    margin-top: 0.5rem;
}

.contact-section__social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--surface-2);
    border-radius: 50%;
    transition: all var(--anim-duration) var(--anim-ease);
    border: 1px solid var(--border-on-surface);
    color: var(--fg-on-surface);
}

.contact-section__social:hover {
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
}

.contact-section__btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: var(--radius-md);
    font-weight: 500;
    text-align: center;
    transition: all var(--anim-duration) var(--anim-ease);
    cursor: pointer;
    border: 1px solid var(--bg-primary);
    font-size: 1rem;
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
}

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

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

    .contact-form {

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

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

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

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

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

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

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

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

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

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

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

.header-nav {
    display: flex;
}

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

.nav-item {
    margin: 0;
}

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

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

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

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

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

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

    .header-nav {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        background-color: var(--surface-1);
        width: 70%;
        max-width: 300px;
        padding: 5rem var(--space-x) var(--space-y);
        transform: translateX(100%);
        transition: transform var(--anim-duration) var(--anim-ease);
        box-shadow: var(--shadow-lg);
        z-index: 1000;
        flex-direction: column;
        overflow-y: auto;
    }

    .header-nav[data-visible="true"] {
        transform: translateX(0);
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
    }

    .nav-link {
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-sm);
    }

    .header-container {
        padding: calc(var(--space-y) * 0.75) var(--space-x);
    }
}

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        border-top: 1px solid #dee2e6;
        padding: 2.5rem 1rem 1rem;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        margin-top: auto;
    }

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

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

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

    .footer-disclaimer {
        font-size: 0.85rem;
        color: #6c757d;
        line-height: 1.4;
        margin-top: 0.5rem;
    }

    .footer-section h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
        color: #495057;
        border-bottom: 2px solid #e9ecef;
        padding-bottom: 0.5rem;
    }

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

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

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

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

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

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

    .footer-bottom a {
        color: #6c757d;
        text-decoration: none;
        margin: 0 0.3rem;
    }

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

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

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

        .footer-section h3 {
            border-bottom: none;
            border-left: 3px solid #007bff;
            padding-left: 0.75rem;
            text-align: left;
        }

        .footer-nav,
        .footer-social,
        .footer-contact {
            text-align: left;
        }
    }

.cookie-banner {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        top: auto;
        z-index: 1000;
        background: var(--bg-page);
        border-bottom: 2px solid var(--ring);
        box-shadow: 0 6px 20px rgba(0, 0, 0, .12);
        padding: clamp(20px, 3vw, 32px);
    }

    .cookie-banner__c {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 2rem;
        align-items: center;
    }

    .cookie-banner__content strong {
        display: block;
        font-size: 1.2rem;
        margin-bottom: 0.6rem;
        color: var(--fg-on-page);
        font-weight: 700;
    }

    .cookie-banner__content p {
        margin: 0;
        font-size: 1rem;
        color: var(--neutral-600);
        line-height: 1.6;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.header-nav {
    display: flex;
}

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

.nav-item {
    margin: 0;
}

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

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

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

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

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

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

    .header-nav {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        background-color: var(--surface-1);
        width: 70%;
        max-width: 300px;
        padding: 5rem var(--space-x) var(--space-y);
        transform: translateX(100%);
        transition: transform var(--anim-duration) var(--anim-ease);
        box-shadow: var(--shadow-lg);
        z-index: 1000;
        flex-direction: column;
        overflow-y: auto;
    }

    .header-nav[data-visible="true"] {
        transform: translateX(0);
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
    }

    .nav-link {
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-sm);
    }

    .header-container {
        padding: calc(var(--space-y) * 0.75) var(--space-x);
    }
}

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        border-top: 1px solid #dee2e6;
        padding: 2.5rem 1rem 1rem;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        margin-top: auto;
    }

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

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

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

    .footer-disclaimer {
        font-size: 0.85rem;
        color: #6c757d;
        line-height: 1.4;
        margin-top: 0.5rem;
    }

    .footer-section h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
        color: #495057;
        border-bottom: 2px solid #e9ecef;
        padding-bottom: 0.5rem;
    }

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

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

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

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

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

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

    .footer-bottom a {
        color: #6c757d;
        text-decoration: none;
        margin: 0 0.3rem;
    }

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

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

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

        .footer-section h3 {
            border-bottom: none;
            border-left: 3px solid #007bff;
            padding-left: 0.75rem;
            text-align: left;
        }

        .footer-nav,
        .footer-social,
        .footer-contact {
            text-align: left;
        }
    }

.cookie-banner {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        top: auto;
        z-index: 1000;
        background: var(--bg-page);
        border-bottom: 2px solid var(--ring);
        box-shadow: 0 6px 20px rgba(0, 0, 0, .12);
        padding: clamp(20px, 3vw, 32px);
    }

    .cookie-banner__c {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 2rem;
        align-items: center;
    }

    .cookie-banner__content strong {
        display: block;
        font-size: 1.2rem;
        margin-bottom: 0.6rem;
        color: var(--fg-on-page);
        font-weight: 700;
    }

    .cookie-banner__content p {
        margin: 0;
        font-size: 1rem;
        color: var(--neutral-600);
        line-height: 1.6;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

.legal-content-section {
        padding: clamp(48px, 8vw, 80px) 0;
    }

    .legal-content-section__inner {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 0 var(--space-x);
    }

    .legal-content-section__content {
        max-width: 900px;
        margin: 0 auto;
    }

    .legal-content-section__content--framed .legal-content-section__block {
        padding: clamp(16px, 3vw, 24px);
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-on-surface);
        background: var(--surface-1);
        box-shadow: var(--shadow-sm);
        margin-bottom: var(--space-y);
    }

    .legal-content-section__content h2 {
        margin-top: 2rem;
        margin-bottom: 1rem;
        color: var(--fg-on-page);
    }

    .legal-content-section__content h3 {
        margin-top: 1.5rem;
        margin-bottom: 0.75rem;
        color: var(--fg-on-page);
    }

    .legal-content-section__content p {
        max-width: 100%;
        margin-bottom: 1rem;
        color: var(--neutral-600);
    }

    .legal-content-section__content ul {
        margin-left: 2rem;
        margin-bottom: 1rem;
        color: var(--neutral-600);
    }

    .legal-content-section__content li {
        margin-bottom: 0.5rem;
    }

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

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

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

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

.header-nav {
    display: flex;
}

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

.nav-item {
    margin: 0;
}

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

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

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

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

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

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

    .header-nav {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        background-color: var(--surface-1);
        width: 70%;
        max-width: 300px;
        padding: 5rem var(--space-x) var(--space-y);
        transform: translateX(100%);
        transition: transform var(--anim-duration) var(--anim-ease);
        box-shadow: var(--shadow-lg);
        z-index: 1000;
        flex-direction: column;
        overflow-y: auto;
    }

    .header-nav[data-visible="true"] {
        transform: translateX(0);
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
    }

    .nav-link {
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-sm);
    }

    .header-container {
        padding: calc(var(--space-y) * 0.75) var(--space-x);
    }
}

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        border-top: 1px solid #dee2e6;
        padding: 2.5rem 1rem 1rem;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        margin-top: auto;
    }

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

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

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

    .footer-disclaimer {
        font-size: 0.85rem;
        color: #6c757d;
        line-height: 1.4;
        margin-top: 0.5rem;
    }

    .footer-section h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
        color: #495057;
        border-bottom: 2px solid #e9ecef;
        padding-bottom: 0.5rem;
    }

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

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

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

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

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

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

    .footer-bottom a {
        color: #6c757d;
        text-decoration: none;
        margin: 0 0.3rem;
    }

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

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

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

        .footer-section h3 {
            border-bottom: none;
            border-left: 3px solid #007bff;
            padding-left: 0.75rem;
            text-align: left;
        }

        .footer-nav,
        .footer-social,
        .footer-contact {
            text-align: left;
        }
    }

.cookie-banner {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        top: auto;
        z-index: 1000;
        background: var(--bg-page);
        border-bottom: 2px solid var(--ring);
        box-shadow: 0 6px 20px rgba(0, 0, 0, .12);
        padding: clamp(20px, 3vw, 32px);
    }

    .cookie-banner__c {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 2rem;
        align-items: center;
    }

    .cookie-banner__content strong {
        display: block;
        font-size: 1.2rem;
        margin-bottom: 0.6rem;
        color: var(--fg-on-page);
        font-weight: 700;
    }

    .cookie-banner__content p {
        margin: 0;
        font-size: 1rem;
        color: var(--neutral-600);
        line-height: 1.6;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

.thanks-light {

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.header-nav {
    display: flex;
}

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

.nav-item {
    margin: 0;
}

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

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

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

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

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

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

    .header-nav {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        background-color: var(--surface-1);
        width: 70%;
        max-width: 300px;
        padding: 5rem var(--space-x) var(--space-y);
        transform: translateX(100%);
        transition: transform var(--anim-duration) var(--anim-ease);
        box-shadow: var(--shadow-lg);
        z-index: 1000;
        flex-direction: column;
        overflow-y: auto;
    }

    .header-nav[data-visible="true"] {
        transform: translateX(0);
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
    }

    .nav-link {
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-sm);
    }

    .header-container {
        padding: calc(var(--space-y) * 0.75) var(--space-x);
    }
}

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        border-top: 1px solid #dee2e6;
        padding: 2.5rem 1rem 1rem;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        margin-top: auto;
    }

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

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

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

    .footer-disclaimer {
        font-size: 0.85rem;
        color: #6c757d;
        line-height: 1.4;
        margin-top: 0.5rem;
    }

    .footer-section h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
        color: #495057;
        border-bottom: 2px solid #e9ecef;
        padding-bottom: 0.5rem;
    }

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

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

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

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

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

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

    .footer-bottom a {
        color: #6c757d;
        text-decoration: none;
        margin: 0 0.3rem;
    }

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

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

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

        .footer-section h3 {
            border-bottom: none;
            border-left: 3px solid #007bff;
            padding-left: 0.75rem;
            text-align: left;
        }

        .footer-nav,
        .footer-social,
        .footer-contact {
            text-align: left;
        }
    }

.cookie-banner {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        top: auto;
        z-index: 1000;
        background: var(--bg-page);
        border-bottom: 2px solid var(--ring);
        box-shadow: 0 6px 20px rgba(0, 0, 0, .12);
        padding: clamp(20px, 3vw, 32px);
    }

    .cookie-banner__c {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 2rem;
        align-items: center;
    }

    .cookie-banner__content strong {
        display: block;
        font-size: 1.2rem;
        margin-bottom: 0.6rem;
        color: var(--fg-on-page);
        font-weight: 700;
    }

    .cookie-banner__content p {
        margin: 0;
        font-size: 1rem;
        color: var(--neutral-600);
        line-height: 1.6;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

.not-found--colored-v5 {

    padding: 72px 20px;
    background: radial-gradient(circle at top left, rgba(59,130,246,0.25), transparent),
                radial-gradient(circle at bottom right, rgba(139,92,246,0.3), transparent),
                var(--neutral-900);
    color: var(--neutral-0);
}

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

.not-found__code {
    font-size: clamp(64px, 18vw, 120px);
    font-weight: 700;
    letter-spacing: 0.14em;
    color: var(--bg-accent);
}

.not-found__title {
    margin: 0 0 8px;
    font-size: clamp(24px, 4vw, 32px);
    color: var(--brand-contrast);
}

.not-found__text {
    margin: 0 0 18px;
    color: var(--neutral-300);
}

.not-found__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

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

.not-found__btn--primary {
    background: var(--bg-primary);
    color: var(--fg-on-primary);
}

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

.not-found__btn--ghost {
    background: transparent;
    color: var(--brand-contrast);
    border: 1px solid rgba(148,163,184,0.7);
}

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

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

.not-found__btn--ghost:hover {
    background: rgba(15,23,42,0.8);
}

@media (max-width: 768px) {
    .not-found__inner {
        grid-template-columns: minmax(0, 1fr);
        text-align: center;
        justify-items: center;
    }
}