:root {
  --font-family: "DM Sans", sans-serif;
  --font-size-base: 17px;
  --line-height-base: 1.7;

  --max-w: 1040px;
  --space-x: 1.31rem;
  --space-y: 1.5rem;
  --gap: 0.66rem;

  --radius-xl: 0.6rem;
  --radius-lg: 0.48rem;
  --radius-md: 0.4rem;
  --radius-sm: 0.24rem;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.05);
  --shadow-md: 0 2px 10px rgba(0,0,0,0.06);
  --shadow-lg: 0 12px 20px rgba(0,0,0,0.08);

  --overlay: rgba(0, 0, 0, 0.4);
  --anim-duration: 340ms;
  --anim-ease: cubic-bezier(0.16,1,0.3,1);
  --random-number: 2;

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

  --neutral-0: #FFFFFF;
  --neutral-100: #F5F7FA;
  --neutral-300: #D1D9E6;
  --neutral-600: #6B7B95;
  --neutral-800: #2C3E50;
  --neutral-900: #0F1A2A;

  --bg-page: #FFFFFF;
  --fg-on-page: #0F1A2A;

  --bg-alt: #F8FAFD;
  --fg-on-alt: #2C3E50;

  --surface-1: #FFFFFF;
  --surface-2: #F5F7FA;
  --fg-on-surface: #0F1A2A;
  --border-on-surface: #E1E8F0;

  --surface-light: #FFFFFF;
  --fg-on-surface-light: #2C3E50;
  --border-on-surface-light: #D1D9E6;

  --bg-primary: #0066CC;
  --fg-on-primary: #FFFFFF;
  --bg-primary-hover: #0055AA;
  --ring: #0066CC;

  --bg-accent: #E6F7FF;
  --fg-on-accent: #003366;
  --bg-accent-hover: #0090C7;

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

  --gradient-hero: linear-gradient(135deg, #E6F7FF 0%, #F0F9FF 50%, #FFFFFF 100%);
  --gradient-accent: linear-gradient(90deg, #00A3E0 0%, #0066CC 100%);

  --btn-ghost-bg: transparent;
  --btn-ghost-bg-hover: rgba(255,255,255,0.06);
  --chip-bg: rgba(255,255,255,0.68);
  --input-placeholder: rgba(255,255,255,0.55);
}
body{margin:0;padding:0;font-family:var(--font-family);box-sizing: border-box;}
*{box-sizing:border-box;}

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

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

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

.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

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

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
}
.nav-link:hover,
.nav-link:focus {
    color: var(--link-hover);
    background-color: var(--btn-ghost-bg-hover);
}
.nav-link[aria-current="page"] {
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
}

.cta-button {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 1.5);
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.cta-button:hover {
    background-color: var(--bg-accent-hover);
}

.burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
}
.burger-line {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

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

    .main-nav {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--surface-1);
        border-top: 1px solid var(--border-on-surface-light);
        box-shadow: var(--shadow-lg);
        padding: var(--space-y) var(--space-x);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
        z-index: 999;
    }

    .main-nav.is-open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .main-nav.is-open + .cta-button {
        display: none;
    }

    .nav-list {
        flex-direction: column;
        gap: var(--gap);
        align-items: center;
    }

    .nav-link {
        display: block;
        text-align: center;
        width: 100%;
        padding: var(--space-y) var(--space-x);
    }

    .cta-button {
        margin-left: auto;
    }

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: translateY(0.75rem) rotate(45deg);
    }
    .burger-menu[aria-expanded="true"] .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger-menu[aria-expanded="true"] .burger-line:nth-child(3) {
        transform: translateY(-0.75rem) rotate(-45deg);
    }
}

.footer-container {
    padding: 2rem 1rem;
    background-color: #f8f9fa;
    color: #333;
    font-family: sans-serif;
    border-top: 1px solid #dee2e6;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
  }
  .footer-zone {
    display: flex;
    flex-direction: column;
  }
  .brand-logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 0.5rem;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer-nav li {
    margin-bottom: 0.75rem;
  }
  .footer-nav a,
  .legal-links a,
  .contact-info a {
    color: #0066cc;
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-nav a:hover,
  .legal-links a:hover,
  .contact-info a:hover {
    color: #004080;
    text-decoration: underline;
  }
  .legal-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }
  .contact-info p {
    margin: 0.4rem 0;
    line-height: 1.5;
  }
  .footer-disclaimer {
    padding-top: 1.5rem;
    border-top: 1px solid #ccc;
    font-size: 0.85rem;
    color: #666;
    text-align: center;
    line-height: 1.5;
  }
  @media (max-width: 768px) {
    .footer-grid {
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }
    .footer-zone {
      align-items: center;
      text-align: center;
    }
  }

.nfcookie-v9 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
    }

    .nfcookie-v9__stack {
        max-width: 860px;
        margin: 0 auto;
        background: linear-gradient(145deg, var(--bg-primary), var(--neutral-900));
        color: var(--fg-on-primary);
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-lg);
    }

    .nfcookie-v9__stack strong {display: block; margin-bottom: 6px;}
    .nfcookie-v9__stack p {margin: 0; opacity: .9;}

    .nfcookie-v9__actions {margin-top: 12px; display: flex; flex-wrap: wrap; gap: 10px;}

    .nfcookie-v9__actions button {
        border: 1px solid rgba(255, 255, 255, .4);
        background: transparent;
        color: var(--fg-on-primary);
        border-radius: 999px;
        padding: 7px 12px;
        cursor: pointer;
    }

    .nfcookie-v9__actions button[data-choice='accept'] {
        background: var(--bg-accent);
        border-color: transparent;
        color: var(--fg-on-accent);
        font-weight: 700;
    }

.hero-arc-v1 {
        padding: calc(var(--space-y) * 3) var(--space-x);
        background: var(--gradient-hero);
        color: var(--brand-contrast);
    }

    .hero-arc-v1 .shell {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        grid-template-columns:1.1fr .9fr;
        gap: calc(var(--gap) * 2);
        align-items: center;
    }

    .hero-arc-v1 .copy h1 {
        margin: .4rem 0;
        font-size: clamp(2rem, 5vw, 3.8rem);
        line-height: 1.1;
        color: var(--fg-on-surface);
    }

    .hero-arc-v1 .subtitle {
        font-size: 1.05rem;
        opacity: .95;
        max-width: 48ch;
        color: var(--fg-on-surface);
    }

    .hero-arc-v1 .desc {
        opacity: .84;
        max-width: 54ch;
        color: var(--fg-on-surface);
    }

    .hero-arc-v1 .actions {
        display: flex;
        flex-wrap: wrap;
        gap: var(--gap);
        margin-top: calc(var(--space-y) * 1.1);
    }

    .hero-arc-v1 .actions a {
        padding: .7rem 1.1rem;
        border-radius: var(--radius-md);
        background: var(--surface-1);
        color: var(--fg-on-surface);
        text-decoration: none;
        font-weight: 700;
        box-shadow: var(--shadow-md);
        transition: transform var(--anim-duration) var(--anim-ease);
    }

    .hero-arc-v1 .actions a:hover {
        transform: translateY(-2px);
    }

    .hero-arc-v1 .media {
        order: 2;
        display: grid;
        gap: var(--gap);
    }

    .hero-arc-v1 img {
        width: 100%;
        aspect-ratio: 4/3;
        object-fit: cover;
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-lg);
    }

    .hero-arc-v1 .stats {
        display: grid;
        grid-template-columns:repeat(3, minmax(0, 1fr));
        gap: var(--gap);
    }

    .hero-arc-v1 .stats div {
        background: var(--chip-bg);
        border: 1px solid var(--btn-ghost-bg-hover);
        padding: .8rem;
        border-radius: var(--radius-md);
        backdrop-filter: blur(2px);
    }

    .hero-arc-v1 strong {
        display: block;
        font-size: 1.2rem;
        color: var(--fg-on-surface);
    }

    .hero-arc-v1 span {
        font-size: .88rem;
        opacity: .9;
        color: var(--fg-on-surface);
    }

    @media (max-width: 900px) {
        .hero-arc-v1 .shell {
            grid-template-columns:1fr;
        }

        .hero-arc-v1 .media {
            order: 2;
        }
    }

