:root {
  --font-family: "IBM Plex Sans", sans-serif;
  --font-size-base: 15.5px;
  --line-height-base: 1.4;

  --max-w: 1220px;
  --space-x: 1.02rem;
  --space-y: 1.15rem;
  --gap: 1.13rem;

  --radius-xl: 0.94rem;
  --radius-lg: 0.59rem;
  --radius-md: 0.51rem;
  --radius-sm: 0.28rem;

  --shadow-sm: 0 2px 5px rgba(0,0,0,0.08);
  --shadow-md: 0 7px 16px rgba(0,0,0,0.11);
  --shadow-lg: 0 18px 24px rgba(0,0,0,0.13);

  --overlay: rgba(0,0,0,0.7);
  --anim-duration: 210ms;
  --anim-ease: ease-in-out;
  --random-number: 2;

  --brand: #00bcd4;
  --brand-contrast: #ffffff;
  --accent: #00e5ff;
  --accent-contrast: #ffffff;

  --neutral-0: #ffffff;
  --neutral-100: #f5f5f5;
  --neutral-300: #b0bec5;
  --neutral-600: #546e7a;
  --neutral-800: #263238;
  --neutral-900: #0d1117;

  --bg-page: #0d1117;
  --fg-on-page: #e0e0e0;

  --bg-alt: #1a1f2e;
  --fg-on-alt: #b0bec5;

  --surface-1: #1e293b;
  --surface-2: #263238;
  --fg-on-surface: #e0e0e0;
  --border-on-surface: #37474f;

  --surface-light: #263238;
  --fg-on-surface-light: #b0bec5;
  --border-on-surface-light: #455a64;

  --bg-primary: #00bcd4;
  --fg-on-primary: #ffffff;
  --bg-primary-hover: #0097a7;
  --ring: #00e5ff;

  --bg-accent: #00bcd4;
  --fg-on-accent: #ffffff;
  --bg-accent-hover: #0097a7;

  --link: #00e5ff;
  --link-hover: #80deea;

  --gradient-hero: linear-gradient(135deg, #0d1117 0%, #1a1f2e 50%, #0d1117 100%);
  --gradient-accent: linear-gradient(135deg, #00bcd4, #00e5ff);

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

header {
    background-color: var(--neutral-0);
    border-bottom: 1px solid var(--border-on-surface-light);
    padding: var(--space-y) var(--space-x);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
  }
  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: 0.05em;
    flex-shrink: 0;
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  .nav-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap);
  }
  .nav-menu a {
    text-decoration: none;
    color: var(--neutral-800);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: 0.25rem 0;
    transition: color var(--anim-duration) var(--anim-ease);
    position: relative;
  }
  .nav-menu a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: width var(--anim-duration) var(--anim-ease);
  }
  .nav-menu a:hover {
    color: var(--accent);
  }
  .nav-menu a:hover::after {
    width: 100%;
  }
  .cta-button {
    display: inline-block;
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    font-weight: 600;
    transition: background-color var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
  }
  .cta-button:hover {
    background-color: var(--bg-primary-hover);
    box-shadow: var(--shadow-md);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    transition: background-color var(--anim-duration) var(--anim-ease);
  }
  .burger span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--neutral-900);
    border-radius: 2px;
    transition: all var(--anim-duration) var(--anim-ease);
  }
  .burger:hover {
    background-color: var(--btn-ghost-bg-hover);
  }
  .burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
  }
  .burger.active span:nth-child(2) {
    opacity: 0;
  }
  .burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px);
  }

  @media (max-width: 767px) {
    .nav-menu {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background-color: var(--neutral-0);
      border-bottom: 1px solid var(--border-on-surface-light);
      box-shadow: var(--shadow-md);
      padding: var(--space-y) var(--space-x);
    }
    .nav-menu.open {
      display: block;
    }
    .nav-menu ul {
      flex-direction: column;
      gap: var(--space-y);
    }
    .nav-menu a {
      display: block;
      padding: 0.5rem 0;
    }
    .burger {
      display: flex;
    }
    .cta-button {
      display: none;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1.5rem 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
  }
  .footer-left {
    flex: 1 1 300px;
    min-width: 250px;
  }
  .footer-right {
    flex: 2 1 400px;
    min-width: 280px;
  }
  .footer-logo {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #f5a623;
  }
  .footer-tagline {
    margin-top: 0.25rem;
    font-size: 0.95rem;
    color: #b0b0c0;
  }
  .footer-contact p {
    margin: 0.4rem 0;
    font-size: 0.95rem;
  }
  .footer-contact a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-contact a:hover {
    color: #f5a623;
    text-decoration: underline;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem 1.5rem;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #f5a623;
    text-decoration: underline;
  }
  .footer-policy {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    margin-bottom: 1.2rem;
  }
  .footer-policy a {
    color: #b0b0c0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
  }
  .footer-policy a:hover {
    color: #f5a623;
    text-decoration: underline;
  }
  .footer-disclaimer {
    font-size: 0.8rem;
    color: #8888a0;
    line-height: 1.4;
    border-top: 1px solid #2a2a3e;
    padding-top: 1rem;
    margin-top: 0.5rem;
  }
  .footer-disclaimer p {
    margin: 0;
  }
  .footer-bottom {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #2a2a3e;
    font-size: 0.85rem;
    color: #8888a0;
  }
  .footer-bottom p {
    margin: 0;
  }
  @media (max-width: 600px) {
    .footer-container {
      flex-direction: column;
      gap: 1.5rem;
    }
    .footer-left, .footer-right {
      flex: 1 1 100%;
      min-width: 0;
    }
    .footer-nav ul {
      flex-direction: column;
      gap: 0.5rem;
    }
    .footer-policy {
      flex-direction: column;
      gap: 0.5rem;
    }
  }

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

.intro-stack-l12 {
        padding: clamp(3.6rem, 8vw, 6.5rem) var(--space-x);
        background: var(--bg-alt);
        color: var(--fg-on-page);
    }

    .intro-stack-l12__wrap {
        max-width: 58rem;
        margin: 0 auto;
    }

    .intro-stack-l12__hero {
        text-align: center;
    }

    .intro-stack-l12__hero p {
        margin: 0;
        color: var(--brand);
        text-transform: uppercase;
        letter-spacing: .1em;
        font-size: .82rem;
    }

    .intro-stack-l12__hero h1 {
        margin: .6rem 0 0;
        font-size: clamp(2.4rem, 5vw, 4.2rem);
        line-height: 1.04;
    }

    .intro-stack-l12__hero strong {
        display: block;
        margin-top: .7rem;
    }

    .intro-stack-l12__panels {
        margin-top: 1.15rem;
        display: grid;
        gap: .8rem;
    }

    .intro-stack-l12__panels article {
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface-light);
        color: var(--neutral-600);
    }

