:root {
  --font-family: "Montserrat", 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: 1rem;
  --radius-lg: 0.75rem;
  --radius-md: 0.5rem;
  --radius-sm: 0.25rem;

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);

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

  --brand: #003366;
  --brand-contrast: #ffffff;
  --accent: #cc0000;
  --accent-contrast: #ffffff;

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

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

  --bg-alt: #e9ecef;
  --fg-on-alt: #495057;

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

  --surface-light: rgba(255, 255, 255, 0.9);
  --fg-on-surface-light: #212529;
  --border-on-surface-light: #dee2e6;

  --bg-primary: #003366;
  --fg-on-primary: #ffffff;
  --bg-primary-hover: #002244;
  --ring: #007bff;

  --bg-accent: #ffe6e6;
  --fg-on-accent: #990000;
  --bg-accent-hover: #ff3333;

  --link: #0066cc;
  --link-hover: #004080;

  --gradient-hero: linear-gradient(135deg, #003366 0%, #00509e 100%);
  --gradient-accent: linear-gradient(90deg, #cc0000 0%, #ff3333 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;
    transition: color var(--anim-duration) var(--anim-ease);
}

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

.main-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(--link);
    text-decoration: none;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
    display: block;
    font-weight: 500;
}

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

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

    .main-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;
        overflow-y: auto;
    }

    .main-nav.is-active {
        transform: translateX(0);
    }

    .nav-list {
        flex-direction: column;
        gap: calc(var(--gap) / 2);
    }

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

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

