:root {
  --font-family: "Archivo", sans-serif;
  --font-size-base: 15px;
  --line-height-base: 1.52;

  --max-w: 1160px;
  --space-x: 1.12rem;
  --space-y: 1.05rem;
  --gap: 0.99rem;

  --radius-xl: 0.98rem;
  --radius-lg: 0.71rem;
  --radius-md: 0.51rem;
  --radius-sm: 0.21rem;

  --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
  --shadow-md: 0 6px 10px rgba(0,0,0,0.13);
  --shadow-lg: 0 14px 40px rgba(0,0,0,0.15);

  --overlay: rgba(0, 0, 0, 0.5);
  --anim-duration: 230ms;
  --anim-ease: ease;
  --random-number: 2;

  --brand: #0056A3;
  --brand-contrast: #FFFFFF;
  --accent: #E67E22;
  --accent-contrast: #FFFFFF;

  --neutral-0: #FFFFFF;
  --neutral-100: #F8F9FA;
  --neutral-300: #DEE2E6;
  --neutral-600: #6C757D;
  --neutral-800: #343A40;
  --neutral-900: #212529;

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

  --bg-alt: #F8F9FA;
  --fg-on-alt: #343A40;

  --surface-1: #FFFFFF;
  --surface-2: #F8F9FA;
  --fg-on-surface: #212529;
  --border-on-surface: #DEE2E6;

  --surface-light: #FFFFFF;
  --fg-on-surface-light: #343A40;
  --border-on-surface-light: #E9ECEF;

  --bg-primary: #0056A3;
  --fg-on-primary: #FFFFFF;
  --bg-primary-hover: #004080;
  --ring: rgba(0, 86, 163, 0.4);

  --bg-accent: #FEF5E7;
  --fg-on-accent: #8B4513;
  --bg-accent-hover: #D35400;

  --link: #0056A3;
  --link-hover: #004080;

  --gradient-hero: linear-gradient(135deg, #0056A3 0%, #003366 100%);
  --gradient-accent: linear-gradient(135deg, #E67E22 0%, #D35400 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 {
        font-family: var(--font-family);
        font-size: var(--font-size-base);
        line-height: var(--line-height-base);
        background-color: var(--surface-1);
        color: var(--fg-on-surface);
        box-shadow: var(--shadow-sm);
    }

    .header-top {
        background-color: var(--bg-page);
        border-bottom: 1px solid var(--border-on-surface-light);
        padding: var(--space-y) 0;
    }

    .header-bottom {
        padding: var(--space-y) 0;
    }

    .container {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 0 var(--space-x);
        width: 100%;
        box-sizing: border-box;
    }

    .header-top-container,
    .header-bottom-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

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

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

    .header-contact {
        display: flex;
        align-items: center;
        gap: var(--gap);
    }

    .contact-link {
        color: var(--link);
        text-decoration: none;
        font-weight: 500;
        transition: color var(--anim-duration) var(--anim-ease);
    }

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

    .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-md);
        text-decoration: none;
        font-weight: 600;
        transition: background-color var(--anim-duration) var(--anim-ease);
        white-space: nowrap;
    }

    .cta-button:hover {
        background-color: var(--bg-accent-hover);
    }

    .main-nav {
        flex-grow: 1;
    }

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

    .nav-link {
        color: var(--fg-on-surface);
        text-decoration: none;
        font-weight: 500;
        padding: calc(var(--space-y) * 0.5) 0;
        position: relative;
        transition: color var(--anim-duration) var(--anim-ease);
    }

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

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background-color: var(--accent);
        transition: width var(--anim-duration) var(--anim-ease);
    }

    .nav-link:hover::after {
        width: 100%;
    }

    .burger-menu {
        display: none;
        background: none;
        border: none;
        cursor: pointer;
        padding: calc(var(--space-y) * 0.5);
        flex-direction: column;
        justify-content: space-between;
        width: 2rem;
        height: 1.5rem;
    }

    .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) {
        .header-top-container,
        .header-bottom-container {
            flex-wrap: wrap;
        }

        .header-contact {
            order: 3;
            width: 100%;
            justify-content: center;
            margin-top: var(--space-y);
            display: none;
        }

        .header-top {
            padding-bottom: calc(var(--space-y) * 0.5);
        }

        .burger-menu {
            display: flex;
        }

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

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

        .nav-list {
            flex-direction: column;
            gap: var(--gap);
            margin-top: calc(var(--space-y) * 3);
        }

        .nav-link {
            display: block;
            padding: var(--space-y) 0;
            border-bottom: 1px solid var(--border-on-surface-light);
        }

        .nav-link::after {
            display: none;
        }

        .burger-menu[aria-expanded="true"] .burger-line:nth-child(1) {
            transform: translateY(0.5rem) 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.5rem) rotate(-45deg);
        }
    }

    @media (min-width: 768px) {
        .header-contact {
            display: flex;
        }
    }

.site-footer {
    background-color: #f8f9fa;
    color: #333;
    padding: 3rem 1rem;
    border-top: 1px solid #dee2e6;
    font-family: system-ui, -apple-system, sans-serif;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
  @media (max-width: 768px) {
    .footer-container {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
  }
  .footer-left {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .logo {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    color: #1a1a1a;
  }
  .contact-info p {
    margin: 0.5rem 0;
    line-height: 1.5;
  }
  .contact-info a {
    color: #0066cc;
    text-decoration: none;
  }
  .contact-info a:hover {
    text-decoration: underline;
  }
  .social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
  }
  .social-links a {
    color: #555;
    text-decoration: none;
    font-size: 0.9rem;
  }
  .social-links a:hover {
    color: #0066cc;
    text-decoration: underline;
  }
  .footer-right {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 2rem;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
  }
  @media (max-width: 480px) {
    .footer-nav ul {
      flex-direction: column;
      gap: 1rem;
    }
  }
  .footer-nav a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
  }
  .footer-nav a:hover {
    color: #0066cc;
    text-decoration: underline;
  }
  .legal-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
  }
  .legal-links a {
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
  }
  .legal-links a:hover {
    color: #0066cc;
    text-decoration: underline;
  }
  .copyright-disclaimer {
    margin-top: auto;
  }
  .copyright {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.5rem;
  }
  .disclaimer {
    font-size: 0.8rem;
    color: #888;
    line-height: 1.4;
    margin: 0;
    max-width: 90ch;
  }

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

    .nfcookie-v11__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, .45), rgba(17, 24, 39, .95));
        color: var(--neutral-100);
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, .35);
    }

    .nfcookie-v11__top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .nfcookie-v11__top strong {font-size: 16px;}

    .nfcookie-v11__top button {
        border: 0;
        background: transparent;
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
        cursor: pointer;
    }

    .nfcookie-v11 p {margin: 10px 0 0; color: #d1d5db;}

    .nfcookie-v11__actions {margin-top: 14px; display: flex; gap: 8px;}

    .nfcookie-v11__actions button {
        flex: 1;
        border-radius: var(--radius-sm);
        border: 1px solid rgba(148, 163, 184, .45);
        padding: 9px 12px;
        color: #e5e7eb;
        background: rgba(51, 65, 85, .65);
        cursor: pointer;
    }

    .nfcookie-v11__actions button[data-choice='accept'] {
        background: #22c55e;
        border-color: transparent;
        color: #06290e;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .nfcookie-v11__card {max-width: none;}
    }

.hero-arc-v4 {
        padding: calc(var(--space-y) * 3) var(--space-x);
        background: var(--surface-1);
        color: var(--fg-on-surface);
    }

    .hero-arc-v4 .shell {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        grid-template-columns:repeat(12, minmax(0, 1fr));
        gap: var(--gap);
    }

    .hero-arc-v4 .headline {
        grid-column: 1/8;
        padding: calc(var(--space-y) * 1.2);
        border-radius: var(--radius-xl);
        background: var(--gradient-hero);
        color: var(--brand-contrast);
    }

    .hero-arc-v4 h1 {
        margin: .2rem 0 .7rem;
        font-size: clamp(2rem, 4.6vw, 3.6rem);
        line-height: 1.08;
    }

    .hero-arc-v4 .headline p {
        margin: 0;
        max-width: 52ch;
        opacity: .92;
    }

    .hero-arc-v4 .actionbox {
        grid-column: 8/13;
        background: var(--surface-2);
        border: 1px solid var(--border-on-surface);
        padding: calc(var(--space-y) * 1.2);
        border-radius: var(--radius-xl);
        display: grid;
        align-content: center;
        gap: var(--gap);
    }

    .hero-arc-v4 .actions {
        display: grid;
        gap: .65rem;
    }

    .hero-arc-v4 .actions a {
        display: inline-flex;
        justify-content: center;
        padding: .7rem 1rem;
        border-radius: var(--radius-md);
        text-decoration: none;
        font-weight: 700;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
    }

    .hero-arc-v4 .actions a:nth-child(even) {
        background: var(--surface-1);
        color: var(--fg-on-surface);
        border: 1px solid var(--border-on-surface);
    }

    .hero-arc-v4 .media {
        grid-column: 1/6;
        overflow: hidden;
        border-radius: var(--radius-xl);
        min-height: 260px;
    }

    .hero-arc-v4 img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

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

    .hero-arc-v4 .stats div {
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: var(--surface-2);
        border: 1px solid var(--border-on-surface);
    }

    .hero-arc-v4 .stats span {
        display: block;
        color: var(--fg-on-surface-light);
        font-size: .88rem;
    }

    .hero-arc-v4 .stats strong {
        font-size: 1.1rem;
    }

    @media (max-width: 960px) {
        .hero-arc-v4 .headline, .hero-arc-v4 .actionbox, .hero-arc-v4 .media, .hero-arc-v4 .stats {
            grid-column: 1/-1;
        }

        .hero-arc-v4 .stats {
            grid-template-columns:repeat(2, minmax(0, 1fr));
        }
    }

.next-route-l6 {
        padding: clamp(3.1rem, 7vw, 5.6rem) var(--space-x);
        background: var(--surface-1);
        color: var(--fg-on-page);
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .next-route-l6__wrap {
        max-width: 56rem;
        margin: 0 auto;
    }

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

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

    .next-route-l6__line {
        margin-top: 1rem;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr));
        gap: .7rem;
    }

    .next-route-l6__line a {
        display: flex;
        gap: .6rem;
        align-items: center;
        padding: .9rem;
        border-radius: var(--radius-md);
        background: var(--bg-alt);
        border: 1px solid var(--border-on-surface-light);
        text-decoration: none;
        color: var(--fg-on-page);
    }

    .next-route-l6__line i {
        font-style: normal;
    }

    .next-route-l6__copy {
        margin: 1rem 0 0;
        color: var(--neutral-600);
    }

    .next-route-l6__cta {
        display: inline-flex;
        margin-top: 1rem;
        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;
    }

