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

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

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

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

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

  --brand: #0055B7;
  --brand-contrast: #FFFFFF;
  --accent: #00A3E0;
  --accent-contrast: #FFFFFF;

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

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

  --bg-alt: #F1F5F9;
  --fg-on-alt: #334155;

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

  --surface-light: #FFFFFF;
  --fg-on-surface-light: #334155;
  --border-on-surface-light: #E2E8F0;

  --bg-primary: #0055B7;
  --fg-on-primary: #FFFFFF;
  --bg-primary-hover: #004494;
  --ring: #0055B7;

  --bg-accent: #E6F7FF;
  --fg-on-accent: #003366;
  --bg-accent-hover: #0088CC;

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

  --link: #0055B7;
  --link-hover: #004494;

  --gradient-hero: linear-gradient(135deg, #0055B7 0%, #00A3E0 100%);
  --gradient-accent: linear-gradient(90deg, #E6F7FF 0%, #F0F9FF 100%);

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

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

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

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

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

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

.header {
        background-color: var(--surface-1);
        color: var(--fg-on-surface);
        border-bottom: 1px solid var(--border-on-surface);
        position: sticky;
        top: 0;
        z-index: 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;
        white-space: nowrap;
    }

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

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

    .header__nav {
        display: flex;
    }

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

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

    .nav__link:hover,
    .nav__link:focus {
        background-color: var(--bg-alt);
        color: var(--fg-on-alt);
    }

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

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

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

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

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

.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: 1.8rem;
        font-weight: 700;
        color: #1abc9c;
        margin: 0 0 1rem 0;
    }

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

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

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

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

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

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

    .footer-nav a:hover,
    .footer-legal a:hover {
        color: #1abc9c;
        padding-left: 5px;
    }

    .footer-contact p {
        margin: 0 0 0.8rem 0;
        line-height: 1.5;
    }

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

    .footer-contact a:hover {
        text-decoration: underline;
    }

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

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

    .footer-social a:hover {
        background-color: #1abc9c;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.index-hero {
        font-family: var(--font-family);
        color: var(--fg-on-page);
        background: radial-gradient(60% 120% at 10% 0%, var(--bg-accent), transparent), var(--bg-page);
        padding: clamp(28px, 5vw, 80px) clamp(16px, 4vw, 40px);
    }

    .index-hero .index-hero__c {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        gap: 32px;
        grid-template-columns: 1.2fr .8fr;
        align-items: center;
    }

    .index-hero h1 {
        font-size: clamp(34px, 7vw, 80px);
        letter-spacing: -.02em;
        margin: 0 0 .3em;
        color: inherit;
        background: inherit;
    }

    .index-hero p {
        font-size: clamp(16px, 2.2vw, 22px);
        opacity: .9;
        margin: 0 0 1.1rem;
        color: inherit;
        background: inherit;
    }

    .index-hero .index-hero__btn {
        display: inline-block;
        padding: 1rem 1.3rem;
        border-radius: var(--radius-lg);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        text-decoration: none;
        box-shadow: var(--shadow-lg);
    }

    .index-hero .index-hero__right {
        display: grid;
        gap: 12px;
    }

    .index-hero .index-hero__right .badge {
        list-style: none;
        background: rgba(255, 255, 255, .12);
        border: 1px solid rgba(255, 255, 255, .25);
        backdrop-filter: blur(8px);
        border-radius: var(--radius-lg);
        padding: .85rem 1rem;
        box-shadow: var(--shadow-sm);
    }

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

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

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

.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(--bg-primary-hover);
    }

    @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%;
        }
    }

.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;
        white-space: nowrap;
    }

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

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

    .header__nav {
        display: flex;
    }

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

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

    .nav__link:hover,
    .nav__link:focus {
        background-color: var(--bg-alt);
        color: var(--fg-on-alt);
    }

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

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

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

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

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