.site-footer {
    background-color: #1a1a1a;
    color: #e0e0e0;
    padding: 2.5rem 1rem;
    font-family: sans-serif;
    border-top: 3px solid #0066b2;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2.5rem;
  }
  .footer-section {
    display: flex;
    flex-direction: column;
  }
  .footer-logo {
    color: #ffffff;
    font-size: 1.8rem;
    margin: 0 0 1rem 0;
    font-weight: bold;
  }
  .footer-disclaimer {
    font-size: 0.85rem;
    line-height: 1.4;
    color: #aaa;
    margin: 0;
  }
  .footer-section h3 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    border-bottom: 1px solid #333;
    padding-bottom: 0.5rem;
  }
  .footer-nav, .footer-legal {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer-nav li, .footer-legal li {
    margin-bottom: 0.7rem;
  }
  .footer-nav a, .footer-legal a {
    color: #b3d4fc;
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-nav a:hover, .footer-legal a:hover {
    color: #ffffff;
    text-decoration: underline;
  }
  .footer-contact p {
    margin: 0 0 0.8rem 0;
    line-height: 1.5;
  }
  .footer-contact a {
    color: #b3d4fc;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .footer-social {
    margin-top: 1.5rem;
    display: flex;
    gap: 1rem;
  }
  .footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #333;
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
  }
  .footer-social a:hover {
    background-color: #0066b2;
  }
  .footer-bottom {
    max-width: 1200px;
    margin: 2.5rem auto 0;
    padding-top: 1.5rem;
    border-top: 1px solid #333;
    text-align: center;
    font-size: 0.9rem;
    color: #aaa;
  }

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

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

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

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

    .cookies__inner p {
        margin: 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

    .wp-lang-switcher-v4__container {
        display: flex;
        align-items: center;
        gap: 0;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: calc(var(--radius-xl) + var(--local-random) * 4px);
        padding: calc(5px + var(--local-random) * 1px);
        box-shadow: var(--shadow-lg);
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .wp-lang-switcher-v4__container.expanded {
        gap: calc(4px + var(--local-random) * 2px);
    }

    .wp-lang-switcher-v4__toggle {
        width: calc(42px + var(--local-random) * 2px);
        height: calc(42px + var(--local-random) * 2px);
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
        border-radius: calc(var(--radius-lg) - var(--local-random) * 2px);
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all var(--anim-duration) var(--anim-ease);
        flex-shrink: 0;
        position: relative;
        overflow: hidden;
    }

    .wp-lang-switcher-v4__toggle::before {
        content: '';
        position: absolute;
        width: 200%;
        height: 200%;
        background: conic-gradient(from 0deg, transparent, rgba(255, 255, 255, 0.3), transparent);
        animation: spin calc(2.8s + var(--local-random) * 0.4s) linear infinite;
    }

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

    .wp-lang-switcher-v4__icon {
        font-size: calc(18px + var(--local-random) * 2px);
        position: relative;
        z-index: 1;
    }

    .wp-lang-switcher-v4__toggle:hover {
        transform: scale(calc(1.03 + var(--local-random) * 0.02));
    }

    .wp-lang-switcher-v4__list {
        display: flex;
        gap: calc(5px + var(--local-random) * 1px);
        max-width: 0;
        opacity: 0;
        transition: all var(--anim-duration) cubic-bezier(0.68, -0.55, 0.265, 1.55);
    }

    .wp-lang-switcher-v4__container.expanded .wp-lang-switcher-v4__list {
        max-width: 300px;
        opacity: 1;
    }

    .wp-lang-switcher-v4__list button,
    .wp-lang-switcher-v4__list a {
        width: calc(38px + var(--local-random) * 2px);
        height: calc(38px + var(--local-random) * 2px);
        border: 2px solid var(--border-on-surface);
        background: var(--surface-2);
        color: var(--fg-on-surface);
        cursor: pointer;

        font-size: 12px;
        font-weight: 700;
        border-radius: calc(var(--radius-md) - var(--local-random) * 2px);
        transition: all var(--anim-duration) var(--anim-ease);
        position: relative;
        flex-shrink: 0;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .wp-lang-switcher-v4__list button::before,
    .wp-lang-switcher-v4__list a::before {
        content: '';
        position: absolute;
        inset: calc(-2px - var(--local-random) * 0.5px);
        border-radius: calc(var(--radius-md) - var(--local-random) * 2px);
        background: var(--gradient-accent);

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

    .wp-lang-switcher-v4__list button:hover,
    .wp-lang-switcher-v4__list a:hover {
        border-color: transparent;
        color: var(--fg-on-primary);
        transform: translateY(calc(-2px - var(--local-random) * 1px));
    }

    .wp-lang-switcher-v4__list button:hover::before,
    .wp-lang-switcher-v4__list a:hover::before {
        opacity: 1;
    }

    .wp-lang-switcher-v4__list button span,
    .wp-lang-switcher-v4__list a span {
        position: relative;
        z-index: 1;
    }

.intro-focus-light {

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

    .intro-focus-light::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 50%;
        height: 100%;
        background: var(--bg-alt);
        clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
        z-index: 0;
    }

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

    .intro-focus-light .intro-focus-light__hero {
        max-width: 900px;

    }

    .intro-focus-light .intro-focus-light__question {
        font-size: clamp(16px, 2vw, 20px);
        color: var(--accent);
        font-weight: 700;
        margin-bottom: 1rem;
        text-transform: uppercase;
        letter-spacing: 2px;

        transform: translateY(20px);
    }

    .intro-focus-light .intro-focus-light__headline {
        font-size: clamp(40px, 7vw, 72px);
        font-weight: 900;
        margin: 0 0 1.5rem;
        line-height: 1.05;
        transform: translateY(30px);
    }

    .intro-focus-light .intro-focus-light__lead {
        font-size: clamp(18px, 2.5vw, 24px);
        margin: 0 0 3rem;
        color: var(--neutral-600);
        line-height: var(--line-height-base);
        max-width: 700px;

        transform: translateY(30px);
    }

    .intro-focus-light .intro-focus-light__stats {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: var(--gap);

    }

    .intro-focus-light .intro-focus-light__stat {
        padding: 1.5rem;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        text-align: center;
        transition: transform var(--anim-duration) var(--anim-ease);

        transform: translateY(20px);
    }

    .intro-focus-light .intro-focus-light__stat:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-md);
    }

    .intro-focus-light .intro-focus-light__stat-value {
        font-size: clamp(32px, 5vw, 48px);
        font-weight: 900;
        color: var(--brand);
        line-height: 1;
        margin-bottom: 0.5rem;
    }

    .intro-focus-light .intro-focus-light__stat-label {
        font-size: clamp(12px, 1.5vw, 14px);
        color: var(--neutral-600);
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

.value-points-radiant {

        background: radial-gradient(circle at 25% 20%, rgba(255, 255, 255, 0.22), transparent 55%),
        radial-gradient(circle at 80% 70%, rgba(255, 107, 53, 0.2), transparent 50%),
        var(--gradient-hero);
        color: var(--fg-on-primary);
        padding: clamp(64px, 8vw, 120px) clamp(20px, 4vw, 56px);
        position: relative;
        overflow: hidden;
    }

    .value-points-radiant__c {
        max-width: var(--max-w);
        margin: 0 auto;
        position: relative;
        z-index: 1;
    }

    .value-points-radiant__h {
        text-align: center;
        margin-bottom: clamp(48px, 7vw, 90px);

        transform: translateY(-20px);
    }

    .value-points-radiant__eyebrow {
        margin: 0 0 0.75rem;
        text-transform: uppercase;
        letter-spacing: 0.22em;
        font-size: clamp(14px, 2vw, 18px);
        color: rgba(255, 255, 255, 0.7);
    }

    .value-points-radiant h2 {
        margin: 0;
        font-size: clamp(34px, 5vw, 60px);
        font-weight: 800;
    }

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

    .value-points-radiant__card {
        background: rgba(0, 0, 0, 0.35);
        border: 1px solid rgba(255, 255, 255, 0.15);
        border-radius: var(--radius-xl);
        padding: clamp(24px, 3vw, 36px);
        box-shadow: 0 25px 45px rgba(0, 0, 0, 0.45);

        transform: translateY(40px);
        position: relative;
        overflow: hidden;
    }

    .value-points-radiant__card::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent 60%);

        transition: opacity 0.3s ease;
    }

    .value-points-radiant__card:hover::after {
        opacity: 1;
    }

    .value-points-radiant__marker {
        width: 48px;
        height: 48px;
        border-radius: 12px;
        background: var(--gradient-accent);
        color: var(--fg-on-primary);
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 800;
        letter-spacing: 0.08em;
        margin-bottom: 1rem;
    }

    .value-points-radiant__card h3 {
        margin: 0 0 0.75rem;
        font-size: clamp(20px, 2.3vw, 26px);
        color: var(--neutral-0);
    }

    .value-points-radiant__card p {
        margin: 0 0 1rem;
        color: rgba(255, 255, 255, 0.78);
    }

    .value-points-radiant__hint {
        display: inline-flex;
        text-transform: uppercase;
        letter-spacing: 0.22em;
        font-size: 11px;
        color: rgba(255, 255, 255, 0.7);
    }

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

.next-beam {
        padding: clamp(60px, 9vw, 108px) clamp(16px, 3vw, 36px);
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
        position: relative;
        overflow: hidden;
    }

    .next-beam::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(120deg, transparent 25%, rgba(255, 255, 255, .16) 50%, transparent 75%);
        transform: translateX(-120%);
        animation: beam 7s ease-in-out infinite;
    }

    .next-beam .wrap {
        position: relative;
        z-index: 1;
        max-width: 860px;
        margin: 0 auto;
        text-align: center;
    }

    .next-beam .kicker {
        margin: 0;
        opacity: .9;
    }

    .next-beam h2 {
        margin: 8px 0;
        font-size: clamp(30px, 4.4vw, 46px);
    }

    .next-beam .text {
        margin: 0 auto;
        max-width: 62ch;
        opacity: .9;
    }

    .next-beam .actions {
        margin-top: 16px;
        display: flex;
        justify-content: center;
        gap: 10px;
        flex-wrap: wrap;
    }

    .next-beam .btn {
        text-decoration: none;
        padding: 10px 16px;
        border-radius: var(--radius-md);
        border: 1px solid rgba(255, 255, 255, .4);
        background: rgba(255, 255, 255, .12);
        color: var(--fg-on-primary);
    }

    .next-beam .btn-primary {
        background: var(--accent);
        border-color: var(--accent);
        color: var(--accent-contrast);
    }

    @keyframes beam {
        0% {
            transform: translateX(-120%);
        }
        55% {
            transform: translateX(120%);
        }
        100% {
            transform: translateX(120%);
        }
    }

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

.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;
    transition: color var(--anim-duration) var(--anim-ease);
}

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