.next-signal-c7 {
        padding: clamp(3.7rem, 8vw, 6.3rem) var(--space-x);
        background: linear-gradient(145deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
    }

    .next-signal-c7__wrap {
        max-width: 60rem;
        margin: 0 auto;
        display: grid;
        grid-template-columns: .95fr 1.05fr;
        gap: 1rem;
        align-items: center;
    }

    .next-signal-c7__copy p {
        margin: 0;
        color: rgba(255, 255, 255, .78);
    }

    .next-signal-c7__copy h2 {
        margin: .5rem 0 0;
        font-size: clamp(2rem, 4vw, 3.1rem);
    }

    .next-signal-c7__copy span {
        display: block;
        margin-top: .85rem;

    }

    .next-signal-c7__stack {
        display: grid;
        gap: .7rem;
    }

    .next-signal-c7__stack a {
        display: flex;
        justify-content: space-between;
        gap: .75rem;
        align-items: center;
        padding: .9rem 1rem;
        border-radius: var(--radius-lg);
        text-decoration: none;
        color: var(--fg-on-primary);
        background: rgba(255, 255, 255, .12);
        border: 1px solid rgba(255, 255, 255, .18);
    }

    .next-signal-c7__stack span {
        color: rgba(255, 255, 255, .8);
    }

    .next-signal-c7__button {
        display: inline-flex;
        margin-top: 1rem;
        min-height: 2.85rem;
        align-items: center;
        justify-content: center;
        padding: 0 1rem;
        border-radius: var(--radius-md);
        background: var(--surface-1);
        color: var(--fg-on-page);
        text-decoration: none;
    }

    @media (max-width: 820px) {
        .next-signal-c7__wrap {
            grid-template-columns: 1fr;
        }
    }

.faq-fresh-v1 {
        padding: calc(var(--space-y) * 2.8) var(--space-x);
        background: var(--bg-page);
        color: var(--fg-on-page);
    }

    .faq-fresh-v1 .shell {
        max-width: 860px;
        margin: 0 auto;
        display: grid;
        gap: var(--gap);
    }

    .faq-fresh-v1 h2 {
        margin: 0;
        font-size: clamp(1.8rem, 3.4vw, 2.6rem);
    }

    .faq-fresh-v1 .items {
        display: grid;
        gap: .8rem;
    }

    .faq-fresh-v1 details {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-md);
        padding: .85rem 1rem;
        background: var(--surface-1);
    }

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

    .faq-fresh-v1 p {
        margin: .7rem 0 0;
        color: var(--fg-on-surface-light);
    }

.social-c1 {

        padding: clamp(18px, 3vw, 44px);
        background: var(--gradient-accent);
        color: var(--accent-contrast);
        overflow: hidden;
    }

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

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

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

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

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

    .social-c1__band::before,
    .social-c1__band::after {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        width: 90px;
        pointer-events: none;
        z-index: 1;
    }

    .social-c1__band::before {
        left: 0;
        background: linear-gradient(90deg, rgba(229, 90, 43, 1), rgba(229, 90, 43, 0));
    }

    .social-c1__band::after {
        right: 0;
        background: linear-gradient(270deg, rgba(229, 90, 43, 1), rgba(229, 90, 43, 0));
    }

    .social-c1__track {
        display: flex;
        gap: 18px;
        padding: var(--space-y) var(--space-x);
        width: max-content;
        animation: socialC1Marquee 18s linear infinite;
    }

    @keyframes socialC1Marquee {
        0% {
            transform: translateX(0)
        }
        100% {
            transform: translateX(-50%)
        }
    }

    .social-c1__logo {
        width: 140px;
        height: 86px;
        border-radius: var(--radius-lg);
        background: rgba(0, 0, 0, 0.12);
        border: 1px solid rgba(255, 255, 255, 0.16);
        display: grid;
        place-items: center;
        flex: 0 0 auto;
    }

    .social-c1__logo img {
        max-width: 78%;
        max-height: 70%;
        opacity: .92;
        filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.18));
    }

    .social-c1__stats {
        margin-top: 18px;
        display: grid;
        grid-template-columns:repeat(12, 1fr);
        gap: 12px;
    }

    .social-c1__stat {
        grid-column: span 4;
        border-radius: var(--radius-xl);
        background: rgba(255, 255, 255, 0.10);
        border: 1px solid rgba(255, 255, 255, 0.18);
        box-shadow: var(--shadow-md);
        padding: 14px 16px;
    }

    .social-c1__num {
        font-weight: 900;
        font-size: clamp(18px, 2.4vw, 28px);
    }

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

    @media (max-width: 900px) {
        .social-c1__stat {
            grid-column: span 6;
        }
    }

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

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

header {
    background-color: var(--neutral-0);
    border-bottom: 1px solid var(--border-on-surface-light);
    padding: var(--space-y) var(--space-x);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
  }
  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: 0.05em;
    flex-shrink: 0;
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  .nav-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap);
  }
  .nav-menu a {
    text-decoration: none;
    color: var(--neutral-800);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: 0.25rem 0;
    transition: color var(--anim-duration) var(--anim-ease);
    position: relative;
  }
  .nav-menu a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: width var(--anim-duration) var(--anim-ease);
  }
  .nav-menu a:hover {
    color: var(--accent);
  }
  .nav-menu a:hover::after {
    width: 100%;
  }
  .cta-button {
    display: inline-block;
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    font-weight: 600;
    transition: background-color var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
  }
  .cta-button:hover {
    background-color: var(--bg-primary-hover);
    box-shadow: var(--shadow-md);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    transition: background-color var(--anim-duration) var(--anim-ease);
  }
  .burger span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--neutral-900);
    border-radius: 2px;
    transition: all var(--anim-duration) var(--anim-ease);
  }
  .burger:hover {
    background-color: var(--btn-ghost-bg-hover);
  }
  .burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
  }
  .burger.active span:nth-child(2) {
    opacity: 0;
  }
  .burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px);
  }

  @media (max-width: 767px) {
    .nav-menu {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background-color: var(--neutral-0);
      border-bottom: 1px solid var(--border-on-surface-light);
      box-shadow: var(--shadow-md);
      padding: var(--space-y) var(--space-x);
    }
    .nav-menu.open {
      display: block;
    }
    .nav-menu ul {
      flex-direction: column;
      gap: var(--space-y);
    }
    .nav-menu a {
      display: block;
      padding: 0.5rem 0;
    }
    .burger {
      display: flex;
    }
    .cta-button {
      display: none;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1.5rem 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
  }
  .footer-left {
    flex: 1 1 300px;
    min-width: 250px;
  }
  .footer-right {
    flex: 2 1 400px;
    min-width: 280px;
  }
  .footer-logo {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #f5a623;
  }
  .footer-tagline {
    margin-top: 0.25rem;
    font-size: 0.95rem;
    color: #b0b0c0;
  }
  .footer-contact p {
    margin: 0.4rem 0;
    font-size: 0.95rem;
  }
  .footer-contact a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-contact a:hover {
    color: #f5a623;
    text-decoration: underline;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem 1.5rem;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #f5a623;
    text-decoration: underline;
  }
  .footer-policy {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    margin-bottom: 1.2rem;
  }
  .footer-policy a {
    color: #b0b0c0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
  }
  .footer-policy a:hover {
    color: #f5a623;
    text-decoration: underline;
  }
  .footer-disclaimer {
    font-size: 0.8rem;
    color: #8888a0;
    line-height: 1.4;
    border-top: 1px solid #2a2a3e;
    padding-top: 1rem;
    margin-top: 0.5rem;
  }
  .footer-disclaimer p {
    margin: 0;
  }
  .footer-bottom {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #2a2a3e;
    font-size: 0.85rem;
    color: #8888a0;
  }
  .footer-bottom p {
    margin: 0;
  }
  @media (max-width: 600px) {
    .footer-container {
      flex-direction: column;
      gap: 1.5rem;
    }
    .footer-left, .footer-right {
      flex: 1 1 100%;
      min-width: 0;
    }
    .footer-nav ul {
      flex-direction: column;
      gap: 0.5rem;
    }
    .footer-policy {
      flex-direction: column;
      gap: 0.5rem;
    }
  }

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

.blog-grid-section {
    padding: clamp(48px, 8vw, 80px) 0;
}

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

.blog-grid-section__title {
    text-align: center;
    margin-bottom: calc(var(--space-y) * 2);
    font-size: clamp(28px, 4vw, 40px);
    color: var(--fg-on-page);
}

.blog-grid-section__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: calc(var(--gap) * 1.5);
}

