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

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

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

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

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

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

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

  --bg-page: #F8FAFC;
  --fg-on-page: #0F172A;

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

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

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

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

  --bg-accent: rgba(0, 163, 255, 0.1);
  --fg-on-accent: #005A99;
  --bg-accent-hover: #0088DD;

  --success: #10B981;
  --success-contrast: #FFFFFF;
  --warning: #F59E0B;
  --warning-contrast: #FFFFFF;
  --danger: #EF4444;
  --danger-contrast: #FFFFFF;

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

  --gradient-hero: linear-gradient(135deg, #0066CC 0%, #00A3FF 50%, #4FD1C5 100%);
  --gradient-accent: linear-gradient(90deg, #00A3FF 0%, #4FD1C5 100%);

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

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

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

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

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

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

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

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

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

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

.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 2rem;
    height: 2rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
}

.burger-line {
    width: 100%;
    height: 2px;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
}

.main-nav {
    display: block;
}

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

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

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

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

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

    .main-nav.is-open {
        right: 0;
    }

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

    .nav-link {
        display: block;
        padding: 1rem;
        border-radius: var(--radius-md);
        background-color: var(--surface-light);
    }

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

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

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

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        padding: 3rem 1rem 1rem;
        border-top: 1px solid #eaeaea;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    }

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

    .footer-section h3 {
        font-size: 1.1rem;
        margin-bottom: 1.2rem;
        color: #111;
    }

    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c5282;
        margin-bottom: 0.5rem;
    }

    .footer-disclaimer {
        font-size: 0.9rem;
        color: #666;
        margin-top: 1rem;
    }

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

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

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

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

    .footer-bottom {
        max-width: 1200px;
        margin: 0 auto;
        padding-top: 1.5rem;
        border-top: 1px solid #ddd;
        text-align: center;
    }

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

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

        .footer-legal {
            flex-direction: column;
            gap: 0.8rem;
        }
    }

.cookies--colored-v5 {
        position: fixed;
        bottom: 1rem;
        left: 1rem;
        border-radius: 1rem;
        font-family: var(--font-family);
        padding: 56px 20px;
        background: var(--neutral-900);
        color: var(--neutral-0);
    }

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

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

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

    .cookies__list {
        margin: 0 0 10px;
        padding-left: 1.1rem;
        display: grid;
        gap: 6px;
    }

    .cookies__item {
        font-size: 0.9rem;
        color: rgba(226, 232, 240, 0.9);
    }

    .cookies__notice {
        margin: 0;
        font-size: 0.85rem;
        color: var(--warning);
    }

    .cookie-banner__actions {
        display: flex;
        gap: 0.75rem;
        flex-shrink: 0;
    }

    .cookie-banner__btn {
        padding: 0.75rem 1.3rem;
        border: 2px solid var(--fg-on-accent);
        border-radius: var(--radius-lg);
        font-size: 0.95rem;
        cursor: pointer;
        transition: all .25s;
        font-weight: 500;
    }

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

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

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

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

    @media (max-width: 767px) {
        .cookie-banner__c {
            flex-wrap: wrap;
        }

        .cookie-banner__icon {
            font-size: 2rem;
        }

        .cookie-banner__actions {
            width: 100%;
        }

        .cookie-banner__btn {
            flex: 1;
        }
    }

.index-hero {
        font-family: var(--font-family);
        color: var(--fg-on-page);
        background: var(--bg-page);
        padding: clamp(32px, 6vw, 96px) clamp(16px, 4vw, 40px);
    }

    .index-hero .index-hero__c {
        max-width: var(--max-w);
        margin: 0 auto;
        text-align: center;
    }

    .index-hero .index-hero__eyebrow {
        display: inline-block;
        padding: .35rem .7rem;
        border-radius: 999px;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        font-weight: 600;
        margin-bottom: .75rem;
    }

    .index-hero h1 {
        font-size: clamp(30px, 6.5vw, 72px);
        margin: .1em 0 .3em;
        color: white;
        background: rgba(0,0,0,0.7);
        padding: var(--space-y);
        border-radius: var(--radius-lg);
    }

    .index-hero p {
        max-width: 60ch;
        margin: 0 auto 1.25rem;
        color: white;
        background: rgba(0,0,0,0.7);
        padding: 14px;
        border-radius: var(--radius-lg);
    }

    .index-hero .index-hero__form {
        display: flex;
        gap: 10px;
        justify-content: center;
        flex-wrap: wrap;
        margin-top: 1rem;
    }

    .index-hero input {
        padding: .9rem 1rem;
        border-radius: var(--radius-md);
        border: 1px solid var(--ring);
        min-width: 260px;
        outline: none;
    }

    .index-hero input {
        position: relative;
    }

    .index-hero input::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        height: 2px;
        background: var(--gradient-hero);
        transform-origin: left;
        transform: scaleX(0);
        transition: transform var(--anim-duration) var(--anim-ease);
    }

    .section-anim-brand-underline:hover::after {
        transform: scaleX(1);
    }

    .index-hero button {
        padding: .95rem 1.3rem;
        border-radius: var(--radius-md);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border: 0;
        cursor: pointer;
        box-shadow: var(--shadow-md);
    }

    .index-hero button:hover {
        transform: translateY(-2px);
    }

    @media (max-width: 767px) {
        .index-hero .index-hero__form {
            flex-direction: column;
        }

        .index-hero input {
            min-width: auto;
            width: 100%;
        }
    }

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

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

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

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

    .index-cta .index-cta__btn:hover {
        background-color: var(--neutral-100);
    }

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

    .index-cta p {
        margin: 0;
        color: var(--neutral-100);
        opacity: 0.9;
        font-size: clamp(1rem, 1.5vw, 1.125rem);
        line-height: var(--line-height-base);
    }

    @media (max-width: 767px) {
        .index-cta .index-cta__cta {
            grid-template-columns: 1fr;
            text-align: center;
        }
    }

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

    .index-features h2 {
        color: var(--bg-primary)
    }

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

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

    .index-features .index-features__feat {
        border: 1px dashed var(--ring);
        border-radius: var(--radius-md);
        padding: clamp(12px, 2vw, 20px);
        background: var(--bg-page);
    }

    .index-features .index-features__badge {
        background: var(--bg-accent);
        color: var(--neutral-600);
        border-radius: 999px;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 600;
        margin-bottom: 1rem;
    }

    .index-features h3 {
        margin: .25rem 0 .35rem;
    }

    .index-features p {
        color: var(--neutral-600);
    }

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

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

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

    .contact-support .banner {
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-radius: var(--radius-xl);
        padding: clamp(12px, 2vw, 20px);
        box-shadow: var(--shadow-lg);
    }

    .contact-support .btn {
        background: var(--fg-on-page);
        text-align: center;
        color: var(--bg-page);
        text-decoration: none;
        padding: .7rem 1rem;
        border-radius: var(--radius-md);
    }

    .contact-support .txt {
        margin: .8rem 0 0;
        color: var(--fg-on-page);
    }

    @media (max-width: 767px) {
        .contact-support .banner {
            flex-direction: column;
            align-items: flex-start;
            gap: 16px;
        }
    }

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

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

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

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