.main-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(--link);
    text-decoration: none;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
    display: block;
    font-weight: 500;
}

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

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

    .main-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;
        overflow-y: auto;
    }

    .main-nav.is-active {
        transform: translateX(0);
    }

    .nav-list {
        flex-direction: column;
        gap: calc(var(--gap) / 2);
    }

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

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

.site-footer {
    background-color: #1a1a1a;
    color: #e0e0e0;
    padding: 2.5rem 1rem;
    font-family: sans-serif;
    border-top: 3px solid #0066b2;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2.5rem;
  }
  .footer-section {
    display: flex;
    flex-direction: column;
  }
  .footer-logo {
    color: #ffffff;
    font-size: 1.8rem;
    margin: 0 0 1rem 0;
    font-weight: bold;
  }
  .footer-disclaimer {
    font-size: 0.85rem;
    line-height: 1.4;
    color: #aaa;
    margin: 0;
  }
  .footer-section h3 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    border-bottom: 1px solid #333;
    padding-bottom: 0.5rem;
  }
  .footer-nav, .footer-legal {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer-nav li, .footer-legal li {
    margin-bottom: 0.7rem;
  }
  .footer-nav a, .footer-legal a {
    color: #b3d4fc;
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-nav a:hover, .footer-legal a:hover {
    color: #ffffff;
    text-decoration: underline;
  }
  .footer-contact p {
    margin: 0 0 0.8rem 0;
    line-height: 1.5;
  }
  .footer-contact a {
    color: #b3d4fc;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .footer-social {
    margin-top: 1.5rem;
    display: flex;
    gap: 1rem;
  }
  .footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #333;
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
  }
  .footer-social a:hover {
    background-color: #0066b2;
  }
  .footer-bottom {
    max-width: 1200px;
    margin: 2.5rem auto 0;
    padding-top: 1.5rem;
    border-top: 1px solid #333;
    text-align: center;
    font-size: 0.9rem;
    color: #aaa;
  }

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

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

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

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

    .cookies__inner p {
        margin: 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

.service-block-section--alt {
    background-color: var(--bg-alt);
    color: var(--fg-on-alt);
}

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

.service-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: calc(var(--gap) * 2);
    align-items: center;
}

.service-block__image {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    width: 100%;
    display: block;
}

.service-block__content h3 {
    margin-bottom: var(--space-y);
    color: var(--fg-on-page);
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-block__content p {
    color: var(--neutral-600);
    margin-bottom: var(--space-y);
}

.service-block__content ul {
    margin-left: 1.5rem;
    color: var(--neutral-600);
}

.our-story {

        color: var(--fg-on-page);
        background: var(--surface-light);
        padding: clamp(32px, 5vw, 64px) clamp(16px, 4vw, 40px);
    }

    .our-story .our-story__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .our-story .our-story__content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: clamp(32px, 5vw, 56px);
        align-items: center;
    }

    .our-story .our-story__image {
        border-radius: var(--radius-md);
        overflow: hidden;
    }

    .our-story .our-story__image img {
        width: 100%;
        height: auto;
        display: block;
        object-fit: cover;
    }

    .our-story .our-story__text h2 {
        font-size: clamp(28px, 5vw, 48px);
        margin: 0 0 1.5rem;
        color: var(--fg-on-surface-light);
    }

    .our-story .our-story__text p {
        font-size: clamp(16px, 2vw, 18px);
        line-height: 1.7;
        color: var(--neutral-600);
        margin: 0 0 1.5rem;
    }

    @media (max-width: 768px) {
        .our-story .our-story__content {
            grid-template-columns: 1fr;
        }
    }

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

    .faq-wave .wrap {
        max-width: 880px;
        margin: 0 auto;
    }

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

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

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

    .faq-wave .list {
        display: grid;
        gap: 10px;
    }

    .faq-wave .item {
        border: 1px solid rgba(255, 255, 255, .3);
        border-radius: var(--radius-lg);
        background: rgba(255, 255, 255, .12);
        overflow: hidden;
    }

    .faq-wave .q {
        width: 100%;
        border: 0;
        background: transparent;
        color: var(--fg-on-primary);
        text-align: left;
        padding: 12px;
        font: inherit;
        font-weight: 600;
        cursor: pointer;
    }

    .faq-wave .a {
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--anim-duration) var(--anim-ease);
    }

    .faq-wave .a p {
        margin: 0;
        padding: 0 12px 12px;
        opacity: .9;
    }

    .faq-wave .item.open .a {
        max-height: 220px;
    }