.faq-fresh-v4 {
        padding: calc(var(--space-y) * 2.7) var(--space-x);
        background: var(--gradient-hero);
        color: var(--brand-contrast);
    }

    .faq-fresh-v4 .shell {
        max-width: 1000px;
        margin: 0 auto;
        display: grid;
        grid-template-columns:.9fr 1.1fr;
        gap: var(--gap);
    }

    .faq-fresh-v4 .cover {
        padding: 1.1rem;
        border-radius: var(--radius-lg);
        background: var(--chip-bg);
        align-self: start;
    }

    .faq-fresh-v4 .cover h2 {
        margin: 0 0 .5rem;
    }

    .faq-fresh-v4 .cover p {
        margin: 0;
        opacity: .9;
    }

    .faq-fresh-v4 .rows {
        display: grid;
        gap: .75rem;
    }

    .faq-fresh-v4 details {
        padding: .85rem 1rem;
        border-radius: var(--radius-md);
        background: var(--chip-bg);
        border: 1px solid var(--btn-ghost-bg-hover);
    }

    .faq-fresh-v4 summary {
        cursor: pointer;
        font-weight: 700;
    }

    .faq-fresh-v4 details p {
        margin: .65rem 0 0;
        opacity: .9;
    }

    @media (max-width: 860px) {
        .faq-fresh-v4 .shell {
            grid-template-columns:1fr;
        }
    }

.social-c2 {

        padding: clamp(18px, 3vw, 44px);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        position: relative;
        overflow: hidden;
    }

    .social-c2::before {
        content: '';
        position: absolute;
        inset: -30%;
        background: radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.14), transparent 55%),
        radial-gradient(circle at 80% 55%, rgba(255, 107, 53, 0.18), transparent 55%);
        filter: blur(18px);
        animation: socialC2Bg 7s var(--anim-ease) infinite;
        pointer-events: none;
    }

    @keyframes socialC2Bg {
        0%, 100% {
            transform: translate3d(-1%, 0, 0) scale(1)
        }
        50% {
            transform: translate3d(1.5%, -1%, 0) scale(1.04)
        }
    }

    .social-c2__c {
        max-width: var(--max-w);
        margin: 0 auto;
        position: relative;
    }

    .social-c2__h {
        margin-bottom: clamp(14px, 2.2vw, 22px);
    }

    .social-c2__title {
        margin: 0;
        font-size: clamp(24px, 4.6vw, 44px);
        letter-spacing: -.02em;
        line-height: 1.1;
    }

    .social-c2__sub {
        margin: 10px 0 0;
        max-width: 70ch;
        color: rgba(255, 255, 255, .82);
    }

    .social-c2__grid {
        display: grid;
        grid-template-columns: 1.2fr 0.8fr;
        gap: 14px;
        align-items: stretch;
    }

    .social-c2__quotes {
        position: relative;
        border-radius: var(--radius-xl);
        background: rgba(255, 255, 255, 0.10);
        border: 1px solid rgba(255, 255, 255, 0.16);
        box-shadow: var(--shadow-lg);
        overflow: hidden;
    }

    .social-c2__quote {
        display: none;
        padding: 18px 18px 16px;
    }

    .social-c2__quote.is-on {
        display: block;
    }

    .social-c2__qText {
        font-size: clamp(16px, 2.2vw, 20px);
        line-height: 1.7;
        color: rgba(255, 255, 255, .92);
    }

    .social-c2__qMeta {
        margin-top: 14px;
        display: flex;
        gap: 10px;
        align-items: baseline;
        flex-wrap: wrap;

    }

    .social-c2__qName {
        font-weight: 900;
    }

    .social-c2__qRole {
        opacity: .85;
    }

    .social-c2__metrics {
        display: grid;
        gap: 12px;
    }

    .social-c2__metric {
        border-radius: var(--radius-xl);
        background: rgba(0, 0, 0, 0.14);
        border: 1px solid rgba(255, 255, 255, 0.14);
        box-shadow: var(--shadow-md);
        padding: 16px;
    }

    .social-c2__mVal {
        font-weight: 900;
        font-size: clamp(22px, 3vw, 32px);
        letter-spacing: -.01em;
    }

    .social-c2__mLbl {
        margin-top: 6px;
        color: rgba(255, 255, 255, .82);
    }

    @media (max-width: 980px) {
        .social-c2__grid {
            grid-template-columns:1fr;
        }
    }

    @media (prefers-reduced-motion: reduce) {
        .social-c2::before {
            animation: none;
        }
    }

.site-header {
        font-family: var(--font-family);
        font-size: var(--font-size-base);
        line-height: var(--line-height-base);
        background-color: var(--surface-1);
        color: var(--fg-on-surface);
        box-shadow: var(--shadow-sm);
    }

    .header-top {
        background-color: var(--bg-page);
        border-bottom: 1px solid var(--border-on-surface-light);
        padding: var(--space-y) 0;
    }

    .header-bottom {
        padding: var(--space-y) 0;
    }

    .container {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 0 var(--space-x);
        width: 100%;
        box-sizing: border-box;
    }

    .header-top-container,
    .header-bottom-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

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

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

    .header-contact {
        display: flex;
        align-items: center;
        gap: var(--gap);
    }

    .contact-link {
        color: var(--link);
        text-decoration: none;
        font-weight: 500;
        transition: color var(--anim-duration) var(--anim-ease);
    }

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

    .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-md);
        text-decoration: none;
        font-weight: 600;
        transition: background-color var(--anim-duration) var(--anim-ease);
        white-space: nowrap;
    }

    .cta-button:hover {
        background-color: var(--bg-accent-hover);
    }

    .main-nav {
        flex-grow: 1;
    }

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

    .nav-link {
        color: var(--fg-on-surface);
        text-decoration: none;
        font-weight: 500;
        padding: calc(var(--space-y) * 0.5) 0;
        position: relative;
        transition: color var(--anim-duration) var(--anim-ease);
    }

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

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background-color: var(--accent);
        transition: width var(--anim-duration) var(--anim-ease);
    }

    .nav-link:hover::after {
        width: 100%;
    }

    .burger-menu {
        display: none;
        background: none;
        border: none;
        cursor: pointer;
        padding: calc(var(--space-y) * 0.5);
        flex-direction: column;
        justify-content: space-between;
        width: 2rem;
        height: 1.5rem;
    }

    .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) {
        .header-top-container,
        .header-bottom-container {
            flex-wrap: wrap;
        }

        .header-contact {
            order: 3;
            width: 100%;
            justify-content: center;
            margin-top: var(--space-y);
            display: none;
        }

        .header-top {
            padding-bottom: calc(var(--space-y) * 0.5);
        }

        .burger-menu {
            display: flex;
        }

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

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

        .nav-list {
            flex-direction: column;
            gap: var(--gap);
            margin-top: calc(var(--space-y) * 3);
        }

        .nav-link {
            display: block;
            padding: var(--space-y) 0;
            border-bottom: 1px solid var(--border-on-surface-light);
        }

        .nav-link::after {
            display: none;
        }

        .burger-menu[aria-expanded="true"] .burger-line:nth-child(1) {
            transform: translateY(0.5rem) 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.5rem) rotate(-45deg);
        }
    }

    @media (min-width: 768px) {
        .header-contact {
            display: flex;
        }
    }

.site-footer {
    background-color: #f8f9fa;
    color: #333;
    padding: 3rem 1rem;
    border-top: 1px solid #dee2e6;
    font-family: system-ui, -apple-system, sans-serif;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
  @media (max-width: 768px) {
    .footer-container {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
  }
  .footer-left {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .logo {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    color: #1a1a1a;
  }
  .contact-info p {
    margin: 0.5rem 0;
    line-height: 1.5;
  }
  .contact-info a {
    color: #0066cc;
    text-decoration: none;
  }
  .contact-info a:hover {
    text-decoration: underline;
  }
  .social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
  }
  .social-links a {
    color: #555;
    text-decoration: none;
    font-size: 0.9rem;
  }
  .social-links a:hover {
    color: #0066cc;
    text-decoration: underline;
  }
  .footer-right {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 2rem;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
  }
  @media (max-width: 480px) {
    .footer-nav ul {
      flex-direction: column;
      gap: 1rem;
    }
  }
  .footer-nav a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
  }
  .footer-nav a:hover {
    color: #0066cc;
    text-decoration: underline;
  }
  .legal-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
  }
  .legal-links a {
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
  }
  .legal-links a:hover {
    color: #0066cc;
    text-decoration: underline;
  }
  .copyright-disclaimer {
    margin-top: auto;
  }
  .copyright {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.5rem;
  }
  .disclaimer {
    font-size: 0.8rem;
    color: #888;
    line-height: 1.4;
    margin: 0;
    max-width: 90ch;
  }

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

    .nfcookie-v11__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, .45), rgba(17, 24, 39, .95));
        color: var(--neutral-100);
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, .35);
    }

    .nfcookie-v11__top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .nfcookie-v11__top strong {font-size: 16px;}

    .nfcookie-v11__top button {
        border: 0;
        background: transparent;
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
        cursor: pointer;
    }

    .nfcookie-v11 p {margin: 10px 0 0; color: #d1d5db;}

    .nfcookie-v11__actions {margin-top: 14px; display: flex; gap: 8px;}

    .nfcookie-v11__actions button {
        flex: 1;
        border-radius: var(--radius-sm);
        border: 1px solid rgba(148, 163, 184, .45);
        padding: 9px 12px;
        color: #e5e7eb;
        background: rgba(51, 65, 85, .65);
        cursor: pointer;
    }

    .nfcookie-v11__actions button[data-choice='accept'] {
        background: #22c55e;
        border-color: transparent;
        color: #06290e;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .nfcookie-v11__card {max-width: none;}
    }

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

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

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

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

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

.product-list__row:first-child {
    border-top: none;
}

.product-list__row-name {
    font-size: 0.9rem;
    color: var(--neutral-800);
}

.product-list__row-price {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--bg-primary);
}

.nftouch-v11 {
        padding: clamp(56px, 8vw, 96px) 16px;
        background: linear-gradient(145deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
    }

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

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

    .nftouch-v11__lead {
        margin: 10px 0 14px;
        opacity: .92;
    }

    .nftouch-v11__lane {
        display: flex;
        gap: 10px;
        overflow-x: auto;
        padding-bottom: 6px;
    }

    .nftouch-v11__lane article {
        min-width: 250px;
        border: 1px solid rgba(255, 255, 255, .28);
        border-radius: var(--radius-lg);
        background: rgba(255, 255, 255, .1);
        padding: 12px;
    }

    .nftouch-v11__lane h3 {
        margin: 0 0 8px;
    }

    .nftouch-v11__lane p {
        margin: 0 0 8px;
    }

    .nftouch-v11__lane a {
        color: var(--fg-on-primary);
        text-decoration: underline;
    }

    .nftouch-v11__main {
        display: inline-block;
        text-decoration: none;
        padding: 10px 14px;
        border-radius: 10px;
        background: var(--fg-on-primary);
        color: var(--fg-on-accent);
    }
    .nftouch-v11__form input::placeholder {
        color: rgba(255, 255, 255, 0.7);
    }

.site-header {
        font-family: var(--font-family);
        font-size: var(--font-size-base);
        line-height: var(--line-height-base);
        background-color: var(--surface-1);
        color: var(--fg-on-surface);
        box-shadow: var(--shadow-sm);
    }

    .header-top {
        background-color: var(--bg-page);
        border-bottom: 1px solid var(--border-on-surface-light);
        padding: var(--space-y) 0;
    }

    .header-bottom {
        padding: var(--space-y) 0;
    }

    .container {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 0 var(--space-x);
        width: 100%;
        box-sizing: border-box;
    }

    .header-top-container,
    .header-bottom-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

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

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

    .header-contact {
        display: flex;
        align-items: center;
        gap: var(--gap);
    }

    .contact-link {
        color: var(--link);
        text-decoration: none;
        font-weight: 500;
        transition: color var(--anim-duration) var(--anim-ease);
    }

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

    .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-md);
        text-decoration: none;
        font-weight: 600;
        transition: background-color var(--anim-duration) var(--anim-ease);
        white-space: nowrap;
    }

    .cta-button:hover {
        background-color: var(--bg-accent-hover);
    }

    .main-nav {
        flex-grow: 1;
    }

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

    .nav-link {
        color: var(--fg-on-surface);
        text-decoration: none;
        font-weight: 500;
        padding: calc(var(--space-y) * 0.5) 0;
        position: relative;
        transition: color var(--anim-duration) var(--anim-ease);
    }

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

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background-color: var(--accent);
        transition: width var(--anim-duration) var(--anim-ease);
    }

    .nav-link:hover::after {
        width: 100%;
    }

    .burger-menu {
        display: none;
        background: none;
        border: none;
        cursor: pointer;
        padding: calc(var(--space-y) * 0.5);
        flex-direction: column;
        justify-content: space-between;
        width: 2rem;
        height: 1.5rem;
    }

    .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) {
        .header-top-container,
        .header-bottom-container {
            flex-wrap: wrap;
        }

        .header-contact {
            order: 3;
            width: 100%;
            justify-content: center;
            margin-top: var(--space-y);
            display: none;
        }

        .header-top {
            padding-bottom: calc(var(--space-y) * 0.5);
        }

        .burger-menu {
            display: flex;
        }

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

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

        .nav-list {
            flex-direction: column;
            gap: var(--gap);
            margin-top: calc(var(--space-y) * 3);
        }

        .nav-link {
            display: block;
            padding: var(--space-y) 0;
            border-bottom: 1px solid var(--border-on-surface-light);
        }

        .nav-link::after {
            display: none;
        }

        .burger-menu[aria-expanded="true"] .burger-line:nth-child(1) {
            transform: translateY(0.5rem) 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.5rem) rotate(-45deg);
        }
    }

    @media (min-width: 768px) {
        .header-contact {
            display: flex;
        }
    }

