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

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

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

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

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

  --brand: #2E7D32;
  --brand-contrast: #FFFFFF;
  --accent: #388E3C;
  --accent-contrast: #FFFFFF;

  --neutral-0: #FFFFFF;
  --neutral-100: #F5F5F5;
  --neutral-300: #E0E0E0;
  --neutral-600: #757575;
  --neutral-800: #424242;
  --neutral-900: #212121;

  --bg-page: #FFFFFF;
  --fg-on-page: #212121;

  --bg-alt: #F9F9F9;
  --fg-on-alt: #424242;

  --surface-1: #FFFFFF;
  --surface-2: #F5F5F5;
  --fg-on-surface: #212121;
  --border-on-surface: #E0E0E0;

  --surface-light: #FFFFFF;
  --fg-on-surface-light: #424242;
  --border-on-surface-light: #E0E0E0;

  --bg-primary: #2E7D32;
  --fg-on-primary: #FFFFFF;
  --bg-primary-hover: #388E3C;
  --ring: #4CAF50;

  --bg-accent: #E8F5E9;
  --fg-on-accent: #1B5E20;
  --bg-accent-hover: #43A047;

  --success: #4CAF50;
  --success-contrast: #FFFFFF;
  --warning: #FF9800;
  --warning-contrast: #212121;
  --danger: #F44336;
  --danger-contrast: #FFFFFF;

  --link: #2E7D32;
  --link-hover: #1B5E20;

  --gradient-hero: linear-gradient(135deg, #E8F5E9 0%, #C8E6C9 100%);
  --gradient-accent: linear-gradient(90deg, #4CAF50, #2E7D32);

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

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

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

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

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

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

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

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

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

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

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

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

    .header__nav {
        display: flex;
        align-items: center;
    }

    .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) {
        .header__burger {
            display: flex;
        }

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

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

        .nav__list {
            flex-direction: column;
            width: 100%;
            gap: 0.5rem;
        }

        .nav__link {
            display: block;
            padding: 1rem;
            width: 100%;
            border-radius: var(--radius-sm);
        }

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

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

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

.site-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 3rem 1rem;
    font-family: 'Segoe UI', system-ui, sans-serif;
    margin-top: auto;
  }

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

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

  .footer-logo {
    font-size: 2.2rem;
    font-weight: 700;
    color: #3498db;
    margin: 0 0 1rem 0;
    line-height: 1;
  }

  .footer-disclaimer {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #bdc3c7;
    margin-bottom: 1.5rem;
    max-width: 300px;
  }

  .copyright {
    font-size: 0.85rem;
    color: #95a5a6;
    margin-top: auto;
  }

  .footer-section h3 {
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
    color: #3498db;
    border-bottom: 2px solid #34495e;
    padding-bottom: 0.5rem;
  }

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

  .footer-nav li,
  .legal-links li {
    margin-bottom: 0.7rem;
  }

  .footer-nav a,
  .legal-links a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.2s ease, padding-left 0.2s ease;
    display: inline-block;
  }

  .footer-nav a:hover,
  .legal-links a:hover {
    color: #3498db;
    padding-left: 5px;
  }

  address p {
    margin-bottom: 0.7rem;
    font-style: normal;
    line-height: 1.5;
  }

  address a {
    color: #ecf0f1;
    text-decoration: none;
  }

  address a:hover {
    color: #3498db;
    text-decoration: underline;
  }

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

  .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #34495e;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
  }

  .social-links a:hover {
    background-color: #3498db;
  }

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

    .footer-disclaimer {
      max-width: 100%;
    }

    .social-links {
      justify-content: center;
    }

    .footer-section h3 {
      border-bottom: none;
    }
  }

  @media (max-width: 480px) {
    .site-footer {
      padding: 2rem 1rem;
    }
  }

.cookie-banner {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background: var(--bg-page);
        border-top: 1px solid var(--ring);
        box-shadow: 0 -4px 12px rgba(0,0,0,.1);
        padding: clamp(10px, 1.5vw, 16px);
    }

    .cookie-banner__c {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
    }

    .cookie-banner__text {
        flex: 1;
    }

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

    .cookie-banner__text p {
        margin: 0;
        font-size: 0.75rem;
        color: var(--neutral-600);
        line-height: 1.4;
    }

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

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

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

    .cookie-banner__accept:hover {
        background: var(--bg-primary-hover);
    }

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

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

    @media (max-width: 767px) {
        .cookie-banner__c {
            flex-direction: column;
            align-items: flex-start;
            gap: 0.75rem;
        }

        .cookie-banner__actions {
            width: 100%;
        }

        .cookie-banner__btn {
            flex: 1;
        }
    }

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

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

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

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

.hero__subtitle {
    margin: 0 0 20px;
    color: rgba(249,250,251,0.9);
    font-size: 1.1rem;
    line-height: 1.7;
}

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

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

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

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

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

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

.index-cta {
        font-family: var(--font-family);
        color: var(--fg-on-page);
        background: linear-gradient(135deg, var(--ring), var(--bg-accent));
        padding: clamp(28px, 5vw, 80px) clamp(16px, 3vw, 40px);
        background-size: 300% 300%;

        animation: gradientFlow 4s ease-in-out infinite;
    }

    @keyframes gradientFlow {
        0% {
            background-position: 0% 50%;
        }
        50% {
            background-position: 100% 50%;
        }
        100% {
            background-position: 0% 50%;
        }
    }

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

    .index-cta h4 {
        margin: 0;
        font-size: clamp(1.25rem, 2vw, 1.5rem);
        font-weight: 700;
    }

    .index-cta .index-cta__ribbon {
        position: relative;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-radius: var(--radius-xl);
        padding: clamp(14px, 2.5vw, 24px);
        display: flex;
        justify-content: space-between;
        align-items: center;
        box-shadow: var(--shadow-lg);
    }

    .index-cta .index-cta__btn {
        background-color: var(--fg-on-page);
        color: var(--bg-page);
        text-decoration: none;
        padding: .8rem 1.1rem;
        border-radius: var(--radius-md);
        font-weight: 600;
        transition: background-color var(--anim-duration) var(--anim-ease);
    }

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

    @media (max-width: 767px) {
        .index-cta .index-cta__ribbon {
            flex-direction: column;
            align-items: flex-start;
            gap: 16px;
        }

        .index-cta__c {
            grid-template-columns: auto;
        }
    }

