:root {
  --font-family: "Open 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: 24px;
  --radius-lg: 16px;
  --radius-md: 12px;
  --radius-sm: 8px;

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

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

  --brand: #0055A4;
  --brand-contrast: #ffffff;
  --accent: #D4AF37;
  --accent-contrast: #1a1a1a;

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

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

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

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

  --surface-light: #ffffff;
  --fg-on-surface-light: #343a40;
  --border-on-surface-light: #e9ecef;

  --bg-primary: #0055A4;
  --fg-on-primary: #ffffff;
  --bg-primary-hover: #004080;
  --ring: rgba(0, 85, 164, 0.3);

  --bg-accent: #FBF6E9;
  --fg-on-accent: #8B6F1E;
  --bg-accent-hover: #E8D399;

  --success: #198754;
  --success-contrast: #ffffff;
  --warning: #ffc107;
  --warning-contrast: #212529;
  --danger: #dc3545;
  --danger-contrast: #ffffff;

  --link: #0055A4;
  --link-hover: #004080;

  --gradient-hero: linear-gradient(135deg, #0055A4 0%, #003366 100%);
  --gradient-accent: linear-gradient(135deg, #FBF6E9 0%, #ffffff 100%);

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

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

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

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

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

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

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

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

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

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

    .main-nav {
        display: flex;
    }

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

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

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

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

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

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

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

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

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

        .main-nav {
            position: fixed;
            top: 0;
            right: 0;
            height: 100vh;
            width: 70%;
            max-width: 300px;
            background-color: var(--surface-2);
            box-shadow: var(--shadow-lg);
            transform: translateX(100%);
            transition: transform var(--anim-duration) var(--anim-ease);
            padding-top: 5rem;
            z-index: 1000;
        }

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

        .nav-list {
            flex-direction: column;
            padding: var(--space-x);
            gap: 0;
        }

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

        .nav-link:hover,
        .nav-link:focus {
            background-color: var(--bg-primary-hover);
            color: var(--fg-on-primary);
        }
    }

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

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

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

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

    .footer-tagline {
        font-style: italic;
        color: #bdc3c7;
        line-height: 1.5;
    }

    .footer-heading {
        font-size: 1.2rem;
        margin-bottom: 1rem;
        color: #3498db;
        border-bottom: 1px solid #4a6572;
        padding-bottom: 0.5rem;
    }

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

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

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

    .footer-nav a:hover,
    .footer-social a:hover,
    .footer-legal-links a:hover,
    .footer-contact a:hover {
        color: #3498db;
        text-decoration: underline;
    }

    .footer-contact p {
        margin-bottom: 0.7rem;
        line-height: 1.5;
    }

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

    .footer-legal {
        font-size: 0.9rem;
        color: #95a5a6;
    }

    .footer-copyright {
        margin-bottom: 0.5rem;
    }

    .footer-disclaimer {
        font-size: 0.85rem;
        margin-bottom: 1rem;
        font-style: italic;
    }

    .footer-legal-links {
        margin-top: 0.5rem;
    }

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

        .footer-heading {
            border-bottom: none;
        }

        .footer-legal-links {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .footer-legal-links a {
            display: block;
        }

        .footer-legal-links a:first-child::after {
            content: "";
        }

        .footer-legal-links a::after {
            content: "|";
            margin: 0 0.5rem;
            color: #95a5a6;
        }

        .footer-legal-links a:last-child::after {
            content: "";
        }
    }

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

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

.cookies__inner h2 {
    margin: 0 0 6px;
    font-size: 1rem;
}
.cookies__inner p {
    margin: 0;
}
    .cookie-banner__buttons {
        margin-top: 1rem;
        display: flex;
        gap: 1rem;
        flex-shrink: 0;
    }

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

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

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

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

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

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

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

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

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

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

.index-hero {
        position: relative;
        font-family: var(--font-family);
        color: var(--fg-on-page);
        padding: clamp(48px, 8vw, 140px) clamp(16px, 4vw, 40px);
        overflow: hidden;
    }

    .index-hero {
        background:
                repeating-linear-gradient(
                        45deg,
                        var(--bg-primary) 0px,
                        var(--fg-on-primary) 20px,
                        var(--bg-page) 20px,
                        var(--fg-on-page) 40px,
                        var(--bg-accent) 40px,
                        var(--fg-on-accent) 60px,
                        var(--ring) 60px
                );
        background-size: 200% 200%;
        animation: stripesMove 10s linear infinite;
    }

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

    .index-hero .index-hero__bg {
        position: absolute;
        inset: 0;
        background-size: cover;
        background-position: center;
        transform: scale(1.05);
    }

    .index-hero .index-hero__overlay {
        position: absolute;
        inset: 0;
        background: var(--overlay);
    }

    .index-hero .index-hero__c {
        position: relative;
        max-width: var(--max-w);
        margin: 0 auto;
        background: rgba(0, 0, 0, 0.6);
        border-radius: var(--radius-lg);
        padding: var(--space-x);
    }

    .index-hero .index-hero__center {
        text-align: center;
        color: white;
    }

    .index-hero h1 {
        font-size: clamp(34px, 7vw, 84px);
        margin: .1em 0 .2em;
        color: inherit;
        background: inherit;
    }

    .index-hero p {
        max-width: 65ch;
        margin: 0 auto 1.2rem;
        color: inherit;
        background: inherit;
    }

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

.index-cta {
        font-family: var(--font-family);
        color: var(--fg-on-page);
        background: linear-gradient(120deg, var(--bg-primary), var(--fg-on-accent), var(--ring));
        padding: clamp(28px, 5vw, 80px) clamp(16px, 3vw, 40px);
        background-size: 300% 300%;
        animation: gradientFlow 8s 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 .index-cta__stack {
        display: grid;
        gap: var(--space-x);
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .index-cta .index-cta__stack .stack {
        list-style: none;
        background: rgba(255, 255, 255, .14);
        border: 1px solid rgba(255, 255, 255, .25);
        backdrop-filter: blur(8px);
        border-radius: var(--radius-lg);
        padding: clamp(12px, 2vw, 22px);
        box-shadow: var(--shadow-sm);
    }

    .index-cta .index-cta__stack .stack h5 {
        color: var(--neutral-0);
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
        font-weight: 600;
    }

    .index-cta .index-cta__stack .stack p {
        color: var(--neutral-100);
        line-height: var(--line-height-base);
        margin-bottom: 1rem;
    }

    .index-cta .index-cta__btn {
        display: inline-block;
        margin-top: .6rem;
        background: var(--neutral-0);
        color: var(--bg-primary);
        padding: .7rem 1rem;
        border-radius: var(--radius-md);
        text-decoration: none;
        font-weight: 600;
        transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
        box-shadow: var(--shadow-sm);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .main-nav {
        display: flex;
    }

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

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

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

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

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

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

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

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

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

        .main-nav {
            position: fixed;
            top: 0;
            right: 0;
            height: 100vh;
            width: 70%;
            max-width: 300px;
            background-color: var(--surface-2);
            box-shadow: var(--shadow-lg);
            transform: translateX(100%);
            transition: transform var(--anim-duration) var(--anim-ease);
            padding-top: 5rem;
            z-index: 1000;
        }

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

        .nav-list {
            flex-direction: column;
            padding: var(--space-x);
            gap: 0;
        }

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

        .nav-link:hover,
        .nav-link:focus {
            background-color: var(--bg-primary-hover);
            color: var(--fg-on-primary);
        }
    }

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

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

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

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

    .footer-tagline {
        font-style: italic;
        color: #bdc3c7;
        line-height: 1.5;
    }

    .footer-heading {
        font-size: 1.2rem;
        margin-bottom: 1rem;
        color: #3498db;
        border-bottom: 1px solid #4a6572;
        padding-bottom: 0.5rem;
    }

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

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

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

    .footer-nav a:hover,
    .footer-social a:hover,
    .footer-legal-links a:hover,
    .footer-contact a:hover {
        color: #3498db;
        text-decoration: underline;
    }

    .footer-contact p {
        margin-bottom: 0.7rem;
        line-height: 1.5;
    }

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

    .footer-legal {
        font-size: 0.9rem;
        color: #95a5a6;
    }

    .footer-copyright {
        margin-bottom: 0.5rem;
    }

    .footer-disclaimer {
        font-size: 0.85rem;
        margin-bottom: 1rem;
        font-style: italic;
    }

    .footer-legal-links {
        margin-top: 0.5rem;
    }

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

        .footer-heading {
            border-bottom: none;
        }

        .footer-legal-links {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .footer-legal-links a {
            display: block;
        }

        .footer-legal-links a:first-child::after {
            content: "";
        }

        .footer-legal-links a::after {
            content: "|";
            margin: 0 0.5rem;
            color: #95a5a6;
        }

        .footer-legal-links a:last-child::after {
            content: "";
        }
    }

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

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

.cookies__inner h2 {
    margin: 0 0 6px;
    font-size: 1rem;
}
.cookies__inner p {
    margin: 0;
}
    .cookie-banner__buttons {
        margin-top: 1rem;
        display: flex;
        gap: 1rem;
        flex-shrink: 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

    .testimonials .testimonials__h {
        text-align: center;
        margin-bottom: var(--space-y);
    }

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

    .testimonials .testimonials__grid {
        display: grid;
        gap: var(--space-x);
    }

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

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

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

    .testimonials .testimonials__card {
        background: var(--card-bg-light);
        border: 1px solid var(--ring);
        border-radius: var(--radius-lg);
        padding: clamp(24px, 3vw, 32px);
        box-shadow: var(--shadow-sm);
        transition: transform var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
        position: relative;
    }

    .testimonials .testimonials__card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-md);
    }

    .testimonials .testimonials__quote {
        font-size: 4rem;
        color: var(--bg-primary);
        opacity: 0.3;
        line-height: 1;
    }

    .testimonials .testimonials__text {
        color: var(--fg-on-page);
        line-height: 1.8;
        margin: 0 0 1.5rem;
        font-style: italic;
    }

    .testimonials .testimonials__author {
        display: flex;
        gap: 1rem;
        align-items: center;
    }

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

    .testimonials .testimonials__avatar {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 600;
    }

    .testimonials h4 {
        margin: 0 0 0.25rem;
        color: var(--fg-on-page);
    }

    .testimonials .testimonials__role {
        font-size: 0.875rem;
        color: var(--neutral-600);
    }

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

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

    .about-us .about-us__content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: clamp(24px, 4vw, 48px);
        align-items: center;
    }

    .about-us .about-us__text h2 {
        font-size: clamp(28px, 5vw, 48px);
        margin: 0 0 1rem;
        color: var(--fg-on-alt);
    }

    .about-us .about-us__text p {
        font-size: clamp(16px, 2vw, 18px);
        line-height: 1.6;
        color: var(--neutral-600);
        margin: 0 0 1rem;
    }

    .about-us .about-us__image {
        border-radius: var(--radius-lg);
        overflow: hidden;
    }

    .about-us .about-us__image img {
        width: 100%;
        height: auto;
        display: block;
        object-fit: cover;
    }

    .about-us .about-us__image img {
        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: 768px) {
        .about-us .about-us__content {
            grid-template-columns: 1fr;
        }
    }

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

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

    .company .company__content {
        display: grid;
        grid-template-columns: auto 1fr;
        gap: clamp(32px, 5vw, 48px);
        align-items: center;
    }

    .company .company__image {
        width: clamp(150px, 22vw, 220px);
        height: clamp(150px, 22vw, 220px);
        border-radius: var(--radius-lg);
        overflow: hidden;
        flex-shrink: 0;
    }

    .company .company__image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .company .company__info h3 {
        font-size: clamp(26px, 4.5vw, 36px);
        margin: 0 0 0.75rem;
        color: var(--fg-on-surface-light);
    }

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

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

    @media (max-width: 768px) {
        .company .company__content {
            grid-template-columns: 1fr;
            text-align: center;
        }
    }

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

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

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

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

    .main-nav {
        display: flex;
    }

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

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

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

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

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

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

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

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

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

        .main-nav {
            position: fixed;
            top: 0;
            right: 0;
            height: 100vh;
            width: 70%;
            max-width: 300px;
            background-color: var(--surface-2);
            box-shadow: var(--shadow-lg);
            transform: translateX(100%);
            transition: transform var(--anim-duration) var(--anim-ease);
            padding-top: 5rem;
            z-index: 1000;
        }

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

        .nav-list {
            flex-direction: column;
            padding: var(--space-x);
            gap: 0;
        }

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

        .nav-link:hover,
        .nav-link:focus {
            background-color: var(--bg-primary-hover);
            color: var(--fg-on-primary);
        }
    }

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

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

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

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

    .footer-tagline {
        font-style: italic;
        color: #bdc3c7;
        line-height: 1.5;
    }

    .footer-heading {
        font-size: 1.2rem;
        margin-bottom: 1rem;
        color: #3498db;
        border-bottom: 1px solid #4a6572;
        padding-bottom: 0.5rem;
    }

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

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

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

    .footer-nav a:hover,
    .footer-social a:hover,
    .footer-legal-links a:hover,
    .footer-contact a:hover {
        color: #3498db;
        text-decoration: underline;
    }

    .footer-contact p {
        margin-bottom: 0.7rem;
        line-height: 1.5;
    }

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

    .footer-legal {
        font-size: 0.9rem;
        color: #95a5a6;
    }

    .footer-copyright {
        margin-bottom: 0.5rem;
    }

    .footer-disclaimer {
        font-size: 0.85rem;
        margin-bottom: 1rem;
        font-style: italic;
    }

    .footer-legal-links {
        margin-top: 0.5rem;
    }

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

        .footer-heading {
            border-bottom: none;
        }

        .footer-legal-links {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .footer-legal-links a {
            display: block;
        }

        .footer-legal-links a:first-child::after {
            content: "";
        }

        .footer-legal-links a::after {
            content: "|";
            margin: 0 0.5rem;
            color: #95a5a6;
        }

        .footer-legal-links a:last-child::after {
            content: "";
        }
    }

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

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

.cookies__inner h2 {
    margin: 0 0 6px;
    font-size: 1rem;
}
.cookies__inner p {
    margin: 0;
}
    .cookie-banner__buttons {
        margin-top: 1rem;
        display: flex;
        gap: 1rem;
        flex-shrink: 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .services-process .services-process__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .services-process .services-process__grid {
        display: grid;
        gap: var(--space-x);
    }

    .services-process .services-process__cell {
        background: rgba(255, 255, 255, .12);
        border: 1px solid rgba(255, 255, 255, .25);
        border-radius: var(--radius-lg);
        padding: clamp(12px, 2vw, 20px);
        text-align: center;
    }

    .services-process .services-process__bubble {
        margin: 0 auto .4rem;
        width: 44px;
        height: 44px;
        border-radius: 999px;
        display: flex;
        justify-content: center;
        align-items: center;
        background: var(--fg-on-page);
        color: var(--bg-page);
        font-weight: 800;
    }

    .services-process p {
        margin: .25rem 0 0;
        color: rgba(255, 255, 255, .9);
    }

    @media (max-width: 767px) {
        .services-process .services-process__grid {
            grid-template-columns: repeat(1, minmax(0, 1fr));
        }
    }

.index-cta {
        font-family: var(--font-family);
        color: var(--fg-on-page);
        background: linear-gradient(120deg, var(--bg-primary), var(--fg-on-accent), var(--ring));
        padding: clamp(28px, 5vw, 80px) clamp(16px, 3vw, 40px);
        background-size: 300% 300%;
        animation: gradientFlow 8s 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 .index-cta__stack {
        display: grid;
        gap: var(--space-x);
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .index-cta .index-cta__stack .stack {
        list-style: none;
        background: rgba(255, 255, 255, .14);
        border: 1px solid rgba(255, 255, 255, .25);
        backdrop-filter: blur(8px);
        border-radius: var(--radius-lg);
        padding: clamp(12px, 2vw, 22px);
        box-shadow: var(--shadow-sm);
    }

    .index-cta .index-cta__stack .stack h5 {
        color: var(--neutral-0);
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
        font-weight: 600;
    }

    .index-cta .index-cta__stack .stack p {
        color: var(--neutral-100);
        line-height: var(--line-height-base);
        margin-bottom: 1rem;
    }

    .index-cta .index-cta__btn {
        display: inline-block;
        margin-top: .6rem;
        background: var(--neutral-0);
        color: var(--bg-primary);
        padding: .7rem 1rem;
        border-radius: var(--radius-md);
        text-decoration: none;
        font-weight: 600;
        transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
        box-shadow: var(--shadow-sm);
    }

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

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

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

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

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

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

    .main-nav {
        display: flex;
    }

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

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

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

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

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

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

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

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

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

        .main-nav {
            position: fixed;
            top: 0;
            right: 0;
            height: 100vh;
            width: 70%;
            max-width: 300px;
            background-color: var(--surface-2);
            box-shadow: var(--shadow-lg);
            transform: translateX(100%);
            transition: transform var(--anim-duration) var(--anim-ease);
            padding-top: 5rem;
            z-index: 1000;
        }

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

        .nav-list {
            flex-direction: column;
            padding: var(--space-x);
            gap: 0;
        }

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

        .nav-link:hover,
        .nav-link:focus {
            background-color: var(--bg-primary-hover);
            color: var(--fg-on-primary);
        }
    }

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

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

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

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

    .footer-tagline {
        font-style: italic;
        color: #bdc3c7;
        line-height: 1.5;
    }

    .footer-heading {
        font-size: 1.2rem;
        margin-bottom: 1rem;
        color: #3498db;
        border-bottom: 1px solid #4a6572;
        padding-bottom: 0.5rem;
    }

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

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

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

    .footer-nav a:hover,
    .footer-social a:hover,
    .footer-legal-links a:hover,
    .footer-contact a:hover {
        color: #3498db;
        text-decoration: underline;
    }

    .footer-contact p {
        margin-bottom: 0.7rem;
        line-height: 1.5;
    }

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

    .footer-legal {
        font-size: 0.9rem;
        color: #95a5a6;
    }

    .footer-copyright {
        margin-bottom: 0.5rem;
    }

    .footer-disclaimer {
        font-size: 0.85rem;
        margin-bottom: 1rem;
        font-style: italic;
    }

    .footer-legal-links {
        margin-top: 0.5rem;
    }

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

        .footer-heading {
            border-bottom: none;
        }

        .footer-legal-links {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .footer-legal-links a {
            display: block;
        }

        .footer-legal-links a:first-child::after {
            content: "";
        }

        .footer-legal-links a::after {
            content: "|";
            margin: 0 0.5rem;
            color: #95a5a6;
        }

        .footer-legal-links a:last-child::after {
            content: "";
        }
    }

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

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

.cookies__inner h2 {
    margin: 0 0 6px;
    font-size: 1rem;
}
.cookies__inner p {
    margin: 0;
}
    .cookie-banner__buttons {
        margin-top: 1rem;
        display: flex;
        gap: 1rem;
        flex-shrink: 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

    }

    .contacts .contacts__banner {
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: rgba(255, 255, 255, .14);
        border: 1px solid rgba(255, 255, 255, .25);
        border-radius: var(--radius-xl);
        padding: clamp(12px, 2vw, 20px);
    }

    .contacts .contacts__btn {
        background: var(--fg-on-page);
        color: var(--bg-page);
        text-decoration: none;
        padding: .7rem 1rem;
        border-radius: var(--radius-md);
    }

    .contacts .contacts__txt {
        margin: .8rem 0 0;
        opacity: .9;
    }

    .contacts .contacts__btn {
        position: relative;
    }

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

    .contacts .contacts__btn:hover::after {
        transform: scaleX(1);
    }

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

.form__inner {
    max-width: 480px;
    margin: 0 auto;
    text-align: center;
}

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

.form__text {
    margin: 0 0 var(--space-y);
    color: var(--neutral-600);
}

.contact-form {
    text-align: left;
    margin-bottom: var(--space-y);
}

.form-group {
    margin-bottom: var(--gap);
}

.form-group label {
    display: block;
    margin-bottom: 4px;
    font-weight: 600;
    color: var(--neutral-800);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--input-border);
    border-radius: var(--radius-md);
    background-color: var(--input-bg);
    color: var(--input-fg);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    box-sizing: border-box;
    transition: border-color var(--anim-duration) var(--anim-ease);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--input-placeholder);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--brand);
    box-shadow: 0 0 0 3px var(--ring);
}