.site-footer {
    background-color: #f8f9fa;
    color: #333;
    padding: 3rem 1rem;
    border-top: 1px solid #dee2e6;
    font-family: system-ui, -apple-system, sans-serif;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
  @media (max-width: 768px) {
    .footer-container {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
  }
  .footer-left {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .logo {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    color: #1a1a1a;
  }
  .contact-info p {
    margin: 0.5rem 0;
    line-height: 1.5;
  }
  .contact-info a {
    color: #0066cc;
    text-decoration: none;
  }
  .contact-info a:hover {
    text-decoration: underline;
  }
  .social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
  }
  .social-links a {
    color: #555;
    text-decoration: none;
    font-size: 0.9rem;
  }
  .social-links a:hover {
    color: #0066cc;
    text-decoration: underline;
  }
  .footer-right {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 2rem;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
  }
  @media (max-width: 480px) {
    .footer-nav ul {
      flex-direction: column;
      gap: 1rem;
    }
  }
  .footer-nav a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
  }
  .footer-nav a:hover {
    color: #0066cc;
    text-decoration: underline;
  }
  .legal-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
  }
  .legal-links a {
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
  }
  .legal-links a:hover {
    color: #0066cc;
    text-decoration: underline;
  }
  .copyright-disclaimer {
    margin-top: auto;
  }
  .copyright {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.5rem;
  }
  .disclaimer {
    font-size: 0.8rem;
    color: #888;
    line-height: 1.4;
    margin: 0;
    max-width: 90ch;
  }

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

    .nfcookie-v11__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, .45), rgba(17, 24, 39, .95));
        color: var(--neutral-100);
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, .35);
    }

    .nfcookie-v11__top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .nfcookie-v11__top strong {font-size: 16px;}

    .nfcookie-v11__top button {
        border: 0;
        background: transparent;
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
        cursor: pointer;
    }

    .nfcookie-v11 p {margin: 10px 0 0; color: #d1d5db;}

    .nfcookie-v11__actions {margin-top: 14px; display: flex; gap: 8px;}

    .nfcookie-v11__actions button {
        flex: 1;
        border-radius: var(--radius-sm);
        border: 1px solid rgba(148, 163, 184, .45);
        padding: 9px 12px;
        color: #e5e7eb;
        background: rgba(51, 65, 85, .65);
        cursor: pointer;
    }

    .nfcookie-v11__actions button[data-choice='accept'] {
        background: #22c55e;
        border-color: transparent;
        color: #06290e;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .nfcookie-v11__card {max-width: none;}
    }

.product-item {

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

    .product-item .product-item__c {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        gap: var(--space-x);
    }

    @media (min-width: 1024px) {
        .product-item .product-item__c {
            grid-template-columns: 1fr 1fr;
        }

        /* Si randomNumber es par (2) - el primer hijo obtiene order: 2 */
        .product-item .product-item__c > *:first-child {
            order: calc((var(--random-number) % 2) * 2);
        }
    }

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

    .product-item .product-item__thumbnails {
        display: flex;
        gap: 0.5rem;
        margin-top: 1rem;
    }

    .product-item .product-item__thumb {
        width: 80px;
        height: 80px;
        object-fit: cover;
        border-radius: var(--radius-md);
        cursor: pointer;
        border: 2px solid transparent;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .product-item .product-item__thumb:hover {
        border-color: var(--bg-primary);
    }

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

    .product-item .product-item__price {
        font-size: clamp(28px, 4vw, 42px);
        font-weight: 700;
        color: var(--bg-primary);
        margin: 0 0 1.5rem;
    }

    .product-item .product-item__description {
        color: var(--neutral-600);
        line-height: 1.8;
        margin-bottom: var(--space-y);
    }

    .product-item .product-item__actions {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
    }

    /* Si randomNumber es par (2) - el primer hijo obtiene order: 2 */
    .product-item .product-item__actions > *:first-child {
        order: calc((var(--random-number) % 2) * 2);
    }

    .product-item .product-item__add-cart,
    .product-item .product-item__wishlist {
        padding: 0.875rem 2rem;
        border-radius: var(--radius-lg);
        border: none;
        font-size: 1rem;
        font-weight: 600;
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .product-item .product-item__add-cart {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-md);
    }

    .product-item .product-item__add-cart:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-lg);
    }

    .product-item .product-item__wishlist {
        background: var(--bg-page);
        color: var(--fg-on-page);
        border: 1px solid var(--ring);
    }

    .product-item .product-item__wishlist:hover {
        background: var(--surface-1);
    }

.index-feedback-accordion {
        background: radial-gradient(circle at 22% 18%, rgba(255, 255, 255, 0.75), transparent 60%),
        var(--gradient-hero);
        color: var(--fg-on-page);
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 40px);
    }

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

    .index-feedback-accordion__h {
        text-align: center;
        margin-bottom: clamp(22px, 5vw, 44px);

        transform: translateY(-18px);
    }

    .index-feedback-accordion__h h2 {
        margin: 0 0 10px;
        font-size: clamp(26px, 4.4vw, 44px);
        letter-spacing: -0.02em;
        color: var(--fg-on-page);
    }

    .index-feedback-accordion__h p {
        margin: 0;
        color: rgba(58, 46, 61, 0.75);
    }

    .index-feedback-accordion__list {
        display: grid;
        gap: 12px;
    }

    .index-feedback-accordion__row {
        border-radius: var(--radius-lg);
        border: 1px solid rgba(248, 225, 231, 0.95);
        background: rgba(58, 46, 61, 0.92);
        box-shadow: var(--shadow-sm);
        overflow: hidden;

        transform: translateY(24px);
    }

    .index-feedback-accordion__q {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        cursor: pointer;
        padding: 14px 16px;
        border: 0;
        background: transparent;
        color: var(--bg-page);
        font: inherit;
    }

    .index-feedback-accordion__left {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        min-width: 0;
    }

    .index-feedback-accordion__avatar {
        width: 36px;
        height: 36px;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.12);
        display: flex;
        align-items: center;
        justify-content: center;
        flex: 0 0 auto;
    }

    .index-feedback-accordion__name {
        font-weight: 800;
        font-size: 14px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 18ch;
    }

    .index-feedback-accordion__meta {
        font-size: 12px;
        color: rgba(255, 255, 255, 0.75);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 24ch;
    }

    .index-feedback-accordion__right {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        flex: 0 0 auto;
        padding: 6px 10px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.14);
    }

    .index-feedback-accordion__stars {
        color: var(--brand);
        letter-spacing: 0.08em;
        font-size: 13px;
        line-height: 1;
    }

    .index-feedback-accordion__score {
        font-weight: 800;
        font-size: 12px;
        color: var(--bg-page);
    }

    .index-feedback-accordion__a {
        display: none;
        padding: 0 16px 14px;
        color: rgba(255, 255, 255, 0.85);
        overflow: hidden;
    }

    .index-feedback-accordion__quote {
        margin: 0;
        font-size: 14px;
        line-height: 1.65;
    }

    .index-feedback-accordion__badge {
        display: inline-flex;
        margin-top: 10px;
        padding: 6px 10px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.12);
        letter-spacing: 0.14em;
        text-transform: uppercase;
        font-size: 10px;
        color: rgba(255, 255, 255, 0.78);
    }

.site-header {
        font-family: var(--font-family);
        font-size: var(--font-size-base);
        line-height: var(--line-height-base);
        background-color: var(--surface-1);
        color: var(--fg-on-surface);
        box-shadow: var(--shadow-sm);
    }

    .header-top {
        background-color: var(--bg-page);
        border-bottom: 1px solid var(--border-on-surface-light);
        padding: var(--space-y) 0;
    }

    .header-bottom {
        padding: var(--space-y) 0;
    }

    .container {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 0 var(--space-x);
        width: 100%;
        box-sizing: border-box;
    }

    .header-top-container,
    .header-bottom-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

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

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

    .header-contact {
        display: flex;
        align-items: center;
        gap: var(--gap);
    }

    .contact-link {
        color: var(--link);
        text-decoration: none;
        font-weight: 500;
        transition: color var(--anim-duration) var(--anim-ease);
    }

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

    .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-md);
        text-decoration: none;
        font-weight: 600;
        transition: background-color var(--anim-duration) var(--anim-ease);
        white-space: nowrap;
    }

    .cta-button:hover {
        background-color: var(--bg-accent-hover);
    }

    .main-nav {
        flex-grow: 1;
    }

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

    .nav-link {
        color: var(--fg-on-surface);
        text-decoration: none;
        font-weight: 500;
        padding: calc(var(--space-y) * 0.5) 0;
        position: relative;
        transition: color var(--anim-duration) var(--anim-ease);
    }

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

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background-color: var(--accent);
        transition: width var(--anim-duration) var(--anim-ease);
    }

    .nav-link:hover::after {
        width: 100%;
    }

    .burger-menu {
        display: none;
        background: none;
        border: none;
        cursor: pointer;
        padding: calc(var(--space-y) * 0.5);
        flex-direction: column;
        justify-content: space-between;
        width: 2rem;
        height: 1.5rem;
    }

    .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) {
        .header-top-container,
        .header-bottom-container {
            flex-wrap: wrap;
        }

        .header-contact {
            order: 3;
            width: 100%;
            justify-content: center;
            margin-top: var(--space-y);
            display: none;
        }

        .header-top {
            padding-bottom: calc(var(--space-y) * 0.5);
        }

        .burger-menu {
            display: flex;
        }

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

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

        .nav-list {
            flex-direction: column;
            gap: var(--gap);
            margin-top: calc(var(--space-y) * 3);
        }

        .nav-link {
            display: block;
            padding: var(--space-y) 0;
            border-bottom: 1px solid var(--border-on-surface-light);
        }

        .nav-link::after {
            display: none;
        }

        .burger-menu[aria-expanded="true"] .burger-line:nth-child(1) {
            transform: translateY(0.5rem) 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.5rem) rotate(-45deg);
        }
    }

    @media (min-width: 768px) {
        .header-contact {
            display: flex;
        }
    }