.next-strip-l2 {
        padding: clamp(3rem, 7vw, 5.6rem) var(--space-x);
        background: var(--surface-1);
        color: var(--fg-on-page);
    }

    .next-strip-l2__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        gap: 1rem;
        align-items: end;
        flex-wrap: wrap;
    }

    .next-strip-l2__wrap p {
        margin: 0;
        color: var(--neutral-600);
    }

    .next-strip-l2__wrap h2 {
        margin: .5rem 0 0;
        font-size: clamp(2rem, 4vw, 3rem);
    }

    .next-strip-l2__wrap a {
        display: inline-flex;
        min-height: 2.8rem;
        align-items: center;
        justify-content: center;
        padding: 0 1rem;
        border-radius: var(--radius-md);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        text-decoration: none;
    }

    .next-strip-l2__actions {
        max-width: var(--max-w);
        margin: 1rem auto 0;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
        gap: .75rem;
    }

    .next-strip-l2__actions a {
        display: block;
        padding: .95rem;
        border-radius: var(--radius-lg);
        background: var(--bg-alt);
        border: 1px solid var(--border-on-surface-light);
        text-decoration: none;
        color: var(--fg-on-page);
        box-shadow: var(--shadow-sm);
    }

    .next-strip-l2__actions span {
        display: block;
        margin-top: .35rem;
        color: var(--neutral-600);
    }

    .next-strip-l2 {
        overflow: hidden;
    }

    .next-strip-l2__wrap {
        background-image: linear-gradient(rgba(255, 255, 255, .86), rgba(255, 255, 255, .86)), url('https://images.pexels.com/photos/325229/pexels-photo-325229.jpeg?auto=compress&cs=tinysrgb&w=800');
        color: black;
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        border-radius: var(--radius-xl);
        overflow: hidden;
        padding: var(--gap);
        box-shadow: var(--shadow-sm)
    }

.faq-layout-c {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 36px);
        background: linear-gradient(180deg, var(--bg-accent), var(--surface-1));
        color: var(--fg-on-page);
    }

    .faq-layout-c .wrap {
        max-width: 900px;
        margin: 0 auto;
    }

    .faq-layout-c .section-head {
        margin-bottom: 16px;
    }

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

    .faq-layout-c .section-head p {
        margin: 10px 0 0;
        color: var(--neutral-700, var(--neutral-600));
    }

    .faq-layout-c .faq-list {
        margin: 0;
        padding: 0;
        list-style: none;
        display: grid;
        gap: 12px;
        counter-reset: faq;
    }

    .faq-layout-c .row {
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        overflow: hidden;
    }

    .faq-layout-c .q {
        width: 100%;
        border: 0;
        background: transparent;
        text-align: left;
        padding: 12px;
        font: inherit;
        cursor: pointer;
    }

    .faq-layout-c .q span {
        display: inline-block;
        min-width: 50px;
        color: var(--brand);
        font-weight: 700;
    }

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

    .faq-layout-c .a p {
        margin: 0;
        padding: 0 12px 12px;
        color: var(--neutral-600);
    }

    .faq-layout-c .row.open .a {
        max-height: 240px;
    }

.about-struct-v2 {
        padding: calc(var(--space-y) * 2) var(--space-x);
        background: var(--bg-alt);
        color: var(--fg-on-alt)
    }

    .about-struct-v2 .shell {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        gap: var(--gap)
    }

    .about-struct-v2 h2, .about-struct-v2 h3, .about-struct-v2 p {
        margin: 0
    }

    .about-struct-v2 .split, .about-struct-v2 .duo {
        display: grid;
        grid-template-columns:1fr 1fr;
        gap: var(--gap)
    }

    .about-struct-v2 .split img, .about-struct-v2 .gallery img {
        display: block;
        width: 100%;
        object-fit: cover;
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-md)
    }

    .about-struct-v2 .split img {
        aspect-ratio: 4/3
    }

    .about-struct-v2 .split div {
        display: grid;
        gap: .5rem
    }

    .about-struct-v2 .cards {
        display: grid;
        grid-template-columns:repeat(3, minmax(0, 1fr));
        gap: var(--gap)
    }

    .about-struct-v2 article, .about-struct-v2 .values div, .about-struct-v2 .facts div, .about-struct-v2 .quote, .about-struct-v2 .statement {
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        padding: .85rem
    }

    .about-struct-v2 .timeline {
        display: grid;
        gap: .65rem
    }

    .about-struct-v2 .timeline article {
        position: relative;
        padding-left: 1.25rem
    }

    .about-struct-v2 .timeline article::before {
        content: "";
        position: absolute;
        left: 0;
        top: .55rem;
        width: .5rem;
        height: .5rem;
        background: var(--bg-accent);
        border-radius: 50%
    }

    .about-struct-v2 .values, .about-struct-v2 .facts {
        display: grid;
        gap: .6rem
    }

    .about-struct-v2 .gallery {
        display: grid;
        grid-template-columns:repeat(3, minmax(0, 1fr));
        gap: var(--gap)
    }

    .about-struct-v2 .gallery img {
        aspect-ratio: 1/1
    }

    .about-struct-v2 .statement {
        display: grid;
        gap: .5rem
    }

    .about-struct-v2 .actions {
        display: flex;
        flex-wrap: wrap;
        gap: .45rem
    }

    .about-struct-v2 .actions a {
        display: inline-flex;
        min-height: 2.4rem;
        padding: 0 .85rem;
        border-radius: var(--radius-sm);
        align-items: center;
        text-decoration: none;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border: 1px solid var(--ring)
    }

    @media (max-width: 900px) {
        .about-struct-v2 .split, .about-struct-v2 .duo, .about-struct-v2 .cards, .about-struct-v2 .gallery {
            grid-template-columns:1fr 1fr
        }
    }

    @media (max-width: 680px) {
        .about-struct-v2 .split, .about-struct-v2 .duo, .about-struct-v2 .cards, .about-struct-v2 .gallery {
            grid-template-columns:1fr
        }
    }