.subscribe {
        font-family: var(--font-family);
        color: var(--fg-on-primary);
        background: var(--gradient-hero);
        padding: clamp(40px, 6vw, 80px) clamp(16px, 4vw, 40px);
    }

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

    .subscribe .subscribe__wrapper {
        display: grid;
        grid-template-columns: 1.2fr 0.8fr;
        gap: clamp(40px, 6vw, 64px);
        align-items: center;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(12px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: var(--radius-xl);
        padding: clamp(48px, 7vw, 80px) clamp(32px, 5vw, 64px);
    }

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

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

    .subscribe .subscribe__content {
        display: flex;
        flex-direction: column;
        gap: clamp(20px, 3vw, 28px);
    }

    .subscribe .subscribe__badge {
        display: inline-block;
        padding: 0.5rem 1rem;
        border-radius: var(--radius-md);
        background: rgba(255, 255, 255, 0.2);
        color: var(--fg-on-primary);
        font-size: 0.75rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        width: fit-content;
        margin-bottom: 0.5rem;
    }

    .subscribe h1 {
        font-size: clamp(32px, 6vw, 56px);
        margin: 0;
        color: var(--fg-on-primary);
        font-weight: 700;
        line-height: 1.1;
    }

    .subscribe .subscribe__content p {
        font-size: clamp(16px, 2.4vw, 20px);
        opacity: 0.9;
        margin: 0;
        line-height: 1.6;
    }

    .subscribe .subscribe__form {
        margin: clamp(8px, 1.5vw, 16px) 0;
    }

    .subscribe .subscribe__input-wrapper {
        display: flex;
        gap: 0.75rem;
        background: rgba(255, 255, 255, 0.15);
        border: 2px solid rgba(255, 255, 255, 0.3);
        border-radius: var(--radius-lg);
        padding: 0.5rem;
        backdrop-filter: blur(8px);
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .subscribe .subscribe__input-wrapper:focus-within {
        border-color: rgba(255, 255, 255, 0.6);
        background: rgba(255, 255, 255, 0.25);
    }

    .subscribe .subscribe__input-wrapper input {
        flex: 1;
        padding: 0.875rem 1.25rem;
        border: none;
        background: transparent;
        color: var(--fg-on-primary);
        font-size: 1rem;
        outline: none;
        min-width: 0;
    }

    .subscribe .subscribe__input-wrapper input::placeholder {
        color: rgba(255, 255, 255, 0.7);
    }

    .subscribe .subscribe__input-wrapper button {
        padding: 0.875rem 2rem;
        border-radius: var(--radius-md);
        border: none;
        background: var(--fg-on-primary);
        color: var(--bg-primary);
        font-weight: 700;
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
        white-space: nowrap;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    }

    .subscribe .subscribe__input-wrapper button:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    }

    .subscribe .subscribe__features {
        display: flex;
        gap: clamp(16px, 2.5vw, 24px);
        flex-wrap: wrap;
        margin-top: 0.5rem;
    }

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

    .subscribe .subscribe__feature {
        font-size: 0.875rem;
        color: rgba(255, 255, 255, 0.9);
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .subscribe .subscribe__illustration {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 200px;
    }

    .subscribe .subscribe__icon {
        font-size: clamp(80px, 12vw, 120px);
        opacity: 0.3;
        line-height: 1;
    }

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

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

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

        .subscribe .subscribe__input-wrapper button {
            width: 100%;
        }
    }

.support--colored-v5 {
    font-family: var(--font-family);
    padding: 60px 20px;
    background: var(--neutral-900);
    color: var(--neutral-0);
}

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

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

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

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

.support__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
    gap: 14px;
}

.support__card {
    border-radius: var(--radius-xl);
    padding: 14px 16px;
    background: rgba(15,23,42,0.96);
    border: 1px solid rgba(148,163,184,0.7);
}

.support__card--priority {
    border-color: var(--danger);
}

.support__card--standard {
    border-color: var(--success);
}

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

.support__card p {
    margin: 0 0 8px;
    font-size: 0.9rem;
    color: var(--neutral-100);
}

.support__label {
    display: inline-block;
    padding: 3px 8px;
    border-radius: 999px;
    font-size: 0.75rem;
    background: var(--bg-primary);
    color: var(--fg-on-primary);
}

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

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

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

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

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

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

    .header__nav {
        display: flex;
        align-items: center;
    }

    .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) {
        .header__burger {
            display: flex;
        }

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

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

        .nav__list {
            flex-direction: column;
            width: 100%;
            gap: 0.5rem;
        }

        .nav__link {
            display: block;
            padding: 1rem;
            width: 100%;
            border-radius: var(--radius-sm);
        }

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

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

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

.site-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 3rem 1rem;
    font-family: 'Segoe UI', system-ui, sans-serif;
    margin-top: auto;
  }

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

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

  .footer-logo {
    font-size: 2.2rem;
    font-weight: 700;
    color: #3498db;
    margin: 0 0 1rem 0;
    line-height: 1;
  }

  .footer-disclaimer {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #bdc3c7;
    margin-bottom: 1.5rem;
    max-width: 300px;
  }

  .copyright {
    font-size: 0.85rem;
    color: #95a5a6;
    margin-top: auto;
  }

  .footer-section h3 {
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
    color: #3498db;
    border-bottom: 2px solid #34495e;
    padding-bottom: 0.5rem;
  }

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

  .footer-nav li,
  .legal-links li {
    margin-bottom: 0.7rem;
  }

  .footer-nav a,
  .legal-links a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.2s ease, padding-left 0.2s ease;
    display: inline-block;
  }

  .footer-nav a:hover,
  .legal-links a:hover {
    color: #3498db;
    padding-left: 5px;
  }

  address p {
    margin-bottom: 0.7rem;
    font-style: normal;
    line-height: 1.5;
  }

  address a {
    color: #ecf0f1;
    text-decoration: none;
  }

  address a:hover {
    color: #3498db;
    text-decoration: underline;
  }

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

  .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #34495e;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
  }

  .social-links a:hover {
    background-color: #3498db;
  }

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

    .footer-disclaimer {
      max-width: 100%;
    }

    .social-links {
      justify-content: center;
    }

    .footer-section h3 {
      border-bottom: none;
    }
  }

  @media (max-width: 480px) {
    .site-footer {
      padding: 2rem 1rem;
    }
  }