.site-footer {
    background-color: #f8f9fa;
    color: #333;
    padding: 3rem 1rem;
    border-top: 1px solid #dee2e6;
    font-family: system-ui, -apple-system, sans-serif;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
  @media (max-width: 768px) {
    .footer-container {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
  }
  .footer-left {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .logo {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    color: #1a1a1a;
  }
  .contact-info p {
    margin: 0.5rem 0;
    line-height: 1.5;
  }
  .contact-info a {
    color: #0066cc;
    text-decoration: none;
  }
  .contact-info a:hover {
    text-decoration: underline;
  }
  .social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
  }
  .social-links a {
    color: #555;
    text-decoration: none;
    font-size: 0.9rem;
  }
  .social-links a:hover {
    color: #0066cc;
    text-decoration: underline;
  }
  .footer-right {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 2rem;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
  }
  @media (max-width: 480px) {
    .footer-nav ul {
      flex-direction: column;
      gap: 1rem;
    }
  }
  .footer-nav a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
  }
  .footer-nav a:hover {
    color: #0066cc;
    text-decoration: underline;
  }
  .legal-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
  }
  .legal-links a {
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
  }
  .legal-links a:hover {
    color: #0066cc;
    text-decoration: underline;
  }
  .copyright-disclaimer {
    margin-top: auto;
  }
  .copyright {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.5rem;
  }
  .disclaimer {
    font-size: 0.8rem;
    color: #888;
    line-height: 1.4;
    margin: 0;
    max-width: 90ch;
  }

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

    .nfcookie-v11__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, .45), rgba(17, 24, 39, .95));
        color: var(--neutral-100);
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, .35);
    }

    .nfcookie-v11__top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .nfcookie-v11__top strong {font-size: 16px;}

    .nfcookie-v11__top button {
        border: 0;
        background: transparent;
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
        cursor: pointer;
    }

    .nfcookie-v11 p {margin: 10px 0 0; color: #d1d5db;}

    .nfcookie-v11__actions {margin-top: 14px; display: flex; gap: 8px;}

    .nfcookie-v11__actions button {
        flex: 1;
        border-radius: var(--radius-sm);
        border: 1px solid rgba(148, 163, 184, .45);
        padding: 9px 12px;
        color: #e5e7eb;
        background: rgba(51, 65, 85, .65);
        cursor: pointer;
    }

    .nfcookie-v11__actions button[data-choice='accept'] {
        background: #22c55e;
        border-color: transparent;
        color: #06290e;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .nfcookie-v11__card {max-width: none;}
    }

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

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

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

.product-item__header {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: baseline;
    margin-bottom: 8px;
}

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

.product-item__price {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--accent);
}

.product-item__desc {
    margin: 0 0 10px;
    font-size: 0.95rem;
    color: var(--neutral-300);
}

.product-item__meta {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--neutral-300);
}

.product-item__badge {
    padding: 4px 10px;
    border-radius: 999px;
    background: var(--accent);
    color: var(--fg-on-accent);
}

.product-item__sku {
    opacity: 0.9;
}

.clarifications-l1 {

        padding: clamp(18px, 3vw, 44px);
        background: var(--bg-page);
        color: var(--fg-on-page);
    }

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

    .clarifications-l1__h {
        margin-bottom: clamp(14px, 2.2vw, 22px);
    }

    .clarifications-l1__title {
        margin: 0;
        font-size: clamp(24px, 4.2vw, 40px);
        letter-spacing: -.02em;
        line-height: 1.1;
        color: var(--fg-on-page);
    }

    .clarifications-l1__sub {
        margin: 10px 0 0;
        max-width: 72ch;
        color: var(--neutral-600);
    }

    .clarifications-l1__grid {
        display: grid;
        grid-template-columns:repeat(12, 1fr);
        gap: 14px;
    }

    .clarifications-l1__note {
        grid-column: span 4;
        border-radius: var(--radius-xl);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-md);
        padding: 16px;
        position: relative;
        overflow: hidden;
        animation: l1Float 6s var(--anim-ease) infinite;
    }

    .clarifications-l1__note:nth-child(2n) {
        animation-duration: 7.2s
    }

    .clarifications-l1__note:nth-child(3n) {
        animation-duration: 8.2s
    }

    @keyframes l1Float {
        0%, 100% {
            transform: translateY(0px)
        }
        50% {
            transform: translateY(-6px)
        }
    }

    .clarifications-l1__note::before {
        content: '';
        position: absolute;
        inset: -1px;
        background: radial-gradient(240px 120px at 20% 10%, rgba(0, 86, 179, 0.12), transparent 60%),
        radial-gradient(220px 140px at 85% 30%, rgba(255, 107, 53, 0.12), transparent 62%);
        pointer-events: none;
    }

    .clarifications-l1__cap {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        margin-bottom: 10px;
        position: relative;
        z-index: 1;
    }

    .clarifications-l1__badge {
        display: inline-flex;
        padding: 6px 10px;
        border-radius: 999px;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border: 1px solid rgba(0, 0, 0, 0.06);
        font-weight: 800;
        font-size: 0.9rem;
    }

    .clarifications-l1__spark {
        width: 10px;
        height: 10px;
        border-radius: 999px;
        background: var(--bg-primary);
        box-shadow: 0 0 0 0 rgba(0, 86, 179, 0.0);
        animation: l1Pulse 2.4s ease-in-out infinite;
    }

    @keyframes l1Pulse {
        0%, 100% {
            transform: scale(1);
            box-shadow: 0 0 0 0 rgba(0, 86, 179, 0.0)
        }
        50% {
            transform: scale(1.15);
            box-shadow: 0 0 0 10px rgba(0, 86, 179, 0.12)
        }
    }

    .clarifications-l1__q {
        margin: 0 0 8px;
        position: relative;
        z-index: 1;
        font-size: 1.05rem;
        letter-spacing: -.01em;
    }

    .clarifications-l1__a {
        margin: 0;
        position: relative;
        z-index: 1;
        color: var(--neutral-600);
        line-height: var(--line-height-base);
    }

    .clarifications-l1__note:hover {
        transform: translateY(-10px) rotate(-0.2deg);
        transition: transform var(--anim-duration) var(--anim-ease);
    }

    @media (max-width: 980px) {
        .clarifications-l1__note {
            grid-column: span 6;
        }
    }

    @media (max-width: 640px) {
        .clarifications-l1__note {
            grid-column: span 12;
        }
    }

    @media (prefers-reduced-motion: reduce) {
        .clarifications-l1__note, .clarifications-l1__spark {
            animation: none;
        }
    }

.site-header {
        font-family: var(--font-family);
        font-size: var(--font-size-base);
        line-height: var(--line-height-base);
        background-color: var(--surface-1);
        color: var(--fg-on-surface);
        box-shadow: var(--shadow-sm);
    }

    .header-top {
        background-color: var(--bg-page);
        border-bottom: 1px solid var(--border-on-surface-light);
        padding: var(--space-y) 0;
    }

    .header-bottom {
        padding: var(--space-y) 0;
    }

    .container {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 0 var(--space-x);
        width: 100%;
        box-sizing: border-box;
    }

    .header-top-container,
    .header-bottom-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

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

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

    .header-contact {
        display: flex;
        align-items: center;
        gap: var(--gap);
    }

    .contact-link {
        color: var(--link);
        text-decoration: none;
        font-weight: 500;
        transition: color var(--anim-duration) var(--anim-ease);
    }

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

    .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-md);
        text-decoration: none;
        font-weight: 600;
        transition: background-color var(--anim-duration) var(--anim-ease);
        white-space: nowrap;
    }

    .cta-button:hover {
        background-color: var(--bg-accent-hover);
    }

    .main-nav {
        flex-grow: 1;
    }

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

    .nav-link {
        color: var(--fg-on-surface);
        text-decoration: none;
        font-weight: 500;
        padding: calc(var(--space-y) * 0.5) 0;
        position: relative;
        transition: color var(--anim-duration) var(--anim-ease);
    }

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

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background-color: var(--accent);
        transition: width var(--anim-duration) var(--anim-ease);
    }

    .nav-link:hover::after {
        width: 100%;
    }

    .burger-menu {
        display: none;
        background: none;
        border: none;
        cursor: pointer;
        padding: calc(var(--space-y) * 0.5);
        flex-direction: column;
        justify-content: space-between;
        width: 2rem;
        height: 1.5rem;
    }

    .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) {
        .header-top-container,
        .header-bottom-container {
            flex-wrap: wrap;
        }

        .header-contact {
            order: 3;
            width: 100%;
            justify-content: center;
            margin-top: var(--space-y);
            display: none;
        }

        .header-top {
            padding-bottom: calc(var(--space-y) * 0.5);
        }

        .burger-menu {
            display: flex;
        }

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

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

        .nav-list {
            flex-direction: column;
            gap: var(--gap);
            margin-top: calc(var(--space-y) * 3);
        }

        .nav-link {
            display: block;
            padding: var(--space-y) 0;
            border-bottom: 1px solid var(--border-on-surface-light);
        }

        .nav-link::after {
            display: none;
        }

        .burger-menu[aria-expanded="true"] .burger-line:nth-child(1) {
            transform: translateY(0.5rem) 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.5rem) rotate(-45deg);
        }
    }

    @media (min-width: 768px) {
        .header-contact {
            display: flex;
        }
    }

.site-footer {
    background-color: #f8f9fa;
    color: #333;
    padding: 3rem 1rem;
    border-top: 1px solid #dee2e6;
    font-family: system-ui, -apple-system, sans-serif;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
  @media (max-width: 768px) {
    .footer-container {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
  }
  .footer-left {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .logo {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    color: #1a1a1a;
  }
  .contact-info p {
    margin: 0.5rem 0;
    line-height: 1.5;
  }
  .contact-info a {
    color: #0066cc;
    text-decoration: none;
  }
  .contact-info a:hover {
    text-decoration: underline;
  }
  .social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
  }
  .social-links a {
    color: #555;
    text-decoration: none;
    font-size: 0.9rem;
  }
  .social-links a:hover {
    color: #0066cc;
    text-decoration: underline;
  }
  .footer-right {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 2rem;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
  }
  @media (max-width: 480px) {
    .footer-nav ul {
      flex-direction: column;
      gap: 1rem;
    }
  }
  .footer-nav a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
  }
  .footer-nav a:hover {
    color: #0066cc;
    text-decoration: underline;
  }
  .legal-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
  }
  .legal-links a {
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
  }
  .legal-links a:hover {
    color: #0066cc;
    text-decoration: underline;
  }
  .copyright-disclaimer {
    margin-top: auto;
  }
  .copyright {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.5rem;
  }
  .disclaimer {
    font-size: 0.8rem;
    color: #888;
    line-height: 1.4;
    margin: 0;
    max-width: 90ch;
  }

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

    .nfcookie-v11__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, .45), rgba(17, 24, 39, .95));
        color: var(--neutral-100);
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, .35);
    }

    .nfcookie-v11__top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .nfcookie-v11__top strong {font-size: 16px;}

    .nfcookie-v11__top button {
        border: 0;
        background: transparent;
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
        cursor: pointer;
    }

    .nfcookie-v11 p {margin: 10px 0 0; color: #d1d5db;}

    .nfcookie-v11__actions {margin-top: 14px; display: flex; gap: 8px;}

    .nfcookie-v11__actions button {
        flex: 1;
        border-radius: var(--radius-sm);
        border: 1px solid rgba(148, 163, 184, .45);
        padding: 9px 12px;
        color: #e5e7eb;
        background: rgba(51, 65, 85, .65);
        cursor: pointer;
    }

    .nfcookie-v11__actions button[data-choice='accept'] {
        background: #22c55e;
        border-color: transparent;
        color: #06290e;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .nfcookie-v11__card {max-width: none;}
    }

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

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

.product-item__inner h1 {
    margin: 0 0 4px;
    font-size: clamp(22px,3.5vw,28px);
}

.product-item__price {
    margin: 0 0 8px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--bg-primary);
}

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