.partners {

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

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

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

    .partners .partners__grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
        gap: clamp(32px, 5vw, 48px);
    }

    .partners .partners__item {
        display: flex;
        flex-direction: column;
        gap: clamp(20px, 3vw, 28px);
        align-items: center;
        padding: clamp(24px, 4vw, 32px);
        background: var(--surface-1);
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-on-surface);
    }

    .partners .partners__logo {
        flex-shrink: 0;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .partners .partners__logo img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
    }

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

    .partners .partners__info p {
        font-size: clamp(15px, 2.2vw, 17px);
        line-height: 1.6;
        color: var(--neutral-600);
        margin: 0;
    }

    @media (max-width: 768px) {
        .partners .partners__item {
            flex-direction: column;
            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;
    transition: color var(--anim-duration) var(--anim-ease);
}

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

.main-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(--link);
    text-decoration: none;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
    display: block;
    font-weight: 500;
}

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

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

    .main-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;
        overflow-y: auto;
    }

    .main-nav.is-active {
        transform: translateX(0);
    }

    .nav-list {
        flex-direction: column;
        gap: calc(var(--gap) / 2);
    }

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

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

.site-footer {
    background-color: #1a1a1a;
    color: #e0e0e0;
    padding: 2.5rem 1rem;
    font-family: sans-serif;
    border-top: 3px solid #0066b2;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2.5rem;
  }
  .footer-section {
    display: flex;
    flex-direction: column;
  }
  .footer-logo {
    color: #ffffff;
    font-size: 1.8rem;
    margin: 0 0 1rem 0;
    font-weight: bold;
  }
  .footer-disclaimer {
    font-size: 0.85rem;
    line-height: 1.4;
    color: #aaa;
    margin: 0;
  }
  .footer-section h3 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    border-bottom: 1px solid #333;
    padding-bottom: 0.5rem;
  }
  .footer-nav, .footer-legal {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer-nav li, .footer-legal li {
    margin-bottom: 0.7rem;
  }
  .footer-nav a, .footer-legal a {
    color: #b3d4fc;
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-nav a:hover, .footer-legal a:hover {
    color: #ffffff;
    text-decoration: underline;
  }
  .footer-contact p {
    margin: 0 0 0.8rem 0;
    line-height: 1.5;
  }
  .footer-contact a {
    color: #b3d4fc;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .footer-social {
    margin-top: 1.5rem;
    display: flex;
    gap: 1rem;
  }
  .footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #333;
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
  }
  .footer-social a:hover {
    background-color: #0066b2;
  }
  .footer-bottom {
    max-width: 1200px;
    margin: 2.5rem auto 0;
    padding-top: 1.5rem;
    border-top: 1px solid #333;
    text-align: center;
    font-size: 0.9rem;
    color: #aaa;
  }

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

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

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

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

    .cookies__inner p {
        margin: 0;
    }

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

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

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

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

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

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

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

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

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

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

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

.plans-l1 {

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

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

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

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

    .plans-l1__sub {
        margin: 10px 0 0;
        max-width: 72ch;
        color: var(--neutral-600);
    }

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

    .plans-l1__col {
        grid-column: span 4;
        border-radius: var(--radius-xl);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-md);
        padding: 16px;
        transition: transform var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease), border-color var(--anim-duration) var(--anim-ease);
    }

    .plans-l1__col:hover {
        transform: translateY(-4px);
        border-color: rgba(0, 86, 179, 0.35);
        box-shadow: var(--shadow-lg);
    }

    .plans-l1__head {
        padding: 14px;
        border-radius: var(--radius-lg);
        background: var(--bg-alt);
        border: 1px solid var(--neutral-300);
    }

    .plans-l1__name {
        font-weight: 900;
        letter-spacing: -.01em;
        color: var(--fg-on-page);
    }

    .plans-l1__price {
        margin-top: 8px;
        font-weight: 900;
        font-size: clamp(18px, 2.4vw, 28px);
        letter-spacing: -.02em;
        color: var(--bg-primary);
    }

    .plans-l1__body {
        margin-top: 12px;
        display: grid;
        gap: 8px;
    }

    .plans-l1__row {
        display: flex;
        gap: 10px;
        align-items: flex-start;
    }

    .plans-l1__ok {
        width: 24px;
        height: 24px;
        border-radius: 10px;
        display: grid;
        place-items: center;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border: 1px solid rgba(0, 0, 0, 0.06);
        font-weight: 900;
        flex: 0 0 auto;
        animation: plansL1Ok 2.8s ease-in-out infinite;
    }

    .plans-l1__col:nth-child(2) .plans-l1__ok {
        animation-duration: 3.3s
    }

    .plans-l1__col:nth-child(3) .plans-l1__ok {
        animation-duration: 3.8s
    }

    @keyframes plansL1Ok {
        0%, 100% {
            transform: translateY(0px)
        }
        50% {
            transform: translateY(-2px)
        }
    }

    .plans-l1__txt {
        color: var(--neutral-600);
        line-height: var(--line-height-base);
    }

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

    .plans-l1__btn:hover {
        background: var(--bg-primary-hover);
        transform: translateY(-1px);
    }

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

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

    @media (prefers-reduced-motion: reduce) {
        .plans-l1__ok {
            animation: none;
        }
    }