.cookie-banner {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background: var(--bg-page);
        border-top: 1px solid var(--ring);
        box-shadow: 0 -4px 12px rgba(0,0,0,.1);
        padding: clamp(10px, 1.5vw, 16px);
    }

    .cookie-banner__c {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
    }

    .cookie-banner__text {
        flex: 1;
    }

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

    .cookie-banner__text p {
        margin: 0;
        font-size: 0.75rem;
        color: var(--neutral-600);
        line-height: 1.4;
    }

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

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

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

    .cookie-banner__accept:hover {
        background: var(--bg-primary-hover);
    }

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

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

    @media (max-width: 767px) {
        .cookie-banner__c {
            flex-direction: column;
            align-items: flex-start;
            gap: 0.75rem;
        }

        .cookie-banner__actions {
            width: 100%;
        }

        .cookie-banner__btn {
            flex: 1;
        }
    }

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

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

.messages__inner h2 {
    margin: 0 0 16px;
    font-size: clamp(24px,4vw,30px);
}

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

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

.messages__row-name {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--fg-on-page);
}

.messages__row-text {
    margin: 4px 0 0;
    font-size: 0.9rem;
    color: var(--neutral-600);
}

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

    .index-faq h3 {
        margin: 0
    }

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

    .index-faq .index-faq__grid {
        display: grid;
        gap: var(--space-x);
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .index-faq .index-faq__cell {
        background: rgba(255, 255, 255, .14);
        border: 1px solid rgba(255, 255, 255, .25);
        backdrop-filter: blur(8px);
        border-radius: var(--radius-lg);
        padding: clamp(12px, 2vw, 20px);
    }

    .index-faq p {
        margin: .8rem 0 0;
        color: rgba(255, 255, 255, .9);
    }

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

.support--colored-v5 {
    font-family: var(--font-family);
    padding: 60px 20px;
    background: var(--neutral-900);
    color: var(--neutral-0);
}

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

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

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

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

.support__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
    gap: 14px;
}

.support__card {
    border-radius: var(--radius-xl);
    padding: 14px 16px;
    background: rgba(15,23,42,0.96);
    border: 1px solid rgba(148,163,184,0.7);
}

.support__card--priority {
    border-color: var(--danger);
}

.support__card--standard {
    border-color: var(--success);
}

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

.support__card p {
    margin: 0 0 8px;
    font-size: 0.9rem;
    color: var(--neutral-100);
}

.support__label {
    display: inline-block;
    padding: 3px 8px;
    border-radius: 999px;
    font-size: 0.75rem;
    background: var(--bg-primary);
    color: var(--fg-on-primary);
}

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

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

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

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

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

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

    .header__nav {
        display: flex;
        align-items: center;
    }

    .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) {
        .header__burger {
            display: flex;
        }

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

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

        .nav__list {
            flex-direction: column;
            width: 100%;
            gap: 0.5rem;
        }

        .nav__link {
            display: block;
            padding: 1rem;
            width: 100%;
            border-radius: var(--radius-sm);
        }

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

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

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

.site-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 3rem 1rem;
    font-family: 'Segoe UI', system-ui, sans-serif;
    margin-top: auto;
  }

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

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

  .footer-logo {
    font-size: 2.2rem;
    font-weight: 700;
    color: #3498db;
    margin: 0 0 1rem 0;
    line-height: 1;
  }

  .footer-disclaimer {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #bdc3c7;
    margin-bottom: 1.5rem;
    max-width: 300px;
  }

  .copyright {
    font-size: 0.85rem;
    color: #95a5a6;
    margin-top: auto;
  }

  .footer-section h3 {
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
    color: #3498db;
    border-bottom: 2px solid #34495e;
    padding-bottom: 0.5rem;
  }

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

  .footer-nav li,
  .legal-links li {
    margin-bottom: 0.7rem;
  }

  .footer-nav a,
  .legal-links a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.2s ease, padding-left 0.2s ease;
    display: inline-block;
  }

  .footer-nav a:hover,
  .legal-links a:hover {
    color: #3498db;
    padding-left: 5px;
  }

  address p {
    margin-bottom: 0.7rem;
    font-style: normal;
    line-height: 1.5;
  }

  address a {
    color: #ecf0f1;
    text-decoration: none;
  }

  address a:hover {
    color: #3498db;
    text-decoration: underline;
  }

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

  .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #34495e;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
  }

  .social-links a:hover {
    background-color: #3498db;
  }

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

    .footer-disclaimer {
      max-width: 100%;
    }

    .social-links {
      justify-content: center;
    }

    .footer-section h3 {
      border-bottom: none;
    }
  }

  @media (max-width: 480px) {
    .site-footer {
      padding: 2rem 1rem;
    }
  }