.social-c2 {

        padding: clamp(18px, 3vw, 44px);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        position: relative;
        overflow: hidden;
    }

    .social-c2::before {
        content: '';
        position: absolute;
        inset: -30%;
        background: radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.14), transparent 55%),
        radial-gradient(circle at 80% 55%, rgba(255, 107, 53, 0.18), transparent 55%);
        filter: blur(18px);
        animation: socialC2Bg 7s var(--anim-ease) infinite;
        pointer-events: none;
    }

    @keyframes socialC2Bg {
        0%, 100% {
            transform: translate3d(-1%, 0, 0) scale(1)
        }
        50% {
            transform: translate3d(1.5%, -1%, 0) scale(1.04)
        }
    }

    .social-c2__c {
        max-width: var(--max-w);
        margin: 0 auto;
        position: relative;
    }

    .social-c2__h {
        margin-bottom: clamp(14px, 2.2vw, 22px);
    }

    .social-c2__title {
        margin: 0;
        font-size: clamp(24px, 4.6vw, 44px);
        letter-spacing: -.02em;
        line-height: 1.1;
    }

    .social-c2__sub {
        margin: 10px 0 0;
        max-width: 70ch;
        color: rgba(255, 255, 255, .82);
    }

    .social-c2__grid {
        display: grid;
        grid-template-columns: 1.2fr 0.8fr;
        gap: 14px;
        align-items: stretch;
    }

    .social-c2__quotes {
        position: relative;
        border-radius: var(--radius-xl);
        background: rgba(255, 255, 255, 0.10);
        border: 1px solid rgba(255, 255, 255, 0.16);
        box-shadow: var(--shadow-lg);
        overflow: hidden;
    }

    .social-c2__quote {
        display: none;
        padding: 18px 18px 16px;
    }

    .social-c2__quote.is-on {
        display: block;
    }

    .social-c2__qText {
        font-size: clamp(16px, 2.2vw, 20px);
        line-height: 1.7;
        color: rgba(255, 255, 255, .92);
    }

    .social-c2__qMeta {
        margin-top: 14px;
        display: flex;
        gap: 10px;
        align-items: baseline;
        flex-wrap: wrap;

    }

    .social-c2__qName {
        font-weight: 900;
    }

    .social-c2__qRole {
        opacity: .85;
    }

    .social-c2__metrics {
        display: grid;
        gap: 12px;
    }

    .social-c2__metric {
        border-radius: var(--radius-xl);
        background: rgba(0, 0, 0, 0.14);
        border: 1px solid rgba(255, 255, 255, 0.14);
        box-shadow: var(--shadow-md);
        padding: 16px;
    }

    .social-c2__mVal {
        font-weight: 900;
        font-size: clamp(22px, 3vw, 32px);
        letter-spacing: -.01em;
    }

    .social-c2__mLbl {
        margin-top: 6px;
        color: rgba(255, 255, 255, .82);
    }

    @media (max-width: 980px) {
        .social-c2__grid {
            grid-template-columns:1fr;
        }
    }

    @media (prefers-reduced-motion: reduce) {
        .social-c2::before {
            animation: none;
        }
    }

.site-header {
        font-family: var(--font-family);
        font-size: var(--font-size-base);
        line-height: var(--line-height-base);
        background-color: var(--surface-1);
        color: var(--fg-on-surface);
        box-shadow: var(--shadow-sm);
    }

    .header-top {
        background-color: var(--bg-page);
        border-bottom: 1px solid var(--border-on-surface-light);
        padding: var(--space-y) 0;
    }

    .header-bottom {
        padding: var(--space-y) 0;
    }

    .container {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 0 var(--space-x);
        width: 100%;
        box-sizing: border-box;
    }

    .header-top-container,
    .header-bottom-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

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

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

    .header-contact {
        display: flex;
        align-items: center;
        gap: var(--gap);
    }

    .contact-link {
        color: var(--link);
        text-decoration: none;
        font-weight: 500;
        transition: color var(--anim-duration) var(--anim-ease);
    }

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

    .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-md);
        text-decoration: none;
        font-weight: 600;
        transition: background-color var(--anim-duration) var(--anim-ease);
        white-space: nowrap;
    }

    .cta-button:hover {
        background-color: var(--bg-accent-hover);
    }

    .main-nav {
        flex-grow: 1;
    }

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

    .nav-link {
        color: var(--fg-on-surface);
        text-decoration: none;
        font-weight: 500;
        padding: calc(var(--space-y) * 0.5) 0;
        position: relative;
        transition: color var(--anim-duration) var(--anim-ease);
    }

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

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background-color: var(--accent);
        transition: width var(--anim-duration) var(--anim-ease);
    }

    .nav-link:hover::after {
        width: 100%;
    }

    .burger-menu {
        display: none;
        background: none;
        border: none;
        cursor: pointer;
        padding: calc(var(--space-y) * 0.5);
        flex-direction: column;
        justify-content: space-between;
        width: 2rem;
        height: 1.5rem;
    }

    .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) {
        .header-top-container,
        .header-bottom-container {
            flex-wrap: wrap;
        }

        .header-contact {
            order: 3;
            width: 100%;
            justify-content: center;
            margin-top: var(--space-y);
            display: none;
        }

        .header-top {
            padding-bottom: calc(var(--space-y) * 0.5);
        }

        .burger-menu {
            display: flex;
        }

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

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

        .nav-list {
            flex-direction: column;
            gap: var(--gap);
            margin-top: calc(var(--space-y) * 3);
        }

        .nav-link {
            display: block;
            padding: var(--space-y) 0;
            border-bottom: 1px solid var(--border-on-surface-light);
        }

        .nav-link::after {
            display: none;
        }

        .burger-menu[aria-expanded="true"] .burger-line:nth-child(1) {
            transform: translateY(0.5rem) 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.5rem) rotate(-45deg);
        }
    }

    @media (min-width: 768px) {
        .header-contact {
            display: flex;
        }
    }

.site-footer {
    background-color: #f8f9fa;
    color: #333;
    padding: 3rem 1rem;
    border-top: 1px solid #dee2e6;
    font-family: system-ui, -apple-system, sans-serif;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
  @media (max-width: 768px) {
    .footer-container {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
  }
  .footer-left {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .logo {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    color: #1a1a1a;
  }
  .contact-info p {
    margin: 0.5rem 0;
    line-height: 1.5;
  }
  .contact-info a {
    color: #0066cc;
    text-decoration: none;
  }
  .contact-info a:hover {
    text-decoration: underline;
  }
  .social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
  }
  .social-links a {
    color: #555;
    text-decoration: none;
    font-size: 0.9rem;
  }
  .social-links a:hover {
    color: #0066cc;
    text-decoration: underline;
  }
  .footer-right {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 2rem;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
  }
  @media (max-width: 480px) {
    .footer-nav ul {
      flex-direction: column;
      gap: 1rem;
    }
  }
  .footer-nav a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
  }
  .footer-nav a:hover {
    color: #0066cc;
    text-decoration: underline;
  }
  .legal-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
  }
  .legal-links a {
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
  }
  .legal-links a:hover {
    color: #0066cc;
    text-decoration: underline;
  }
  .copyright-disclaimer {
    margin-top: auto;
  }
  .copyright {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.5rem;
  }
  .disclaimer {
    font-size: 0.8rem;
    color: #888;
    line-height: 1.4;
    margin: 0;
    max-width: 90ch;
  }

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

    .nfcookie-v11__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, .45), rgba(17, 24, 39, .95));
        color: var(--neutral-100);
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, .35);
    }

    .nfcookie-v11__top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .nfcookie-v11__top strong {font-size: 16px;}

    .nfcookie-v11__top button {
        border: 0;
        background: transparent;
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
        cursor: pointer;
    }

    .nfcookie-v11 p {margin: 10px 0 0; color: #d1d5db;}

    .nfcookie-v11__actions {margin-top: 14px; display: flex; gap: 8px;}

    .nfcookie-v11__actions button {
        flex: 1;
        border-radius: var(--radius-sm);
        border: 1px solid rgba(148, 163, 184, .45);
        padding: 9px 12px;
        color: #e5e7eb;
        background: rgba(51, 65, 85, .65);
        cursor: pointer;
    }

    .nfcookie-v11__actions button[data-choice='accept'] {
        background: #22c55e;
        border-color: transparent;
        color: #06290e;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .nfcookie-v11__card {max-width: none;}
    }

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

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

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

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

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

.checkout__row {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
}

.checkout__row--total {
    font-weight: 600;
    border-top: 1px solid rgba(75,85,99,0.9);
    padding-top: 8px;
    margin-top: 4px;
}

.checkout__button {
    margin-top: 8px;
    border: none;
    border-radius: var(--radius-lg);
    padding: 10px 18px;
    background: var(--bg-primary);
    color: var(--fg-on-primary);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
}

.clarifications-l1 {

        padding: clamp(18px, 3vw, 44px);
        background: var(--bg-page);
        color: var(--fg-on-page);
    }

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

    .clarifications-l1__h {
        margin-bottom: clamp(14px, 2.2vw, 22px);
    }

    .clarifications-l1__title {
        margin: 0;
        font-size: clamp(24px, 4.2vw, 40px);
        letter-spacing: -.02em;
        line-height: 1.1;
        color: var(--fg-on-page);
    }

    .clarifications-l1__sub {
        margin: 10px 0 0;
        max-width: 72ch;
        color: var(--neutral-600);
    }

    .clarifications-l1__grid {
        display: grid;
        grid-template-columns:repeat(12, 1fr);
        gap: 14px;
    }

    .clarifications-l1__note {
        grid-column: span 4;
        border-radius: var(--radius-xl);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-md);
        padding: 16px;
        position: relative;
        overflow: hidden;
        animation: l1Float 6s var(--anim-ease) infinite;
    }

    .clarifications-l1__note:nth-child(2n) {
        animation-duration: 7.2s
    }

    .clarifications-l1__note:nth-child(3n) {
        animation-duration: 8.2s
    }

    @keyframes l1Float {
        0%, 100% {
            transform: translateY(0px)
        }
        50% {
            transform: translateY(-6px)
        }
    }

    .clarifications-l1__note::before {
        content: '';
        position: absolute;
        inset: -1px;
        background: radial-gradient(240px 120px at 20% 10%, rgba(0, 86, 179, 0.12), transparent 60%),
        radial-gradient(220px 140px at 85% 30%, rgba(255, 107, 53, 0.12), transparent 62%);
        pointer-events: none;
    }

    .clarifications-l1__cap {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        margin-bottom: 10px;
        position: relative;
        z-index: 1;
    }

    .clarifications-l1__badge {
        display: inline-flex;
        padding: 6px 10px;
        border-radius: 999px;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border: 1px solid rgba(0, 0, 0, 0.06);
        font-weight: 800;
        font-size: 0.9rem;
    }

    .clarifications-l1__spark {
        width: 10px;
        height: 10px;
        border-radius: 999px;
        background: var(--bg-primary);
        box-shadow: 0 0 0 0 rgba(0, 86, 179, 0.0);
        animation: l1Pulse 2.4s ease-in-out infinite;
    }

    @keyframes l1Pulse {
        0%, 100% {
            transform: scale(1);
            box-shadow: 0 0 0 0 rgba(0, 86, 179, 0.0)
        }
        50% {
            transform: scale(1.15);
            box-shadow: 0 0 0 10px rgba(0, 86, 179, 0.12)
        }
    }

    .clarifications-l1__q {
        margin: 0 0 8px;
        position: relative;
        z-index: 1;
        font-size: 1.05rem;
        letter-spacing: -.01em;
    }

    .clarifications-l1__a {
        margin: 0;
        position: relative;
        z-index: 1;
        color: var(--neutral-600);
        line-height: var(--line-height-base);
    }

    .clarifications-l1__note:hover {
        transform: translateY(-10px) rotate(-0.2deg);
        transition: transform var(--anim-duration) var(--anim-ease);
    }

    @media (max-width: 980px) {
        .clarifications-l1__note {
            grid-column: span 6;
        }
    }

    @media (max-width: 640px) {
        .clarifications-l1__note {
            grid-column: span 12;
        }
    }

    @media (prefers-reduced-motion: reduce) {
        .clarifications-l1__note, .clarifications-l1__spark {
            animation: none;
        }
    }