.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: 1.8rem;
        font-weight: 700;
        color: #1abc9c;
        margin: 0 0 1rem 0;
    }

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

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

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

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

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

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

    .footer-nav a:hover,
    .footer-legal a:hover {
        color: #1abc9c;
        padding-left: 5px;
    }

    .footer-contact p {
        margin: 0 0 0.8rem 0;
        line-height: 1.5;
    }

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

    .footer-contact a:hover {
        text-decoration: underline;
    }

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

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

    .footer-social a:hover {
        background-color: #1abc9c;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.blog-list__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
}

.blog-list__card {
    background: rgba(15,23,42,0.9);
    border-radius: var(--radius-lg);
    padding: 16px 18px;
    border: 1px solid rgba(148,163,184,0.6);
    display: grid;
    gap: 8px;
}

.blog-list__card h3 {
    margin: 0;
    font-size: 1rem;
}

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

.blog-list__tag {
    font-size: 0.8rem;
    color: rgba(191,219,254,0.95);
}

.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;
        white-space: nowrap;
    }

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

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

    .header__nav {
        display: flex;
    }

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

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

    .nav__link:hover,
    .nav__link:focus {
        background-color: var(--bg-alt);
        color: var(--fg-on-alt);
    }

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

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

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

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

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

.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: 1.8rem;
        font-weight: 700;
        color: #1abc9c;
        margin: 0 0 1rem 0;
    }

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

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

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

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

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

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

    .footer-nav a:hover,
    .footer-legal a:hover {
        color: #1abc9c;
        padding-left: 5px;
    }

    .footer-contact p {
        margin: 0 0 0.8rem 0;
        line-height: 1.5;
    }

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

    .footer-contact a:hover {
        text-decoration: underline;
    }

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

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

    .footer-social a:hover {
        background-color: #1abc9c;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.blog-item__cover {
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid rgba(148,163,184,0.6);
    margin-bottom: 32px;
}

.blog-item__cover img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

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

.blog-item__meta {
    margin: 0 0 32px;
    font-size: 0.9rem;
    color: var(--neutral-300);
    padding-bottom: 16px;
    border-bottom: 1px solid var(--neutral-600);
}

.blog-item__body {
    line-height: var(--line-height-base);
    color: var(--neutral-100);
}

.blog-item__body h2 {
    color: var(--neutral-0);
    margin-top: 32px;
    margin-bottom: 16px;
    font-size: 1.5rem;
}

.blog-item__body p {
    margin-bottom: 16px;
}

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

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

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

.blog-list__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
}

.blog-list__card {
    background: rgba(15,23,42,0.9);
    border-radius: var(--radius-lg);
    padding: 16px 18px;
    border: 1px solid rgba(148,163,184,0.6);
    display: grid;
    gap: 8px;
}

.blog-list__card h3 {
    margin: 0;
    font-size: 1rem;
}

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

.blog-list__tag {
    font-size: 0.8rem;
    color: rgba(191,219,254,0.95);
}

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

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

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

    .articles .articles__header {
        margin-bottom: clamp(32px, 5vw, 48px);
    }

    .articles .articles__header h2 {
        font-size: clamp(28px, 5vw, 48px);
        margin: 0;
        color: var(--fg-on-page);
    }

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

    .articles .articles__item {
        padding-bottom: clamp(20px, 3vw, 28px);
        border-bottom: 1px solid var(--border-on-surface);
    }

    .articles .articles__item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .articles .articles__link {
        display: block;
        text-decoration: none;
        color: inherit;
    }

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

    .articles .articles__link:hover h3 {
        color: var(--link-hover);
    }

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

    .articles .articles__meta {
        font-size: clamp(13px, 2vw, 15px);
        color: var(--neutral-600);
    }