.blog-card {
    background-color: var(--surface-1);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: all var(--anim-duration) var(--anim-ease);
    border: 1px solid var(--border-on-surface);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.blog-card__image {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.blog-card__content {
    padding: clamp(16px, 3vw, 28px);
}

.blog-card__content h3 {
    margin-bottom: var(--space-y);
    color: var(--fg-on-surface);
}

.blog-card__content p {
    color: var(--fg-on-surface-light);
    margin-bottom: var(--space-y);
}

.blog-card__meta {
    color: var(--neutral-600);
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.blog-card__btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: var(--radius-md);
    font-weight: 500;
    text-align: center;
    transition: all var(--anim-duration) var(--anim-ease);
    cursor: pointer;
    border: 1px solid var(--bg-primary);
    font-size: 1rem;
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
}

.blog-card__btn:hover {
    background-color: var(--bg-primary-hover);
    border-color: var(--bg-primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

header {
    background-color: var(--neutral-0);
    border-bottom: 1px solid var(--border-on-surface-light);
    padding: var(--space-y) var(--space-x);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
  }
  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: 0.05em;
    flex-shrink: 0;
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  .nav-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap);
  }
  .nav-menu a {
    text-decoration: none;
    color: var(--neutral-800);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: 0.25rem 0;
    transition: color var(--anim-duration) var(--anim-ease);
    position: relative;
  }
  .nav-menu a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: width var(--anim-duration) var(--anim-ease);
  }
  .nav-menu a:hover {
    color: var(--accent);
  }
  .nav-menu a:hover::after {
    width: 100%;
  }
  .cta-button {
    display: inline-block;
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    font-weight: 600;
    transition: background-color var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
  }
  .cta-button:hover {
    background-color: var(--bg-primary-hover);
    box-shadow: var(--shadow-md);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    transition: background-color var(--anim-duration) var(--anim-ease);
  }
  .burger span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--neutral-900);
    border-radius: 2px;
    transition: all var(--anim-duration) var(--anim-ease);
  }
  .burger:hover {
    background-color: var(--btn-ghost-bg-hover);
  }
  .burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
  }
  .burger.active span:nth-child(2) {
    opacity: 0;
  }
  .burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px);
  }

  @media (max-width: 767px) {
    .nav-menu {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background-color: var(--neutral-0);
      border-bottom: 1px solid var(--border-on-surface-light);
      box-shadow: var(--shadow-md);
      padding: var(--space-y) var(--space-x);
    }
    .nav-menu.open {
      display: block;
    }
    .nav-menu ul {
      flex-direction: column;
      gap: var(--space-y);
    }
    .nav-menu a {
      display: block;
      padding: 0.5rem 0;
    }
    .burger {
      display: flex;
    }
    .cta-button {
      display: none;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1.5rem 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
  }
  .footer-left {
    flex: 1 1 300px;
    min-width: 250px;
  }
  .footer-right {
    flex: 2 1 400px;
    min-width: 280px;
  }
  .footer-logo {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #f5a623;
  }
  .footer-tagline {
    margin-top: 0.25rem;
    font-size: 0.95rem;
    color: #b0b0c0;
  }
  .footer-contact p {
    margin: 0.4rem 0;
    font-size: 0.95rem;
  }
  .footer-contact a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-contact a:hover {
    color: #f5a623;
    text-decoration: underline;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem 1.5rem;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #f5a623;
    text-decoration: underline;
  }
  .footer-policy {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    margin-bottom: 1.2rem;
  }
  .footer-policy a {
    color: #b0b0c0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
  }
  .footer-policy a:hover {
    color: #f5a623;
    text-decoration: underline;
  }
  .footer-disclaimer {
    font-size: 0.8rem;
    color: #8888a0;
    line-height: 1.4;
    border-top: 1px solid #2a2a3e;
    padding-top: 1rem;
    margin-top: 0.5rem;
  }
  .footer-disclaimer p {
    margin: 0;
  }
  .footer-bottom {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #2a2a3e;
    font-size: 0.85rem;
    color: #8888a0;
  }
  .footer-bottom p {
    margin: 0;
  }
  @media (max-width: 600px) {
    .footer-container {
      flex-direction: column;
      gap: 1.5rem;
    }
    .footer-left, .footer-right {
      flex: 1 1 100%;
      min-width: 0;
    }
    .footer-nav ul {
      flex-direction: column;
      gap: 0.5rem;
    }
    .footer-policy {
      flex-direction: column;
      gap: 0.5rem;
    }
  }

.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__desc {
    margin: 0 0 10px;
    font-size: 0.95rem;
    color: var(--neutral-200);
}

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

.gallery--light-v12 {
    padding: 50px 20px;
    background: white;
    color: black;
}

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

.gallery-v12__title {
    margin: 0 0 14px;
    font-size: clamp(22px, 3.6vw, 29px);
    color: var(--neutral-900);
}

.gallery-v12__layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 12px;
}

.gallery-v12__cell {
    margin: 0;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: #ffffff;
    border: 1px solid var(--border-on-surface-light);
}