.profile {

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

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

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

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

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

    .profile .profile__layout {
        display: grid;
        grid-template-columns: 280px 1fr;
        gap: clamp(32px, 5vw, 48px);
        align-items: start;
    }

    /* Se randomNumber è pari (2) - il primo figlio ottiene order: 2 */
    .profile .profile__layout > *:first-child {
        order: calc((var(--random-number) % 2) * 2);
    }

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

    .profile .profile__sidebar {
        position: sticky;
        top: 20px;
    }

    .profile .profile__avatar-card {
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(12px);
        border: 1px solid rgba(255, 255, 255, 0.25);
        border-radius: var(--radius-xl);
        padding: clamp(24px, 3.5vw, 32px);
        text-align: center;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    }

    .profile .profile__avatar {
        width: 120px;
        height: 120px;
        border-radius: 50%;
        background: var(--fg-on-primary);
        color: var(--bg-primary);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2.5rem;
        font-weight: 700;
        margin: 0 auto clamp(20px, 3vw, 24px);
        border: 4px solid rgba(255, 255, 255, 0.3);
    }

    .profile .profile__avatar-card h3 {
        margin: 0 0 0.5rem;
        font-size: clamp(20px, 2.8vw, 24px);
        color: var(--fg-on-primary);
        font-weight: 700;
    }

    .profile .profile__role {
        margin: 0 0 clamp(20px, 3vw, 24px);

        font-size: 0.9rem;
    }

    .profile .profile__change-photo {
        display: inline-block;
        padding: 0.75rem 1.5rem;
        border-radius: var(--radius-md);
        background: rgba(255, 255, 255, 0.2);
        color: var(--fg-on-primary);
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
        font-weight: 600;
        font-size: 0.875rem;
        border: 2px solid rgba(255, 255, 255, 0.3);
    }

    .profile .profile__change-photo input {
        display: none;
    }

    .profile .profile__change-photo:hover {
        background: rgba(255, 255, 255, 0.3);
        border-color: rgba(255, 255, 255, 0.5);
    }

    .profile .profile__main {
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(12px);
        border: 1px solid rgba(255, 255, 255, 0.25);
        border-radius: var(--radius-xl);
        padding: clamp(32px, 4vw, 48px);
    }

    .profile .profile__form {
        display: flex;
        flex-direction: column;
        gap: clamp(32px, 4vw, 40px);
    }

    /* Se randomNumber è pari (2) - il primo figlio ottiene order: 2 */
    .profile .profile__form > *:first-child {
        order: calc((var(--random-number) % 2) * 2);
    }

    .profile .profile__section {
        padding-bottom: clamp(24px, 4vw, 32px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    .profile .profile__section:last-of-type {
        border-bottom: none;
        padding-bottom: 0;
    }

    .profile .profile__section h3 {
        margin: 0 0 clamp(20px, 3vw, 24px);
        font-size: clamp(20px, 2.8vw, 24px);
        color: var(--fg-on-primary);
        font-weight: 700;
    }

    .profile .profile__form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: clamp(20px, 3vw, 28px);
    }

    /* Se randomNumber è pari (2) - il primo figlio ottiene order: 2 */
    .profile .profile__form-row > *:first-child {
        order: calc((var(--random-number) % 2) * 2);
    }

    @media (max-width: 767px) {
        .profile .profile__form-row {
            grid-template-columns: 1fr;
        }
    }

    .profile .profile__form-group {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

    .profile .profile__form-group label {
        font-weight: 600;
        color: var(--fg-on-primary);
        font-size: 0.875rem;
    }

    .profile .profile__form-group input,
    .profile .profile__form-group textarea {
        padding: 0.875rem 1.25rem;
        border-radius: var(--radius-md);
        border: 2px solid rgba(255, 255, 255, 0.3);
        background: rgba(255, 255, 255, 0.1);
        color: var(--fg-on-primary);

        font-size: 1rem;
        outline: none;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .profile .profile__form-group input::placeholder,
    .profile .profile__form-group textarea::placeholder {

    }

    .profile .profile__form-group input:focus,
    .profile .profile__form-group textarea:focus {
        border-color: rgba(255, 255, 255, 0.6);
        background: rgba(255, 255, 255, 0.2);
        box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
    }

    .profile .profile__checkboxes {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    /* Se randomNumber è pari (2) - il primo figlio ottiene order: 2 */
    .profile .profile__checkboxes > *:first-child {
        order: calc((var(--random-number) % 2) * 2);
    }

    .profile .profile__checkbox-label {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        cursor: pointer;
        font-weight: 500;
        color: var(--fg-on-primary);
    }

    .profile .profile__checkbox-label input {
        width: 20px;
        height: 20px;
        cursor: pointer;
    }

    .profile .profile__actions {
        display: flex;
        gap: 1rem;
        margin-top: clamp(24px, 4vw, 32px);
        padding-top: clamp(24px, 4vw, 32px);
        border-top: 1px solid rgba(255, 255, 255, 0.2);
    }

    /* Se randomNumber è pari (2) - il primo figlio ottiene order: 2 */
    .profile .profile__actions > *:first-child {
        order: calc((var(--random-number) % 2) * 2);
    }

    .profile .profile__save {
        padding: 1rem 2.5rem;
        border-radius: var(--radius-lg);
        border: none;
        background: var(--fg-on-primary);
        color: var(--bg-primary);
        font-weight: 700;
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    }

    .profile .profile__save:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    }

    .profile .profile__cancel {
        padding: 1rem 2.5rem;
        border-radius: var(--radius-lg);
        border: 2px solid rgba(255, 255, 255, 0.3);
        background: transparent;
        color: var(--fg-on-primary);
        font-weight: 600;
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .profile .profile__cancel:hover {
        border-color: rgba(255, 255, 255, 0.5);
        background: rgba(255, 255, 255, 0.1);
    }

    .profile .profile__save {
        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: 1023px) {
        .profile .profile__sidebar {
            position: static;
        }
    }

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

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

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

.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

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

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
}
.nav-link:hover,
.nav-link:focus {
    color: var(--link-hover);
    background-color: var(--btn-ghost-bg-hover);
}
.nav-link[aria-current="page"] {
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
}

.cta-button {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 1.5);
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.cta-button:hover {
    background-color: var(--bg-accent-hover);
}

.burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
}
.burger-line {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

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

    .main-nav {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--surface-1);
        border-top: 1px solid var(--border-on-surface-light);
        box-shadow: var(--shadow-lg);
        padding: var(--space-y) var(--space-x);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
        z-index: 999;
    }

    .main-nav.is-open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .main-nav.is-open + .cta-button {
        display: none;
    }

    .nav-list {
        flex-direction: column;
        gap: var(--gap);
        align-items: center;
    }

    .nav-link {
        display: block;
        text-align: center;
        width: 100%;
        padding: var(--space-y) var(--space-x);
    }

    .cta-button {
        margin-left: auto;
    }

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: translateY(0.75rem) rotate(45deg);
    }
    .burger-menu[aria-expanded="true"] .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger-menu[aria-expanded="true"] .burger-line:nth-child(3) {
        transform: translateY(-0.75rem) rotate(-45deg);
    }
}

.footer-container {
    padding: 2rem 1rem;
    background-color: #f8f9fa;
    color: #333;
    font-family: sans-serif;
    border-top: 1px solid #dee2e6;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
  }
  .footer-zone {
    display: flex;
    flex-direction: column;
  }
  .brand-logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 0.5rem;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer-nav li {
    margin-bottom: 0.75rem;
  }
  .footer-nav a,
  .legal-links a,
  .contact-info a {
    color: #0066cc;
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-nav a:hover,
  .legal-links a:hover,
  .contact-info a:hover {
    color: #004080;
    text-decoration: underline;
  }
  .legal-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }
  .contact-info p {
    margin: 0.4rem 0;
    line-height: 1.5;
  }
  .footer-disclaimer {
    padding-top: 1.5rem;
    border-top: 1px solid #ccc;
    font-size: 0.85rem;
    color: #666;
    text-align: center;
    line-height: 1.5;
  }
  @media (max-width: 768px) {
    .footer-grid {
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }
    .footer-zone {
      align-items: center;
      text-align: center;
    }
  }

.nfcookie-v9 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
    }

    .nfcookie-v9__stack {
        max-width: 860px;
        margin: 0 auto;
        background: linear-gradient(145deg, var(--bg-primary), var(--neutral-900));
        color: var(--fg-on-primary);
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-lg);
    }

    .nfcookie-v9__stack strong {display: block; margin-bottom: 6px;}
    .nfcookie-v9__stack p {margin: 0; opacity: .9;}

    .nfcookie-v9__actions {margin-top: 12px; display: flex; flex-wrap: wrap; gap: 10px;}

    .nfcookie-v9__actions button {
        border: 1px solid rgba(255, 255, 255, .4);
        background: transparent;
        color: var(--fg-on-primary);
        border-radius: 999px;
        padding: 7px 12px;
        cursor: pointer;
    }

    .nfcookie-v9__actions button[data-choice='accept'] {
        background: var(--bg-accent);
        border-color: transparent;
        color: var(--fg-on-accent);
        font-weight: 700;
    }