.cookie-banner {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background: var(--bg-page);
        border-top: 1px solid var(--ring);
        box-shadow: 0 -4px 12px rgba(0,0,0,.1);
        padding: clamp(10px, 1.5vw, 16px);
    }

    .cookie-banner__c {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
    }

    .cookie-banner__text {
        flex: 1;
    }

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

    .cookie-banner__text p {
        margin: 0;
        font-size: 0.75rem;
        color: var(--neutral-600);
        line-height: 1.4;
    }

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

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

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

    .cookie-banner__accept:hover {
        background: var(--bg-primary-hover);
    }

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

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

    @media (max-width: 767px) {
        .cookie-banner__c {
            flex-direction: column;
            align-items: flex-start;
            gap: 0.75rem;
        }

        .cookie-banner__actions {
            width: 100%;
        }

        .cookie-banner__btn {
            flex: 1;
        }
    }

.subscribe {
        font-family: var(--font-family);
        color: var(--fg-on-primary);
        background: var(--gradient-hero);
        padding: clamp(40px, 6vw, 80px) clamp(16px, 4vw, 40px);
    }

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

    .subscribe .subscribe__wrapper {
        display: grid;
        grid-template-columns: 1.2fr 0.8fr;
        gap: clamp(40px, 6vw, 64px);
        align-items: center;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(12px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: var(--radius-xl);
        padding: clamp(48px, 7vw, 80px) clamp(32px, 5vw, 64px);
    }

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

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

    .subscribe .subscribe__content {
        display: flex;
        flex-direction: column;
        gap: clamp(20px, 3vw, 28px);
    }

    .subscribe .subscribe__badge {
        display: inline-block;
        padding: 0.5rem 1rem;
        border-radius: var(--radius-md);
        background: rgba(255, 255, 255, 0.2);
        color: var(--fg-on-primary);
        font-size: 0.75rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        width: fit-content;
        margin-bottom: 0.5rem;
    }

    .subscribe h1 {
        font-size: clamp(32px, 6vw, 56px);
        margin: 0;
        color: var(--fg-on-primary);
        font-weight: 700;
        line-height: 1.1;
    }

    .subscribe .subscribe__content p {
        font-size: clamp(16px, 2.4vw, 20px);
        opacity: 0.9;
        margin: 0;
        line-height: 1.6;
    }

    .subscribe .subscribe__form {
        margin: clamp(8px, 1.5vw, 16px) 0;
    }

    .subscribe .subscribe__input-wrapper {
        display: flex;
        gap: 0.75rem;
        background: rgba(255, 255, 255, 0.15);
        border: 2px solid rgba(255, 255, 255, 0.3);
        border-radius: var(--radius-lg);
        padding: 0.5rem;
        backdrop-filter: blur(8px);
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .subscribe .subscribe__input-wrapper:focus-within {
        border-color: rgba(255, 255, 255, 0.6);
        background: rgba(255, 255, 255, 0.25);
    }

    .subscribe .subscribe__input-wrapper input {
        flex: 1;
        padding: 0.875rem 1.25rem;
        border: none;
        background: transparent;
        color: var(--fg-on-primary);
        font-size: 1rem;
        outline: none;
        min-width: 0;
    }

    .subscribe .subscribe__input-wrapper input::placeholder {
        color: rgba(255, 255, 255, 0.7);
    }

    .subscribe .subscribe__input-wrapper button {
        padding: 0.875rem 2rem;
        border-radius: var(--radius-md);
        border: none;
        background: var(--fg-on-primary);
        color: var(--bg-primary);
        font-weight: 700;
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
        white-space: nowrap;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    }

    .subscribe .subscribe__input-wrapper button:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    }

    .subscribe .subscribe__features {
        display: flex;
        gap: clamp(16px, 2.5vw, 24px);
        flex-wrap: wrap;
        margin-top: 0.5rem;
    }

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

    .subscribe .subscribe__feature {
        font-size: 0.875rem;
        color: rgba(255, 255, 255, 0.9);
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .subscribe .subscribe__illustration {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 200px;
    }

    .subscribe .subscribe__icon {
        font-size: clamp(80px, 12vw, 120px);
        opacity: 0.3;
        line-height: 1;
    }

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

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

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

        .subscribe .subscribe__input-wrapper button {
            width: 100%;
        }
    }

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

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

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

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

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

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

    .header__nav {
        display: flex;
        align-items: center;
    }

    .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) {
        .header__burger {
            display: flex;
        }

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

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

        .nav__list {
            flex-direction: column;
            width: 100%;
            gap: 0.5rem;
        }

        .nav__link {
            display: block;
            padding: 1rem;
            width: 100%;
            border-radius: var(--radius-sm);
        }

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

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

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

.site-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 3rem 1rem;
    font-family: 'Segoe UI', system-ui, sans-serif;
    margin-top: auto;
  }

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

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

  .footer-logo {
    font-size: 2.2rem;
    font-weight: 700;
    color: #3498db;
    margin: 0 0 1rem 0;
    line-height: 1;
  }

  .footer-disclaimer {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #bdc3c7;
    margin-bottom: 1.5rem;
    max-width: 300px;
  }

  .copyright {
    font-size: 0.85rem;
    color: #95a5a6;
    margin-top: auto;
  }

  .footer-section h3 {
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
    color: #3498db;
    border-bottom: 2px solid #34495e;
    padding-bottom: 0.5rem;
  }

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

  .footer-nav li,
  .legal-links li {
    margin-bottom: 0.7rem;
  }

  .footer-nav a,
  .legal-links a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.2s ease, padding-left 0.2s ease;
    display: inline-block;
  }

  .footer-nav a:hover,
  .legal-links a:hover {
    color: #3498db;
    padding-left: 5px;
  }

  address p {
    margin-bottom: 0.7rem;
    font-style: normal;
    line-height: 1.5;
  }

  address a {
    color: #ecf0f1;
    text-decoration: none;
  }

  address a:hover {
    color: #3498db;
    text-decoration: underline;
  }

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

  .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #34495e;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
  }

  .social-links a:hover {
    background-color: #3498db;
  }

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

    .footer-disclaimer {
      max-width: 100%;
    }

    .social-links {
      justify-content: center;
    }

    .footer-section h3 {
      border-bottom: none;
    }
  }

  @media (max-width: 480px) {
    .site-footer {
      padding: 2rem 1rem;
    }
  }