.btn-submit {
    width: 100%;
    padding: 14px 24px;
    background-color: var(--btn-primary-bg);
    color: var(--btn-primary-fg);
    border: none;
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color var(--anim-duration) var(--anim-ease);
}

.btn-submit:hover {
    background-color: var(--btn-primary-bg-hover);
}

.form-note {
    margin-top: var(--space-y);
    font-size: 0.9rem;
    color: var(--neutral-600);
    line-height: var(--line-height-base);
}

.form-note a {
    color: var(--link);
    text-decoration: none;
}

.form-note a:hover {
    color: var(--link-hover);
    text-decoration: underline;
}

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

    .index-faq h3 {
        margin: 0
    }

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

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

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

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

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

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

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

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

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

    .main-nav {
        display: flex;
    }

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

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

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

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

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

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

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

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

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

        .main-nav {
            position: fixed;
            top: 0;
            right: 0;
            height: 100vh;
            width: 70%;
            max-width: 300px;
            background-color: var(--surface-2);
            box-shadow: var(--shadow-lg);
            transform: translateX(100%);
            transition: transform var(--anim-duration) var(--anim-ease);
            padding-top: 5rem;
            z-index: 1000;
        }

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

        .nav-list {
            flex-direction: column;
            padding: var(--space-x);
            gap: 0;
        }

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

        .nav-link:hover,
        .nav-link:focus {
            background-color: var(--bg-primary-hover);
            color: var(--fg-on-primary);
        }
    }

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

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

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

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

    .footer-tagline {
        font-style: italic;
        color: #bdc3c7;
        line-height: 1.5;
    }

    .footer-heading {
        font-size: 1.2rem;
        margin-bottom: 1rem;
        color: #3498db;
        border-bottom: 1px solid #4a6572;
        padding-bottom: 0.5rem;
    }

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

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

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

    .footer-nav a:hover,
    .footer-social a:hover,
    .footer-legal-links a:hover,
    .footer-contact a:hover {
        color: #3498db;
        text-decoration: underline;
    }

    .footer-contact p {
        margin-bottom: 0.7rem;
        line-height: 1.5;
    }

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

    .footer-legal {
        font-size: 0.9rem;
        color: #95a5a6;
    }

    .footer-copyright {
        margin-bottom: 0.5rem;
    }

    .footer-disclaimer {
        font-size: 0.85rem;
        margin-bottom: 1rem;
        font-style: italic;
    }

    .footer-legal-links {
        margin-top: 0.5rem;
    }

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

        .footer-heading {
            border-bottom: none;
        }

        .footer-legal-links {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .footer-legal-links a {
            display: block;
        }

        .footer-legal-links a:first-child::after {
            content: "";
        }

        .footer-legal-links a::after {
            content: "|";
            margin: 0 0.5rem;
            color: #95a5a6;
        }

        .footer-legal-links a:last-child::after {
            content: "";
        }
    }

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

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