.header {
        background-color: var(--surface-1);
        color: var(--fg-on-surface);
        border-bottom: 1px solid var(--border-on-surface);
        position: sticky;
        top: 0;
        z-index: 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;
        white-space: nowrap;
    }

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

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

    .header__nav {
        display: flex;
    }

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

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

    .nav__link:hover,
    .nav__link:focus {
        background-color: var(--bg-alt);
        color: var(--fg-on-alt);
    }

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

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

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

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

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

.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: 1.8rem;
        font-weight: 700;
        color: #1abc9c;
        margin: 0 0 1rem 0;
    }

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

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

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

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

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

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

    .footer-nav a:hover,
    .footer-legal a:hover {
        color: #1abc9c;
        padding-left: 5px;
    }

    .footer-contact p {
        margin: 0 0 0.8rem 0;
        line-height: 1.5;
    }

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

    .footer-contact a:hover {
        text-decoration: underline;
    }

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

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

    .footer-social a:hover {
        background-color: #1abc9c;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.blog-item__cover {
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid rgba(148,163,184,0.6);
    margin-bottom: 32px;
}

.blog-item__cover img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

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

.blog-item__meta {
    margin: 0 0 32px;
    font-size: 0.9rem;
    color: var(--neutral-300);
    padding-bottom: 16px;
    border-bottom: 1px solid var(--neutral-600);
}

.blog-item__body {
    line-height: var(--line-height-base);
    color: var(--neutral-100);
}

.blog-item__body h2 {
    color: var(--neutral-0);
    margin-top: 32px;
    margin-bottom: 16px;
    font-size: 1.5rem;
}

.blog-item__body p {
    margin-bottom: 16px;
}

.blog-item__body em {
    color: var(--accent);
    font-style: italic;
}

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

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

    .articles .articles__header {
        margin-bottom: clamp(32px, 5vw, 48px);
    }

    .articles .articles__header h2 {
        font-size: clamp(28px, 5vw, 48px);
        margin: 0;
        color: var(--fg-on-page);
    }

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

    .articles .articles__item {
        padding-bottom: clamp(20px, 3vw, 28px);
        border-bottom: 1px solid var(--border-on-surface);
    }

    .articles .articles__item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .articles .articles__link {
        display: block;
        text-decoration: none;
        color: inherit;
    }

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

    .articles .articles__link:hover h3 {
        color: var(--link-hover);
    }

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

    .articles .articles__meta {
        font-size: clamp(13px, 2vw, 15px);
        color: var(--neutral-600);
    }

.header {
        background-color: var(--surface-1);
        color: var(--fg-on-surface);
        border-bottom: 1px solid var(--border-on-surface);
        position: sticky;
        top: 0;
        z-index: 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;
        white-space: nowrap;
    }

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

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

    .header__nav {
        display: flex;
    }

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

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

    .nav__link:hover,
    .nav__link:focus {
        background-color: var(--bg-alt);
        color: var(--fg-on-alt);
    }

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

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

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

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

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

.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: 1.8rem;
        font-weight: 700;
        color: #1abc9c;
        margin: 0 0 1rem 0;
    }

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

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

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

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

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

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

    .footer-nav a:hover,
    .footer-legal a:hover {
        color: #1abc9c;
        padding-left: 5px;
    }

    .footer-contact p {
        margin: 0 0 0.8rem 0;
        line-height: 1.5;
    }

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

    .footer-contact a:hover {
        text-decoration: underline;
    }

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

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

    .footer-social a:hover {
        background-color: #1abc9c;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.blog-item__cover {
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid rgba(148,163,184,0.6);
    margin-bottom: 16px;
}

.blog-item__cover img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

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