.cookie-banner {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background: var(--bg-page);
        border-top: 1px solid var(--ring);
        box-shadow: 0 -4px 12px rgba(0,0,0,.1);
        padding: clamp(10px, 1.5vw, 16px);
    }

    .cookie-banner__c {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
    }

    .cookie-banner__text {
        flex: 1;
    }

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

    .cookie-banner__text p {
        margin: 0;
        font-size: 0.75rem;
        color: var(--neutral-600);
        line-height: 1.4;
    }

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

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

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

    .cookie-banner__accept:hover {
        background: var(--bg-primary-hover);
    }

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

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

    @media (max-width: 767px) {
        .cookie-banner__c {
            flex-direction: column;
            align-items: flex-start;
            gap: 0.75rem;
        }

        .cookie-banner__actions {
            width: 100%;
        }

        .cookie-banner__btn {
            flex: 1;
        }
    }

.support--colored-v5 {
    font-family: var(--font-family);
    padding: 60px 20px;
    background: var(--neutral-900);
    color: var(--neutral-0);
}

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

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

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

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

.support__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
    gap: 14px;
}

.support__card {
    border-radius: var(--radius-xl);
    padding: 14px 16px;
    background: rgba(15,23,42,0.96);
    border: 1px solid rgba(148,163,184,0.7);
}

.support__card--priority {
    border-color: var(--danger);
}

.support__card--standard {
    border-color: var(--success);
}

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

.support__card p {
    margin: 0 0 8px;
    font-size: 0.9rem;
    color: var(--neutral-100);
}

.support__label {
    display: inline-block;
    padding: 3px 8px;
    border-radius: 999px;
    font-size: 0.75rem;
    background: var(--bg-primary);
    color: var(--fg-on-primary);
}

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

    .policy-contacts__c {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        gap: var(--space-y);
    }

    .policy-contacts__list {
        display: grid;
        gap: var(--gap);
        background: var(--surface-2);
        padding: var(--space-y);
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-on-surface);
    }

    .policy-contacts .policy-contacts__mini {
        background: var(--surface-light);
        padding: var(--space-y);
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-on-surface-light);
        display: grid;
        gap: var(--gap);
        margin-bottom: 1rem;
        align-items: center;
    }

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

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

    .policy-contacts .policy-contacts__mini input:focus {
        outline: 2px solid var(--ring);
        outline-offset: 2px;
    }

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

    .policy-contacts button {
        padding: .75rem 1rem;
        border-radius: var(--radius-md);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border: 0;
        font-weight: 600;
        cursor: pointer;
        transition: background-color var(--anim-duration) var(--anim-ease);
    }

    .policy-contacts button:hover {
        background: var(--bg-primary-hover);
    }

    .policy-contacts .item {
        color: var(--fg-on-surface);
        line-height: var(--line-height-base);
    }

    .policy-contacts .item strong {
        color: var(--neutral-900);
        display: inline-block;
        min-width: 140px;
    }

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

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

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

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

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

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

    .header__nav {
        display: flex;
        align-items: center;
    }

    .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) {
        .header__burger {
            display: flex;
        }

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

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

        .nav__list {
            flex-direction: column;
            width: 100%;
            gap: 0.5rem;
        }

        .nav__link {
            display: block;
            padding: 1rem;
            width: 100%;
            border-radius: var(--radius-sm);
        }

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

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

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

.site-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 3rem 1rem;
    font-family: 'Segoe UI', system-ui, sans-serif;
    margin-top: auto;
  }

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

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

  .footer-logo {
    font-size: 2.2rem;
    font-weight: 700;
    color: #3498db;
    margin: 0 0 1rem 0;
    line-height: 1;
  }

  .footer-disclaimer {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #bdc3c7;
    margin-bottom: 1.5rem;
    max-width: 300px;
  }

  .copyright {
    font-size: 0.85rem;
    color: #95a5a6;
    margin-top: auto;
  }

  .footer-section h3 {
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
    color: #3498db;
    border-bottom: 2px solid #34495e;
    padding-bottom: 0.5rem;
  }

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

  .footer-nav li,
  .legal-links li {
    margin-bottom: 0.7rem;
  }

  .footer-nav a,
  .legal-links a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.2s ease, padding-left 0.2s ease;
    display: inline-block;
  }

  .footer-nav a:hover,
  .legal-links a:hover {
    color: #3498db;
    padding-left: 5px;
  }

  address p {
    margin-bottom: 0.7rem;
    font-style: normal;
    line-height: 1.5;
  }

  address a {
    color: #ecf0f1;
    text-decoration: none;
  }

  address a:hover {
    color: #3498db;
    text-decoration: underline;
  }

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

  .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #34495e;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
  }

  .social-links a:hover {
    background-color: #3498db;
  }

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

    .footer-disclaimer {
      max-width: 100%;
    }

    .social-links {
      justify-content: center;
    }

    .footer-section h3 {
      border-bottom: none;
    }
  }

  @media (max-width: 480px) {
    .site-footer {
      padding: 2rem 1rem;
    }
  }