.capabilities {

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

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

    .capabilities .capabilities__h {
        text-align: center;
        margin-bottom: clamp(40px, 6vw, 72px);

    }

    .capabilities h2 {
        font-size: clamp(32px, 5vw, 48px);
        font-weight: 800;
        margin: 0 0 1rem;
    }

    .capabilities .capabilities__subtitle {
        font-size: clamp(16px, 2vw, 20px);
        margin: 0;
        opacity: 0.9;
    }

    .capabilities .capabilities__grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: clamp(20px, 3vw, 32px);
    }

    .capabilities .capabilities__card {
        background: var(--surface-light);
        padding: clamp(28px, 4vw, 40px);
        border-radius: var(--radius-xl);
        position: relative;

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

    .capabilities .capabilities__card:hover {
        transform: translateY(-8px);
    }

    .capabilities .capabilities__step {
        position: absolute;
        top: -16px;
        right: 24px;
        width: 48px;
        height: 48px;
        background: var(--accent);
        color: var(--accent-contrast);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 800;
        font-size: 20px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }

    .capabilities .capabilities__icon {
        font-size: 40px;
        margin-bottom: 1.5rem;
    }

    .capabilities .capabilities__card h3 {
        font-size: clamp(20px, 2.5vw, 24px);
        font-weight: 700;
        margin: 0 0 1rem;
        color: var(--fg-on-surface-light);
    }

    .capabilities .capabilities__card p {
        margin: 0;
        color: var(--neutral-600);
        line-height: var(--line-height-base);
    }

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

.service-block-section {
    padding: clamp(48px, 8vw, 80px) 0;
    background-color: var(--bg-page);
    color: var(--fg-on-page);
}

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

.service-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: calc(var(--gap) * 2);
    align-items: center;
}

.service-block--flip {
    direction: rtl;
}

.service-block--flip > * {
    direction: ltr;
}

.service-block__image {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    width: 100%;
    display: block;
}

.service-block__content h3 {
    margin-bottom: var(--space-y);
    color: var(--fg-on-page);
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-block__content p {
    color: var(--neutral-600);
    margin-bottom: var(--space-y);
}

.service-block__content ul {
    margin-left: 1.5rem;
    color: var(--neutral-600);
}

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

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

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

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

.main-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(--link);
    text-decoration: none;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
    display: block;
    font-weight: 500;
}

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

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

    .main-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;
        overflow-y: auto;
    }

    .main-nav.is-active {
        transform: translateX(0);
    }

    .nav-list {
        flex-direction: column;
        gap: calc(var(--gap) / 2);
    }

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

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

.site-footer {
    background-color: #1a1a1a;
    color: #e0e0e0;
    padding: 2.5rem 1rem;
    font-family: sans-serif;
    border-top: 3px solid #0066b2;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2.5rem;
  }
  .footer-section {
    display: flex;
    flex-direction: column;
  }
  .footer-logo {
    color: #ffffff;
    font-size: 1.8rem;
    margin: 0 0 1rem 0;
    font-weight: bold;
  }
  .footer-disclaimer {
    font-size: 0.85rem;
    line-height: 1.4;
    color: #aaa;
    margin: 0;
  }
  .footer-section h3 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    border-bottom: 1px solid #333;
    padding-bottom: 0.5rem;
  }
  .footer-nav, .footer-legal {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer-nav li, .footer-legal li {
    margin-bottom: 0.7rem;
  }
  .footer-nav a, .footer-legal a {
    color: #b3d4fc;
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-nav a:hover, .footer-legal a:hover {
    color: #ffffff;
    text-decoration: underline;
  }
  .footer-contact p {
    margin: 0 0 0.8rem 0;
    line-height: 1.5;
  }
  .footer-contact a {
    color: #b3d4fc;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .footer-social {
    margin-top: 1.5rem;
    display: flex;
    gap: 1rem;
  }
  .footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #333;
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
  }
  .footer-social a:hover {
    background-color: #0066b2;
  }
  .footer-bottom {
    max-width: 1200px;
    margin: 2.5rem auto 0;
    padding-top: 1.5rem;
    border-top: 1px solid #333;
    text-align: center;
    font-size: 0.9rem;
    color: #aaa;
  }

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

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

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

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

    .cookies__inner p {
        margin: 0;
    }

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

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

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

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

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

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

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

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

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

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

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

.contact-wave {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 3vw, 36px);
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
        position: relative;
        overflow: hidden;
    }

    .contact-wave::before,
    .contact-wave::after {
        content: '';
        position: absolute;
        inset: 0;
        pointer-events: none;
    }

    .contact-wave::before {
        background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.22), transparent 55%);
        opacity: 0.9;
    }

    .contact-wave::after {
        background: radial-gradient(circle at 85% 65%, rgba(255, 107, 53, 0.28), transparent 55%);
        
        opacity: 0.85;
    }

    .contact-wave .wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        position: relative;
        z-index: 1;
    }

    .contact-wave header {
        margin-bottom: 18px;
        max-width: 720px;
    }

    .contact-wave h2 {
        margin: 0;
        font-size: clamp(28px, 4vw, 40px);
        letter-spacing: -0.02em;
        text-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    }

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

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

    .contact-wave .panel {
        border: 1px solid rgba(255, 255, 255, .28);
        background: linear-gradient(135deg, rgba(255, 255, 255, .18), rgba(255, 255, 255, .08));
        border-radius: var(--radius-lg);
        padding: 16px;
        backdrop-filter: blur(10px);
        box-shadow: var(--shadow-lg);
        position: relative;
        overflow: hidden;
    }

    .contact-wave .panel::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.14), transparent 60%);
        opacity: 0.7;
        pointer-events: none;
    }

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

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

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

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

    .contact-wave .info p {
        margin: 0 0 10px;
        opacity: .95;
        padding: 10px 12px;
        border-radius: var(--radius-md);
        background: rgba(0, 0, 0, 0.2);
        border: 1px solid rgba(255, 255, 255, 0.18);
    }

    .contact-wave .info p strong {
        color: var(--accent);
        letter-spacing: 0.02em;
    }

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

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

    .contact-wave .social a:hover {
        transform: translateY(-2px);
        background: rgba(0, 0, 0, 0.28);
    }

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

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