.blog-item__meta {
    margin: 0;
    font-size: 0.9rem;
    color: var(--neutral-300);
}
.blog-item__body {
    margin-top: var(--space-y);
    line-height: var(--line-height-base);
}
.blog-item__body h2 {
    color: var(--accent);
    margin-top: 1.5em;
    margin-bottom: 0.5em;
    font-size: 1.5rem;
}
.blog-item__body p {
    margin-bottom: 1em;
}
.blog-item__body strong {
    color: var(--neutral-100);
}

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

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

    .author .author__wrapper {
        max-width: 500px;
        margin: 0 auto;
        text-align: center;
    }

    .author .author__image {
        width: clamp(160px, 24vw, 240px);
        height: clamp(160px, 24vw, 240px);
        margin: 0 auto clamp(24px, 4vw, 32px);
        border-radius: 50%;
        overflow: hidden;
        border: 4px solid var(--border-on-surface);
    }

    .author .author__image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .author .author__name {
        font-size: clamp(28px, 5vw, 40px);
        margin: 0 0 0.5rem;
        color: var(--fg-on-page);
    }

    .author .author__role {
        font-size: clamp(16px, 2.5vw, 18px);
        color: var(--bg-accent);
        margin: 0 0 1.5rem;
        font-weight: 600;
    }

    .author .author__bio {
        font-size: clamp(15px, 2.2vw, 17px);
        line-height: 1.7;
        color: var(--neutral-600);
        margin: 0;
    }

.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;
        white-space: nowrap;
    }

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

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

    .header__nav {
        display: flex;
    }

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

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

    .nav__link:hover,
    .nav__link:focus {
        background-color: var(--bg-alt);
        color: var(--fg-on-alt);
    }

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

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

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

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

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

.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: 1.8rem;
        font-weight: 700;
        color: #1abc9c;
        margin: 0 0 1rem 0;
    }

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

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

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

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

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

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

    .footer-nav a:hover,
    .footer-legal a:hover {
        color: #1abc9c;
        padding-left: 5px;
    }

    .footer-contact p {
        margin: 0 0 0.8rem 0;
        line-height: 1.5;
    }

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

    .footer-contact a:hover {
        text-decoration: underline;
    }

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

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

    .footer-social a:hover {
        background-color: #1abc9c;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.contacts__inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
    gap: 24px;
}

.contacts__card {
    background: rgba(15,23,42,0.98);
    border-radius: var(--radius-xl);
    padding: 20px 22px;
    border: 1px solid rgba(148,163,184,0.7);
    box-shadow: var(--shadow-lg);
}

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

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

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

.contacts__row {
    display: grid;
    grid-template-columns: auto minmax(0,1fr);
    gap: 10px;
    align-items: center;
}

.contacts__icon {
    width: 32px;
    height: 32px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neutral-0);
    font-size: 0.85rem;
}

.contacts__icon--primary {
    background: var(--bg-primary);
}

.contacts__icon--accent {
    background: var(--accent);
}

.contacts__icon--danger {
    background: var(--danger);
}

.contacts__label {
    font-size: 0.8rem;
    color: var(--neutral-300);
}

.contacts__value {
    font-size: 0.95rem;
    color: var(--neutral-0);
}

.contacts__side {
    display: grid;
    align-content: center;
    gap: 10px;
}

.contacts__badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 999px;
    background: var(--warning);
    color: var(--warning-contrast);
    font-size: 0.8rem;
}