.cookie-banner {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background: var(--bg-page);
        border-top: 1px solid var(--ring);
        box-shadow: 0 -4px 12px rgba(0,0,0,.1);
        padding: clamp(10px, 1.5vw, 16px);
    }

    .cookie-banner__c {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
    }

    .cookie-banner__text {
        flex: 1;
    }

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

    .cookie-banner__text p {
        margin: 0;
        font-size: 0.75rem;
        color: var(--neutral-600);
        line-height: 1.4;
    }

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

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

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

    .cookie-banner__accept:hover {
        background: var(--bg-primary-hover);
    }

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

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

    @media (max-width: 767px) {
        .cookie-banner__c {
            flex-direction: column;
            align-items: flex-start;
            gap: 0.75rem;
        }

        .cookie-banner__actions {
            width: 100%;
        }

        .cookie-banner__btn {
            flex: 1;
        }
    }

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

    @keyframes scan {
        0% { transform: translateX(-100%); }
        100% { transform: translateX(100%); }
    }

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

    .contact-form .h h2 {
        margin: 0 0 .25rem;
        font-size: clamp(22px, 4vw, 36px);
        color: black
    }

    .contact-form .h p {
        margin: 1rem 0;
        color: var(--neutral-600);
    }

    .contact-form .f {
        display: grid;
        gap: 12px;
        background: var(--bg-page);
        border: 1px solid var(--ring);
        border-radius: var(--radius-xl);
        padding: clamp(14px, 2.5vw, 26px);
        box-shadow: var(--shadow-sm);
    }

    .contact-form .row {
        display: grid;
        gap: 6px;
    }

    .contact-form label {
        font-size: .9rem;
        opacity: .85;
    }

    .contact-form input:not([type="checkbox"]), .contact-form textarea {
        width: 100%;
        padding: .85rem 1rem;
        border: 1px solid var(--ring);
        border-radius: var(--radius-md);
        background: #fff;
        transition: box-shadow .2s, transform .15s;
        box-sizing: border-box;
    }

    .contact-form input:focus, .contact-form textarea:focus {
        box-shadow: 0 0 0 3px var(--bg-accent);
        transform: translateY(-1px);
        outline: none;
    }

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

    .contact-form button {
        padding: .9rem 1.2rem;
        border-radius: var(--radius-lg);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border: 0;
        cursor: pointer;
        transition: transform .2s;
    }

    .contact-form button:hover {
        transform: translateY(-2px);
    }

.support--colored-v5 {
    font-family: var(--font-family);
    padding: 60px 20px;
    background: var(--neutral-900);
    color: var(--neutral-0);
}

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

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

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

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

.support__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
    gap: 14px;
}

.support__card {
    border-radius: var(--radius-xl);
    padding: 14px 16px;
    background: rgba(15,23,42,0.96);
    border: 1px solid rgba(148,163,184,0.7);
}

.support__card--priority {
    border-color: var(--danger);
}

.support__card--standard {
    border-color: var(--success);
}

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

.support__card p {
    margin: 0 0 8px;
    font-size: 0.9rem;
    color: var(--neutral-100);
}

.support__label {
    display: inline-block;
    padding: 3px 8px;
    border-radius: 999px;
    font-size: 0.75rem;
    background: var(--bg-primary);
    color: var(--fg-on-primary);
}

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

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

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

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

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

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

    .header__nav {
        display: flex;
        align-items: center;
    }

    .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) {
        .header__burger {
            display: flex;
        }

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

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

        .nav__list {
            flex-direction: column;
            width: 100%;
            gap: 0.5rem;
        }

        .nav__link {
            display: block;
            padding: 1rem;
            width: 100%;
            border-radius: var(--radius-sm);
        }

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

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

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

.site-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 3rem 1rem;
    font-family: 'Segoe UI', system-ui, sans-serif;
    margin-top: auto;
  }

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

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

  .footer-logo {
    font-size: 2.2rem;
    font-weight: 700;
    color: #3498db;
    margin: 0 0 1rem 0;
    line-height: 1;
  }

  .footer-disclaimer {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #bdc3c7;
    margin-bottom: 1.5rem;
    max-width: 300px;
  }

  .copyright {
    font-size: 0.85rem;
    color: #95a5a6;
    margin-top: auto;
  }

  .footer-section h3 {
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
    color: #3498db;
    border-bottom: 2px solid #34495e;
    padding-bottom: 0.5rem;
  }

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

  .footer-nav li,
  .legal-links li {
    margin-bottom: 0.7rem;
  }

  .footer-nav a,
  .legal-links a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.2s ease, padding-left 0.2s ease;
    display: inline-block;
  }

  .footer-nav a:hover,
  .legal-links a:hover {
    color: #3498db;
    padding-left: 5px;
  }

  address p {
    margin-bottom: 0.7rem;
    font-style: normal;
    line-height: 1.5;
  }

  address a {
    color: #ecf0f1;
    text-decoration: none;
  }

  address a:hover {
    color: #3498db;
    text-decoration: underline;
  }

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

  .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #34495e;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
  }

  .social-links a:hover {
    background-color: #3498db;
  }

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

    .footer-disclaimer {
      max-width: 100%;
    }

    .social-links {
      justify-content: center;
    }

    .footer-section h3 {
      border-bottom: none;
    }
  }

  @media (max-width: 480px) {
    .site-footer {
      padding: 2rem 1rem;
    }
  }