.cookies__inner h2 {
    margin: 0 0 6px;
    font-size: 1rem;
}
.cookies__inner p {
    margin: 0;
}
    .cookie-banner__buttons {
        margin-top: 1rem;
        display: flex;
        gap: 1rem;
        flex-shrink: 0;
    }

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

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

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

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

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

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

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

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

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

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

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

    .policy-items__wrapper {
        display: grid;
        gap: 1.25rem;
    }

    .policy-items__item {
        display: grid;
        grid-template-columns: auto 1fr;
        gap: 1.5rem;
        padding: 1.75rem;
        background: linear-gradient(135deg, var(--bg-accent) 0%, var(--bg-primary) 100%);
        color: var(--fg-on-primary);
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-lg);
        align-items: start;
    }

    .policy-items__icon {
        font-size: 2rem;
        flex-shrink: 0;
    }

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

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

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

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

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

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

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

    .main-nav {
        display: flex;
    }

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

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

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

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

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

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

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

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

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

        .main-nav {
            position: fixed;
            top: 0;
            right: 0;
            height: 100vh;
            width: 70%;
            max-width: 300px;
            background-color: var(--surface-2);
            box-shadow: var(--shadow-lg);
            transform: translateX(100%);
            transition: transform var(--anim-duration) var(--anim-ease);
            padding-top: 5rem;
            z-index: 1000;
        }

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

        .nav-list {
            flex-direction: column;
            padding: var(--space-x);
            gap: 0;
        }

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

        .nav-link:hover,
        .nav-link:focus {
            background-color: var(--bg-primary-hover);
            color: var(--fg-on-primary);
        }
    }

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

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

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

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

    .footer-tagline {
        font-style: italic;
        color: #bdc3c7;
        line-height: 1.5;
    }

    .footer-heading {
        font-size: 1.2rem;
        margin-bottom: 1rem;
        color: #3498db;
        border-bottom: 1px solid #4a6572;
        padding-bottom: 0.5rem;
    }

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

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

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

    .footer-nav a:hover,
    .footer-social a:hover,
    .footer-legal-links a:hover,
    .footer-contact a:hover {
        color: #3498db;
        text-decoration: underline;
    }

    .footer-contact p {
        margin-bottom: 0.7rem;
        line-height: 1.5;
    }

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

    .footer-legal {
        font-size: 0.9rem;
        color: #95a5a6;
    }

    .footer-copyright {
        margin-bottom: 0.5rem;
    }

    .footer-disclaimer {
        font-size: 0.85rem;
        margin-bottom: 1rem;
        font-style: italic;
    }

    .footer-legal-links {
        margin-top: 0.5rem;
    }

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

        .footer-heading {
            border-bottom: none;
        }

        .footer-legal-links {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .footer-legal-links a {
            display: block;
        }

        .footer-legal-links a:first-child::after {
            content: "";
        }

        .footer-legal-links a::after {
            content: "|";
            margin: 0 0.5rem;
            color: #95a5a6;
        }

        .footer-legal-links a:last-child::after {
            content: "";
        }
    }

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

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