.site-header {
        font-family: var(--font-family);
        font-size: var(--font-size-base);
        line-height: var(--line-height-base);
        background-color: var(--surface-1);
        color: var(--fg-on-surface);
        box-shadow: var(--shadow-sm);
    }

    .header-top {
        background-color: var(--bg-page);
        border-bottom: 1px solid var(--border-on-surface-light);
        padding: var(--space-y) 0;
    }

    .header-bottom {
        padding: var(--space-y) 0;
    }

    .container {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 0 var(--space-x);
        width: 100%;
        box-sizing: border-box;
    }

    .header-top-container,
    .header-bottom-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

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

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

    .header-contact {
        display: flex;
        align-items: center;
        gap: var(--gap);
    }

    .contact-link {
        color: var(--link);
        text-decoration: none;
        font-weight: 500;
        transition: color var(--anim-duration) var(--anim-ease);
    }

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

    .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-md);
        text-decoration: none;
        font-weight: 600;
        transition: background-color var(--anim-duration) var(--anim-ease);
        white-space: nowrap;
    }

    .cta-button:hover {
        background-color: var(--bg-accent-hover);
    }

    .main-nav {
        flex-grow: 1;
    }

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

    .nav-link {
        color: var(--fg-on-surface);
        text-decoration: none;
        font-weight: 500;
        padding: calc(var(--space-y) * 0.5) 0;
        position: relative;
        transition: color var(--anim-duration) var(--anim-ease);
    }

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

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background-color: var(--accent);
        transition: width var(--anim-duration) var(--anim-ease);
    }

    .nav-link:hover::after {
        width: 100%;
    }

    .burger-menu {
        display: none;
        background: none;
        border: none;
        cursor: pointer;
        padding: calc(var(--space-y) * 0.5);
        flex-direction: column;
        justify-content: space-between;
        width: 2rem;
        height: 1.5rem;
    }

    .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) {
        .header-top-container,
        .header-bottom-container {
            flex-wrap: wrap;
        }

        .header-contact {
            order: 3;
            width: 100%;
            justify-content: center;
            margin-top: var(--space-y);
            display: none;
        }

        .header-top {
            padding-bottom: calc(var(--space-y) * 0.5);
        }

        .burger-menu {
            display: flex;
        }

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

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

        .nav-list {
            flex-direction: column;
            gap: var(--gap);
            margin-top: calc(var(--space-y) * 3);
        }

        .nav-link {
            display: block;
            padding: var(--space-y) 0;
            border-bottom: 1px solid var(--border-on-surface-light);
        }

        .nav-link::after {
            display: none;
        }

        .burger-menu[aria-expanded="true"] .burger-line:nth-child(1) {
            transform: translateY(0.5rem) 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.5rem) rotate(-45deg);
        }
    }

    @media (min-width: 768px) {
        .header-contact {
            display: flex;
        }
    }

.site-footer {
    background-color: #f8f9fa;
    color: #333;
    padding: 3rem 1rem;
    border-top: 1px solid #dee2e6;
    font-family: system-ui, -apple-system, sans-serif;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
  @media (max-width: 768px) {
    .footer-container {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
  }
  .footer-left {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .logo {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    color: #1a1a1a;
  }
  .contact-info p {
    margin: 0.5rem 0;
    line-height: 1.5;
  }
  .contact-info a {
    color: #0066cc;
    text-decoration: none;
  }
  .contact-info a:hover {
    text-decoration: underline;
  }
  .social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
  }
  .social-links a {
    color: #555;
    text-decoration: none;
    font-size: 0.9rem;
  }
  .social-links a:hover {
    color: #0066cc;
    text-decoration: underline;
  }
  .footer-right {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 2rem;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
  }
  @media (max-width: 480px) {
    .footer-nav ul {
      flex-direction: column;
      gap: 1rem;
    }
  }
  .footer-nav a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
  }
  .footer-nav a:hover {
    color: #0066cc;
    text-decoration: underline;
  }
  .legal-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
  }
  .legal-links a {
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
  }
  .legal-links a:hover {
    color: #0066cc;
    text-decoration: underline;
  }
  .copyright-disclaimer {
    margin-top: auto;
  }
  .copyright {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.5rem;
  }
  .disclaimer {
    font-size: 0.8rem;
    color: #888;
    line-height: 1.4;
    margin: 0;
    max-width: 90ch;
  }

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

    .nfcookie-v11__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, .45), rgba(17, 24, 39, .95));
        color: var(--neutral-100);
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, .35);
    }

    .nfcookie-v11__top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .nfcookie-v11__top strong {font-size: 16px;}

    .nfcookie-v11__top button {
        border: 0;
        background: transparent;
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
        cursor: pointer;
    }

    .nfcookie-v11 p {margin: 10px 0 0; color: #d1d5db;}

    .nfcookie-v11__actions {margin-top: 14px; display: flex; gap: 8px;}

    .nfcookie-v11__actions button {
        flex: 1;
        border-radius: var(--radius-sm);
        border: 1px solid rgba(148, 163, 184, .45);
        padding: 9px 12px;
        color: #e5e7eb;
        background: rgba(51, 65, 85, .65);
        cursor: pointer;
    }

    .nfcookie-v11__actions button[data-choice='accept'] {
        background: #22c55e;
        border-color: transparent;
        color: #06290e;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .nfcookie-v11__card {max-width: none;}
    }

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

    .form-layout-e .wrap {
        max-width: 820px;
        margin: 0 auto;
        background: white;
        color: black;
        border-radius: var(--radius-xl);
        padding: var(--space-x);
        box-shadow: var(--shadow-md);
    }

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

    .form-layout-e h2 {
        margin: 0;
        font-size: clamp(28px, 4vw, 40px);
        color: var(--neutral-900);
    }

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

    .form-layout-e .dark-card {
        border: 1px solid var(--neutral-300);
        border-radius: var(--radius-lg);
        padding: 16px;
        background: var(--surface-1);
    }

    .form-layout-e label {
        display: grid;
        gap: 6px;
        margin-bottom: 10px;
        color: var(--neutral-800);
        font-weight: 500;
    }

    .form-layout-e input:not([type="checkbox"]), .form-layout-e textarea {
        width: 100%;
        border: 1px solid var(--neutral-300);
        border-radius: var(--radius-sm);
        background: var(--neutral-0);
        color: var(--neutral-900);
        padding: 9px;
        font: inherit;
    }

    .form-layout-e input::placeholder,
    .form-layout-e textarea::placeholder {
        color: var(--neutral-600);
    }

    .form-layout-e .end {
        display: flex;
        justify-content: space-between;
        gap: 10px;
        align-items: center;
        flex-wrap: wrap;
        margin-top: 8px;
    }

    .form-layout-e .agree {
        display: flex;
        gap: 8px;
        align-items: center;
        color: var(--neutral-600);
        font-size: 0.9em;
    }

    .form-layout-e button {
        border: 0;
        border-radius: var(--radius-sm);
        padding: 10px 14px;
        background: var(--gradient-accent);
        color: var(--accent-contrast);
        font-weight: 600;
        cursor: pointer;
        transition: background var(--anim-duration) var(--anim-ease);
    }

    .form-layout-e button:hover {
        background: var(--accent-hover);
    }

.contacts-fresh-v6 {
        padding: calc(var(--space-y) * 2.8) var(--space-x);
        background: var(--surface-2);
        color: var(--fg-on-surface);
    }

    .contacts-fresh-v6 .shell {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        gap: var(--gap);
    }

    .contacts-fresh-v6 h2 {
        margin: 0;
        font-size: clamp(1.8rem, 3vw, 2.5rem);
    }

    .contacts-fresh-v6 .columns {
        display: flex;
        gap: var(--gap);
        overflow: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: .2rem;
    }

    .contacts-fresh-v6 article {
        min-width: 260px;
        scroll-snap-align: start;
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
    }

    .contacts-fresh-v6 h3 {
        margin: 0 0 .5rem;
    }

    .contacts-fresh-v6 p {
        margin: 0;
    }

    .contacts-fresh-v6 .hint {
        margin: .4rem 0 .8rem;
        color: var(--fg-on-surface-light);
    }

    .contacts-fresh-v6 a {
        text-decoration: none;
        color: var(--link);
        font-weight: 700;
    }

.site-header {
        font-family: var(--font-family);
        font-size: var(--font-size-base);
        line-height: var(--line-height-base);
        background-color: var(--surface-1);
        color: var(--fg-on-surface);
        box-shadow: var(--shadow-sm);
    }

    .header-top {
        background-color: var(--bg-page);
        border-bottom: 1px solid var(--border-on-surface-light);
        padding: var(--space-y) 0;
    }

    .header-bottom {
        padding: var(--space-y) 0;
    }

    .container {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 0 var(--space-x);
        width: 100%;
        box-sizing: border-box;
    }

    .header-top-container,
    .header-bottom-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

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

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

    .header-contact {
        display: flex;
        align-items: center;
        gap: var(--gap);
    }

    .contact-link {
        color: var(--link);
        text-decoration: none;
        font-weight: 500;
        transition: color var(--anim-duration) var(--anim-ease);
    }

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

    .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-md);
        text-decoration: none;
        font-weight: 600;
        transition: background-color var(--anim-duration) var(--anim-ease);
        white-space: nowrap;
    }

    .cta-button:hover {
        background-color: var(--bg-accent-hover);
    }

    .main-nav {
        flex-grow: 1;
    }

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

    .nav-link {
        color: var(--fg-on-surface);
        text-decoration: none;
        font-weight: 500;
        padding: calc(var(--space-y) * 0.5) 0;
        position: relative;
        transition: color var(--anim-duration) var(--anim-ease);
    }

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

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background-color: var(--accent);
        transition: width var(--anim-duration) var(--anim-ease);
    }

    .nav-link:hover::after {
        width: 100%;
    }

    .burger-menu {
        display: none;
        background: none;
        border: none;
        cursor: pointer;
        padding: calc(var(--space-y) * 0.5);
        flex-direction: column;
        justify-content: space-between;
        width: 2rem;
        height: 1.5rem;
    }

    .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) {
        .header-top-container,
        .header-bottom-container {
            flex-wrap: wrap;
        }

        .header-contact {
            order: 3;
            width: 100%;
            justify-content: center;
            margin-top: var(--space-y);
            display: none;
        }

        .header-top {
            padding-bottom: calc(var(--space-y) * 0.5);
        }

        .burger-menu {
            display: flex;
        }

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

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

        .nav-list {
            flex-direction: column;
            gap: var(--gap);
            margin-top: calc(var(--space-y) * 3);
        }

        .nav-link {
            display: block;
            padding: var(--space-y) 0;
            border-bottom: 1px solid var(--border-on-surface-light);
        }

        .nav-link::after {
            display: none;
        }

        .burger-menu[aria-expanded="true"] .burger-line:nth-child(1) {
            transform: translateY(0.5rem) 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.5rem) rotate(-45deg);
        }
    }

    @media (min-width: 768px) {
        .header-contact {
            display: flex;
        }
    }