.contacts__text {
    margin: 0;
    color: var(--neutral-200);
    font-size: 0.95rem;
}
@media (max-width: 768px) {
    .contacts__inner {
        grid-template-columns: minmax(0, 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;
        white-space: nowrap;
    }

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

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

    .header__nav {
        display: flex;
    }

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

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

    .nav__link:hover,
    .nav__link:focus {
        background-color: var(--bg-alt);
        color: var(--fg-on-alt);
    }

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

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

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

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

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

.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: 1.8rem;
        font-weight: 700;
        color: #1abc9c;
        margin: 0 0 1rem 0;
    }

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

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

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

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

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

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

    .footer-nav a:hover,
    .footer-legal a:hover {
        color: #1abc9c;
        padding-left: 5px;
    }

    .footer-contact p {
        margin: 0 0 0.8rem 0;
        line-height: 1.5;
    }

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

    .footer-contact a:hover {
        text-decoration: underline;
    }

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

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

    .footer-social a:hover {
        background-color: #1abc9c;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .contact-map .header-section {
        text-align: center;
        margin-bottom: 2.5rem;
    }

    .contact-map .header-section h2 {
        margin: 0 0 .5rem;
        font-size: clamp(24px, 4vw, 40px);
        color: var(--fg-on-page);
    }

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

    .contact-map .map-section {
        margin-bottom: 2.5rem;
    }

    .contact-map .map-wrapper {
        width: 100%;
        border-radius: var(--radius-xl);
        overflow: hidden;
        box-shadow: var(--shadow-lg);
        border: 3px solid var(--bg-accent);
    }

    .contact-map .map-wrapper iframe {
        display: block;
        width: 100%;
        height: 480px;
        border: 0;
    }

    .contact-map .contacts-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }

    .contact-map .contact-card {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-radius: var(--radius-lg);
        padding: clamp(14px, 2vw, 20px);
        text-align: center;
        box-shadow: var(--shadow-md);
        transition: transform .2s;
    }

    .contact-map .contact-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-lg);
    }

    .contact-map .contact-card .icon {
        font-size: 2rem;
        margin-bottom: .75rem;
    }

    .contact-map .contact-card h4 {
        margin: 0 0 .5rem;
        font-size: .95rem;
        opacity: .9;
    }

    .contact-map .contact-card p {
        margin: 0;
        font-size: .9rem;
        color: var(--fg-on-accent);
    }

    @media (max-width: 1023px) {
        .contact-map .contacts-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 767px) {
        .contact-map .contacts-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;
        white-space: nowrap;
    }

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

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

    .header__nav {
        display: flex;
    }

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

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

    .nav__link:hover,
    .nav__link:focus {
        background-color: var(--bg-alt);
        color: var(--fg-on-alt);
    }

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

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

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

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

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

.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: 1.8rem;
        font-weight: 700;
        color: #1abc9c;
        margin: 0 0 1rem 0;
    }

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

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

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

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

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

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

    .footer-nav a:hover,
    .footer-legal a:hover {
        color: #1abc9c;
        padding-left: 5px;
    }

    .footer-contact p {
        margin: 0 0 0.8rem 0;
        line-height: 1.5;
    }

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

    .footer-contact a:hover {
        text-decoration: underline;
    }

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

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

    .footer-social a:hover {
        background-color: #1abc9c;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.contacts__inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
    gap: 24px;
}

.contacts__card {
    background: rgba(15,23,42,0.98);
    border-radius: var(--radius-xl);
    padding: 20px 22px;
    border: 1px solid rgba(148,163,184,0.7);
    box-shadow: var(--shadow-lg);
}

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

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

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

.contacts__row {
    display: grid;
    grid-template-columns: auto minmax(0,1fr);
    gap: 10px;
    align-items: center;
}

.contacts__icon {
    width: 32px;
    height: 32px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neutral-0);
    font-size: 0.85rem;
}

.contacts__icon--primary {
    background: var(--bg-primary);
}

.contacts__icon--accent {
    background: var(--accent);
}

.contacts__icon--danger {
    background: var(--danger);
}

.contacts__label {
    font-size: 0.8rem;
    color: var(--neutral-300);
}

.contacts__value {
    font-size: 0.95rem;
    color: var(--neutral-0);
}

.contacts__side {
    display: grid;
    align-content: center;
    gap: 10px;
}

.contacts__badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 999px;
    background: var(--warning);
    color: var(--warning-contrast);
    font-size: 0.8rem;
}