.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 2rem;
    height: 2rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
}

.burger-line {
    width: 100%;
    height: 2px;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
}

.main-nav {
    display: block;
}

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

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

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

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

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

    .main-nav.is-open {
        right: 0;
    }

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

    .nav-link {
        display: block;
        padding: 1rem;
        border-radius: var(--radius-md);
        background-color: var(--surface-light);
    }

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

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

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

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        padding: 3rem 1rem 1rem;
        border-top: 1px solid #eaeaea;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    }

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

    .footer-section h3 {
        font-size: 1.1rem;
        margin-bottom: 1.2rem;
        color: #111;
    }

    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c5282;
        margin-bottom: 0.5rem;
    }

    .footer-disclaimer {
        font-size: 0.9rem;
        color: #666;
        margin-top: 1rem;
    }

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

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

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

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

    .footer-bottom {
        max-width: 1200px;
        margin: 0 auto;
        padding-top: 1.5rem;
        border-top: 1px solid #ddd;
        text-align: center;
    }

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

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

        .footer-legal {
            flex-direction: column;
            gap: 0.8rem;
        }
    }

.cookies--colored-v5 {
        position: fixed;
        bottom: 1rem;
        left: 1rem;
        border-radius: 1rem;
        font-family: var(--font-family);
        padding: 56px 20px;
        background: var(--neutral-900);
        color: var(--neutral-0);
    }

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

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

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

    .cookies__list {
        margin: 0 0 10px;
        padding-left: 1.1rem;
        display: grid;
        gap: 6px;
    }

    .cookies__item {
        font-size: 0.9rem;
        color: rgba(226, 232, 240, 0.9);
    }

    .cookies__notice {
        margin: 0;
        font-size: 0.85rem;
        color: var(--warning);
    }

    .cookie-banner__actions {
        display: flex;
        gap: 0.75rem;
        flex-shrink: 0;
    }

    .cookie-banner__btn {
        padding: 0.75rem 1.3rem;
        border: 2px solid var(--fg-on-accent);
        border-radius: var(--radius-lg);
        font-size: 0.95rem;
        cursor: pointer;
        transition: all .25s;
        font-weight: 500;
    }

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

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

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

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

    @media (max-width: 767px) {
        .cookie-banner__c {
            flex-wrap: wrap;
        }

        .cookie-banner__icon {
            font-size: 2rem;
        }

        .cookie-banner__actions {
            width: 100%;
        }

        .cookie-banner__btn {
            flex: 1;
        }
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .project-list .project-list__tags {
        display: flex;
        gap: 0.5rem;
        flex-wrap: wrap;
    }

    .project-list .project-list__tag {
        padding: 0.25rem 0.75rem;
        border-radius: var(--radius-sm);
        background: var(--bg-page);
        color: var(--neutral-600);
        font-size: 0.875rem;
    }

.partners {
        font-family: var(--font-family);
        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__card {
        background: var(--surface-1);
        padding: clamp(32px, 5vw, 40px);
        border-radius: var(--radius-xl);
        border: 1px solid var(--border-on-surface);
        text-align: center;
    }

    .partners .partners__logo {
        width: 100%;
        height: 140px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: clamp(20px, 3vw, 28px);
    }

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

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

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

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

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

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

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

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

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

    /* Si randomNumber est pair (2) - le premier enfant obtient order: 2 */
    .testimonials .testimonials__carousel > *:first-child {
        order: calc((var(--random-number) % 2) * 2);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

    /* Si randomNumber est pair (2) - le premier enfant obtient order: 2 */
    .testimonials .testimonials__dots > *:first-child {
        order: calc((var(--random-number) % 2) * 2);
    }

    .testimonials .testimonials__dot {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        border: 2px solid rgba(255, 255, 255, 0.5);
        background: transparent;
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
        padding: 0;
    }

    .testimonials .testimonials__dot:hover,
    .testimonials .testimonials__dot.active {
        background: var(--fg-on-primary);
        border-color: var(--fg-on-primary);
        transform: scale(1.2);
    }

    @

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

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

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

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

.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 2rem;
    height: 2rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
}

.burger-line {
    width: 100%;
    height: 2px;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
}

.main-nav {
    display: block;
}

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

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

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

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

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

    .main-nav.is-open {
        right: 0;
    }

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

    .nav-link {
        display: block;
        padding: 1rem;
        border-radius: var(--radius-md);
        background-color: var(--surface-light);
    }

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

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

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

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        padding: 3rem 1rem 1rem;
        border-top: 1px solid #eaeaea;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    }

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

    .footer-section h3 {
        font-size: 1.1rem;
        margin-bottom: 1.2rem;
        color: #111;
    }

    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c5282;
        margin-bottom: 0.5rem;
    }

    .footer-disclaimer {
        font-size: 0.9rem;
        color: #666;
        margin-top: 1rem;
    }

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

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

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

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

    .footer-bottom {
        max-width: 1200px;
        margin: 0 auto;
        padding-top: 1.5rem;
        border-top: 1px solid #ddd;
        text-align: center;
    }

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

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

        .footer-legal {
            flex-direction: column;
            gap: 0.8rem;
        }
    }