.gallery-v12__cell img {
    display: block;
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.gallery-v12__cell figcaption {
    padding: 9px 10px;
    color: var(--fg-on-surface-light);
    font-size: 0.88rem;
}

@media (max-width: 640px) {
    .gallery--light-v12 {
        padding: 42px 14px;
    }

    .gallery-v12__layout {
        grid-template-columns: 1fr;
    }
}

header {
    background-color: var(--neutral-0);
    border-bottom: 1px solid var(--border-on-surface-light);
    padding: var(--space-y) var(--space-x);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
  }
  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: 0.05em;
    flex-shrink: 0;
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  .nav-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap);
  }
  .nav-menu a {
    text-decoration: none;
    color: var(--neutral-800);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: 0.25rem 0;
    transition: color var(--anim-duration) var(--anim-ease);
    position: relative;
  }
  .nav-menu a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: width var(--anim-duration) var(--anim-ease);
  }
  .nav-menu a:hover {
    color: var(--accent);
  }
  .nav-menu a:hover::after {
    width: 100%;
  }
  .cta-button {
    display: inline-block;
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    font-weight: 600;
    transition: background-color var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
  }
  .cta-button:hover {
    background-color: var(--bg-primary-hover);
    box-shadow: var(--shadow-md);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    transition: background-color var(--anim-duration) var(--anim-ease);
  }
  .burger span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--neutral-900);
    border-radius: 2px;
    transition: all var(--anim-duration) var(--anim-ease);
  }
  .burger:hover {
    background-color: var(--btn-ghost-bg-hover);
  }
  .burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
  }
  .burger.active span:nth-child(2) {
    opacity: 0;
  }
  .burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px);
  }

  @media (max-width: 767px) {
    .nav-menu {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background-color: var(--neutral-0);
      border-bottom: 1px solid var(--border-on-surface-light);
      box-shadow: var(--shadow-md);
      padding: var(--space-y) var(--space-x);
    }
    .nav-menu.open {
      display: block;
    }
    .nav-menu ul {
      flex-direction: column;
      gap: var(--space-y);
    }
    .nav-menu a {
      display: block;
      padding: 0.5rem 0;
    }
    .burger {
      display: flex;
    }
    .cta-button {
      display: none;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1.5rem 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
  }
  .footer-left {
    flex: 1 1 300px;
    min-width: 250px;
  }
  .footer-right {
    flex: 2 1 400px;
    min-width: 280px;
  }
  .footer-logo {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #f5a623;
  }
  .footer-tagline {
    margin-top: 0.25rem;
    font-size: 0.95rem;
    color: #b0b0c0;
  }
  .footer-contact p {
    margin: 0.4rem 0;
    font-size: 0.95rem;
  }
  .footer-contact a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-contact a:hover {
    color: #f5a623;
    text-decoration: underline;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem 1.5rem;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #f5a623;
    text-decoration: underline;
  }
  .footer-policy {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    margin-bottom: 1.2rem;
  }
  .footer-policy a {
    color: #b0b0c0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
  }
  .footer-policy a:hover {
    color: #f5a623;
    text-decoration: underline;
  }
  .footer-disclaimer {
    font-size: 0.8rem;
    color: #8888a0;
    line-height: 1.4;
    border-top: 1px solid #2a2a3e;
    padding-top: 1rem;
    margin-top: 0.5rem;
  }
  .footer-disclaimer p {
    margin: 0;
  }
  .footer-bottom {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #2a2a3e;
    font-size: 0.85rem;
    color: #8888a0;
  }
  .footer-bottom p {
    margin: 0;
  }
  @media (max-width: 600px) {
    .footer-container {
      flex-direction: column;
      gap: 1.5rem;
    }
    .footer-left, .footer-right {
      flex: 1 1 100%;
      min-width: 0;
    }
    .footer-nav ul {
      flex-direction: column;
      gap: 0.5rem;
    }
    .footer-policy {
      flex-direction: column;
      gap: 0.5rem;
    }
  }

.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__description {
        color: var(--neutral-300);
        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-page) fff;
        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);
    }