.contacts__text {
    margin: 0;
    color: var(--neutral-200);
    font-size: 0.95rem;
}
@media (max-width: 768px) {
    .contacts__inner {
        grid-template-columns: minmax(0, 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;
        white-space: nowrap;
    }

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

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

    .header__nav {
        display: flex;
    }

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

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

    .nav__link:hover,
    .nav__link:focus {
        background-color: var(--bg-alt);
        color: var(--fg-on-alt);
    }

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

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

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

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

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

.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: 1.8rem;
        font-weight: 700;
        color: #1abc9c;
        margin: 0 0 1rem 0;
    }

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

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

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

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

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

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

    .footer-nav a:hover,
    .footer-legal a:hover {
        color: #1abc9c;
        padding-left: 5px;
    }

    .footer-contact p {
        margin: 0 0 0.8rem 0;
        line-height: 1.5;
    }

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

    .footer-contact a:hover {
        text-decoration: underline;
    }

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

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

    .footer-social a:hover {
        background-color: #1abc9c;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    @media (max-width: 1023px) {
        .terms-items__grid {
            grid-template-columns: 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;
        white-space: nowrap;
    }

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

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

    .header__nav {
        display: flex;
    }

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

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

    .nav__link:hover,
    .nav__link:focus {
        background-color: var(--bg-alt);
        color: var(--fg-on-alt);
    }

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

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

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

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

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

.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: 1.8rem;
        font-weight: 700;
        color: #1abc9c;
        margin: 0 0 1rem 0;
    }

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

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

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

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

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

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

    .footer-nav a:hover,
    .footer-legal a:hover {
        color: #1abc9c;
        padding-left: 5px;
    }

    .footer-contact p {
        margin: 0 0 0.8rem 0;
        line-height: 1.5;
    }

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

    .footer-contact a:hover {
        text-decoration: underline;
    }

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

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

    .footer-social a:hover {
        background-color: #1abc9c;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.header {
        background-color: var(--surface-1);
        color: var(--fg-on-surface);
        border-bottom: 1px solid var(--border-on-surface);
        position: sticky;
        top: 0;
        z-index: 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;
        white-space: nowrap;
    }

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

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

    .header__nav {
        display: flex;
    }

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

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

    .nav__link:hover,
    .nav__link:focus {
        background-color: var(--bg-alt);
        color: var(--fg-on-alt);
    }

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

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

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

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

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

.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: 1.8rem;
        font-weight: 700;
        color: #1abc9c;
        margin: 0 0 1rem 0;
    }

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

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

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

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

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

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

    .footer-nav a:hover,
    .footer-legal a:hover {
        color: #1abc9c;
        padding-left: 5px;
    }

    .footer-contact p {
        margin: 0 0 0.8rem 0;
        line-height: 1.5;
    }

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

    .footer-contact a:hover {
        text-decoration: underline;
    }

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

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

    .footer-social a:hover {
        background-color: #1abc9c;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .error-404__content h1 {
        font-size: clamp(30px, 5vw, 46px);
        margin: 0 0 0.5rem;
        color: var(--fg-on-accent);
    }

    .error-404__content p {
        margin: 0 0 1.8rem;
        color: var(--fg-on-accent);
        opacity: 0.9;
    }

    .error-404__eyebrow {
        font-size: 0.85rem;
        text-transform: uppercase;
        letter-spacing: 0.15em;
        margin-bottom: 0.5rem;
        opacity: 0.85;
    }

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

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

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

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

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

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

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

    .error-404__bubble {
        position: relative;
        padding: 2.5rem 2rem;
        border-radius: 32px;
        background: var(--surface-light);
        color: var(--fg-on-surface-light);
        box-shadow: var(--shadow-lg);
        text-align: center;
        min-width: 220px;
    }

    .error-404__code {
        display: block;
        font-size: 2.5rem;
        font-weight: 700;
        letter-spacing: 0.1em;
        margin-bottom: 0.25rem;
    }

    .error-404__label {
        font-size: 0.9rem;
        text-transform: uppercase;
        letter-spacing: 0.15em;
        opacity: 0.8;
    }

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

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

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

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

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

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