.cookies--colored-v5 {
        position: fixed;
        bottom: 1rem;
        left: 1rem;
        border-radius: 1rem;
        font-family: var(--font-family);
        padding: 56px 20px;
        background: var(--neutral-900);
        color: var(--neutral-0);
    }

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

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

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

    .cookies__list {
        margin: 0 0 10px;
        padding-left: 1.1rem;
        display: grid;
        gap: 6px;
    }

    .cookies__item {
        font-size: 0.9rem;
        color: rgba(226, 232, 240, 0.9);
    }

    .cookies__notice {
        margin: 0;
        font-size: 0.85rem;
        color: var(--warning);
    }

    .cookie-banner__actions {
        display: flex;
        gap: 0.75rem;
        flex-shrink: 0;
    }

    .cookie-banner__btn {
        padding: 0.75rem 1.3rem;
        border: 2px solid var(--fg-on-accent);
        border-radius: var(--radius-lg);
        font-size: 0.95rem;
        cursor: pointer;
        transition: all .25s;
        font-weight: 500;
    }

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

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

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

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

    @media (max-width: 767px) {
        .cookie-banner__c {
            flex-wrap: wrap;
        }

        .cookie-banner__icon {
            font-size: 2rem;
        }

        .cookie-banner__actions {
            width: 100%;
        }

        .cookie-banner__btn {
            flex: 1;
        }
    }

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

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

    .project-item .project-item__header {
        text-align: center;
        margin-bottom: var(--space-y);
        color: var(--fg-on-page);
    }

    .project-item h1 {
        font-size: clamp(28px, 5vw, 48px);
        margin: 0 0 1rem;
    }

    .project-item .project-item__subtitle {
        font-size: clamp(16px, 2.4vw, 20px);
        color: rgba(255, 255, 255, 0.9);
    }

    .project-item .project-item__gallery {
        display: grid;
        gap: 1rem;
        margin-bottom: var(--space-y);
    }

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

        /* Si randomNumber est pair (2) - le premier enfant obtient order: 2 */
        .project-item .project-item__gallery > *:first-child {
            order: calc((var(--random-number) % 2) * 2);
        }
    }

    .project-item .project-item__image img {
        width: 100%;
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-md);
    }

    .project-item .project-item__description,
    .project-item .project-item__results {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        padding: clamp(24px, 3vw, 40px);
        border-radius: var(--radius-lg);
        border: 1px solid rgba(255, 255, 255, 0.2);
        margin-bottom: var(--space-y);
    }

    .project-item h2 {
        font-size: clamp(24px, 4vw, 32px);
        margin: 0 0 1rem;
        color: var(--fg-on-page);
    }

    .project-item .project-item__description,
    .project-item .project-item__results {
        line-height: 1.8;
        color: rgba(255, 255, 255, 0.9);
    }

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

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

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

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

.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 2rem;
    height: 2rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
}

.burger-line {
    width: 100%;
    height: 2px;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
}

.main-nav {
    display: block;
}

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

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

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

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

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

    .main-nav.is-open {
        right: 0;
    }

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

    .nav-link {
        display: block;
        padding: 1rem;
        border-radius: var(--radius-md);
        background-color: var(--surface-light);
    }

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

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

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

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        padding: 3rem 1rem 1rem;
        border-top: 1px solid #eaeaea;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    }

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

    .footer-section h3 {
        font-size: 1.1rem;
        margin-bottom: 1.2rem;
        color: #111;
    }

    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c5282;
        margin-bottom: 0.5rem;
    }

    .footer-disclaimer {
        font-size: 0.9rem;
        color: #666;
        margin-top: 1rem;
    }

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

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

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

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

    .footer-bottom {
        max-width: 1200px;
        margin: 0 auto;
        padding-top: 1.5rem;
        border-top: 1px solid #ddd;
        text-align: center;
    }

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

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

        .footer-legal {
            flex-direction: column;
            gap: 0.8rem;
        }
    }