header {
    background-color: var(--neutral-0);
    border-bottom: 1px solid var(--border-on-surface-light);
    padding: var(--space-y) var(--space-x);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
  }
  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: 0.05em;
    flex-shrink: 0;
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  .nav-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap);
  }
  .nav-menu a {
    text-decoration: none;
    color: var(--neutral-800);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: 0.25rem 0;
    transition: color var(--anim-duration) var(--anim-ease);
    position: relative;
  }
  .nav-menu a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: width var(--anim-duration) var(--anim-ease);
  }
  .nav-menu a:hover {
    color: var(--accent);
  }
  .nav-menu a:hover::after {
    width: 100%;
  }
  .cta-button {
    display: inline-block;
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    font-weight: 600;
    transition: background-color var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
  }
  .cta-button:hover {
    background-color: var(--bg-primary-hover);
    box-shadow: var(--shadow-md);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    transition: background-color var(--anim-duration) var(--anim-ease);
  }
  .burger span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--neutral-900);
    border-radius: 2px;
    transition: all var(--anim-duration) var(--anim-ease);
  }
  .burger:hover {
    background-color: var(--btn-ghost-bg-hover);
  }
  .burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
  }
  .burger.active span:nth-child(2) {
    opacity: 0;
  }
  .burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px);
  }

  @media (max-width: 767px) {
    .nav-menu {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background-color: var(--neutral-0);
      border-bottom: 1px solid var(--border-on-surface-light);
      box-shadow: var(--shadow-md);
      padding: var(--space-y) var(--space-x);
    }
    .nav-menu.open {
      display: block;
    }
    .nav-menu ul {
      flex-direction: column;
      gap: var(--space-y);
    }
    .nav-menu a {
      display: block;
      padding: 0.5rem 0;
    }
    .burger {
      display: flex;
    }
    .cta-button {
      display: none;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1.5rem 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
  }
  .footer-left {
    flex: 1 1 300px;
    min-width: 250px;
  }
  .footer-right {
    flex: 2 1 400px;
    min-width: 280px;
  }
  .footer-logo {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #f5a623;
  }
  .footer-tagline {
    margin-top: 0.25rem;
    font-size: 0.95rem;
    color: #b0b0c0;
  }
  .footer-contact p {
    margin: 0.4rem 0;
    font-size: 0.95rem;
  }
  .footer-contact a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-contact a:hover {
    color: #f5a623;
    text-decoration: underline;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem 1.5rem;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #f5a623;
    text-decoration: underline;
  }
  .footer-policy {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    margin-bottom: 1.2rem;
  }
  .footer-policy a {
    color: #b0b0c0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
  }
  .footer-policy a:hover {
    color: #f5a623;
    text-decoration: underline;
  }
  .footer-disclaimer {
    font-size: 0.8rem;
    color: #8888a0;
    line-height: 1.4;
    border-top: 1px solid #2a2a3e;
    padding-top: 1rem;
    margin-top: 0.5rem;
  }
  .footer-disclaimer p {
    margin: 0;
  }
  .footer-bottom {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #2a2a3e;
    font-size: 0.85rem;
    color: #8888a0;
  }
  .footer-bottom p {
    margin: 0;
  }
  @media (max-width: 600px) {
    .footer-container {
      flex-direction: column;
      gap: 1.5rem;
    }
    .footer-left, .footer-right {
      flex: 1 1 100%;
      min-width: 0;
    }
    .footer-nav ul {
      flex-direction: column;
      gap: 0.5rem;
    }
    .footer-policy {
      flex-direction: column;
      gap: 0.5rem;
    }
  }

.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 2 (par) -> order: 2 */
        .product-item .product-item__c > *:first-child {
            order: 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__description {
        color: var(--neutral-300);
        line-height: 1.8;
        margin-bottom: var(--space-y);
    }

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

    /* Si randomNumber es 2 (par) -> order: 2 */
    .product-item .product-item__actions > *:first-child {
        order: 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: #ffffff;
        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);
    }

.about-struct-v5 {
        padding: calc(var(--space-y) * 2) var(--space-x);
        background: var(--gradient-accent);
        color: var(--accent-contrast)
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

header {
    background-color: var(--neutral-0);
    border-bottom: 1px solid var(--border-on-surface-light);
    padding: var(--space-y) var(--space-x);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
  }
  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: 0.05em;
    flex-shrink: 0;
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  .nav-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap);
  }
  .nav-menu a {
    text-decoration: none;
    color: var(--neutral-800);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: 0.25rem 0;
    transition: color var(--anim-duration) var(--anim-ease);
    position: relative;
  }
  .nav-menu a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: width var(--anim-duration) var(--anim-ease);
  }
  .nav-menu a:hover {
    color: var(--accent);
  }
  .nav-menu a:hover::after {
    width: 100%;
  }
  .cta-button {
    display: inline-block;
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    font-weight: 600;
    transition: background-color var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
  }
  .cta-button:hover {
    background-color: var(--bg-primary-hover);
    box-shadow: var(--shadow-md);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    transition: background-color var(--anim-duration) var(--anim-ease);
  }
  .burger span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--neutral-900);
    border-radius: 2px;
    transition: all var(--anim-duration) var(--anim-ease);
  }
  .burger:hover {
    background-color: var(--btn-ghost-bg-hover);
  }
  .burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
  }
  .burger.active span:nth-child(2) {
    opacity: 0;
  }
  .burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px);
  }

  @media (max-width: 767px) {
    .nav-menu {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background-color: var(--neutral-0);
      border-bottom: 1px solid var(--border-on-surface-light);
      box-shadow: var(--shadow-md);
      padding: var(--space-y) var(--space-x);
    }
    .nav-menu.open {
      display: block;
    }
    .nav-menu ul {
      flex-direction: column;
      gap: var(--space-y);
    }
    .nav-menu a {
      display: block;
      padding: 0.5rem 0;
    }
    .burger {
      display: flex;
    }
    .cta-button {
      display: none;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1.5rem 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
  }
  .footer-left {
    flex: 1 1 300px;
    min-width: 250px;
  }
  .footer-right {
    flex: 2 1 400px;
    min-width: 280px;
  }
  .footer-logo {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #f5a623;
  }
  .footer-tagline {
    margin-top: 0.25rem;
    font-size: 0.95rem;
    color: #b0b0c0;
  }
  .footer-contact p {
    margin: 0.4rem 0;
    font-size: 0.95rem;
  }
  .footer-contact a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-contact a:hover {
    color: #f5a623;
    text-decoration: underline;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem 1.5rem;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #f5a623;
    text-decoration: underline;
  }
  .footer-policy {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    margin-bottom: 1.2rem;
  }
  .footer-policy a {
    color: #b0b0c0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
  }
  .footer-policy a:hover {
    color: #f5a623;
    text-decoration: underline;
  }
  .footer-disclaimer {
    font-size: 0.8rem;
    color: #8888a0;
    line-height: 1.4;
    border-top: 1px solid #2a2a3e;
    padding-top: 1rem;
    margin-top: 0.5rem;
  }
  .footer-disclaimer p {
    margin: 0;
  }
  .footer-bottom {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #2a2a3e;
    font-size: 0.85rem;
    color: #8888a0;
  }
  .footer-bottom p {
    margin: 0;
  }
  @media (max-width: 600px) {
    .footer-container {
      flex-direction: column;
      gap: 1.5rem;
    }
    .footer-left, .footer-right {
      flex: 1 1 100%;
      min-width: 0;
    }
    .footer-nav ul {
      flex-direction: column;
      gap: 0.5rem;
    }
    .footer-policy {
      flex-direction: column;
      gap: 0.5rem;
    }
  }

.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--light-v6 {

    padding: 48px 20px;
    background: var(--bg-page);
    color: var(--fg-on-page);
}

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

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

.checkout__text {
    margin: 0;
    color: var(--neutral-600);
}

header {
    background-color: var(--neutral-0);
    border-bottom: 1px solid var(--border-on-surface-light);
    padding: var(--space-y) var(--space-x);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
  }
  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: 0.05em;
    flex-shrink: 0;
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  .nav-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap);
  }
  .nav-menu a {
    text-decoration: none;
    color: var(--neutral-800);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: 0.25rem 0;
    transition: color var(--anim-duration) var(--anim-ease);
    position: relative;
  }
  .nav-menu a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: width var(--anim-duration) var(--anim-ease);
  }
  .nav-menu a:hover {
    color: var(--accent);
  }
  .nav-menu a:hover::after {
    width: 100%;
  }
  .cta-button {
    display: inline-block;
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    font-weight: 600;
    transition: background-color var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
  }
  .cta-button:hover {
    background-color: var(--bg-primary-hover);
    box-shadow: var(--shadow-md);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    transition: background-color var(--anim-duration) var(--anim-ease);
  }
  .burger span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--neutral-900);
    border-radius: 2px;
    transition: all var(--anim-duration) var(--anim-ease);
  }
  .burger:hover {
    background-color: var(--btn-ghost-bg-hover);
  }
  .burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
  }
  .burger.active span:nth-child(2) {
    opacity: 0;
  }
  .burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px);
  }

  @media (max-width: 767px) {
    .nav-menu {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background-color: var(--neutral-0);
      border-bottom: 1px solid var(--border-on-surface-light);
      box-shadow: var(--shadow-md);
      padding: var(--space-y) var(--space-x);
    }
    .nav-menu.open {
      display: block;
    }
    .nav-menu ul {
      flex-direction: column;
      gap: var(--space-y);
    }
    .nav-menu a {
      display: block;
      padding: 0.5rem 0;
    }
    .burger {
      display: flex;
    }
    .cta-button {
      display: none;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1.5rem 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
  }
  .footer-left {
    flex: 1 1 300px;
    min-width: 250px;
  }
  .footer-right {
    flex: 2 1 400px;
    min-width: 280px;
  }
  .footer-logo {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #f5a623;
  }
  .footer-tagline {
    margin-top: 0.25rem;
    font-size: 0.95rem;
    color: #b0b0c0;
  }
  .footer-contact p {
    margin: 0.4rem 0;
    font-size: 0.95rem;
  }
  .footer-contact a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-contact a:hover {
    color: #f5a623;
    text-decoration: underline;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem 1.5rem;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #f5a623;
    text-decoration: underline;
  }
  .footer-policy {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    margin-bottom: 1.2rem;
  }
  .footer-policy a {
    color: #b0b0c0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
  }
  .footer-policy a:hover {
    color: #f5a623;
    text-decoration: underline;
  }
  .footer-disclaimer {
    font-size: 0.8rem;
    color: #8888a0;
    line-height: 1.4;
    border-top: 1px solid #2a2a3e;
    padding-top: 1rem;
    margin-top: 0.5rem;
  }
  .footer-disclaimer p {
    margin: 0;
  }
  .footer-bottom {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #2a2a3e;
    font-size: 0.85rem;
    color: #8888a0;
  }
  .footer-bottom p {
    margin: 0;
  }
  @media (max-width: 600px) {
    .footer-container {
      flex-direction: column;
      gap: 1.5rem;
    }
    .footer-left, .footer-right {
      flex: 1 1 100%;
      min-width: 0;
    }
    .footer-nav ul {
      flex-direction: column;
      gap: 0.5rem;
    }
    .footer-policy {
      flex-direction: column;
      gap: 0.5rem;
    }
  }

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

.frm-lx4{padding:calc(var(--space-y)*2.7) var(--space-x);background:var(--bg-alt)}
.frm-lx4 .frm-wrap{max-width:860px;margin:0 auto;padding:1.1rem;border-radius:var(--radius-xl);background:var(--surface-1);border:1px solid var(--border-on-surface)}
.frm-lx4 h2{margin:0;font-size:clamp(1.75rem,3.1vw,2.45rem)}
.frm-lx4 p{margin:.45rem 0 .95rem;color:var(--fg-on-surface-light)}
.frm-lx4 .frm-rows{display:grid;gap:.58rem}
.frm-lx4 .frm-row{display:grid;grid-template-columns:160px 1fr;gap:.75rem;align-items:center;padding:.62rem;border-radius:var(--radius-md);background:var(--surface-2)}
.frm-lx4 .frm-row span{font-size:.85rem;font-weight:700}
.frm-lx4 input,.frm-lx4 textarea{width:100%;border:1px solid var(--border-on-surface-light);border-radius:var(--radius-sm);padding:.72rem .75rem;font:inherit;background:var(--surface-1);color:var(--fg-on-surface)}
.frm-lx4 .frm-row--message{align-items:start}
.frm-lx4 textarea{min-height:132px;resize:vertical}
.frm-lx4 button{margin-top:.25rem;padding:.84rem 1.2rem;border:1px solid var(--bg-primary);border-radius:var(--radius-md);background:var(--bg-primary);color:var(--fg-on-primary);font-weight:700;cursor:pointer}
.frm-lx4 button:hover{background:var(--bg-primary-hover)}
@media (max-width:720px){.frm-lx4 .frm-row{grid-template-columns:1fr}}

.contacts-u1{padding:calc(var(--space-y)*2.9) var(--space-x);background:var(--gradient-hero);color:var(--brand-contrast)} .contacts-u1 .shell{max-width:var(--max-w);margin:0 auto;display:grid;gap:var(--gap)} .contacts-u1 h2{margin:0;font-size:clamp(1.85rem,3.6vw,2.8rem);line-height:1.1} .contacts-u1 .sub{margin:.35rem 0 0;opacity:.9;} .contacts-u1 article,.contacts-u1 li{padding:.85rem;border-radius:var(--radius-sm);background:var(--chip-bg);border:1px solid var(--btn-ghost-bg-hover);list-style:none} .contacts-u1 p{margin:0} .contacts-u1 a{text-decoration:none;color:inherit;font-weight:700} .contacts-u1 .split{display:grid;grid-template-columns:1fr 1fr;gap:var(--gap)} .contacts-u1 .panel{padding:1rem;border-radius:var(--radius-lg);background:var(--chip-bg);border:1px solid var(--btn-ghost-bg-hover)} .contacts-u1 .grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:.55rem} @media (max-width:860px){.contacts-u1 .split,.contacts-u1 .media,.contacts-u1 .grid,.contacts-u1 .cards,.contacts-u1 .bento,.contacts-u1 .foot{grid-template-columns:1fr}}