.clarifications-l1 {

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

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

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

    .clarifications-l1__title {
        margin: 0;
        font-size: clamp(24px, 4.2vw, 40px);
        letter-spacing: -.02em;
        line-height: 1.1;
        color: var(--fg-on-page);
    }

    .clarifications-l1__sub {
        margin: 10px 0 0;
        max-width: 72ch;
        color: var(--neutral-600);
    }

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

    .clarifications-l1__note {
        grid-column: span 4;
        border-radius: var(--radius-xl);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-md);
        padding: 16px;
        position: relative;
        overflow: hidden;
        animation: l1Float 6s var(--anim-ease) infinite;
    }

    .clarifications-l1__note:nth-child(2n) {
        animation-duration: 7.2s
    }

    .clarifications-l1__note:nth-child(3n) {
        animation-duration: 8.2s
    }

    @keyframes l1Float {
        0%, 100% {
            transform: translateY(0px)
        }
        50% {
            transform: translateY(-6px)
        }
    }

    .clarifications-l1__note::before {
        content: '';
        position: absolute;
        inset: -1px;
        background: radial-gradient(240px 120px at 20% 10%, rgba(0, 86, 179, 0.12), transparent 60%),
        radial-gradient(220px 140px at 85% 30%, rgba(255, 107, 53, 0.12), transparent 62%);
        pointer-events: none;
    }

    .clarifications-l1__cap {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        margin-bottom: 10px;
        position: relative;
        z-index: 1;
    }

    .clarifications-l1__badge {
        display: inline-flex;
        padding: 6px 10px;
        border-radius: 999px;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border: 1px solid rgba(0, 0, 0, 0.06);
        font-weight: 800;
        font-size: 0.9rem;
    }

    .clarifications-l1__spark {
        width: 10px;
        height: 10px;
        border-radius: 999px;
        background: var(--bg-primary);
        box-shadow: 0 0 0 0 rgba(0, 86, 179, 0.0);
        animation: l1Pulse 2.4s ease-in-out infinite;
    }

    @keyframes l1Pulse {
        0%, 100% {
            transform: scale(1);
            box-shadow: 0 0 0 0 rgba(0, 86, 179, 0.0)
        }
        50% {
            transform: scale(1.15);
            box-shadow: 0 0 0 10px rgba(0, 86, 179, 0.12)
        }
    }

    .clarifications-l1__q {
        margin: 0 0 8px;
        position: relative;
        z-index: 1;
        font-size: 1.05rem;
        letter-spacing: -.01em;
    }

    .clarifications-l1__a {
        margin: 0;
        position: relative;
        z-index: 1;
        color: var(--neutral-600);
        line-height: var(--line-height-base);
    }

    .clarifications-l1__note:hover {
        transform: translateY(-10px) rotate(-0.2deg);
        transition: transform var(--anim-duration) var(--anim-ease);
    }

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

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

    @media (prefers-reduced-motion: reduce) {
        .clarifications-l1__note, .clarifications-l1__spark {
            animation: none;
        }
    }

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

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

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

    .form-layers .intro p {
        margin: 10px 0 0;
        color: var(--fg-on-primary);
    }

    .form-layers .layers {
        border: 1px solid var(--neutral-600);
        border-radius: 16px;
        background: var(--surface-1);
        padding: 12px;
        display: grid;
        gap: 10px;
        color: var(--fg-on-surface);
    }

    .form-layers fieldset {
        border: 1px solid var(--border-on-surface);
        border-radius: 12px;
        padding: 10px;
        display: grid;
        gap: 8px;
    }

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

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

    .form-layers input:not([type="checkbox"]),
    .form-layers textarea {
        width: 100%;
        border: 1px solid var(--border-on-surface);
        border-radius: 8px;
        background: var(--surface-2);
        color: var(--fg-on-surface);
        padding: 9px;
        font: inherit;
    }

    .form-layers .agree {
        display: flex;
        gap: 8px;
        align-items: center;
    }

    .form-layers button {
        justify-self: start;
        border: 0;
        border-radius: 10px;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        padding: 16px 32px;
        margin: 0 auto;
        font-weight: bold;
        cursor: pointer;
        transition: background-color var(--anim-duration) var(--anim-ease);
    }

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

    .form-layers .notes {
        border: 1px solid var(--neutral-600);
        border-radius: 14px;
        background: var(--fg-on-primary);
        padding: 12px;
    }

    .form-layers .notes p {
        margin: 0 0 6px;
    }

.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;
    transition: color var(--anim-duration) var(--anim-ease);
}

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

.main-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(--link);
    text-decoration: none;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
    display: block;
    font-weight: 500;
}

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

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

    .main-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;
        overflow-y: auto;
    }

    .main-nav.is-active {
        transform: translateX(0);
    }

    .nav-list {
        flex-direction: column;
        gap: calc(var(--gap) / 2);
    }

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

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