.cookies--colored-v5 {
        position: fixed;
        bottom: 1rem;
        left: 1rem;
        border-radius: 1rem;
        font-family: var(--font-family);
        padding: 56px 20px;
        background: var(--neutral-900);
        color: var(--neutral-0);
    }

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

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

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

    .cookies__list {
        margin: 0 0 10px;
        padding-left: 1.1rem;
        display: grid;
        gap: 6px;
    }

    .cookies__item {
        font-size: 0.9rem;
        color: rgba(226, 232, 240, 0.9);
    }

    .cookies__notice {
        margin: 0;
        font-size: 0.85rem;
        color: var(--warning);
    }

    .cookie-banner__actions {
        display: flex;
        gap: 0.75rem;
        flex-shrink: 0;
    }

    .cookie-banner__btn {
        padding: 0.75rem 1.3rem;
        border: 2px solid var(--fg-on-accent);
        border-radius: var(--radius-lg);
        font-size: 0.95rem;
        cursor: pointer;
        transition: all .25s;
        font-weight: 500;
    }

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

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

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

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

    @media (max-width: 767px) {
        .cookie-banner__c {
            flex-wrap: wrap;
        }

        .cookie-banner__icon {
            font-size: 2rem;
        }

        .cookie-banner__actions {
            width: 100%;
        }

        .cookie-banner__btn {
            flex: 1;
        }
    }

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

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

    .project-item .project-item__header {
        text-align: center;
        margin-bottom: var(--space-y);
        color: var(--fg-on-page);
    }

    .project-item h1 {
        font-size: clamp(28px, 5vw, 48px);
        margin: 0 0 1rem;
    }

    .project-item .project-item__subtitle {
        font-size: clamp(16px, 2.4vw, 20px);
        color: rgba(255, 255, 255, 0.9);
    }

    .project-item .project-item__gallery {
        display: grid;
        gap: 1rem;
        margin-bottom: var(--space-y);
    }

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

        /* Si randomNumber est pair (2) - le premier enfant obtient order: 2 */
        .project-item .project-item__gallery > *:first-child {
            order: calc((var(--random-number) % 2) * 2);
        }
    }

    .project-item .project-item__image img {
        width: 100%;
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-md);
    }

    .project-item .project-item__description,
    .project-item .project-item__results {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        padding: clamp(24px, 3vw, 40px);
        border-radius: var(--radius-lg);
        border: 1px solid rgba(255, 255, 255, 0.2);
        margin-bottom: var(--space-y);
    }

    .project-item h2 {
        font-size: clamp(24px, 4vw, 32px);
        margin: 0 0 1rem;
        color: var(--fg-on-page);
    }

    .project-item .project-item__description,
    .project-item .project-item__results {
        line-height: 1.8;
        color: rgba(255, 255, 255, 0.9);
    }

    .project-item ul {
        padding-left: 1.5rem;
        margin: 1rem 0;
    }

    .project-item li {
        margin-bottom: 0.75rem;
    }

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

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

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

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

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

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

    /* Si randomNumber est pair (2) - le premier enfant obtient order: 2 */
    .testimonials .testimonials__carousel > *:first-child {
        order: calc((var(--random-number) % 2) * 2);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

    /* Si randomNumber est pair (2) - le premier enfant obtient order: 2 */
    .testimonials .testimonials__dots > *:first-child {
        order: calc((var(--random-number) % 2) * 2);
    }

    .testimonials .testimonials__dot {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        border: 2px solid rgba(255, 255, 255, 0.5);
        background: transparent;
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
        padding: 0;
    }

    .testimonials .testimonials__dot:hover,
    .testimonials .testimonials__dot.active {
        background: var(--fg-on-primary);
        border-color: var(--fg-on-primary);
        transform: scale(1.2);
    }

    @

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

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

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

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

.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 2rem;
    height: 2rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
}

.burger-line {
    width: 100%;
    height: 2px;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
}

.main-nav {
    display: block;
}

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

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

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

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

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

    .main-nav.is-open {
        right: 0;
    }

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

    .nav-link {
        display: block;
        padding: 1rem;
        border-radius: var(--radius-md);
        background-color: var(--surface-light);
    }

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

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

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

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        padding: 3rem 1rem 1rem;
        border-top: 1px solid #eaeaea;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    }

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

    .footer-section h3 {
        font-size: 1.1rem;
        margin-bottom: 1.2rem;
        color: #111;
    }

    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c5282;
        margin-bottom: 0.5rem;
    }

    .footer-disclaimer {
        font-size: 0.9rem;
        color: #666;
        margin-top: 1rem;
    }

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

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

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

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

    .footer-bottom {
        max-width: 1200px;
        margin: 0 auto;
        padding-top: 1.5rem;
        border-top: 1px solid #ddd;
        text-align: center;
    }

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

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

        .footer-legal {
            flex-direction: column;
            gap: 0.8rem;
        }
    }

.cookies--colored-v5 {
        position: fixed;
        bottom: 1rem;
        left: 1rem;
        border-radius: 1rem;
        font-family: var(--font-family);
        padding: 56px 20px;
        background: var(--neutral-900);
        color: var(--neutral-0);
    }

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

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

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

    .cookies__list {
        margin: 0 0 10px;
        padding-left: 1.1rem;
        display: grid;
        gap: 6px;
    }

    .cookies__item {
        font-size: 0.9rem;
        color: rgba(226, 232, 240, 0.9);
    }

    .cookies__notice {
        margin: 0;
        font-size: 0.85rem;
        color: var(--warning);
    }

    .cookie-banner__actions {
        display: flex;
        gap: 0.75rem;
        flex-shrink: 0;
    }

    .cookie-banner__btn {
        padding: 0.75rem 1.3rem;
        border: 2px solid var(--fg-on-accent);
        border-radius: var(--radius-lg);
        font-size: 0.95rem;
        cursor: pointer;
        transition: all .25s;
        font-weight: 500;
    }

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

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

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

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

    @media (max-width: 767px) {
        .cookie-banner__c {
            flex-wrap: wrap;
        }

        .cookie-banner__icon {
            font-size: 2rem;
        }

        .cookie-banner__actions {
            width: 100%;
        }

        .cookie-banner__btn {
            flex: 1;
        }
    }