header {
    background-color: var(--neutral-0);
    border-bottom: 1px solid var(--border-on-surface-light);
    padding: var(--space-y) var(--space-x);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
  }
  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: 0.05em;
    flex-shrink: 0;
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  .nav-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap);
  }
  .nav-menu a {
    text-decoration: none;
    color: var(--neutral-800);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: 0.25rem 0;
    transition: color var(--anim-duration) var(--anim-ease);
    position: relative;
  }
  .nav-menu a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: width var(--anim-duration) var(--anim-ease);
  }
  .nav-menu a:hover {
    color: var(--accent);
  }
  .nav-menu a:hover::after {
    width: 100%;
  }
  .cta-button {
    display: inline-block;
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    font-weight: 600;
    transition: background-color var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
  }
  .cta-button:hover {
    background-color: var(--bg-primary-hover);
    box-shadow: var(--shadow-md);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    transition: background-color var(--anim-duration) var(--anim-ease);
  }
  .burger span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--neutral-900);
    border-radius: 2px;
    transition: all var(--anim-duration) var(--anim-ease);
  }
  .burger:hover {
    background-color: var(--btn-ghost-bg-hover);
  }
  .burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
  }
  .burger.active span:nth-child(2) {
    opacity: 0;
  }
  .burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px);
  }

  @media (max-width: 767px) {
    .nav-menu {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background-color: var(--neutral-0);
      border-bottom: 1px solid var(--border-on-surface-light);
      box-shadow: var(--shadow-md);
      padding: var(--space-y) var(--space-x);
    }
    .nav-menu.open {
      display: block;
    }
    .nav-menu ul {
      flex-direction: column;
      gap: var(--space-y);
    }
    .nav-menu a {
      display: block;
      padding: 0.5rem 0;
    }
    .burger {
      display: flex;
    }
    .cta-button {
      display: none;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1.5rem 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
  }
  .footer-left {
    flex: 1 1 300px;
    min-width: 250px;
  }
  .footer-right {
    flex: 2 1 400px;
    min-width: 280px;
  }
  .footer-logo {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #f5a623;
  }
  .footer-tagline {
    margin-top: 0.25rem;
    font-size: 0.95rem;
    color: #b0b0c0;
  }
  .footer-contact p {
    margin: 0.4rem 0;
    font-size: 0.95rem;
  }
  .footer-contact a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-contact a:hover {
    color: #f5a623;
    text-decoration: underline;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem 1.5rem;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #f5a623;
    text-decoration: underline;
  }
  .footer-policy {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    margin-bottom: 1.2rem;
  }
  .footer-policy a {
    color: #b0b0c0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
  }
  .footer-policy a:hover {
    color: #f5a623;
    text-decoration: underline;
  }
  .footer-disclaimer {
    font-size: 0.8rem;
    color: #8888a0;
    line-height: 1.4;
    border-top: 1px solid #2a2a3e;
    padding-top: 1rem;
    margin-top: 0.5rem;
  }
  .footer-disclaimer p {
    margin: 0;
  }
  .footer-bottom {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #2a2a3e;
    font-size: 0.85rem;
    color: #8888a0;
  }
  .footer-bottom p {
    margin: 0;
  }
  @media (max-width: 600px) {
    .footer-container {
      flex-direction: column;
      gap: 1.5rem;
    }
    .footer-left, .footer-right {
      flex: 1 1 100%;
      min-width: 0;
    }
    .footer-nav ul {
      flex-direction: column;
      gap: 0.5rem;
    }
    .footer-policy {
      flex-direction: column;
      gap: 0.5rem;
    }
  }

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

.pol-lx6{padding:calc(var(--space-y)*2.65) var(--space-x)}
.pol-lx6 .pol-grid{max-width:var(--max-w);margin:0 auto;display:grid;grid-template-columns:repeat(12,minmax(0,1fr));gap:.6rem}
.pol-lx6 .pol-main{grid-column:span 12;padding:1rem;border-radius:var(--radius-xl);background:var(--surface-1);border:1px solid var(--border-on-surface)}
.pol-lx6 .pol-main h2{margin:0;font-size:clamp(1.75rem,3.2vw,2.45rem)}
.pol-lx6 .pol-main p{margin:.38rem 0 0;color:var(--fg-on-surface-light)}
.pol-lx6 .pol-card{grid-column:span 4;padding:.85rem;border-radius:var(--radius-md);background:var(--surface-2);border:1px solid var(--border-on-surface)}
.pol-lx6 .pol-card h3{margin:0 0 .22rem;font-size:1rem}
.pol-lx6 .pol-card p{margin:0;color:var(--fg-on-surface-light)}
.pol-lx6 .pol-foot{grid-column:span 12;padding:.85rem;border-radius:var(--radius-md);background:color-mix(in srgb,var(--surface-1) 86%, var(--bg-accent) 14%);border:1px solid var(--border-on-surface)}
.pol-lx6 .pol-foot h3{margin:0 0 .2rem}
.pol-lx6 .pol-foot p{margin:0}
@media (max-width:920px){.pol-lx6 .pol-card{grid-column:span 6}}@media (max-width:620px){.pol-lx6 .pol-card{grid-column:1/-1}}

header {
    background-color: var(--neutral-0);
    border-bottom: 1px solid var(--border-on-surface-light);
    padding: var(--space-y) var(--space-x);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
  }
  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: 0.05em;
    flex-shrink: 0;
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  .nav-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap);
  }
  .nav-menu a {
    text-decoration: none;
    color: var(--neutral-800);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: 0.25rem 0;
    transition: color var(--anim-duration) var(--anim-ease);
    position: relative;
  }
  .nav-menu a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: width var(--anim-duration) var(--anim-ease);
  }
  .nav-menu a:hover {
    color: var(--accent);
  }
  .nav-menu a:hover::after {
    width: 100%;
  }
  .cta-button {
    display: inline-block;
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    font-weight: 600;
    transition: background-color var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
  }
  .cta-button:hover {
    background-color: var(--bg-primary-hover);
    box-shadow: var(--shadow-md);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    transition: background-color var(--anim-duration) var(--anim-ease);
  }
  .burger span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--neutral-900);
    border-radius: 2px;
    transition: all var(--anim-duration) var(--anim-ease);
  }
  .burger:hover {
    background-color: var(--btn-ghost-bg-hover);
  }
  .burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
  }
  .burger.active span:nth-child(2) {
    opacity: 0;
  }
  .burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px);
  }

  @media (max-width: 767px) {
    .nav-menu {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background-color: var(--neutral-0);
      border-bottom: 1px solid var(--border-on-surface-light);
      box-shadow: var(--shadow-md);
      padding: var(--space-y) var(--space-x);
    }
    .nav-menu.open {
      display: block;
    }
    .nav-menu ul {
      flex-direction: column;
      gap: var(--space-y);
    }
    .nav-menu a {
      display: block;
      padding: 0.5rem 0;
    }
    .burger {
      display: flex;
    }
    .cta-button {
      display: none;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1.5rem 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
  }
  .footer-left {
    flex: 1 1 300px;
    min-width: 250px;
  }
  .footer-right {
    flex: 2 1 400px;
    min-width: 280px;
  }
  .footer-logo {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #f5a623;
  }
  .footer-tagline {
    margin-top: 0.25rem;
    font-size: 0.95rem;
    color: #b0b0c0;
  }
  .footer-contact p {
    margin: 0.4rem 0;
    font-size: 0.95rem;
  }
  .footer-contact a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-contact a:hover {
    color: #f5a623;
    text-decoration: underline;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem 1.5rem;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #f5a623;
    text-decoration: underline;
  }
  .footer-policy {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    margin-bottom: 1.2rem;
  }
  .footer-policy a {
    color: #b0b0c0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
  }
  .footer-policy a:hover {
    color: #f5a623;
    text-decoration: underline;
  }
  .footer-disclaimer {
    font-size: 0.8rem;
    color: #8888a0;
    line-height: 1.4;
    border-top: 1px solid #2a2a3e;
    padding-top: 1rem;
    margin-top: 0.5rem;
  }
  .footer-disclaimer p {
    margin: 0;
  }
  .footer-bottom {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #2a2a3e;
    font-size: 0.85rem;
    color: #8888a0;
  }
  .footer-bottom p {
    margin: 0;
  }
  @media (max-width: 600px) {
    .footer-container {
      flex-direction: column;
      gap: 1.5rem;
    }
    .footer-left, .footer-right {
      flex: 1 1 100%;
      min-width: 0;
    }
    .footer-nav ul {
      flex-direction: column;
      gap: 0.5rem;
    }
    .footer-policy {
      flex-direction: column;
      gap: 0.5rem;
    }
  }

.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-e {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 36px);
        background: var(--accent);
        color: var(--neutral-0);
    }

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

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

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

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

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

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

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

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

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