.profile {

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

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

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

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

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

    .profile .profile__layout {
        display: grid;
        grid-template-columns: 280px 1fr;
        gap: clamp(32px, 5vw, 48px);
        align-items: start;
    }

    /* Se randomNumber è pari (2) - il primo figlio ottiene order: 2 */
    .profile .profile__layout > *:first-child {
        order: calc((var(--random-number) % 2) * 2);
    }

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

    .profile .profile__sidebar {
        position: sticky;
        top: 20px;
    }

    .profile .profile__avatar-card {
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(12px);
        border: 1px solid rgba(255, 255, 255, 0.25);
        border-radius: var(--radius-xl);
        padding: clamp(24px, 3.5vw, 32px);
        text-align: center;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    }

    .profile .profile__avatar {
        width: 120px;
        height: 120px;
        border-radius: 50%;
        background: var(--fg-on-primary);
        color: var(--bg-primary);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2.5rem;
        font-weight: 700;
        margin: 0 auto clamp(20px, 3vw, 24px);
        border: 4px solid rgba(255, 255, 255, 0.3);
    }

    .profile .profile__avatar-card h3 {
        margin: 0 0 0.5rem;
        font-size: clamp(20px, 2.8vw, 24px);
        color: var(--fg-on-primary);
        font-weight: 700;
    }

    .profile .profile__role {
        margin: 0 0 clamp(20px, 3vw, 24px);

        font-size: 0.9rem;
    }

    .profile .profile__change-photo {
        display: inline-block;
        padding: 0.75rem 1.5rem;
        border-radius: var(--radius-md);
        background: rgba(255, 255, 255, 0.2);
        color: var(--fg-on-primary);
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
        font-weight: 600;
        font-size: 0.875rem;
        border: 2px solid rgba(255, 255, 255, 0.3);
    }

    .profile .profile__change-photo input {
        display: none;
    }

    .profile .profile__change-photo:hover {
        background: rgba(255, 255, 255, 0.3);
        border-color: rgba(255, 255, 255, 0.5);
    }

    .profile .profile__main {
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(12px);
        border: 1px solid rgba(255, 255, 255, 0.25);
        border-radius: var(--radius-xl);
        padding: clamp(32px, 4vw, 48px);
    }

    .profile .profile__form {
        display: flex;
        flex-direction: column;
        gap: clamp(32px, 4vw, 40px);
    }

    /* Se randomNumber è pari (2) - il primo figlio ottiene order: 2 */
    .profile .profile__form > *:first-child {
        order: calc((var(--random-number) % 2) * 2);
    }

    .profile .profile__section {
        padding-bottom: clamp(24px, 4vw, 32px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    .profile .profile__section:last-of-type {
        border-bottom: none;
        padding-bottom: 0;
    }

    .profile .profile__section h3 {
        margin: 0 0 clamp(20px, 3vw, 24px);
        font-size: clamp(20px, 2.8vw, 24px);
        color: var(--fg-on-primary);
        font-weight: 700;
    }

    .profile .profile__form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: clamp(20px, 3vw, 28px);
    }

    /* Se randomNumber è pari (2) - il primo figlio ottiene order: 2 */
    .profile .profile__form-row > *:first-child {
        order: calc((var(--random-number) % 2) * 2);
    }

    @media (max-width: 767px) {
        .profile .profile__form-row {
            grid-template-columns: 1fr;
        }
    }

    .profile .profile__form-group {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

    .profile .profile__form-group label {
        font-weight: 600;
        color: var(--fg-on-primary);
        font-size: 0.875rem;
    }

    .profile .profile__form-group input,
    .profile .profile__form-group textarea {
        padding: 0.875rem 1.25rem;
        border-radius: var(--radius-md);
        border: 2px solid rgba(255, 255, 255, 0.3);
        background: rgba(255, 255, 255, 0.1);
        color: var(--fg-on-primary);

        font-size: 1rem;
        outline: none;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .profile .profile__form-group input::placeholder,
    .profile .profile__form-group textarea::placeholder {

    }

    .profile .profile__form-group input:focus,
    .profile .profile__form-group textarea:focus {
        border-color: rgba(255, 255, 255, 0.6);
        background: rgba(255, 255, 255, 0.2);
        box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
    }

    .profile .profile__checkboxes {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    /* Se randomNumber è pari (2) - il primo figlio ottiene order: 2 */
    .profile .profile__checkboxes > *:first-child {
        order: calc((var(--random-number) % 2) * 2);
    }

    .profile .profile__checkbox-label {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        cursor: pointer;
        font-weight: 500;
        color: var(--fg-on-primary);
    }

    .profile .profile__checkbox-label input {
        width: 20px;
        height: 20px;
        cursor: pointer;
    }

    .profile .profile__actions {
        display: flex;
        gap: 1rem;
        margin-top: clamp(24px, 4vw, 32px);
        padding-top: clamp(24px, 4vw, 32px);
        border-top: 1px solid rgba(255, 255, 255, 0.2);
    }

    /* Se randomNumber è pari (2) - il primo figlio ottiene order: 2 */
    .profile .profile__actions > *:first-child {
        order: calc((var(--random-number) % 2) * 2);
    }

    .profile .profile__save {
        padding: 1rem 2.5rem;
        border-radius: var(--radius-lg);
        border: none;
        background: var(--fg-on-primary);
        color: var(--bg-primary);
        font-weight: 700;
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    }

    .profile .profile__save:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    }

    .profile .profile__cancel {
        padding: 1rem 2.5rem;
        border-radius: var(--radius-lg);
        border: 2px solid rgba(255, 255, 255, 0.3);
        background: transparent;
        color: var(--fg-on-primary);
        font-weight: 600;
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .profile .profile__cancel:hover {
        border-color: rgba(255, 255, 255, 0.5);
        background: rgba(255, 255, 255, 0.1);
    }

    .profile .profile__save {
        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: 1023px) {
        .profile .profile__sidebar {
            position: static;
        }
    }

.support-cv2 {
        padding: clamp(56px, 7vw, 96px) clamp(16px, 4vw, 36px);
        background: linear-gradient(140deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
    }

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

    .support-cv2__box {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: var(--gap);
        border-radius: var(--radius-xl);
        border: 1px solid rgba(255, 255, 255, 0.28);
        background: rgba(255, 255, 255, 0.12);
        padding: 16px;
    }

    .support-cv2__box h2 {
        margin: 0;
        font-size: clamp(26px, 4vw, 40px);
    }

    .support-cv2__box p {
        margin: 8px 0 0;
        opacity: .92;
    }

    .support-cv2__box a {
        text-decoration: none;
        white-space: nowrap;
        padding: 10px 16px;
        border-radius: 999px;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .support-cv2__box {
            flex-direction: column;
            align-items: flex-start;
        }
    }

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

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

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

.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

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

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
}
.nav-link:hover,
.nav-link:focus {
    color: var(--link-hover);
    background-color: var(--btn-ghost-bg-hover);
}
.nav-link[aria-current="page"] {
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
}

.cta-button {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 1.5);
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.cta-button:hover {
    background-color: var(--bg-accent-hover);
}

.burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
}
.burger-line {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

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

    .main-nav {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--surface-1);
        border-top: 1px solid var(--border-on-surface-light);
        box-shadow: var(--shadow-lg);
        padding: var(--space-y) var(--space-x);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
        z-index: 999;
    }

    .main-nav.is-open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .main-nav.is-open + .cta-button {
        display: none;
    }

    .nav-list {
        flex-direction: column;
        gap: var(--gap);
        align-items: center;
    }

    .nav-link {
        display: block;
        text-align: center;
        width: 100%;
        padding: var(--space-y) var(--space-x);
    }

    .cta-button {
        margin-left: auto;
    }

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: translateY(0.75rem) rotate(45deg);
    }
    .burger-menu[aria-expanded="true"] .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger-menu[aria-expanded="true"] .burger-line:nth-child(3) {
        transform: translateY(-0.75rem) rotate(-45deg);
    }
}

.footer-container {
    padding: 2rem 1rem;
    background-color: #f8f9fa;
    color: #333;
    font-family: sans-serif;
    border-top: 1px solid #dee2e6;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
  }
  .footer-zone {
    display: flex;
    flex-direction: column;
  }
  .brand-logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 0.5rem;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer-nav li {
    margin-bottom: 0.75rem;
  }
  .footer-nav a,
  .legal-links a,
  .contact-info a {
    color: #0066cc;
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-nav a:hover,
  .legal-links a:hover,
  .contact-info a:hover {
    color: #004080;
    text-decoration: underline;
  }
  .legal-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }
  .contact-info p {
    margin: 0.4rem 0;
    line-height: 1.5;
  }
  .footer-disclaimer {
    padding-top: 1.5rem;
    border-top: 1px solid #ccc;
    font-size: 0.85rem;
    color: #666;
    text-align: center;
    line-height: 1.5;
  }
  @media (max-width: 768px) {
    .footer-grid {
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }
    .footer-zone {
      align-items: center;
      text-align: center;
    }
  }

.nfcookie-v9 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
    }

    .nfcookie-v9__stack {
        max-width: 860px;
        margin: 0 auto;
        background: linear-gradient(145deg, var(--bg-primary), var(--neutral-900));
        color: var(--fg-on-primary);
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-lg);
    }

    .nfcookie-v9__stack strong {display: block; margin-bottom: 6px;}
    .nfcookie-v9__stack p {margin: 0; opacity: .9;}

    .nfcookie-v9__actions {margin-top: 12px; display: flex; flex-wrap: wrap; gap: 10px;}

    .nfcookie-v9__actions button {
        border: 1px solid rgba(255, 255, 255, .4);
        background: transparent;
        color: var(--fg-on-primary);
        border-radius: 999px;
        padding: 7px 12px;
        cursor: pointer;
    }

    .nfcookie-v9__actions button[data-choice='accept'] {
        background: var(--bg-accent);
        border-color: transparent;
        color: var(--fg-on-accent);
        font-weight: 700;
    }

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

.settings__inner {
    max-width: 640px;
    margin: 0 auto;
}

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

.settings__inner p {
    margin: 0;
    color: var(--neutral-600);
    font-size: 0.95rem;
}