.site-footer {
    background-color: #1a1a1a;
    color: #e0e0e0;
    padding: 2.5rem 1rem;
    font-family: sans-serif;
    border-top: 3px solid #0066b2;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2.5rem;
  }
  .footer-section {
    display: flex;
    flex-direction: column;
  }
  .footer-logo {
    color: #ffffff;
    font-size: 1.8rem;
    margin: 0 0 1rem 0;
    font-weight: bold;
  }
  .footer-disclaimer {
    font-size: 0.85rem;
    line-height: 1.4;
    color: #aaa;
    margin: 0;
  }
  .footer-section h3 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    border-bottom: 1px solid #333;
    padding-bottom: 0.5rem;
  }
  .footer-nav, .footer-legal {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer-nav li, .footer-legal li {
    margin-bottom: 0.7rem;
  }
  .footer-nav a, .footer-legal a {
    color: #b3d4fc;
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-nav a:hover, .footer-legal a:hover {
    color: #ffffff;
    text-decoration: underline;
  }
  .footer-contact p {
    margin: 0 0 0.8rem 0;
    line-height: 1.5;
  }
  .footer-contact a {
    color: #b3d4fc;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .footer-social {
    margin-top: 1.5rem;
    display: flex;
    gap: 1rem;
  }
  .footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #333;
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
  }
  .footer-social a:hover {
    background-color: #0066b2;
  }
  .footer-bottom {
    max-width: 1200px;
    margin: 2.5rem auto 0;
    padding-top: 1.5rem;
    border-top: 1px solid #333;
    text-align: center;
    font-size: 0.9rem;
    color: #aaa;
  }

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

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

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

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

    .cookies__inner p {
        margin: 0;
    }

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

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

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

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

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

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

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

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

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

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

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

.policy-zigzag {
        padding: clamp(56px, 8vw, 96px) 16px;
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
    }

    .policy-zigzag .wrap {
        max-width: 900px;
        margin: 0 auto;
    }

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

    .policy-zigzag .lead {
        margin: 10px 0 14px;
    }

    .policy-zigzag .list {
        display: grid;
        gap: 10px;
    }

    .policy-zigzag article {
        border: 1px solid var(--chip-bg);
        border-radius: 14px;
        background: var(--chip-bg);
        padding: 12px;
    }

    .policy-zigzag article:nth-child(even) {
        margin-left: 24px;
    }

    .policy-zigzag article:nth-child(odd) {
        margin-right: 24px;
    }

    .policy-zigzag .meta {
        margin: 0;
        font-size: .85rem;
        color: var(--neutral-300);
    }

    .policy-zigzag h3 {
        margin: 6px 0;
    }

    .policy-zigzag article p {
        margin: 0;
    }

    @media (max-width: 680px) {
        .policy-zigzag article:nth-child(even),
        .policy-zigzag article:nth-child(odd) {
            margin: 0;
        }
    }

.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;
    transition: color var(--anim-duration) var(--anim-ease);
}

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

.main-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(--link);
    text-decoration: none;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
    display: block;
    font-weight: 500;
}

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

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

    .main-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;
        overflow-y: auto;
    }

    .main-nav.is-active {
        transform: translateX(0);
    }

    .nav-list {
        flex-direction: column;
        gap: calc(var(--gap) / 2);
    }

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

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

.site-footer {
    background-color: #1a1a1a;
    color: #e0e0e0;
    padding: 2.5rem 1rem;
    font-family: sans-serif;
    border-top: 3px solid #0066b2;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2.5rem;
  }
  .footer-section {
    display: flex;
    flex-direction: column;
  }
  .footer-logo {
    color: #ffffff;
    font-size: 1.8rem;
    margin: 0 0 1rem 0;
    font-weight: bold;
  }
  .footer-disclaimer {
    font-size: 0.85rem;
    line-height: 1.4;
    color: #aaa;
    margin: 0;
  }
  .footer-section h3 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    border-bottom: 1px solid #333;
    padding-bottom: 0.5rem;
  }
  .footer-nav, .footer-legal {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer-nav li, .footer-legal li {
    margin-bottom: 0.7rem;
  }
  .footer-nav a, .footer-legal a {
    color: #b3d4fc;
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-nav a:hover, .footer-legal a:hover {
    color: #ffffff;
    text-decoration: underline;
  }
  .footer-contact p {
    margin: 0 0 0.8rem 0;
    line-height: 1.5;
  }
  .footer-contact a {
    color: #b3d4fc;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .footer-social {
    margin-top: 1.5rem;
    display: flex;
    gap: 1rem;
  }
  .footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #333;
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
  }
  .footer-social a:hover {
    background-color: #0066b2;
  }
  .footer-bottom {
    max-width: 1200px;
    margin: 2.5rem auto 0;
    padding-top: 1.5rem;
    border-top: 1px solid #333;
    text-align: center;
    font-size: 0.9rem;
    color: #aaa;
  }

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

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

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

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

    .cookies__inner p {
        margin: 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

    .terms-scroll .wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        grid-template-columns: 240px 1fr;
        gap: 16px;
    }

    .terms-scroll .sidebar {
        position: sticky;
        top: 16px;
        align-self: start;
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        background: var(--surface-2);
        padding: 12px;
    }

    .terms-scroll .sidebar h2 {
        margin: 0;
        font-size: clamp(24px, 3vw, 30px);
    }

    .terms-scroll .sidebar p {
        margin: 8px 0 0;
        color: var(--neutral-600);
    }

    .terms-scroll .content {
        display: grid;
        gap: 10px;
    }

    .terms-scroll .block {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-md);
        background: var(--surface-1);
        padding: 12px;
    }

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

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

    @media (max-width: 860px) {
        .terms-scroll .wrap {
            grid-template-columns: 1fr;
        }

        .terms-scroll .sidebar {
            position: static;
        }
    }