.cookie-banner {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background: var(--bg-page);
        border-top: 1px solid var(--ring);
        box-shadow: 0 -4px 12px rgba(0,0,0,.1);
        padding: clamp(10px, 1.5vw, 16px);
    }

    .cookie-banner__c {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
    }

    .cookie-banner__text {
        flex: 1;
    }

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

    .cookie-banner__text p {
        margin: 0;
        font-size: 0.75rem;
        color: var(--neutral-600);
        line-height: 1.4;
    }

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

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

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

    .cookie-banner__accept:hover {
        background: var(--bg-primary-hover);
    }

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

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

    @media (max-width: 767px) {
        .cookie-banner__c {
            flex-direction: column;
            align-items: flex-start;
            gap: 0.75rem;
        }

        .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 h1 {
        margin: 0 0 2.5rem;
        font-size: clamp(28px, 5vw, 48px);
        color: black;
        text-align: center;
    }

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

    .policy-items__card {
        padding: 1.75rem;
        background: var(--bg-page);
        border: 1px solid var(--ring);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-sm);
    }

    .policy-items__card h3 {
        margin: 0 0 1rem;
        font-size: clamp(18px, 2.5vw, 22px);
        color: var(--fg-on-page);
    }

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

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

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

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

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

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

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

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

    .header__nav {
        display: flex;
        align-items: center;
    }

    .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) {
        .header__burger {
            display: flex;
        }

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

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

        .nav__list {
            flex-direction: column;
            width: 100%;
            gap: 0.5rem;
        }

        .nav__link {
            display: block;
            padding: 1rem;
            width: 100%;
            border-radius: var(--radius-sm);
        }

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

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

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

.site-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 3rem 1rem;
    font-family: 'Segoe UI', system-ui, sans-serif;
    margin-top: auto;
  }

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

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

  .footer-logo {
    font-size: 2.2rem;
    font-weight: 700;
    color: #3498db;
    margin: 0 0 1rem 0;
    line-height: 1;
  }

  .footer-disclaimer {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #bdc3c7;
    margin-bottom: 1.5rem;
    max-width: 300px;
  }

  .copyright {
    font-size: 0.85rem;
    color: #95a5a6;
    margin-top: auto;
  }

  .footer-section h3 {
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
    color: #3498db;
    border-bottom: 2px solid #34495e;
    padding-bottom: 0.5rem;
  }

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

  .footer-nav li,
  .legal-links li {
    margin-bottom: 0.7rem;
  }

  .footer-nav a,
  .legal-links a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.2s ease, padding-left 0.2s ease;
    display: inline-block;
  }

  .footer-nav a:hover,
  .legal-links a:hover {
    color: #3498db;
    padding-left: 5px;
  }

  address p {
    margin-bottom: 0.7rem;
    font-style: normal;
    line-height: 1.5;
  }

  address a {
    color: #ecf0f1;
    text-decoration: none;
  }

  address a:hover {
    color: #3498db;
    text-decoration: underline;
  }

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

  .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #34495e;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
  }

  .social-links a:hover {
    background-color: #3498db;
  }

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

    .footer-disclaimer {
      max-width: 100%;
    }

    .social-links {
      justify-content: center;
    }

    .footer-section h3 {
      border-bottom: none;
    }
  }

  @media (max-width: 480px) {
    .site-footer {
      padding: 2rem 1rem;
    }
  }

.cookie-banner {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background: var(--bg-page);
        border-top: 1px solid var(--ring);
        box-shadow: 0 -4px 12px rgba(0,0,0,.1);
        padding: clamp(10px, 1.5vw, 16px);
    }

    .cookie-banner__c {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
    }

    .cookie-banner__text {
        flex: 1;
    }

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

    .cookie-banner__text p {
        margin: 0;
        font-size: 0.75rem;
        color: var(--neutral-600);
        line-height: 1.4;
    }

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

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

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

    .cookie-banner__accept:hover {
        background: var(--bg-primary-hover);
    }

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

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

    @media (max-width: 767px) {
        .cookie-banner__c {
            flex-direction: column;
            align-items: flex-start;
            gap: 0.75rem;
        }

        .cookie-banner__actions {
            width: 100%;
        }

        .cookie-banner__btn {
            flex: 1;
        }
    }

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

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

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

.terms-items__list {
    margin: 0;
    padding-left: 1.2rem;
    display: grid;
    gap: 10px;
}

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

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

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

    .policy-contacts__c {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        gap: var(--space-y);
    }

    .policy-contacts__list {
        display: grid;
        gap: var(--gap);
        background: var(--surface-2);
        padding: var(--space-y);
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-on-surface);
    }

    .policy-contacts .policy-contacts__mini {
        background: var(--surface-light);
        padding: var(--space-y);
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-on-surface-light);
        display: grid;
        gap: var(--gap);
        margin-bottom: 1rem;
        align-items: center;
    }

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

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

    .policy-contacts .policy-contacts__mini input:focus {
        outline: 2px solid var(--ring);
        outline-offset: 2px;
    }

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

    .policy-contacts button {
        padding: .75rem 1rem;
        border-radius: var(--radius-md);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border: 0;
        font-weight: 600;
        cursor: pointer;
        transition: background-color var(--anim-duration) var(--anim-ease);
    }

    .policy-contacts button:hover {
        background: var(--bg-primary-hover);
    }

    .policy-contacts .item {
        color: var(--fg-on-surface);
        line-height: var(--line-height-base);
    }

    .policy-contacts .item strong {
        color: var(--neutral-900);
        display: inline-block;
        min-width: 140px;
    }

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

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

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

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

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

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

    .header__nav {
        display: flex;
        align-items: center;
    }

    .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) {
        .header__burger {
            display: flex;
        }

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

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

        .nav__list {
            flex-direction: column;
            width: 100%;
            gap: 0.5rem;
        }

        .nav__link {
            display: block;
            padding: 1rem;
            width: 100%;
            border-radius: var(--radius-sm);
        }

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

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

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

.site-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 3rem 1rem;
    font-family: 'Segoe UI', system-ui, sans-serif;
    margin-top: auto;
  }

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

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

  .footer-logo {
    font-size: 2.2rem;
    font-weight: 700;
    color: #3498db;
    margin: 0 0 1rem 0;
    line-height: 1;
  }

  .footer-disclaimer {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #bdc3c7;
    margin-bottom: 1.5rem;
    max-width: 300px;
  }

  .copyright {
    font-size: 0.85rem;
    color: #95a5a6;
    margin-top: auto;
  }

  .footer-section h3 {
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
    color: #3498db;
    border-bottom: 2px solid #34495e;
    padding-bottom: 0.5rem;
  }

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

  .footer-nav li,
  .legal-links li {
    margin-bottom: 0.7rem;
  }

  .footer-nav a,
  .legal-links a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.2s ease, padding-left 0.2s ease;
    display: inline-block;
  }

  .footer-nav a:hover,
  .legal-links a:hover {
    color: #3498db;
    padding-left: 5px;
  }

  address p {
    margin-bottom: 0.7rem;
    font-style: normal;
    line-height: 1.5;
  }

  address a {
    color: #ecf0f1;
    text-decoration: none;
  }

  address a:hover {
    color: #3498db;
    text-decoration: underline;
  }

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

  .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #34495e;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
  }

  .social-links a:hover {
    background-color: #3498db;
  }

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

    .footer-disclaimer {
      max-width: 100%;
    }

    .social-links {
      justify-content: center;
    }

    .footer-section h3 {
      border-bottom: none;
    }
  }

  @media (max-width: 480px) {
    .site-footer {
      padding: 2rem 1rem;
    }
  }