.security {

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

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

    .security .security__h {
        margin-bottom: var(--space-y);
    }

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

    .security .security__sections {
        display: flex;
        flex-direction: column;
        gap: var(--space-y);
    }

    .security .security__section {
        background: var(--surface-light);
        padding: clamp(24px, 3vw, 32px);
        border-radius: var(--radius-lg);
        border: 1px solid var(--ring);
        box-shadow: var(--shadow-sm);
    }

    .security h2 {
        font-size: clamp(20px, 3vw, 24px);
        margin: 0 0 1.5rem;
        color: var(--fg-on-primary);
    }

    .security .security__form {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .security .security__form input {
        padding: 0.875rem;
        border-radius: var(--radius-md);
        border: 1px solid var(--ring);

        outline: none;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .security .security__form input:focus {
        border-color: var(--bg-primary);
        box-shadow: 0 0 0 3px var(--ring);
    }

    .security .security__form button {
        padding: 0.875rem 2rem;
        border-radius: var(--radius-lg);
        border: none;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        font-weight: 600;
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
        align-self: flex-start;
    }

    .security .security__form button:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-lg);
    }

    .security .security__sessions {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .security .security__session {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1rem;
        background: var(--gradient-hero);
        border-radius: var(--radius-md);
        border: 1px solid var(--ring);
    }

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

    .security .security__session p {
        margin: 0;
        color: var(--neutral-600);
        font-size: 0.875rem;
    }

    .security .security__logout {
        padding: 0.5rem 1rem;
        border-radius: var(--radius-md);
        border: 1px solid var(--ring);
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .security .security__logout:hover {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border-color: var(--bg-primary);
    }

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

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

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

.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

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

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
}
.nav-link:hover,
.nav-link:focus {
    color: var(--link-hover);
    background-color: var(--btn-ghost-bg-hover);
}
.nav-link[aria-current="page"] {
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
}

.cta-button {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 1.5);
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.cta-button:hover {
    background-color: var(--bg-accent-hover);
}

.burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
}
.burger-line {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

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

    .main-nav {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--surface-1);
        border-top: 1px solid var(--border-on-surface-light);
        box-shadow: var(--shadow-lg);
        padding: var(--space-y) var(--space-x);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
        z-index: 999;
    }

    .main-nav.is-open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .main-nav.is-open + .cta-button {
        display: none;
    }

    .nav-list {
        flex-direction: column;
        gap: var(--gap);
        align-items: center;
    }

    .nav-link {
        display: block;
        text-align: center;
        width: 100%;
        padding: var(--space-y) var(--space-x);
    }

    .cta-button {
        margin-left: auto;
    }

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: translateY(0.75rem) rotate(45deg);
    }
    .burger-menu[aria-expanded="true"] .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger-menu[aria-expanded="true"] .burger-line:nth-child(3) {
        transform: translateY(-0.75rem) rotate(-45deg);
    }
}

.footer-container {
    padding: 2rem 1rem;
    background-color: #f8f9fa;
    color: #333;
    font-family: sans-serif;
    border-top: 1px solid #dee2e6;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
  }
  .footer-zone {
    display: flex;
    flex-direction: column;
  }
  .brand-logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 0.5rem;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer-nav li {
    margin-bottom: 0.75rem;
  }
  .footer-nav a,
  .legal-links a,
  .contact-info a {
    color: #0066cc;
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-nav a:hover,
  .legal-links a:hover,
  .contact-info a:hover {
    color: #004080;
    text-decoration: underline;
  }
  .legal-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }
  .contact-info p {
    margin: 0.4rem 0;
    line-height: 1.5;
  }
  .footer-disclaimer {
    padding-top: 1.5rem;
    border-top: 1px solid #ccc;
    font-size: 0.85rem;
    color: #666;
    text-align: center;
    line-height: 1.5;
  }
  @media (max-width: 768px) {
    .footer-grid {
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }
    .footer-zone {
      align-items: center;
      text-align: center;
    }
  }

.nfcookie-v9 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
    }

    .nfcookie-v9__stack {
        max-width: 860px;
        margin: 0 auto;
        background: linear-gradient(145deg, var(--bg-primary), var(--neutral-900));
        color: var(--fg-on-primary);
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-lg);
    }

    .nfcookie-v9__stack strong {display: block; margin-bottom: 6px;}
    .nfcookie-v9__stack p {margin: 0; opacity: .9;}

    .nfcookie-v9__actions {margin-top: 12px; display: flex; flex-wrap: wrap; gap: 10px;}

    .nfcookie-v9__actions button {
        border: 1px solid rgba(255, 255, 255, .4);
        background: transparent;
        color: var(--fg-on-primary);
        border-radius: 999px;
        padding: 7px 12px;
        cursor: pointer;
    }

    .nfcookie-v9__actions button[data-choice='accept'] {
        background: var(--bg-accent);
        border-color: transparent;
        color: var(--fg-on-accent);
        font-weight: 700;
    }

.statistics {
    padding: clamp(48px, 8vw, 80px) 0;
    background: var(--bg-primary);
    color: var(--fg-on-primary);
}

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

.statistics__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--gap);
    text-align: center;
}

.statistics__card {
    padding: clamp(16px, 3vw, 32px);
}

.statistics__number {
    font-size: clamp(32px, 6vw, 48px);
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
}

.statistics__label {
    font-size: 1.1rem;
    font-weight: 400;
}

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

.timeline__inner {
    max-width: 640px;
    margin: 0 auto;
}

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

.timeline__list--light {
    margin: 0;
    padding: 0;
    list-style: none;
    border-radius: var(--radius-xl);
    background: var(--surface-light);
    border: 1px solid var(--border-on-surface-light);
    overflow: hidden;
}

.timeline__row {
    display: grid;
    grid-template-columns: auto minmax(0,1fr);
    gap: 10px;
    padding: 8px 12px;
    border-top: 1px solid var(--border-on-surface-light);
}

.timeline__row:first-child {
    border-top: none;
}

.timeline__row-time {
    font-size: 0.8rem;
    color: var(--neutral-600);
}

.timeline__row-label {
    font-size: 0.9rem;
    color: var(--neutral-800);
}

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

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

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

.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

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

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
}
.nav-link:hover,
.nav-link:focus {
    color: var(--link-hover);
    background-color: var(--btn-ghost-bg-hover);
}
.nav-link[aria-current="page"] {
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
}

.cta-button {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 1.5);
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.cta-button:hover {
    background-color: var(--bg-accent-hover);
}

.burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
}
.burger-line {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

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

    .main-nav {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--surface-1);
        border-top: 1px solid var(--border-on-surface-light);
        box-shadow: var(--shadow-lg);
        padding: var(--space-y) var(--space-x);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
        z-index: 999;
    }

    .main-nav.is-open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .main-nav.is-open + .cta-button {
        display: none;
    }

    .nav-list {
        flex-direction: column;
        gap: var(--gap);
        align-items: center;
    }

    .nav-link {
        display: block;
        text-align: center;
        width: 100%;
        padding: var(--space-y) var(--space-x);
    }

    .cta-button {
        margin-left: auto;
    }

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: translateY(0.75rem) rotate(45deg);
    }
    .burger-menu[aria-expanded="true"] .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger-menu[aria-expanded="true"] .burger-line:nth-child(3) {
        transform: translateY(-0.75rem) rotate(-45deg);
    }
}

.footer-container {
    padding: 2rem 1rem;
    background-color: #f8f9fa;
    color: #333;
    font-family: sans-serif;
    border-top: 1px solid #dee2e6;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
  }
  .footer-zone {
    display: flex;
    flex-direction: column;
  }
  .brand-logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 0.5rem;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer-nav li {
    margin-bottom: 0.75rem;
  }
  .footer-nav a,
  .legal-links a,
  .contact-info a {
    color: #0066cc;
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-nav a:hover,
  .legal-links a:hover,
  .contact-info a:hover {
    color: #004080;
    text-decoration: underline;
  }
  .legal-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }
  .contact-info p {
    margin: 0.4rem 0;
    line-height: 1.5;
  }
  .footer-disclaimer {
    padding-top: 1.5rem;
    border-top: 1px solid #ccc;
    font-size: 0.85rem;
    color: #666;
    text-align: center;
    line-height: 1.5;
  }
  @media (max-width: 768px) {
    .footer-grid {
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }
    .footer-zone {
      align-items: center;
      text-align: center;
    }
  }

.nfcookie-v9 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
    }

    .nfcookie-v9__stack {
        max-width: 860px;
        margin: 0 auto;
        background: linear-gradient(145deg, var(--bg-primary), var(--neutral-900));
        color: var(--fg-on-primary);
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-lg);
    }

    .nfcookie-v9__stack strong {display: block; margin-bottom: 6px;}
    .nfcookie-v9__stack p {margin: 0; opacity: .9;}

    .nfcookie-v9__actions {margin-top: 12px; display: flex; flex-wrap: wrap; gap: 10px;}

    .nfcookie-v9__actions button {
        border: 1px solid rgba(255, 255, 255, .4);
        background: transparent;
        color: var(--fg-on-primary);
        border-radius: 999px;
        padding: 7px 12px;
        cursor: pointer;
    }

    .nfcookie-v9__actions button[data-choice='accept'] {
        background: var(--bg-accent);
        border-color: transparent;
        color: var(--fg-on-accent);
        font-weight: 700;
    }