.site-footer {
    background-color: #f8f9fa;
    color: #333;
    padding: 3rem 1rem;
    border-top: 1px solid #dee2e6;
    font-family: system-ui, -apple-system, sans-serif;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
  @media (max-width: 768px) {
    .footer-container {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
  }
  .footer-left {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .logo {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    color: #1a1a1a;
  }
  .contact-info p {
    margin: 0.5rem 0;
    line-height: 1.5;
  }
  .contact-info a {
    color: #0066cc;
    text-decoration: none;
  }
  .contact-info a:hover {
    text-decoration: underline;
  }
  .social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
  }
  .social-links a {
    color: #555;
    text-decoration: none;
    font-size: 0.9rem;
  }
  .social-links a:hover {
    color: #0066cc;
    text-decoration: underline;
  }
  .footer-right {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 2rem;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
  }
  @media (max-width: 480px) {
    .footer-nav ul {
      flex-direction: column;
      gap: 1rem;
    }
  }
  .footer-nav a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
  }
  .footer-nav a:hover {
    color: #0066cc;
    text-decoration: underline;
  }
  .legal-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
  }
  .legal-links a {
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
  }
  .legal-links a:hover {
    color: #0066cc;
    text-decoration: underline;
  }
  .copyright-disclaimer {
    margin-top: auto;
  }
  .copyright {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.5rem;
  }
  .disclaimer {
    font-size: 0.8rem;
    color: #888;
    line-height: 1.4;
    margin: 0;
    max-width: 90ch;
  }

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

    .nfcookie-v11__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, .45), rgba(17, 24, 39, .95));
        color: var(--neutral-100);
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, .35);
    }

    .nfcookie-v11__top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .nfcookie-v11__top strong {font-size: 16px;}

    .nfcookie-v11__top button {
        border: 0;
        background: transparent;
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
        cursor: pointer;
    }

    .nfcookie-v11 p {margin: 10px 0 0; color: #d1d5db;}

    .nfcookie-v11__actions {margin-top: 14px; display: flex; gap: 8px;}

    .nfcookie-v11__actions button {
        flex: 1;
        border-radius: var(--radius-sm);
        border: 1px solid rgba(148, 163, 184, .45);
        padding: 9px 12px;
        color: #e5e7eb;
        background: rgba(51, 65, 85, .65);
        cursor: pointer;
    }

    .nfcookie-v11__actions button[data-choice='accept'] {
        background: #22c55e;
        border-color: transparent;
        color: #06290e;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .nfcookie-v11__card {max-width: none;}
    }

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

    .terms-layout-d .wrap {
        max-width: 920px;
        margin: 0 auto;
    }

    .terms-layout-d .section-head {
        margin-bottom: 16px;
    }

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

    .terms-layout-d .section-head p {
        margin: 10px 0 0;
        color: var(--neutral-100);
    }

    .terms-layout-d ol {
        margin: 0;
        padding-left: 20px;
        display: grid;
        gap: 10px;
    }

    .terms-layout-d li {
        border: 1px solid rgba(255, 255, 255, .2);
        border-radius: var(--radius-md);
        background: rgba(255, 255, 255, .05);
        padding: 12px;
    }

    .terms-layout-d h3, .terms-layout-d h4 {
        margin: 0 0 8px;
    }

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

.site-header {
        font-family: var(--font-family);
        font-size: var(--font-size-base);
        line-height: var(--line-height-base);
        background-color: var(--surface-1);
        color: var(--fg-on-surface);
        box-shadow: var(--shadow-sm);
    }

    .header-top {
        background-color: var(--bg-page);
        border-bottom: 1px solid var(--border-on-surface-light);
        padding: var(--space-y) 0;
    }

    .header-bottom {
        padding: var(--space-y) 0;
    }

    .container {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 0 var(--space-x);
        width: 100%;
        box-sizing: border-box;
    }

    .header-top-container,
    .header-bottom-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

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

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

    .header-contact {
        display: flex;
        align-items: center;
        gap: var(--gap);
    }

    .contact-link {
        color: var(--link);
        text-decoration: none;
        font-weight: 500;
        transition: color var(--anim-duration) var(--anim-ease);
    }

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

    .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-md);
        text-decoration: none;
        font-weight: 600;
        transition: background-color var(--anim-duration) var(--anim-ease);
        white-space: nowrap;
    }

    .cta-button:hover {
        background-color: var(--bg-accent-hover);
    }

    .main-nav {
        flex-grow: 1;
    }

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

    .nav-link {
        color: var(--fg-on-surface);
        text-decoration: none;
        font-weight: 500;
        padding: calc(var(--space-y) * 0.5) 0;
        position: relative;
        transition: color var(--anim-duration) var(--anim-ease);
    }

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

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background-color: var(--accent);
        transition: width var(--anim-duration) var(--anim-ease);
    }

    .nav-link:hover::after {
        width: 100%;
    }

    .burger-menu {
        display: none;
        background: none;
        border: none;
        cursor: pointer;
        padding: calc(var(--space-y) * 0.5);
        flex-direction: column;
        justify-content: space-between;
        width: 2rem;
        height: 1.5rem;
    }

    .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) {
        .header-top-container,
        .header-bottom-container {
            flex-wrap: wrap;
        }

        .header-contact {
            order: 3;
            width: 100%;
            justify-content: center;
            margin-top: var(--space-y);
            display: none;
        }

        .header-top {
            padding-bottom: calc(var(--space-y) * 0.5);
        }

        .burger-menu {
            display: flex;
        }

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

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

        .nav-list {
            flex-direction: column;
            gap: var(--gap);
            margin-top: calc(var(--space-y) * 3);
        }

        .nav-link {
            display: block;
            padding: var(--space-y) 0;
            border-bottom: 1px solid var(--border-on-surface-light);
        }

        .nav-link::after {
            display: none;
        }

        .burger-menu[aria-expanded="true"] .burger-line:nth-child(1) {
            transform: translateY(0.5rem) 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.5rem) rotate(-45deg);
        }
    }

    @media (min-width: 768px) {
        .header-contact {
            display: flex;
        }
    }

.site-footer {
    background-color: #f8f9fa;
    color: #333;
    padding: 3rem 1rem;
    border-top: 1px solid #dee2e6;
    font-family: system-ui, -apple-system, sans-serif;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
  @media (max-width: 768px) {
    .footer-container {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
  }
  .footer-left {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .logo {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    color: #1a1a1a;
  }
  .contact-info p {
    margin: 0.5rem 0;
    line-height: 1.5;
  }
  .contact-info a {
    color: #0066cc;
    text-decoration: none;
  }
  .contact-info a:hover {
    text-decoration: underline;
  }
  .social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
  }
  .social-links a {
    color: #555;
    text-decoration: none;
    font-size: 0.9rem;
  }
  .social-links a:hover {
    color: #0066cc;
    text-decoration: underline;
  }
  .footer-right {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 2rem;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
  }
  @media (max-width: 480px) {
    .footer-nav ul {
      flex-direction: column;
      gap: 1rem;
    }
  }
  .footer-nav a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
  }
  .footer-nav a:hover {
    color: #0066cc;
    text-decoration: underline;
  }
  .legal-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
  }
  .legal-links a {
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
  }
  .legal-links a:hover {
    color: #0066cc;
    text-decoration: underline;
  }
  .copyright-disclaimer {
    margin-top: auto;
  }
  .copyright {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.5rem;
  }
  .disclaimer {
    font-size: 0.8rem;
    color: #888;
    line-height: 1.4;
    margin: 0;
    max-width: 90ch;
  }

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

    .nfcookie-v11__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, .45), rgba(17, 24, 39, .95));
        color: var(--neutral-100);
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, .35);
    }

    .nfcookie-v11__top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .nfcookie-v11__top strong {font-size: 16px;}

    .nfcookie-v11__top button {
        border: 0;
        background: transparent;
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
        cursor: pointer;
    }

    .nfcookie-v11 p {margin: 10px 0 0; color: #d1d5db;}

    .nfcookie-v11__actions {margin-top: 14px; display: flex; gap: 8px;}

    .nfcookie-v11__actions button {
        flex: 1;
        border-radius: var(--radius-sm);
        border: 1px solid rgba(148, 163, 184, .45);
        padding: 9px 12px;
        color: #e5e7eb;
        background: rgba(51, 65, 85, .65);
        cursor: pointer;
    }

    .nfcookie-v11__actions button[data-choice='accept'] {
        background: #22c55e;
        border-color: transparent;
        color: #06290e;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .nfcookie-v11__card {max-width: none;}
    }

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

    .policy-layout-d .wrap {
        max-width: 900px;
        margin: 0 auto;
    }

    .policy-layout-d .section-head {
        margin-bottom: 14px;
    }

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

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

    .policy-layout-d .timeline {
        border-left: 3px solid var(--brand);
        padding-left: 14px;
        display: grid;
        gap: 12px;
    }

    .policy-layout-d article {
        position: relative;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-md);
        padding: 12px;
    }

    .policy-layout-d .meta {
        margin: 0;
        color: var(--brand);
        font-size: .9rem;
        font-weight: 600;
    }

    .policy-layout-d h3 {
        margin: 7px 0;
    }

    .policy-layout-d article p {
        margin: 0;
        color: var(--neutral-600);
    }