.project-item {
        font-family: var(--font-family);
        color: var(--fg-on-primary);
        background: var(--gradient-hero);
        padding: clamp(16px, 3vw, 40px);
    }

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

    .project-item .project-item__header {
        text-align: center;
        margin-bottom: var(--space-y);
        color: var(--fg-on-primary);
    }

    .project-item h1 {
        font-size: clamp(28px, 5vw, 48px);
        margin: 0 0 1rem;
    }

    .project-item .project-item__subtitle {
        font-size: clamp(16px, 2.4vw, 20px);
        color: rgba(255, 255, 255, 0.9);
    }

    .project-item .project-item__gallery {
        display: grid;
        gap: 1rem;
        margin-bottom: var(--space-y);
    }

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

        /* Si randomNumber est pair (2) - le premier enfant obtient order: 2 */
        .project-item .project-item__gallery > *:first-child {
            order: calc((var(--random-number) % 2) * 2);
        }
    }

    .project-item .project-item__image img {
        width: 100%;
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-md);
    }

    .project-item .project-item__description,
    .project-item .project-item__results {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        padding: clamp(24px, 3vw, 40px);
        border-radius: var(--radius-lg);
        border: 1px solid rgba(255, 255, 255, 0.2);
        margin-bottom: var(--space-y);
    }

    .project-item h2 {
        font-size: clamp(24px, 4vw, 32px);
        margin: 0 0 1rem;
        color: var(--fg-on-primary);
    }

    .project-item .project-item__description,
    .project-item .project-item__results {
        line-height: 1.8;
        color: rgba(255, 255, 255, 0.9);
    }

    .project-item ul {
        padding-left: 1.5rem;
        margin: 1rem 0;
    }

    .project-item li {
        margin-bottom: 0.75rem;
    }

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

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

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

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

.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 2rem;
    height: 2rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
}

.burger-line {
    width: 100%;
    height: 2px;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
}

.main-nav {
    display: block;
}

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

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

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

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

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

    .main-nav.is-open {
        right: 0;
    }

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

    .nav-link {
        display: block;
        padding: 1rem;
        border-radius: var(--radius-md);
        background-color: var(--surface-light);
    }

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

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

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

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        padding: 3rem 1rem 1rem;
        border-top: 1px solid #eaeaea;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    }

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

    .footer-section h3 {
        font-size: 1.1rem;
        margin-bottom: 1.2rem;
        color: #111;
    }

    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c5282;
        margin-bottom: 0.5rem;
    }

    .footer-disclaimer {
        font-size: 0.9rem;
        color: #666;
        margin-top: 1rem;
    }

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

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

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

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

    .footer-bottom {
        max-width: 1200px;
        margin: 0 auto;
        padding-top: 1.5rem;
        border-top: 1px solid #ddd;
        text-align: center;
    }

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

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

        .footer-legal {
            flex-direction: column;
            gap: 0.8rem;
        }
    }

.cookies--colored-v5 {
        position: fixed;
        bottom: 1rem;
        left: 1rem;
        border-radius: 1rem;
        font-family: var(--font-family);
        padding: 56px 20px;
        background: var(--neutral-900);
        color: var(--neutral-0);
    }

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

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

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

    .cookies__list {
        margin: 0 0 10px;
        padding-left: 1.1rem;
        display: grid;
        gap: 6px;
    }

    .cookies__item {
        font-size: 0.9rem;
        color: rgba(226, 232, 240, 0.9);
    }

    .cookies__notice {
        margin: 0;
        font-size: 0.85rem;
        color: var(--warning);
    }

    .cookie-banner__actions {
        display: flex;
        gap: 0.75rem;
        flex-shrink: 0;
    }

    .cookie-banner__btn {
        padding: 0.75rem 1.3rem;
        border: 2px solid var(--fg-on-accent);
        border-radius: var(--radius-lg);
        font-size: 0.95rem;
        cursor: pointer;
        transition: all .25s;
        font-weight: 500;
    }

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

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

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

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

    @media (max-width: 767px) {
        .cookie-banner__c {
            flex-wrap: wrap;
        }

        .cookie-banner__icon {
            font-size: 2rem;
        }

        .cookie-banner__actions {
            width: 100%;
        }

        .cookie-banner__btn {
            flex: 1;
        }
    }

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

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

    .about-mission .about-mission__cards {
        display: grid;
        gap: var(--space-x);
    }

    .about-mission .about-mission__card {
        background: var(--surface-1);
        color: var(--fg-on-surface);
        border-radius: var(--radius-lg);
        padding: clamp(12px, 2vw, 20px);
        box-shadow: var(--shadow-md);
        border: 1px solid var(--border-on-surface);
    }

    .about-mission .about-mission__card h4 {
        color: var(--brand);
        margin-bottom: var(--gap);
        font-size: 1.25rem;
    }

    .about-mission .about-mission__card p {
        line-height: var(--line-height-base);
        color: var(--neutral-800);
    }

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

.our-story--light-v6 {
    font-family: var(--font-family);
    padding: 48px 20px;
    background: var(--bg-page);
    color: var(--fg-on-page);
}

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

.our-story__inner h2 {
    margin: 0 0 6px;
    font-size: clamp(22px,3.5vw,28px);
}

.our-story__lead {
    margin: 0 0 8px;
    font-size: 0.95rem;
    color: var(--neutral-600);
}

.our-story__text {
    margin: 0;
    font-size: 0.95rem;
    color: var(--neutral-600);
    line-height: 1.7;
}

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

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

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

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

.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 2rem;
    height: 2rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
}

.burger-line {
    width: 100%;
    height: 2px;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
}