.cookies__inner h2 {
    margin: 0 0 6px;
    font-size: 1rem;
}
.cookies__inner p {
    margin: 0;
}
    .cookie-banner__buttons {
        margin-top: 1rem;
        display: flex;
        gap: 1rem;
        flex-shrink: 0;
    }

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

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

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

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

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

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

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

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

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

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

.terms-items {
        font-family: var(--font-family);
        background: var(--bg-page);
        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: var(--fg-on-page);
        text-align: center;
    }

    .terms-items__wrapper {
        display: grid;
        gap: 1.25rem;
    }

    .terms-items__item {
        display: grid;
        grid-template-columns: auto 1fr;
        gap: 1.5rem;
        padding: 1.75rem;
        background: linear-gradient(135deg, var(--bg-accent) 0%, var(--bg-primary) 100%);
        color: var(--fg-on-primary);
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-lg);
        align-items: start;
    }

    .terms-items__icon {
        font-size: 2rem;
        flex-shrink: 0;
    }

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

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

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

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

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

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

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

    .main-nav {
        display: flex;
    }

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

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

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

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

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

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

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

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

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

        .main-nav {
            position: fixed;
            top: 0;
            right: 0;
            height: 100vh;
            width: 70%;
            max-width: 300px;
            background-color: var(--surface-2);
            box-shadow: var(--shadow-lg);
            transform: translateX(100%);
            transition: transform var(--anim-duration) var(--anim-ease);
            padding-top: 5rem;
            z-index: 1000;
        }

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

        .nav-list {
            flex-direction: column;
            padding: var(--space-x);
            gap: 0;
        }

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

        .nav-link:hover,
        .nav-link:focus {
            background-color: var(--bg-primary-hover);
            color: var(--fg-on-primary);
        }
    }

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

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

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

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

    .footer-tagline {
        font-style: italic;
        color: #bdc3c7;
        line-height: 1.5;
    }

    .footer-heading {
        font-size: 1.2rem;
        margin-bottom: 1rem;
        color: #3498db;
        border-bottom: 1px solid #4a6572;
        padding-bottom: 0.5rem;
    }

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

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

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

    .footer-nav a:hover,
    .footer-social a:hover,
    .footer-legal-links a:hover,
    .footer-contact a:hover {
        color: #3498db;
        text-decoration: underline;
    }

    .footer-contact p {
        margin-bottom: 0.7rem;
        line-height: 1.5;
    }

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

    .footer-legal {
        font-size: 0.9rem;
        color: #95a5a6;
    }

    .footer-copyright {
        margin-bottom: 0.5rem;
    }

    .footer-disclaimer {
        font-size: 0.85rem;
        margin-bottom: 1rem;
        font-style: italic;
    }

    .footer-legal-links {
        margin-top: 0.5rem;
    }

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

        .footer-heading {
            border-bottom: none;
        }

        .footer-legal-links {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .footer-legal-links a {
            display: block;
        }

        .footer-legal-links a:first-child::after {
            content: "";
        }

        .footer-legal-links a::after {
            content: "|";
            margin: 0 0.5rem;
            color: #95a5a6;
        }

        .footer-legal-links a:last-child::after {
            content: "";
        }
    }

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

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