.security {

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

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

    .security .security__h {
        margin-bottom: var(--space-y);
    }

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

    .security .security__sections {
        display: flex;
        flex-direction: column;
        gap: var(--space-y);
    }

    .security .security__section {
        background: var(--surface-light);
        padding: clamp(24px, 3vw, 32px);
        border-radius: var(--radius-lg);
        border: 1px solid var(--ring);
        box-shadow: var(--shadow-sm);
    }

    .security h2 {
        font-size: clamp(20px, 3vw, 24px);
        margin: 0 0 1.5rem;
        color: var(--fg-on-primary);
    }

    .security .security__form {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .security .security__form input {
        padding: 0.875rem;
        border-radius: var(--radius-md);
        border: 1px solid var(--ring);

        outline: none;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .security .security__form input:focus {
        border-color: var(--bg-primary);
        box-shadow: 0 0 0 3px var(--ring);
    }

    .security .security__form button {
        padding: 0.875rem 2rem;
        border-radius: var(--radius-lg);
        border: none;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        font-weight: 600;
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
        align-self: flex-start;
    }

    .security .security__form button:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-lg);
    }

    .security .security__sessions {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .security .security__session {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1rem;
        background: var(--gradient-hero);
        border-radius: var(--radius-md);
        border: 1px solid var(--ring);
    }

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

    .security .security__session p {
        margin: 0;
        color: var(--neutral-600);
        font-size: 0.875rem;
    }

    .security .security__logout {
        padding: 0.5rem 1rem;
        border-radius: var(--radius-md);
        border: 1px solid var(--ring);
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .security .security__logout:hover {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border-color: var(--bg-primary);
    }

.support-cv2 {
        padding: clamp(56px, 7vw, 96px) clamp(16px, 4vw, 36px);
        background: linear-gradient(140deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
    }

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

    .support-cv2__box {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: var(--gap);
        border-radius: var(--radius-xl);
        border: 1px solid rgba(255, 255, 255, 0.28);
        background: rgba(255, 255, 255, 0.12);
        padding: 16px;
    }

    .support-cv2__box h2 {
        margin: 0;
        font-size: clamp(26px, 4vw, 40px);
    }

    .support-cv2__box p {
        margin: 8px 0 0;
        opacity: .92;
    }

    .support-cv2__box a {
        text-decoration: none;
        white-space: nowrap;
        padding: 10px 16px;
        border-radius: 999px;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .support-cv2__box {
            flex-direction: column;
            align-items: flex-start;
        }
    }

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

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

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

.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

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

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
}
.nav-link:hover,
.nav-link:focus {
    color: var(--link-hover);
    background-color: var(--btn-ghost-bg-hover);
}
.nav-link[aria-current="page"] {
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
}

.cta-button {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 1.5);
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.cta-button:hover {
    background-color: var(--bg-accent-hover);
}

.burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
}
.burger-line {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

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

    .main-nav {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--surface-1);
        border-top: 1px solid var(--border-on-surface-light);
        box-shadow: var(--shadow-lg);
        padding: var(--space-y) var(--space-x);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
        z-index: 999;
    }

    .main-nav.is-open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .main-nav.is-open + .cta-button {
        display: none;
    }

    .nav-list {
        flex-direction: column;
        gap: var(--gap);
        align-items: center;
    }

    .nav-link {
        display: block;
        text-align: center;
        width: 100%;
        padding: var(--space-y) var(--space-x);
    }

    .cta-button {
        margin-left: auto;
    }

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: translateY(0.75rem) rotate(45deg);
    }
    .burger-menu[aria-expanded="true"] .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger-menu[aria-expanded="true"] .burger-line:nth-child(3) {
        transform: translateY(-0.75rem) rotate(-45deg);
    }
}

.footer-container {
    padding: 2rem 1rem;
    background-color: #f8f9fa;
    color: #333;
    font-family: sans-serif;
    border-top: 1px solid #dee2e6;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
  }
  .footer-zone {
    display: flex;
    flex-direction: column;
  }
  .brand-logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 0.5rem;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer-nav li {
    margin-bottom: 0.75rem;
  }
  .footer-nav a,
  .legal-links a,
  .contact-info a {
    color: #0066cc;
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-nav a:hover,
  .legal-links a:hover,
  .contact-info a:hover {
    color: #004080;
    text-decoration: underline;
  }
  .legal-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }
  .contact-info p {
    margin: 0.4rem 0;
    line-height: 1.5;
  }
  .footer-disclaimer {
    padding-top: 1.5rem;
    border-top: 1px solid #ccc;
    font-size: 0.85rem;
    color: #666;
    text-align: center;
    line-height: 1.5;
  }
  @media (max-width: 768px) {
    .footer-grid {
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }
    .footer-zone {
      align-items: center;
      text-align: center;
    }
  }

.nfcookie-v9 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
    }

    .nfcookie-v9__stack {
        max-width: 860px;
        margin: 0 auto;
        background: linear-gradient(145deg, var(--bg-primary), var(--neutral-900));
        color: var(--fg-on-primary);
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-lg);
    }

    .nfcookie-v9__stack strong {display: block; margin-bottom: 6px;}
    .nfcookie-v9__stack p {margin: 0; opacity: .9;}

    .nfcookie-v9__actions {margin-top: 12px; display: flex; flex-wrap: wrap; gap: 10px;}

    .nfcookie-v9__actions button {
        border: 1px solid rgba(255, 255, 255, .4);
        background: transparent;
        color: var(--fg-on-primary);
        border-radius: 999px;
        padding: 7px 12px;
        cursor: pointer;
    }

    .nfcookie-v9__actions button[data-choice='accept'] {
        background: var(--bg-accent);
        border-color: transparent;
        color: var(--fg-on-accent);
        font-weight: 700;
    }

.form-layout-b {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 36px);
        background: var(--bg-alt);
        color: var(--fg-on-page);
    }

    .form-layout-b .wrap {
        max-width: 980px;
        margin: 0 auto;
    }

    .form-layout-b .section-head {
        margin-bottom: 16px;
    }

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

    .form-layout-b .section-head p {
        margin: 10px 0 0;
        color: var(--neutral-600);
    }

    .form-layout-b .split {
        display: grid;
        grid-template-columns: 280px 1fr;
        gap: 16px;
    }

    .form-layout-b aside {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border-radius: var(--radius-lg);
        padding: 16px;
    }

    .form-layout-b aside h3 {
        margin: 0;
    }

    .form-layout-b aside p {
        margin: 10px 0 0;
        opacity: .92;
    }

    .form-layout-b form {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        padding: 16px;
        background: var(--surface-1);
    }

    .form-layout-b label {
        display: grid;
        gap: 6px;
        margin-bottom: 10px;
    }

    .form-layout-b input, .form-layout-b textarea {
        width: 100%;
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-sm);
        padding: 9px;
        font: inherit;
    }

    .form-layout-b button {
        border: 0;
        border-radius: var(--radius-sm);
        background: var(--gradient-accent);
        color: var(--accent-contrast);
        padding: 10px 14px;
    }

    @media (max-width: 760px) {
        .form-layout-b .split {
            grid-template-columns: 1fr;
        }
    }

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

    .nfcontacts-v7__wrap {
        max-width: 920px;
        margin: 0 auto;
    }

    .nfcontacts-v7__head {
        margin-bottom: 16px;
        text-align: center;
    }

    .nfcontacts-v7 h2 {
        margin: 0;
        font-size: clamp(28px, 4vw, 42px);
        color: var(--neutral-900);
    }

    .nfcontacts-v7__head p {
        margin: 10px auto 0;
        max-width: 70ch;
        opacity: .92;
        color: var(--neutral-800);
    }

    .nfcontacts-v7__panel {
        border: 1px solid rgba(255, 255, 255, .26);
        border-radius: var(--radius-lg);
        background: rgba(255, 255, 255, .1);
        padding: 16px;
        backdrop-filter: blur(10px);
    }

    .nfcontacts-v7__panel h3 {
        margin: 0 0 12px;
        color: var(--neutral-900);
    }

    .nfcontacts-v7__list p {
        margin: 0 0 10px;
        display: grid;
        gap: 3px;
    }

    .nfcontacts-v7__list p strong {
        color: var(--neutral-900);
        font-weight: 600;
    }

    .nfcontacts-v7__list p span {
        color: var(--neutral-800);
    }

    .nfcontacts-v7__social {
        margin-top: 14px;
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        align-items: center;
    }

    .nfcontacts-v7__social span {
        color: var(--neutral-900);
        font-weight: 600;
    }

    .nfcontacts-v7__social a {
        text-decoration: none;
        color: var(--neutral-900);
        border: 1px solid rgba(255, 255, 255, .35);
        border-radius: 999px;
        padding: 6px 10px;
        background: rgba(255, 255, 255, 0.7);
        transition: background-color var(--anim-duration) var(--anim-ease);
    }

    .nfcontacts-v7__social a:hover {
        background: rgba(255, 255, 255, 0.9);
        color: var(--link-hover);
    }

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

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

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