.main-nav {
    display: block;
}

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

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

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

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

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

    .main-nav.is-open {
        right: 0;
    }

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

    .nav-link {
        display: block;
        padding: 1rem;
        border-radius: var(--radius-md);
        background-color: var(--surface-light);
    }

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

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

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

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        padding: 3rem 1rem 1rem;
        border-top: 1px solid #eaeaea;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    }

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

    .footer-section h3 {
        font-size: 1.1rem;
        margin-bottom: 1.2rem;
        color: #111;
    }

    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c5282;
        margin-bottom: 0.5rem;
    }

    .footer-disclaimer {
        font-size: 0.9rem;
        color: #666;
        margin-top: 1rem;
    }

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

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

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

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

    .footer-bottom {
        max-width: 1200px;
        margin: 0 auto;
        padding-top: 1.5rem;
        border-top: 1px solid #ddd;
        text-align: center;
    }

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

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

        .footer-legal {
            flex-direction: column;
            gap: 0.8rem;
        }
    }

.cookies--colored-v5 {
        position: fixed;
        bottom: 1rem;
        left: 1rem;
        border-radius: 1rem;
        font-family: var(--font-family);
        padding: 56px 20px;
        background: var(--neutral-900);
        color: var(--neutral-0);
    }

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

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

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

    .cookies__list {
        margin: 0 0 10px;
        padding-left: 1.1rem;
        display: grid;
        gap: 6px;
    }

    .cookies__item {
        font-size: 0.9rem;
        color: rgba(226, 232, 240, 0.9);
    }

    .cookies__notice {
        margin: 0;
        font-size: 0.85rem;
        color: var(--warning);
    }

    .cookie-banner__actions {
        display: flex;
        gap: 0.75rem;
        flex-shrink: 0;
    }

    .cookie-banner__btn {
        padding: 0.75rem 1.3rem;
        border: 2px solid var(--fg-on-accent);
        border-radius: var(--radius-lg);
        font-size: 0.95rem;
        cursor: pointer;
        transition: all .25s;
        font-weight: 500;
    }

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

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

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

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

    @media (max-width: 767px) {
        .cookie-banner__c {
            flex-wrap: wrap;
        }

        .cookie-banner__icon {
            font-size: 2rem;
        }

        .cookie-banner__actions {
            width: 100%;
        }

        .cookie-banner__btn {
            flex: 1;
        }
    }

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

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

    .contact-support .banner {
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-radius: var(--radius-xl);
        padding: clamp(12px, 2vw, 20px);
        box-shadow: var(--shadow-lg);
    }

    .contact-support .btn {
        background: var(--fg-on-page);
        text-align: center;
        color: var(--bg-page);
        text-decoration: none;
        padding: .7rem 1rem;
        border-radius: var(--radius-md);
    }

    .contact-support .txt {
        margin: .8rem 0 0;
        color: var(--fg-on-page);
    }

    @media (max-width: 767px) {
        .contact-support .banner {
            flex-direction: column;
            align-items: flex-start;
            gap: 16px;
        }
    }

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

    .contact-form .c {
        max-width: min(820px, var(--max-w));
        margin: 0 auto;
    }

    .contact-form .f {
        display: grid;
        gap: 12px;
        background: #fff;
        color: var(--fg-on-page);
        border-radius: var(--radius-xl);
        padding: clamp(14px, 2.5vw, 26px);
        box-shadow: var(--shadow-lg);
    }

    .contact-form .grid {
        display: grid;
        gap: 12px;
        grid-template-columns:1fr 1fr;
    }

    .contact-form .fl {
        position: relative;
    }

    .contact-form .fl input, .contact-form .fl textarea {
        width: 100%;
        padding: 1.1rem 1rem .9rem;
        border: 1px solid var(--ring);
        border-radius: var(--radius-md);
        background: #fff;
        box-sizing: border-box;
    }

    .contact-form .fl label {
        position: absolute;
        top: .95rem;
        left: 1rem;
        font-size: .95rem;
        color: var(--neutral-300);
        transition: .15s;
    }

    .contact-form .fl input:focus + label, .contact-form .fl input:not(:placeholder-shown) + label,
    .contact-form .fl textarea:focus + label, .contact-form .fl textarea:not(:placeholder-shown) + label {
        top: .35rem;
        font-size: .75rem;
        opacity: .8;
    }

    .contact-form .fl.wide textarea {
        min-height: 120px;
    }

    .contact-form .agree {
        display: flex;
        align-items: center;
        gap: .5rem;
        font-size: .9rem;
        color: var(--neutral-300);
    }

    .contact-form button {
        align-self: start;
        padding: .9rem 1.2rem;
        border-radius: var(--radius-lg);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border: 0;
    }

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

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

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

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

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

.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 2rem;
    height: 2rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
}

.burger-line {
    width: 100%;
    height: 2px;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
}

.main-nav {
    display: block;
}

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

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

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

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

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

    .main-nav.is-open {
        right: 0;
    }

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

    .nav-link {
        display: block;
        padding: 1rem;
        border-radius: var(--radius-md);
        background-color: var(--surface-light);
    }

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

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

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

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        padding: 3rem 1rem 1rem;
        border-top: 1px solid #eaeaea;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    }

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

    .footer-section h3 {
        font-size: 1.1rem;
        margin-bottom: 1.2rem;
        color: #111;
    }

    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c5282;
        margin-bottom: 0.5rem;
    }

    .footer-disclaimer {
        font-size: 0.9rem;
        color: #666;
        margin-top: 1rem;
    }

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

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

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

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

    .footer-bottom {
        max-width: 1200px;
        margin: 0 auto;
        padding-top: 1.5rem;
        border-top: 1px solid #ddd;
        text-align: center;
    }

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

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

        .footer-legal {
            flex-direction: column;
            gap: 0.8rem;
        }
    }