header {
    background-color: var(--neutral-0);
    border-bottom: 1px solid var(--border-on-surface-light);
    padding: var(--space-y) var(--space-x);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
  }
  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: 0.05em;
    flex-shrink: 0;
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  .nav-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap);
  }
  .nav-menu a {
    text-decoration: none;
    color: var(--neutral-800);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: 0.25rem 0;
    transition: color var(--anim-duration) var(--anim-ease);
    position: relative;
  }
  .nav-menu a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: width var(--anim-duration) var(--anim-ease);
  }
  .nav-menu a:hover {
    color: var(--accent);
  }
  .nav-menu a:hover::after {
    width: 100%;
  }
  .cta-button {
    display: inline-block;
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    font-weight: 600;
    transition: background-color var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
  }
  .cta-button:hover {
    background-color: var(--bg-primary-hover);
    box-shadow: var(--shadow-md);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    transition: background-color var(--anim-duration) var(--anim-ease);
  }
  .burger span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--neutral-900);
    border-radius: 2px;
    transition: all var(--anim-duration) var(--anim-ease);
  }
  .burger:hover {
    background-color: var(--btn-ghost-bg-hover);
  }
  .burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
  }
  .burger.active span:nth-child(2) {
    opacity: 0;
  }
  .burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px);
  }

  @media (max-width: 767px) {
    .nav-menu {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background-color: var(--neutral-0);
      border-bottom: 1px solid var(--border-on-surface-light);
      box-shadow: var(--shadow-md);
      padding: var(--space-y) var(--space-x);
    }
    .nav-menu.open {
      display: block;
    }
    .nav-menu ul {
      flex-direction: column;
      gap: var(--space-y);
    }
    .nav-menu a {
      display: block;
      padding: 0.5rem 0;
    }
    .burger {
      display: flex;
    }
    .cta-button {
      display: none;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1.5rem 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
  }
  .footer-left {
    flex: 1 1 300px;
    min-width: 250px;
  }
  .footer-right {
    flex: 2 1 400px;
    min-width: 280px;
  }
  .footer-logo {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #f5a623;
  }
  .footer-tagline {
    margin-top: 0.25rem;
    font-size: 0.95rem;
    color: #b0b0c0;
  }
  .footer-contact p {
    margin: 0.4rem 0;
    font-size: 0.95rem;
  }
  .footer-contact a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-contact a:hover {
    color: #f5a623;
    text-decoration: underline;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem 1.5rem;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #f5a623;
    text-decoration: underline;
  }
  .footer-policy {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    margin-bottom: 1.2rem;
  }
  .footer-policy a {
    color: #b0b0c0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
  }
  .footer-policy a:hover {
    color: #f5a623;
    text-decoration: underline;
  }
  .footer-disclaimer {
    font-size: 0.8rem;
    color: #8888a0;
    line-height: 1.4;
    border-top: 1px solid #2a2a3e;
    padding-top: 1rem;
    margin-top: 0.5rem;
  }
  .footer-disclaimer p {
    margin: 0;
  }
  .footer-bottom {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #2a2a3e;
    font-size: 0.85rem;
    color: #8888a0;
  }
  .footer-bottom p {
    margin: 0;
  }
  @media (max-width: 600px) {
    .footer-container {
      flex-direction: column;
      gap: 1.5rem;
    }
    .footer-left, .footer-right {
      flex: 1 1 100%;
      min-width: 0;
    }
    .footer-nav ul {
      flex-direction: column;
      gap: 0.5rem;
    }
    .footer-policy {
      flex-direction: column;
      gap: 0.5rem;
    }
  }

.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-u3{padding:calc(var(--space-y)*2.9) var(--space-x);background:var(--bg-primary);color:var(--fg-on-primary)} .thank-u3 .shell{max-width:var(--max-w);margin:0 auto;display:grid;gap:var(--gap)} .thank-u3 h2{margin:0;font-size:clamp(1.85rem,3.6vw,2.8rem);line-height:1.1} .thank-u3 .sub{margin:.35rem 0 0;opacity:.9;} .thank-u3 article,.thank-u3 li{padding:.85rem;border-radius:var(--radius-sm);background:var(--chip-bg);border:1px solid var(--btn-ghost-bg-hover);list-style:none} .thank-u3 p{margin:0} .thank-u3 a{text-decoration:none;color:inherit;font-weight:700} .thank-u3 .hero{padding:1rem;border-radius:var(--radius-lg);background:var(--chip-bg);border:1px solid var(--btn-ghost-bg-hover)} .thank-u3 .stack{display:grid;gap:.45rem;margin-top:.7rem} .thank-u3 .stack p{padding:.65rem;border-radius:var(--radius-sm);background:var(--chip-bg);border:1px solid var(--btn-ghost-bg-hover)} .thank-u3 article{transition:transform var(--anim-duration) var(--anim-ease),box-shadow var(--anim-duration) var(--anim-ease)} .thank-u3 article:hover{transform:translateY(-4px);box-shadow:var(--shadow-md)} @media (max-width:860px){.thank-u3 .split,.thank-u3 .media,.thank-u3 .grid,.thank-u3 .cards,.thank-u3 .bento,.thank-u3 .foot{grid-template-columns:1fr}}

header {
    background-color: var(--neutral-0);
    border-bottom: 1px solid var(--border-on-surface-light);
    padding: var(--space-y) var(--space-x);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
  }
  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: 0.05em;
    flex-shrink: 0;
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  .nav-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap);
  }
  .nav-menu a {
    text-decoration: none;
    color: var(--neutral-800);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: 0.25rem 0;
    transition: color var(--anim-duration) var(--anim-ease);
    position: relative;
  }
  .nav-menu a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: width var(--anim-duration) var(--anim-ease);
  }
  .nav-menu a:hover {
    color: var(--accent);
  }
  .nav-menu a:hover::after {
    width: 100%;
  }
  .cta-button {
    display: inline-block;
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    font-weight: 600;
    transition: background-color var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
  }
  .cta-button:hover {
    background-color: var(--bg-primary-hover);
    box-shadow: var(--shadow-md);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    transition: background-color var(--anim-duration) var(--anim-ease);
  }
  .burger span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--neutral-900);
    border-radius: 2px;
    transition: all var(--anim-duration) var(--anim-ease);
  }
  .burger:hover {
    background-color: var(--btn-ghost-bg-hover);
  }
  .burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
  }
  .burger.active span:nth-child(2) {
    opacity: 0;
  }
  .burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px);
  }

  @media (max-width: 767px) {
    .nav-menu {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background-color: var(--neutral-0);
      border-bottom: 1px solid var(--border-on-surface-light);
      box-shadow: var(--shadow-md);
      padding: var(--space-y) var(--space-x);
    }
    .nav-menu.open {
      display: block;
    }
    .nav-menu ul {
      flex-direction: column;
      gap: var(--space-y);
    }
    .nav-menu a {
      display: block;
      padding: 0.5rem 0;
    }
    .burger {
      display: flex;
    }
    .cta-button {
      display: none;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1.5rem 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
  }
  .footer-left {
    flex: 1 1 300px;
    min-width: 250px;
  }
  .footer-right {
    flex: 2 1 400px;
    min-width: 280px;
  }
  .footer-logo {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #f5a623;
  }
  .footer-tagline {
    margin-top: 0.25rem;
    font-size: 0.95rem;
    color: #b0b0c0;
  }
  .footer-contact p {
    margin: 0.4rem 0;
    font-size: 0.95rem;
  }
  .footer-contact a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-contact a:hover {
    color: #f5a623;
    text-decoration: underline;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem 1.5rem;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #f5a623;
    text-decoration: underline;
  }
  .footer-policy {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    margin-bottom: 1.2rem;
  }
  .footer-policy a {
    color: #b0b0c0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
  }
  .footer-policy a:hover {
    color: #f5a623;
    text-decoration: underline;
  }
  .footer-disclaimer {
    font-size: 0.8rem;
    color: #8888a0;
    line-height: 1.4;
    border-top: 1px solid #2a2a3e;
    padding-top: 1rem;
    margin-top: 0.5rem;
  }
  .footer-disclaimer p {
    margin: 0;
  }
  .footer-bottom {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #2a2a3e;
    font-size: 0.85rem;
    color: #8888a0;
  }
  .footer-bottom p {
    margin: 0;
  }
  @media (max-width: 600px) {
    .footer-container {
      flex-direction: column;
      gap: 1.5rem;
    }
    .footer-left, .footer-right {
      flex: 1 1 100%;
      min-width: 0;
    }
    .footer-nav ul {
      flex-direction: column;
      gap: 0.5rem;
    }
    .footer-policy {
      flex-direction: column;
      gap: 0.5rem;
    }
  }

.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-e {
        padding: clamp(56px, 10vw, 112px) 20px;
        background: repeating-linear-gradient(45deg, var(--bg-alt), var(--bg-alt) 14px, var(--neutral-0) 14px, var(--neutral-0) 28px);
        color: var(--fg-on-page);
    }

    .err-slab-e .inner {
        max-width: 700px;
        margin: 0 auto;
        text-align: center;
        padding: clamp(26px, 4vw, 42px);
        background: var(--surface-1);
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-md);
    }

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

    .err-slab-e p {
        margin: 10px 0 0;
        color: var(--neutral-600);
    }

    .err-slab-e a {
        display: inline-block;
        margin-top: 16px;
        color: var(--link);
        text-decoration: none;
        border-bottom: 2px solid var(--link);
        padding-bottom: 2px;
    }