.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;
    transition: color var(--anim-duration) var(--anim-ease);
}

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

.main-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(--link);
    text-decoration: none;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
    display: block;
    font-weight: 500;
}

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

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

    .main-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;
        overflow-y: auto;
    }

    .main-nav.is-active {
        transform: translateX(0);
    }

    .nav-list {
        flex-direction: column;
        gap: calc(var(--gap) / 2);
    }

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

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

.site-footer {
    background-color: #1a1a1a;
    color: #e0e0e0;
    padding: 2.5rem 1rem;
    font-family: sans-serif;
    border-top: 3px solid #0066b2;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2.5rem;
  }
  .footer-section {
    display: flex;
    flex-direction: column;
  }
  .footer-logo {
    color: #ffffff;
    font-size: 1.8rem;
    margin: 0 0 1rem 0;
    font-weight: bold;
  }
  .footer-disclaimer {
    font-size: 0.85rem;
    line-height: 1.4;
    color: #aaa;
    margin: 0;
  }
  .footer-section h3 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    border-bottom: 1px solid #333;
    padding-bottom: 0.5rem;
  }
  .footer-nav, .footer-legal {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer-nav li, .footer-legal li {
    margin-bottom: 0.7rem;
  }
  .footer-nav a, .footer-legal a {
    color: #b3d4fc;
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-nav a:hover, .footer-legal a:hover {
    color: #ffffff;
    text-decoration: underline;
  }
  .footer-contact p {
    margin: 0 0 0.8rem 0;
    line-height: 1.5;
  }
  .footer-contact a {
    color: #b3d4fc;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .footer-social {
    margin-top: 1.5rem;
    display: flex;
    gap: 1rem;
  }
  .footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #333;
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
  }
  .footer-social a:hover {
    background-color: #0066b2;
  }
  .footer-bottom {
    max-width: 1200px;
    margin: 2.5rem auto 0;
    padding-top: 1.5rem;
    border-top: 1px solid #333;
    text-align: center;
    font-size: 0.9rem;
    color: #aaa;
  }

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

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

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

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

    .cookies__inner p {
        margin: 0;
    }

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

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

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

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

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

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

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

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

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

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

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

.th-core-b {
        padding: clamp(56px, 10vw, 110px) 16px;
        background: var(--bg-page);
        color: var(--fg-on-page);
    }

    .th-core-b .box {
        max-width: 700px;
        margin: 0 auto;
        text-align: center;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-xl);
        padding: clamp(18px, 3vw, 30px);
    }

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

    .th-core-b p {
        margin: 10px 0 0;
        color: var(--neutral-600);
    }

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

.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;
    transition: color var(--anim-duration) var(--anim-ease);
}

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

.main-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(--link);
    text-decoration: none;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
    display: block;
    font-weight: 500;
}

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

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

    .main-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;
        overflow-y: auto;
    }

    .main-nav.is-active {
        transform: translateX(0);
    }

    .nav-list {
        flex-direction: column;
        gap: calc(var(--gap) / 2);
    }

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

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

.site-footer {
    background-color: #1a1a1a;
    color: #e0e0e0;
    padding: 2.5rem 1rem;
    font-family: sans-serif;
    border-top: 3px solid #0066b2;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2.5rem;
  }
  .footer-section {
    display: flex;
    flex-direction: column;
  }
  .footer-logo {
    color: #ffffff;
    font-size: 1.8rem;
    margin: 0 0 1rem 0;
    font-weight: bold;
  }
  .footer-disclaimer {
    font-size: 0.85rem;
    line-height: 1.4;
    color: #aaa;
    margin: 0;
  }
  .footer-section h3 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    border-bottom: 1px solid #333;
    padding-bottom: 0.5rem;
  }
  .footer-nav, .footer-legal {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer-nav li, .footer-legal li {
    margin-bottom: 0.7rem;
  }
  .footer-nav a, .footer-legal a {
    color: #b3d4fc;
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-nav a:hover, .footer-legal a:hover {
    color: #ffffff;
    text-decoration: underline;
  }
  .footer-contact p {
    margin: 0 0 0.8rem 0;
    line-height: 1.5;
  }
  .footer-contact a {
    color: #b3d4fc;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .footer-social {
    margin-top: 1.5rem;
    display: flex;
    gap: 1rem;
  }
  .footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #333;
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
  }
  .footer-social a:hover {
    background-color: #0066b2;
  }
  .footer-bottom {
    max-width: 1200px;
    margin: 2.5rem auto 0;
    padding-top: 1.5rem;
    border-top: 1px solid #333;
    text-align: center;
    font-size: 0.9rem;
    color: #aaa;
  }

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

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

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

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

    .cookies__inner p {
        margin: 0;
    }

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

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

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

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

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

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

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

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

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

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

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

.nf-core-b {
        padding: clamp(56px, 10vw, 110px) 16px;
        background: var(--bg-page);
        color: var(--fg-on-page);
    }

    .nf-core-b .box {
        max-width: 700px;
        margin: 0 auto;
        text-align: center;
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-xl);
        background: var(--surface-1);
        padding: clamp(18px, 3vw, 30px);
    }

    .nf-core-b h1 {
        margin: 0;
        font-size: clamp(32px, 6vw, 56px);
    }

    .nf-core-b p {
        margin: 10px 0 0;
        color: var(--neutral-600);
    }

    .nf-core-b a {
        display: inline-block;
        margin-top: 18px;
        padding: 10px 16px;
        border-radius: var(--radius-md);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        text-decoration: none;
    }