.cookies__inner h2 {
    margin: 0 0 6px;
    font-size: 1rem;
}
.cookies__inner p {
    margin: 0;
}
    .cookie-banner__buttons {
        margin-top: 1rem;
        display: flex;
        gap: 1rem;
        flex-shrink: 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .main-nav {
        display: flex;
    }

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

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

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

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

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

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

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

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

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

        .main-nav {
            position: fixed;
            top: 0;
            right: 0;
            height: 100vh;
            width: 70%;
            max-width: 300px;
            background-color: var(--surface-2);
            box-shadow: var(--shadow-lg);
            transform: translateX(100%);
            transition: transform var(--anim-duration) var(--anim-ease);
            padding-top: 5rem;
            z-index: 1000;
        }

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

        .nav-list {
            flex-direction: column;
            padding: var(--space-x);
            gap: 0;
        }

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

        .nav-link:hover,
        .nav-link:focus {
            background-color: var(--bg-primary-hover);
            color: var(--fg-on-primary);
        }
    }

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

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

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

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

    .footer-tagline {
        font-style: italic;
        color: #bdc3c7;
        line-height: 1.5;
    }

    .footer-heading {
        font-size: 1.2rem;
        margin-bottom: 1rem;
        color: #3498db;
        border-bottom: 1px solid #4a6572;
        padding-bottom: 0.5rem;
    }

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

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

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

    .footer-nav a:hover,
    .footer-social a:hover,
    .footer-legal-links a:hover,
    .footer-contact a:hover {
        color: #3498db;
        text-decoration: underline;
    }

    .footer-contact p {
        margin-bottom: 0.7rem;
        line-height: 1.5;
    }

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

    .footer-legal {
        font-size: 0.9rem;
        color: #95a5a6;
    }

    .footer-copyright {
        margin-bottom: 0.5rem;
    }

    .footer-disclaimer {
        font-size: 0.85rem;
        margin-bottom: 1rem;
        font-style: italic;
    }

    .footer-legal-links {
        margin-top: 0.5rem;
    }

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

        .footer-heading {
            border-bottom: none;
        }

        .footer-legal-links {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .footer-legal-links a {
            display: block;
        }

        .footer-legal-links a:first-child::after {
            content: "";
        }

        .footer-legal-links a::after {
            content: "|";
            margin: 0 0.5rem;
            color: #95a5a6;
        }

        .footer-legal-links a:last-child::after {
            content: "";
        }
    }

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

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

.cookies__inner h2 {
    margin: 0 0 6px;
    font-size: 1rem;
}
.cookies__inner p {
    margin: 0;
}
    .cookie-banner__buttons {
        margin-top: 1rem;
        display: flex;
        gap: 1rem;
        flex-shrink: 0;
    }

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

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

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

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

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

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

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

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

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

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

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