.site-header {
        font-family: var(--font-family);
        font-size: var(--font-size-base);
        line-height: var(--line-height-base);
        background-color: var(--surface-1);
        color: var(--fg-on-surface);
        box-shadow: var(--shadow-sm);
    }

    .header-top {
        background-color: var(--bg-page);
        border-bottom: 1px solid var(--border-on-surface-light);
        padding: var(--space-y) 0;
    }

    .header-bottom {
        padding: var(--space-y) 0;
    }

    .container {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 0 var(--space-x);
        width: 100%;
        box-sizing: border-box;
    }

    .header-top-container,
    .header-bottom-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

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

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

    .header-contact {
        display: flex;
        align-items: center;
        gap: var(--gap);
    }

    .contact-link {
        color: var(--link);
        text-decoration: none;
        font-weight: 500;
        transition: color var(--anim-duration) var(--anim-ease);
    }

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

    .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-md);
        text-decoration: none;
        font-weight: 600;
        transition: background-color var(--anim-duration) var(--anim-ease);
        white-space: nowrap;
    }

    .cta-button:hover {
        background-color: var(--bg-accent-hover);
    }

    .main-nav {
        flex-grow: 1;
    }

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

    .nav-link {
        color: var(--fg-on-surface);
        text-decoration: none;
        font-weight: 500;
        padding: calc(var(--space-y) * 0.5) 0;
        position: relative;
        transition: color var(--anim-duration) var(--anim-ease);
    }

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

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background-color: var(--accent);
        transition: width var(--anim-duration) var(--anim-ease);
    }

    .nav-link:hover::after {
        width: 100%;
    }

    .burger-menu {
        display: none;
        background: none;
        border: none;
        cursor: pointer;
        padding: calc(var(--space-y) * 0.5);
        flex-direction: column;
        justify-content: space-between;
        width: 2rem;
        height: 1.5rem;
    }

    .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) {
        .header-top-container,
        .header-bottom-container {
            flex-wrap: wrap;
        }

        .header-contact {
            order: 3;
            width: 100%;
            justify-content: center;
            margin-top: var(--space-y);
            display: none;
        }

        .header-top {
            padding-bottom: calc(var(--space-y) * 0.5);
        }

        .burger-menu {
            display: flex;
        }

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

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

        .nav-list {
            flex-direction: column;
            gap: var(--gap);
            margin-top: calc(var(--space-y) * 3);
        }

        .nav-link {
            display: block;
            padding: var(--space-y) 0;
            border-bottom: 1px solid var(--border-on-surface-light);
        }

        .nav-link::after {
            display: none;
        }

        .burger-menu[aria-expanded="true"] .burger-line:nth-child(1) {
            transform: translateY(0.5rem) 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.5rem) rotate(-45deg);
        }
    }

    @media (min-width: 768px) {
        .header-contact {
            display: flex;
        }
    }

.site-footer {
    background-color: #f8f9fa;
    color: #333;
    padding: 3rem 1rem;
    border-top: 1px solid #dee2e6;
    font-family: system-ui, -apple-system, sans-serif;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
  @media (max-width: 768px) {
    .footer-container {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
  }
  .footer-left {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .logo {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    color: #1a1a1a;
  }
  .contact-info p {
    margin: 0.5rem 0;
    line-height: 1.5;
  }
  .contact-info a {
    color: #0066cc;
    text-decoration: none;
  }
  .contact-info a:hover {
    text-decoration: underline;
  }
  .social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
  }
  .social-links a {
    color: #555;
    text-decoration: none;
    font-size: 0.9rem;
  }
  .social-links a:hover {
    color: #0066cc;
    text-decoration: underline;
  }
  .footer-right {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 2rem;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
  }
  @media (max-width: 480px) {
    .footer-nav ul {
      flex-direction: column;
      gap: 1rem;
    }
  }
  .footer-nav a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
  }
  .footer-nav a:hover {
    color: #0066cc;
    text-decoration: underline;
  }
  .legal-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
  }
  .legal-links a {
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
  }
  .legal-links a:hover {
    color: #0066cc;
    text-decoration: underline;
  }
  .copyright-disclaimer {
    margin-top: auto;
  }
  .copyright {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.5rem;
  }
  .disclaimer {
    font-size: 0.8rem;
    color: #888;
    line-height: 1.4;
    margin: 0;
    max-width: 90ch;
  }

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

    .nfcookie-v11__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, .45), rgba(17, 24, 39, .95));
        color: var(--neutral-100);
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, .35);
    }

    .nfcookie-v11__top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .nfcookie-v11__top strong {font-size: 16px;}

    .nfcookie-v11__top button {
        border: 0;
        background: transparent;
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
        cursor: pointer;
    }

    .nfcookie-v11 p {margin: 10px 0 0; color: #d1d5db;}

    .nfcookie-v11__actions {margin-top: 14px; display: flex; gap: 8px;}

    .nfcookie-v11__actions button {
        flex: 1;
        border-radius: var(--radius-sm);
        border: 1px solid rgba(148, 163, 184, .45);
        padding: 9px 12px;
        color: #e5e7eb;
        background: rgba(51, 65, 85, .65);
        cursor: pointer;
    }

    .nfcookie-v11__actions button[data-choice='accept'] {
        background: #22c55e;
        border-color: transparent;
        color: #06290e;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .nfcookie-v11__card {max-width: none;}
    }

.thank-mode-b {
        padding: clamp(58px, 10vw, 114px) 18px;
        background: var(--bg-alt);
        color: var(--fg-on-page);
    }

    .thank-mode-b .card {
        max-width: 760px;
        margin: 0 auto;
        text-align: center;
        border-radius: var(--radius-xl);
        padding: clamp(30px, 4vw, 46px);
        background: var(--surface-1);
        box-shadow: var(--shadow-lg);
    }

    .thank-mode-b h1 {
        margin: 0;
        font-size: clamp(32px, 5vw, 54px);
        color: var(--brand);
    }

    .thank-mode-b p {
        margin: 10px 0 0;
        color: var(--neutral-600);
    }

    .thank-mode-b a {
        display: inline-block;
        margin-top: 18px;
        padding: 11px 18px;
        border-radius: var(--radius-sm);
        text-decoration: none;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
    }

.site-header {
        font-family: var(--font-family);
        font-size: var(--font-size-base);
        line-height: var(--line-height-base);
        background-color: var(--surface-1);
        color: var(--fg-on-surface);
        box-shadow: var(--shadow-sm);
    }

    .header-top {
        background-color: var(--bg-page);
        border-bottom: 1px solid var(--border-on-surface-light);
        padding: var(--space-y) 0;
    }

    .header-bottom {
        padding: var(--space-y) 0;
    }

    .container {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 0 var(--space-x);
        width: 100%;
        box-sizing: border-box;
    }

    .header-top-container,
    .header-bottom-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

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

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

    .header-contact {
        display: flex;
        align-items: center;
        gap: var(--gap);
    }

    .contact-link {
        color: var(--link);
        text-decoration: none;
        font-weight: 500;
        transition: color var(--anim-duration) var(--anim-ease);
    }

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

    .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-md);
        text-decoration: none;
        font-weight: 600;
        transition: background-color var(--anim-duration) var(--anim-ease);
        white-space: nowrap;
    }

    .cta-button:hover {
        background-color: var(--bg-accent-hover);
    }

    .main-nav {
        flex-grow: 1;
    }

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

    .nav-link {
        color: var(--fg-on-surface);
        text-decoration: none;
        font-weight: 500;
        padding: calc(var(--space-y) * 0.5) 0;
        position: relative;
        transition: color var(--anim-duration) var(--anim-ease);
    }

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

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background-color: var(--accent);
        transition: width var(--anim-duration) var(--anim-ease);
    }

    .nav-link:hover::after {
        width: 100%;
    }

    .burger-menu {
        display: none;
        background: none;
        border: none;
        cursor: pointer;
        padding: calc(var(--space-y) * 0.5);
        flex-direction: column;
        justify-content: space-between;
        width: 2rem;
        height: 1.5rem;
    }

    .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) {
        .header-top-container,
        .header-bottom-container {
            flex-wrap: wrap;
        }

        .header-contact {
            order: 3;
            width: 100%;
            justify-content: center;
            margin-top: var(--space-y);
            display: none;
        }

        .header-top {
            padding-bottom: calc(var(--space-y) * 0.5);
        }

        .burger-menu {
            display: flex;
        }

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

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

        .nav-list {
            flex-direction: column;
            gap: var(--gap);
            margin-top: calc(var(--space-y) * 3);
        }

        .nav-link {
            display: block;
            padding: var(--space-y) 0;
            border-bottom: 1px solid var(--border-on-surface-light);
        }

        .nav-link::after {
            display: none;
        }

        .burger-menu[aria-expanded="true"] .burger-line:nth-child(1) {
            transform: translateY(0.5rem) 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.5rem) rotate(-45deg);
        }
    }

    @media (min-width: 768px) {
        .header-contact {
            display: flex;
        }
    }

.site-footer {
    background-color: #f8f9fa;
    color: #333;
    padding: 3rem 1rem;
    border-top: 1px solid #dee2e6;
    font-family: system-ui, -apple-system, sans-serif;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
  @media (max-width: 768px) {
    .footer-container {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
  }
  .footer-left {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .logo {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    color: #1a1a1a;
  }
  .contact-info p {
    margin: 0.5rem 0;
    line-height: 1.5;
  }
  .contact-info a {
    color: #0066cc;
    text-decoration: none;
  }
  .contact-info a:hover {
    text-decoration: underline;
  }
  .social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
  }
  .social-links a {
    color: #555;
    text-decoration: none;
    font-size: 0.9rem;
  }
  .social-links a:hover {
    color: #0066cc;
    text-decoration: underline;
  }
  .footer-right {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 2rem;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
  }
  @media (max-width: 480px) {
    .footer-nav ul {
      flex-direction: column;
      gap: 1rem;
    }
  }
  .footer-nav a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
  }
  .footer-nav a:hover {
    color: #0066cc;
    text-decoration: underline;
  }
  .legal-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
  }
  .legal-links a {
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
  }
  .legal-links a:hover {
    color: #0066cc;
    text-decoration: underline;
  }
  .copyright-disclaimer {
    margin-top: auto;
  }
  .copyright {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.5rem;
  }
  .disclaimer {
    font-size: 0.8rem;
    color: #888;
    line-height: 1.4;
    margin: 0;
    max-width: 90ch;
  }

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

    .nfcookie-v11__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, .45), rgba(17, 24, 39, .95));
        color: var(--neutral-100);
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, .35);
    }

    .nfcookie-v11__top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .nfcookie-v11__top strong {font-size: 16px;}

    .nfcookie-v11__top button {
        border: 0;
        background: transparent;
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
        cursor: pointer;
    }

    .nfcookie-v11 p {margin: 10px 0 0; color: #d1d5db;}

    .nfcookie-v11__actions {margin-top: 14px; display: flex; gap: 8px;}

    .nfcookie-v11__actions button {
        flex: 1;
        border-radius: var(--radius-sm);
        border: 1px solid rgba(148, 163, 184, .45);
        padding: 9px 12px;
        color: #e5e7eb;
        background: rgba(51, 65, 85, .65);
        cursor: pointer;
    }

    .nfcookie-v11__actions button[data-choice='accept'] {
        background: #22c55e;
        border-color: transparent;
        color: #06290e;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .nfcookie-v11__card {max-width: none;}
    }

.err-slab-a {
    padding: clamp(56px, 10vw, 110px) 20px;
    background: var(--gradient-hero);
    color: var(--fg-on-primary);
}

.err-slab-a .box {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.err-slab-a h1 {
    margin: 0;
    font-size: clamp(34px, 6vw, 58px);
}

.err-slab-a p {
    margin: 12px 0 0;
    opacity: .92;
}

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