.cookie-banner {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background: var(--bg-page);
        border-top: 1px solid var(--ring);
        box-shadow: 0 -4px 12px rgba(0,0,0,.1);
        padding: clamp(10px, 1.5vw, 16px);
    }

    .cookie-banner__c {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
    }

    .cookie-banner__text {
        flex: 1;
    }

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

    .cookie-banner__text p {
        margin: 0;
        font-size: 0.75rem;
        color: var(--neutral-600);
        line-height: 1.4;
    }

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

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

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

    .cookie-banner__accept:hover {
        background: var(--bg-primary-hover);
    }

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

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

    @media (max-width: 767px) {
        .cookie-banner__c {
            flex-direction: column;
            align-items: flex-start;
            gap: 0.75rem;
        }

        .cookie-banner__actions {
            width: 100%;
        }

        .cookie-banner__btn {
            flex: 1;
        }
    }

.thank--light-v6 {
    font-family: var(--font-family);
    padding: 72px 20px;
    background: var(--bg-page);
    color: var(--fg-on-page);
    text-align: center;
}

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

.thank__inner h1 {
    margin: 0 0 6px;
    font-size: clamp(26px,4.5vw,34px);
    color: var(--brand);
}

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

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

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

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

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

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

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

    .header__nav {
        display: flex;
        align-items: center;
    }

    .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) {
        .header__burger {
            display: flex;
        }

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

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

        .nav__list {
            flex-direction: column;
            width: 100%;
            gap: 0.5rem;
        }

        .nav__link {
            display: block;
            padding: 1rem;
            width: 100%;
            border-radius: var(--radius-sm);
        }

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

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

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

.site-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 3rem 1rem;
    font-family: 'Segoe UI', system-ui, sans-serif;
    margin-top: auto;
  }

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

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

  .footer-logo {
    font-size: 2.2rem;
    font-weight: 700;
    color: #3498db;
    margin: 0 0 1rem 0;
    line-height: 1;
  }

  .footer-disclaimer {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #bdc3c7;
    margin-bottom: 1.5rem;
    max-width: 300px;
  }

  .copyright {
    font-size: 0.85rem;
    color: #95a5a6;
    margin-top: auto;
  }

  .footer-section h3 {
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
    color: #3498db;
    border-bottom: 2px solid #34495e;
    padding-bottom: 0.5rem;
  }

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

  .footer-nav li,
  .legal-links li {
    margin-bottom: 0.7rem;
  }

  .footer-nav a,
  .legal-links a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.2s ease, padding-left 0.2s ease;
    display: inline-block;
  }

  .footer-nav a:hover,
  .legal-links a:hover {
    color: #3498db;
    padding-left: 5px;
  }

  address p {
    margin-bottom: 0.7rem;
    font-style: normal;
    line-height: 1.5;
  }

  address a {
    color: #ecf0f1;
    text-decoration: none;
  }

  address a:hover {
    color: #3498db;
    text-decoration: underline;
  }

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

  .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #34495e;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
  }

  .social-links a:hover {
    background-color: #3498db;
  }

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

    .footer-disclaimer {
      max-width: 100%;
    }

    .social-links {
      justify-content: center;
    }

    .footer-section h3 {
      border-bottom: none;
    }
  }

  @media (max-width: 480px) {
    .site-footer {
      padding: 2rem 1rem;
    }
  }

.cookie-banner {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background: var(--bg-page);
        border-top: 1px solid var(--ring);
        box-shadow: 0 -4px 12px rgba(0,0,0,.1);
        padding: clamp(10px, 1.5vw, 16px);
    }

    .cookie-banner__c {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
    }

    .cookie-banner__text {
        flex: 1;
    }

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

    .cookie-banner__text p {
        margin: 0;
        font-size: 0.75rem;
        color: var(--neutral-600);
        line-height: 1.4;
    }

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

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

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

    .cookie-banner__accept:hover {
        background: var(--bg-primary-hover);
    }

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

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

    @media (max-width: 767px) {
        .cookie-banner__c {
            flex-direction: column;
            align-items: flex-start;
            gap: 0.75rem;
        }

        .cookie-banner__actions {
            width: 100%;
        }

        .cookie-banner__btn {
            flex: 1;
        }
    }

.error-404-light {
        font-family: var(--font-family);
        background: var(--bg-alt);
        color: var(--fg-on-alt);
        padding: clamp(32px, 7vw, 80px) clamp(16px, 4vw, 56px);
    }

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

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

    .error-404-light__illustration {
        display: flex;
        justify-content: center;
    }

    .error-404-light__bubble {
        width: 210px;
        height: 210px;
        border-radius: 50%;
        background: var(--surface-1);
        color: var(--fg-on-surface);
        border: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-md);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .error-404-light__code {
        font-size: 2.4rem;
        font-weight: 700;
        letter-spacing: 0.16em;
    }

    .error-404-light__text {
        margin-top: 0.4rem;
        font-size: 0.9rem;
        text-transform: uppercase;
        letter-spacing: 0.18em;
        opacity: 0.7;
    }

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

    .error-404-light__content p {
        margin: 0 0 1.75rem;
        color: var(--fg-on-alt);
        opacity: 0.9;
    }

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

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

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

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

    .error-404-light__btn--ghost {
        background: var(--btn-ghost-bg);
        color: var(--btn-ghost-fg);
        border: 1px solid var(--input-border);
    }

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

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

        .error-404-light__illustration {
            order: -1;
        }

        .error-404-light__actions {
            flex-direction: column;
        }

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