.cookies--colored-v5 {
        position: fixed;
        bottom: 1rem;
        left: 1rem;
        border-radius: 1rem;
        font-family: var(--font-family);
        padding: 56px 20px;
        background: var(--neutral-900);
        color: var(--neutral-0);
    }

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

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

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

    .cookies__list {
        margin: 0 0 10px;
        padding-left: 1.1rem;
        display: grid;
        gap: 6px;
    }

    .cookies__item {
        font-size: 0.9rem;
        color: rgba(226, 232, 240, 0.9);
    }

    .cookies__notice {
        margin: 0;
        font-size: 0.85rem;
        color: var(--warning);
    }

    .cookie-banner__actions {
        display: flex;
        gap: 0.75rem;
        flex-shrink: 0;
    }

    .cookie-banner__btn {
        padding: 0.75rem 1.3rem;
        border: 2px solid var(--fg-on-accent);
        border-radius: var(--radius-lg);
        font-size: 0.95rem;
        cursor: pointer;
        transition: all .25s;
        font-weight: 500;
    }

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

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

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

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

    @media (max-width: 767px) {
        .cookie-banner__c {
            flex-wrap: wrap;
        }

        .cookie-banner__icon {
            font-size: 2rem;
        }

        .cookie-banner__actions {
            width: 100%;
        }

        .cookie-banner__btn {
            flex: 1;
        }
    }

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

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

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

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

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

    .policy-items__list {
        display: grid;
        gap: 2rem;
    }

    .policy-items__item {
        display: grid;
        grid-template-columns: auto 1fr;
        gap: 1.5rem;
        padding: 1.5rem;
        background: var(--bg-page);
        border: 1px solid var(--ring);
        border-radius: var(--radius-lg);
    }

    .policy-items__num {
        width: 3rem;
        height: 3rem;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border-radius: var(--radius-md);
        font-size: 1.25rem;
        font-weight: 600;
        flex-shrink: 0;
    }

    .policy-items__content h3 {
        margin: 0 0 .75rem;
        font-size: clamp(18px, 3vw, 24px);
        color: var(--fg-on-page);
    }

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

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

        .policy-items__num {
            width: 2.5rem;
            height: 2.5rem;
            font-size: 1rem;
        }
    }

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

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

    .contact-support .banner {
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-radius: var(--radius-xl);
        padding: clamp(12px, 2vw, 20px);
        box-shadow: var(--shadow-lg);
    }

    .contact-support .btn {
        background: var(--fg-on-page);
        text-align: center;
        color: var(--bg-page);
        text-decoration: none;
        padding: .7rem 1rem;
        border-radius: var(--radius-md);
    }

    .contact-support .txt {
        margin: .8rem 0 0;
        color: var(--fg-on-page);
    }

    @media (max-width: 767px) {
        .contact-support .banner {
            flex-direction: column;
            align-items: flex-start;
            gap: 16px;
        }
    }

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

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

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

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

.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 2rem;
    height: 2rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
}

.burger-line {
    width: 100%;
    height: 2px;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
}

.main-nav {
    display: block;
}

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

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

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

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

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

    .main-nav.is-open {
        right: 0;
    }

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

    .nav-link {
        display: block;
        padding: 1rem;
        border-radius: var(--radius-md);
        background-color: var(--surface-light);
    }

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

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

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

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        padding: 3rem 1rem 1rem;
        border-top: 1px solid #eaeaea;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    }

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

    .footer-section h3 {
        font-size: 1.1rem;
        margin-bottom: 1.2rem;
        color: #111;
    }

    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c5282;
        margin-bottom: 0.5rem;
    }

    .footer-disclaimer {
        font-size: 0.9rem;
        color: #666;
        margin-top: 1rem;
    }

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

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

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

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

    .footer-bottom {
        max-width: 1200px;
        margin: 0 auto;
        padding-top: 1.5rem;
        border-top: 1px solid #ddd;
        text-align: center;
    }

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

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

        .footer-legal {
            flex-direction: column;
            gap: 0.8rem;
        }
    }

.cookies--colored-v5 {
        position: fixed;
        bottom: 1rem;
        left: 1rem;
        border-radius: 1rem;
        font-family: var(--font-family);
        padding: 56px 20px;
        background: var(--neutral-900);
        color: var(--neutral-0);
    }

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

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

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

    .cookies__list {
        margin: 0 0 10px;
        padding-left: 1.1rem;
        display: grid;
        gap: 6px;
    }

    .cookies__item {
        font-size: 0.9rem;
        color: rgba(226, 232, 240, 0.9);
    }

    .cookies__notice {
        margin: 0;
        font-size: 0.85rem;
        color: var(--warning);
    }

    .cookie-banner__actions {
        display: flex;
        gap: 0.75rem;
        flex-shrink: 0;
    }

    .cookie-banner__btn {
        padding: 0.75rem 1.3rem;
        border: 2px solid var(--fg-on-accent);
        border-radius: var(--radius-lg);
        font-size: 0.95rem;
        cursor: pointer;
        transition: all .25s;
        font-weight: 500;
    }

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

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

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

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

    @media (max-width: 767px) {
        .cookie-banner__c {
            flex-wrap: wrap;
        }

        .cookie-banner__icon {
            font-size: 2rem;
        }

        .cookie-banner__actions {
            width: 100%;
        }

        .cookie-banner__btn {
            flex: 1;
        }
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 2rem;
    height: 2rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
}

.burger-line {
    width: 100%;
    height: 2px;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
}