.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

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

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
}
.nav-link:hover,
.nav-link:focus {
    color: var(--link-hover);
    background-color: var(--btn-ghost-bg-hover);
}
.nav-link[aria-current="page"] {
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
}

.cta-button {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 1.5);
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.cta-button:hover {
    background-color: var(--bg-accent-hover);
}

.burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
}
.burger-line {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

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

    .main-nav {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--surface-1);
        border-top: 1px solid var(--border-on-surface-light);
        box-shadow: var(--shadow-lg);
        padding: var(--space-y) var(--space-x);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
        z-index: 999;
    }

    .main-nav.is-open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .main-nav.is-open + .cta-button {
        display: none;
    }

    .nav-list {
        flex-direction: column;
        gap: var(--gap);
        align-items: center;
    }

    .nav-link {
        display: block;
        text-align: center;
        width: 100%;
        padding: var(--space-y) var(--space-x);
    }

    .cta-button {
        margin-left: auto;
    }

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: translateY(0.75rem) rotate(45deg);
    }
    .burger-menu[aria-expanded="true"] .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger-menu[aria-expanded="true"] .burger-line:nth-child(3) {
        transform: translateY(-0.75rem) rotate(-45deg);
    }
}

.footer-container {
    padding: 2rem 1rem;
    background-color: #f8f9fa;
    color: #333;
    font-family: sans-serif;
    border-top: 1px solid #dee2e6;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
  }
  .footer-zone {
    display: flex;
    flex-direction: column;
  }
  .brand-logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 0.5rem;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer-nav li {
    margin-bottom: 0.75rem;
  }
  .footer-nav a,
  .legal-links a,
  .contact-info a {
    color: #0066cc;
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-nav a:hover,
  .legal-links a:hover,
  .contact-info a:hover {
    color: #004080;
    text-decoration: underline;
  }
  .legal-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }
  .contact-info p {
    margin: 0.4rem 0;
    line-height: 1.5;
  }
  .footer-disclaimer {
    padding-top: 1.5rem;
    border-top: 1px solid #ccc;
    font-size: 0.85rem;
    color: #666;
    text-align: center;
    line-height: 1.5;
  }
  @media (max-width: 768px) {
    .footer-grid {
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }
    .footer-zone {
      align-items: center;
      text-align: center;
    }
  }

.nfcookie-v9 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
    }

    .nfcookie-v9__stack {
        max-width: 860px;
        margin: 0 auto;
        background: linear-gradient(145deg, var(--bg-primary), var(--neutral-900));
        color: var(--fg-on-primary);
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-lg);
    }

    .nfcookie-v9__stack strong {display: block; margin-bottom: 6px;}
    .nfcookie-v9__stack p {margin: 0; opacity: .9;}

    .nfcookie-v9__actions {margin-top: 12px; display: flex; flex-wrap: wrap; gap: 10px;}

    .nfcookie-v9__actions button {
        border: 1px solid rgba(255, 255, 255, .4);
        background: transparent;
        color: var(--fg-on-primary);
        border-radius: 999px;
        padding: 7px 12px;
        cursor: pointer;
    }

    .nfcookie-v9__actions button[data-choice='accept'] {
        background: var(--bg-accent);
        border-color: transparent;
        color: var(--fg-on-accent);
        font-weight: 700;
    }

.policy-layout-e {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 36px);
        background: var(--accent);
        color: var(--neutral-0);
    }

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

    .policy-layout-e .section-head {
        margin-bottom: 16px;
        text-align: center;
    }

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

    .policy-layout-e .section-head p {
        margin: 10px auto 0;
        max-width: 72ch;
        color: var(--neutral-100);
    }

    .policy-layout-e .columns {
        columns: 2 260px;
        column-gap: 14px;
    }

    .policy-layout-e article {
        break-inside: avoid;
        margin-bottom: 12px;
        border-radius: var(--radius-md);
        border: 1px solid rgba(255, 255, 255, .22);
        padding: 12px;
        background: rgba(255, 255, 255, .05);
    }

    .policy-layout-e h3 {
        margin: 0;
    }

    .policy-layout-e .meta {
        margin: 7px 0 0;
        color: var(--neutral-100);
    }

    .policy-layout-e article p:last-child {
        margin: 7px 0 0;
        color: var(--neutral-100);
    }

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

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

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

.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

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

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
}
.nav-link:hover,
.nav-link:focus {
    color: var(--link-hover);
    background-color: var(--btn-ghost-bg-hover);
}
.nav-link[aria-current="page"] {
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
}

.cta-button {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 1.5);
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.cta-button:hover {
    background-color: var(--bg-accent-hover);
}

.burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
}
.burger-line {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

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

    .main-nav {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--surface-1);
        border-top: 1px solid var(--border-on-surface-light);
        box-shadow: var(--shadow-lg);
        padding: var(--space-y) var(--space-x);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
        z-index: 999;
    }

    .main-nav.is-open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .main-nav.is-open + .cta-button {
        display: none;
    }

    .nav-list {
        flex-direction: column;
        gap: var(--gap);
        align-items: center;
    }

    .nav-link {
        display: block;
        text-align: center;
        width: 100%;
        padding: var(--space-y) var(--space-x);
    }

    .cta-button {
        margin-left: auto;
    }

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: translateY(0.75rem) rotate(45deg);
    }
    .burger-menu[aria-expanded="true"] .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger-menu[aria-expanded="true"] .burger-line:nth-child(3) {
        transform: translateY(-0.75rem) rotate(-45deg);
    }
}

.footer-container {
    padding: 2rem 1rem;
    background-color: #f8f9fa;
    color: #333;
    font-family: sans-serif;
    border-top: 1px solid #dee2e6;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
  }
  .footer-zone {
    display: flex;
    flex-direction: column;
  }
  .brand-logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 0.5rem;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer-nav li {
    margin-bottom: 0.75rem;
  }
  .footer-nav a,
  .legal-links a,
  .contact-info a {
    color: #0066cc;
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-nav a:hover,
  .legal-links a:hover,
  .contact-info a:hover {
    color: #004080;
    text-decoration: underline;
  }
  .legal-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }
  .contact-info p {
    margin: 0.4rem 0;
    line-height: 1.5;
  }
  .footer-disclaimer {
    padding-top: 1.5rem;
    border-top: 1px solid #ccc;
    font-size: 0.85rem;
    color: #666;
    text-align: center;
    line-height: 1.5;
  }
  @media (max-width: 768px) {
    .footer-grid {
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }
    .footer-zone {
      align-items: center;
      text-align: center;
    }
  }

.nfcookie-v9 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
    }

    .nfcookie-v9__stack {
        max-width: 860px;
        margin: 0 auto;
        background: linear-gradient(145deg, var(--bg-primary), var(--neutral-900));
        color: var(--fg-on-primary);
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-lg);
    }

    .nfcookie-v9__stack strong {display: block; margin-bottom: 6px;}
    .nfcookie-v9__stack p {margin: 0; opacity: .9;}

    .nfcookie-v9__actions {margin-top: 12px; display: flex; flex-wrap: wrap; gap: 10px;}

    .nfcookie-v9__actions button {
        border: 1px solid rgba(255, 255, 255, .4);
        background: transparent;
        color: var(--fg-on-primary);
        border-radius: 999px;
        padding: 7px 12px;
        cursor: pointer;
    }

    .nfcookie-v9__actions button[data-choice='accept'] {
        background: var(--bg-accent);
        border-color: transparent;
        color: var(--fg-on-accent);
        font-weight: 700;
    }

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

    .terms-layout-e .wrap {
        max-width: 900px;
        margin: 0 auto;
    }

    .terms-layout-e .section-head {
        margin-bottom: 14px;
        text-align: center;
    }

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

    .terms-layout-e .section-head p {
        margin: 10px auto 0;
        max-width: 72ch;
        color: var(--neutral-600);
    }

    .terms-layout-e .rows {
        display: grid;
        gap: 10px;
    }

    .terms-layout-e article {
        border-left: 4px solid var(--brand);
        background: var(--surface-1);
        border-radius: var(--radius-sm);
        padding: 12px 12px 12px 14px;
        box-shadow: var(--shadow-sm);
    }

    .terms-layout-e .head h3 {
        margin: 0 0 8px;
    }

    .terms-layout-e h4 {
        margin: 10px 0 6px;
    }

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

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

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

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

.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

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

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
}
.nav-link:hover,
.nav-link:focus {
    color: var(--link-hover);
    background-color: var(--btn-ghost-bg-hover);
}
.nav-link[aria-current="page"] {
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
}

.cta-button {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 1.5);
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.cta-button:hover {
    background-color: var(--bg-accent-hover);
}

.burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
}
.burger-line {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

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

    .main-nav {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--surface-1);
        border-top: 1px solid var(--border-on-surface-light);
        box-shadow: var(--shadow-lg);
        padding: var(--space-y) var(--space-x);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
        z-index: 999;
    }

    .main-nav.is-open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .main-nav.is-open + .cta-button {
        display: none;
    }

    .nav-list {
        flex-direction: column;
        gap: var(--gap);
        align-items: center;
    }

    .nav-link {
        display: block;
        text-align: center;
        width: 100%;
        padding: var(--space-y) var(--space-x);
    }

    .cta-button {
        margin-left: auto;
    }

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: translateY(0.75rem) rotate(45deg);
    }
    .burger-menu[aria-expanded="true"] .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger-menu[aria-expanded="true"] .burger-line:nth-child(3) {
        transform: translateY(-0.75rem) rotate(-45deg);
    }
}

.footer-container {
    padding: 2rem 1rem;
    background-color: #f8f9fa;
    color: #333;
    font-family: sans-serif;
    border-top: 1px solid #dee2e6;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
  }
  .footer-zone {
    display: flex;
    flex-direction: column;
  }
  .brand-logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 0.5rem;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer-nav li {
    margin-bottom: 0.75rem;
  }
  .footer-nav a,
  .legal-links a,
  .contact-info a {
    color: #0066cc;
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-nav a:hover,
  .legal-links a:hover,
  .contact-info a:hover {
    color: #004080;
    text-decoration: underline;
  }
  .legal-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }
  .contact-info p {
    margin: 0.4rem 0;
    line-height: 1.5;
  }
  .footer-disclaimer {
    padding-top: 1.5rem;
    border-top: 1px solid #ccc;
    font-size: 0.85rem;
    color: #666;
    text-align: center;
    line-height: 1.5;
  }
  @media (max-width: 768px) {
    .footer-grid {
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }
    .footer-zone {
      align-items: center;
      text-align: center;
    }
  }

.nfcookie-v9 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
    }

    .nfcookie-v9__stack {
        max-width: 860px;
        margin: 0 auto;
        background: linear-gradient(145deg, var(--bg-primary), var(--neutral-900));
        color: var(--fg-on-primary);
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-lg);
    }

    .nfcookie-v9__stack strong {display: block; margin-bottom: 6px;}
    .nfcookie-v9__stack p {margin: 0; opacity: .9;}

    .nfcookie-v9__actions {margin-top: 12px; display: flex; flex-wrap: wrap; gap: 10px;}

    .nfcookie-v9__actions button {
        border: 1px solid rgba(255, 255, 255, .4);
        background: transparent;
        color: var(--fg-on-primary);
        border-radius: 999px;
        padding: 7px 12px;
        cursor: pointer;
    }

    .nfcookie-v9__actions button[data-choice='accept'] {
        background: var(--bg-accent);
        border-color: transparent;
        color: var(--fg-on-accent);
        font-weight: 700;
    }

.nfthank-v7 {
        padding: clamp(56px, 10vw, 110px) 18px;
        background: var(--gradient-accent);
        color: var(--accent-contrast);
    }

    .nfthank-v7__box {
        max-width: 740px;
        margin: 0 auto;
        text-align: center;
    }

    .nfthank-v7 h1 {
        margin: 0;
        font-size: clamp(32px, 5vw, 52px);
    }

    .nfthank-v7 p {
        margin: 12px 0 0;
        opacity: .92;
    }

    .nfthank-v7 a {
        display: inline-block;
        margin-top: 18px;
        padding: 10px 16px;
        border-radius: var(--radius-md);
        text-decoration: none;
        background: var(--surface-1);
        color: var(--fg-on-page);
    }

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

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

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

.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

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

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
}
.nav-link:hover,
.nav-link:focus {
    color: var(--link-hover);
    background-color: var(--btn-ghost-bg-hover);
}
.nav-link[aria-current="page"] {
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
}

.cta-button {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 1.5);
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.cta-button:hover {
    background-color: var(--bg-accent-hover);
}

.burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
}
.burger-line {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

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

    .main-nav {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--surface-1);
        border-top: 1px solid var(--border-on-surface-light);
        box-shadow: var(--shadow-lg);
        padding: var(--space-y) var(--space-x);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
        z-index: 999;
    }

    .main-nav.is-open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .main-nav.is-open + .cta-button {
        display: none;
    }

    .nav-list {
        flex-direction: column;
        gap: var(--gap);
        align-items: center;
    }

    .nav-link {
        display: block;
        text-align: center;
        width: 100%;
        padding: var(--space-y) var(--space-x);
    }

    .cta-button {
        margin-left: auto;
    }

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: translateY(0.75rem) rotate(45deg);
    }
    .burger-menu[aria-expanded="true"] .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger-menu[aria-expanded="true"] .burger-line:nth-child(3) {
        transform: translateY(-0.75rem) rotate(-45deg);
    }
}

.footer-container {
    padding: 2rem 1rem;
    background-color: #f8f9fa;
    color: #333;
    font-family: sans-serif;
    border-top: 1px solid #dee2e6;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
  }
  .footer-zone {
    display: flex;
    flex-direction: column;
  }
  .brand-logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 0.5rem;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer-nav li {
    margin-bottom: 0.75rem;
  }
  .footer-nav a,
  .legal-links a,
  .contact-info a {
    color: #0066cc;
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-nav a:hover,
  .legal-links a:hover,
  .contact-info a:hover {
    color: #004080;
    text-decoration: underline;
  }
  .legal-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }
  .contact-info p {
    margin: 0.4rem 0;
    line-height: 1.5;
  }
  .footer-disclaimer {
    padding-top: 1.5rem;
    border-top: 1px solid #ccc;
    font-size: 0.85rem;
    color: #666;
    text-align: center;
    line-height: 1.5;
  }
  @media (max-width: 768px) {
    .footer-grid {
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }
    .footer-zone {
      align-items: center;
      text-align: center;
    }
  }

.nfcookie-v9 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
    }

    .nfcookie-v9__stack {
        max-width: 860px;
        margin: 0 auto;
        background: linear-gradient(145deg, var(--bg-primary), var(--neutral-900));
        color: var(--fg-on-primary);
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-lg);
    }

    .nfcookie-v9__stack strong {display: block; margin-bottom: 6px;}
    .nfcookie-v9__stack p {margin: 0; opacity: .9;}

    .nfcookie-v9__actions {margin-top: 12px; display: flex; flex-wrap: wrap; gap: 10px;}

    .nfcookie-v9__actions button {
        border: 1px solid rgba(255, 255, 255, .4);
        background: transparent;
        color: var(--fg-on-primary);
        border-radius: 999px;
        padding: 7px 12px;
        cursor: pointer;
    }

    .nfcookie-v9__actions button[data-choice='accept'] {
        background: var(--bg-accent);
        border-color: transparent;
        color: var(--fg-on-accent);
        font-weight: 700;
    }

.nf404-v12 {
        padding: clamp(56px, 10vw, 112px) 20px;
        background: var(--surface-2);
        color: var(--fg-on-page);
    }

    .nf404-v12__box {
        max-width: 760px;
        margin: 0 auto;
        text-align: center;
        border-top: 6px solid var(--accent);
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        border-left: 1px solid var(--border-on-surface);
        border-right: 1px solid var(--border-on-surface);
        border-bottom: 1px solid var(--border-on-surface);
        padding: clamp(28px, 4vw, 46px);
    }

    .nf404-v12 h1 {
        margin: 0;
        font-size: clamp(32px, 6vw, 56px);
        color: var(--brand);
    }

    .nf404-v12 p {
        margin: 10px 0 0;
        color: var(--neutral-600);
    }

    .nf404-v12 a {
        display: inline-block;
        margin-top: 16px;
        padding: 9px 14px;
        border-radius: 999px;
        text-decoration: none;
        border: 1px solid var(--border-on-surface);
        color: var(--fg-on-page);
    }