.main-nav {
    display: block;
}

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

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

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

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

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

    .main-nav.is-open {
        right: 0;
    }

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

    .nav-link {
        display: block;
        padding: 1rem;
        border-radius: var(--radius-md);
        background-color: var(--surface-light);
    }

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

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

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

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        padding: 3rem 1rem 1rem;
        border-top: 1px solid #eaeaea;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    }

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

    .footer-section h3 {
        font-size: 1.1rem;
        margin-bottom: 1.2rem;
        color: #111;
    }

    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c5282;
        margin-bottom: 0.5rem;
    }

    .footer-disclaimer {
        font-size: 0.9rem;
        color: #666;
        margin-top: 1rem;
    }

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

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

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

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

    .footer-bottom {
        max-width: 1200px;
        margin: 0 auto;
        padding-top: 1.5rem;
        border-top: 1px solid #ddd;
        text-align: center;
    }

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

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

        .footer-legal {
            flex-direction: column;
            gap: 0.8rem;
        }
    }

.cookies--colored-v5 {
        position: fixed;
        bottom: 1rem;
        left: 1rem;
        border-radius: 1rem;
        font-family: var(--font-family);
        padding: 56px 20px;
        background: var(--neutral-900);
        color: var(--neutral-0);
    }

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

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

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

    .cookies__list {
        margin: 0 0 10px;
        padding-left: 1.1rem;
        display: grid;
        gap: 6px;
    }

    .cookies__item {
        font-size: 0.9rem;
        color: rgba(226, 232, 240, 0.9);
    }

    .cookies__notice {
        margin: 0;
        font-size: 0.85rem;
        color: var(--warning);
    }

    .cookie-banner__actions {
        display: flex;
        gap: 0.75rem;
        flex-shrink: 0;
    }

    .cookie-banner__btn {
        padding: 0.75rem 1.3rem;
        border: 2px solid var(--fg-on-accent);
        border-radius: var(--radius-lg);
        font-size: 0.95rem;
        cursor: pointer;
        transition: all .25s;
        font-weight: 500;
    }

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

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

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

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

    @media (max-width: 767px) {
        .cookie-banner__c {
            flex-wrap: wrap;
        }

        .cookie-banner__icon {
            font-size: 2rem;
        }

        .cookie-banner__actions {
            width: 100%;
        }

        .cookie-banner__btn {
            flex: 1;
        }
    }

.thanks {
        font-family: var(--font-family);
        background: var(--gradient-accent);
        color: var(--bg-accent);
        padding: clamp(40px, 8vw, 96px) clamp(16px, 4vw, 56px);
    }

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

    .thanks__icon {
        width: 72px;
        height: 72px;
        border-radius: 50%;
        margin: 0 auto 1.25rem;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-md);
        font-size: 1.8rem;
    }

    .thanks h1 {
        font-size: clamp(28px, 5vw, 44px);
        margin: 0 0 0.75rem;
        color: var(--bg-accent);
    }

    .thanks p {
        margin: 0 0 1rem;
        max-width: 540px;
        margin-left: auto;
        margin-right: auto;
        opacity: 0.9;
    }

    .thanks__meta {
        font-size: 0.9rem;
        opacity: 0.8;
        margin-bottom: 2.25rem;
    }

    .thanks__actions {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }

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

    .thanks__btn--primary {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
    }

    .thanks__btn--primary:hover {
        transform: translateY(-2px);
    }

    .thanks__btn--ghost {
        background: transparent;
        color: var(--bg-accent);
        border: 1px solid rgba(255,255,255,0.6);
    }

    .thanks__btn--ghost:hover {
        transform: translateY(-2px);
        background: rgba(255,255,255,0.05);
    }

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

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

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

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

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

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

.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 2rem;
    height: 2rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
}

.burger-line {
    width: 100%;
    height: 2px;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
}

.main-nav {
    display: block;
}

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

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

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

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

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

    .main-nav.is-open {
        right: 0;
    }

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

    .nav-link {
        display: block;
        padding: 1rem;
        border-radius: var(--radius-md);
        background-color: var(--surface-light);
    }

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

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

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

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        padding: 3rem 1rem 1rem;
        border-top: 1px solid #eaeaea;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    }

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

    .footer-section h3 {
        font-size: 1.1rem;
        margin-bottom: 1.2rem;
        color: #111;
    }

    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c5282;
        margin-bottom: 0.5rem;
    }

    .footer-disclaimer {
        font-size: 0.9rem;
        color: #666;
        margin-top: 1rem;
    }

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

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

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

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

    .footer-bottom {
        max-width: 1200px;
        margin: 0 auto;
        padding-top: 1.5rem;
        border-top: 1px solid #ddd;
        text-align: center;
    }

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

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

        .footer-legal {
            flex-direction: column;
            gap: 0.8rem;
        }
    }

.cookies--colored-v5 {
        position: fixed;
        bottom: 1rem;
        left: 1rem;
        border-radius: 1rem;
        font-family: var(--font-family);
        padding: 56px 20px;
        background: var(--neutral-900);
        color: var(--neutral-0);
    }

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

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

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

    .cookies__list {
        margin: 0 0 10px;
        padding-left: 1.1rem;
        display: grid;
        gap: 6px;
    }

    .cookies__item {
        font-size: 0.9rem;
        color: rgba(226, 232, 240, 0.9);
    }

    .cookies__notice {
        margin: 0;
        font-size: 0.85rem;
        color: var(--warning);
    }

    .cookie-banner__actions {
        display: flex;
        gap: 0.75rem;
        flex-shrink: 0;
    }

    .cookie-banner__btn {
        padding: 0.75rem 1.3rem;
        border: 2px solid var(--fg-on-accent);
        border-radius: var(--radius-lg);
        font-size: 0.95rem;
        cursor: pointer;
        transition: all .25s;
        font-weight: 500;
    }

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

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

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

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

    @media (max-width: 767px) {
        .cookie-banner__c {
            flex-wrap: wrap;
        }

        .cookie-banner__icon {
            font-size: 2rem;
        }

        .cookie-banner__actions {
            width: 100%;
        }

        .cookie-banner__btn {
            flex: 1;
        }
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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