:root {
  --font-family: "Rubik", sans-serif;
  --font-size-base: 14.7px;
  --line-height-base: 1.55;

  --max-w: 1240px;
  --space-x: 0.81rem;
  --space-y: 1.02rem;
  --gap: 0.86rem;

  --radius-xl: 1.04rem;
  --radius-lg: 0.64rem;
  --radius-md: 0.42rem;
  --radius-sm: 0.29rem;

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

  --overlay: rgba(0,0,0,0.5);
  --anim-duration: 190ms;
  --anim-ease: cubic-bezier(0.22,1,0.36,1);
  --random-number: 2;

  --brand: #1a3a5c;
  --brand-contrast: #ffffff;
  --accent: #e67e22;
  --accent-contrast: #ffffff;

  --neutral-0: #ffffff;
  --neutral-100: #f5f7fa;
  --neutral-300: #d1d5db;
  --neutral-600: #6b7280;
  --neutral-800: #374151;
  --neutral-900: #111827;

  --bg-page: #f0f4f8;
  --fg-on-page: #1f2937;

  --bg-alt: #e2e8f0;
  --fg-on-alt: #1e293b;

  --surface-1: #ffffff;
  --surface-2: #f9fafb;
  --fg-on-surface: #1f2937;
  --border-on-surface: #e5e7eb;

  --surface-light: #ffffff;
  --fg-on-surface-light: #374151;
  --border-on-surface-light: #e5e7eb;

  --bg-primary: #2563eb;
  --fg-on-primary: #ffffff;
  --bg-primary-hover: #1d4ed8;
  --ring: #3b82f6;

  --bg-accent: #f39c12;
  --fg-on-accent: #ffffff;
  --bg-accent-hover: #d35400;

  --link: #2563eb;
  --link-hover: #1d4ed8;

  --gradient-hero: linear-gradient(135deg, #1a3a5c 0%, #2563eb 100%);
  --gradient-accent: linear-gradient(135deg, #e67e22 0%, #f39c12 100%);

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

header {
    background-color: var(--neutral-0);
    border-bottom: 1px solid var(--border-on-surface-light);
    padding: var(--space-y) var(--space-x);
    position: relative;
    z-index: 100;
  }

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

  .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);
    padding: var(--space-y) 0;
    transition: color var(--anim-duration) var(--anim-ease);
  }

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

  .cta-button {
    display: inline-block;
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
    padding: calc(var(--space-y) * 0.5) var(--space-x);
    border-radius: var(--radius-md);
    text-decoration: none;
    font-size: var(--font-size-base);
    font-weight: 600;
    transition: background-color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }

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

  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
    padding: 0;
  }

  .burger span {
    display: block;
    width: 24px;
    height: 3px;
    background-color: var(--neutral-900);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
  }

  .burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .burger.active span:nth-child(2) {
    opacity: 0;
  }

  .burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  @media (max-width: 767px) {
    .nav-menu {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background-color: var(--neutral-0);
      border-bottom: 1px solid var(--border-on-surface-light);
      padding: var(--space-y) var(--space-x);
      display: none;
      box-shadow: var(--shadow-md);
    }

    .nav-menu.open {
      display: block;
    }

    .nav-menu ul {
      flex-direction: column;
      gap: var(--space-y);
    }

    .nav-menu a {
      display: block;
      padding: var(--space-y) 0;
    }

    .cta-button {
      display: none;
    }

    .burger {
      display: flex;
    }
  }

  @media (min-width: 768px) {
    .nav-menu {
      display: flex !important;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 40px 20px;
    font-family: Arial, sans-serif;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
  }
  .footer-left {
    flex: 1 1 300px;
  }
  .footer-brand .logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #f0c040;
    text-transform: uppercase;
    letter-spacing: 2px;
  }
  .copyright {
    margin-top: 10px;
    font-size: 0.9rem;
    color: #b0b0b0;
  }
  .footer-right {
    flex: 2 1 500px;
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #f0c040;
  }
  .footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
  }
  .footer-links a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
  }
  .footer-links a:hover {
    color: #f0c040;
  }
  .footer-contact {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }
  .footer-contact p {
    margin: 0;
    font-size: 0.95rem;
  }
  .footer-contact a {
    color: #e0e0e0;
    text-decoration: none;
  }
  .footer-contact a:hover {
    color: #f0c040;
  }
  .disclaimer {
    font-size: 0.8rem;
    color: #888;
    line-height: 1.4;
    margin-top: 10px;
    border-top: 1px solid #333;
    padding-top: 10px;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-links {
      justify-content: center;
    }
    .footer-contact {
      align-items: center;
    }
  }

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

    .cookie-cv15__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, 0.45), rgba(17, 24, 39, 0.95));
        color: #f3f4f6;
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, 0.35);
    }

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

    .cookie-cv15__top strong {
        font-size: 16px;
    }

    .cookie-cv15__top a {
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
    }

    .cookie-cv15 p {
        margin: 10px 0 0;
        color: #d1d5db;
    }

    .cookie-cv15__actions {
        margin-top: 14px;
        display: flex;
        gap: 8px;
    }

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

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

    @media (max-width: 760px) {
        .cookie-cv15__card {
            max-width: none;
        }
    }

.intro-metrics-l4 {
        padding: clamp(3.6rem, 8vw, 6.6rem) var(--space-x);
        background: linear-gradient(180deg, var(--surface-1), var(--bg-alt));
        color: var(--fg-on-page);
    }

    .intro-metrics-l4__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .intro-metrics-l4__copy {
        text-align: center;
        max-width: 44rem;
        margin: 0 auto;
    }

    .intro-metrics-l4__copy p {
        margin: 0;
        color: var(--neutral-600);
        text-transform: uppercase;
        letter-spacing: .1em;
        font-size: .82rem;
    }

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

    .intro-metrics-l4__copy span {
        display: block;
        margin-top: .9rem;
        color: var(--neutral-600);
    }

    .intro-metrics-l4__stats {
        margin-top: 1.3rem;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(11rem, 1fr));
        gap: var(--gap);
    }

    .intro-metrics-l4__stats article {
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface-light);
        text-align: center;
    }

    .intro-metrics-l4__stats strong {
        display: block;
        font-size: 1.6rem;
        color: var(--brand);
    }

    .intro-metrics-l4__stats span {
        display: block;
        margin-top: .35rem;
        color: var(--neutral-600);
    }

    .intro-metrics-l4__footer {
        margin-top: 1rem;
        text-align: center;
        color: var(--neutral-800);
    }

.next-c-1 {
        padding: clamp(3.3rem, 7vw, 6rem) var(--space-x);
        background: var(--gradient-accent);
        color: var(--fg-on-primary);
    }

    .next-c-1__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .next-c-1__mast {
        display: flex;
        justify-content: space-between;
        align-items: end;
        gap: 1rem;
        flex-wrap: wrap;
        margin-bottom: 1.1rem;
    }

    .next-c-1__mast p {
        margin: 0;
        color: rgba(255, 255, 255, 0.82);
    }

    .next-c-1__mast h2 {
        margin: .55rem 0 0;
        font-size: clamp(2rem, 4vw, 3rem);
    }

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

    .next-c-1__list {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
        gap: var(--gap);
    }

    .next-c-1__list article {
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: rgba(255, 255, 255, 0.12);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .next-c-1__list i {
        font-style: normal;
        display: inline-flex;
        width: 2.3rem;
        height: 2.3rem;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: rgba(255, 255, 255, .16);
    }

    .next-c-1__list h3 {
        margin: .8rem 0 .35rem;
        font-size: 1.04rem;
    }

    .next-c-1__list p {
        margin: 0;
        color: rgba(255, 255, 255, 0.82);
    }

    .next-c-1__list a {
        display: inline-block;
        margin-top: .75rem;
        color: var(--bg-accent);
        text-decoration: none;
        font-weight: 600;
    }

    /* macro-bg:next-c-1__wrap */
    .next-c-1 {
        overflow: hidden;
    }

    .next-c-1__wrap {
        background-image: linear-gradient(rgba(0, 0, 0, .88), rgba(17, 24, 39, .88)), url('https://images.pexels.com/photos/159275/pexels-photo-159275.jpeg?auto=compress&cs=tinysrgb&w=800');
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        border-radius: var(--radius-xl);
        overflow: hidden;
        padding: var(--space-y);
    }

.faq-fresh-v3 {
        padding: calc(var(--space-y) * 3) var(--space-x);
        background: var(--surface-1);
        color: var(--fg-on-surface);
    }

    .faq-fresh-v3 .shell {
        max-width: 920px;
        margin: 0 auto;
        display: grid;
        gap: 1rem;
    }

    .faq-fresh-v3 h2 {
        margin: 0;
        font-size: clamp(1.8rem, 3.3vw, 2.5rem);
    }

    .faq-fresh-v3 .list {
        display: grid;
        gap: var(--gap);
        padding: 0;
        margin: 0;
        counter-reset: faqnum;
    }

    .faq-fresh-v3 li {
        list-style: none;
        padding: 1rem 1rem 1rem 3rem;
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-md);
        position: relative;
        background: var(--surface-2);
    }

    .faq-fresh-v3 li::before {
        counter-increment: faqnum;
        content: counter(faqnum);
        position: absolute;
        left: 1rem;
        top: 1rem;
        width: 1.4rem;
        height: 1.4rem;
        border-radius: 50%;
        display: grid;
        place-items: center;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        font-size: .78rem;
        font-weight: 700;
    }

    .faq-fresh-v3 h3 {
        margin: 0 0 .45rem;
    }

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

.values-cloud-c5 {
        padding: clamp(3.5rem, 8vw, 6rem) var(--space-x);
        background: linear-gradient(135deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
    }

    .values-cloud-c5__wrap {
        max-width: 62rem;
        margin: 0 auto;
    }

    .values-cloud-c5__head {
        text-align: center;
        margin-bottom: 1.1rem;
    }

    .values-cloud-c5__head p {
        margin: 0;
        color: rgba(255, 255, 255, .76);
    }

    .values-cloud-c5__head h2 {
        margin: .5rem 0 0;
        font-size: clamp(2rem, 4vw, 3rem);
    }

    .values-cloud-c5__cloud {
        display: flex;
        gap: .8rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .values-cloud-c5__cloud article {
        width: min(16rem, 100%);
        padding: 1rem;
        border-radius: 1.5rem;
        background: rgba(255, 255, 255, .14);
        border: 1px solid rgba(255, 255, 255, .18);
    }

    .values-cloud-c5__cloud p {
        margin: .45rem 0 0;

    }

    .values-cloud-c5__cloud span {
        display: block;
        margin-top: .55rem;
        color: rgba(255, 255, 255, .76);
    }

header {
    background-color: var(--neutral-0);
    border-bottom: 1px solid var(--border-on-surface-light);
    padding: var(--space-y) var(--space-x);
    position: relative;
    z-index: 100;
  }

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

  .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);
    padding: var(--space-y) 0;
    transition: color var(--anim-duration) var(--anim-ease);
  }

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

  .cta-button {
    display: inline-block;
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
    padding: calc(var(--space-y) * 0.5) var(--space-x);
    border-radius: var(--radius-md);
    text-decoration: none;
    font-size: var(--font-size-base);
    font-weight: 600;
    transition: background-color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }

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

  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
    padding: 0;
  }

  .burger span {
    display: block;
    width: 24px;
    height: 3px;
    background-color: var(--neutral-900);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
  }

  .burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .burger.active span:nth-child(2) {
    opacity: 0;
  }

  .burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  @media (max-width: 767px) {
    .nav-menu {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background-color: var(--neutral-0);
      border-bottom: 1px solid var(--border-on-surface-light);
      padding: var(--space-y) var(--space-x);
      display: none;
      box-shadow: var(--shadow-md);
    }

    .nav-menu.open {
      display: block;
    }

    .nav-menu ul {
      flex-direction: column;
      gap: var(--space-y);
    }

    .nav-menu a {
      display: block;
      padding: var(--space-y) 0;
    }

    .cta-button {
      display: none;
    }

    .burger {
      display: flex;
    }
  }

  @media (min-width: 768px) {
    .nav-menu {
      display: flex !important;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 40px 20px;
    font-family: Arial, sans-serif;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
  }
  .footer-left {
    flex: 1 1 300px;
  }
  .footer-brand .logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #f0c040;
    text-transform: uppercase;
    letter-spacing: 2px;
  }
  .copyright {
    margin-top: 10px;
    font-size: 0.9rem;
    color: #b0b0b0;
  }
  .footer-right {
    flex: 2 1 500px;
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #f0c040;
  }
  .footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
  }
  .footer-links a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
  }
  .footer-links a:hover {
    color: #f0c040;
  }
  .footer-contact {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }
  .footer-contact p {
    margin: 0;
    font-size: 0.95rem;
  }
  .footer-contact a {
    color: #e0e0e0;
    text-decoration: none;
  }
  .footer-contact a:hover {
    color: #f0c040;
  }
  .disclaimer {
    font-size: 0.8rem;
    color: #888;
    line-height: 1.4;
    margin-top: 10px;
    border-top: 1px solid #333;
    padding-top: 10px;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-links {
      justify-content: center;
    }
    .footer-contact {
      align-items: center;
    }
  }

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

    .cookie-cv15__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, 0.45), rgba(17, 24, 39, 0.95));
        color: #f3f4f6;
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, 0.35);
    }

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

    .cookie-cv15__top strong {
        font-size: 16px;
    }

    .cookie-cv15__top a {
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
    }

    .cookie-cv15 p {
        margin: 10px 0 0;
        color: #d1d5db;
    }

    .cookie-cv15__actions {
        margin-top: 14px;
        display: flex;
        gap: 8px;
    }

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

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

    @media (max-width: 760px) {
        .cookie-cv15__card {
            max-width: none;
        }
    }

.product-list--colored-v5 {

    padding: 60px 20px;
    background: var(--neutral-900);
    color: var(--neutral-0);
}

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

.product-list__header {
    text-align: center;
    margin-bottom: 24px;
}

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

.product-list__header p {
    margin: 0;
    color: var(--neutral-300);
}

.product-list__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px,1fr));
    gap: 14px;
}

.product-list__card {
    border-radius: var(--radius-xl);
    padding: var(--space-y);
    background: rgba(15,23,42,0.96);
    border: 1px solid rgba(148,163,184,0.7);
}

.product-list__card--bestseller {
    border-color: var(--accent);
}
.product-list__card--limited {
    border-color: var(--accent);
}
.product-list__card--new {
    border-color: var(--bg-primary);
}

.product-list__name {
    margin: 0 0 4px;
    font-size: 0.95rem;
}

.product-list__price {
    margin: 0 0 6px;
    font-size: 1rem;
    font-weight: 600;
}

.product-list__note {
    margin: 0;
    font-size: 0.9rem;
    color: var(--neutral-100);
}

.nftouch-v12 {
        padding: clamp(56px, 8vw, 96px) 16px;
        background: var(--bg-alt);
        color: var(--fg-on-page);
    }

    .nftouch-v12__wrap {
        max-width: 860px;
        margin: 0 auto;
    }

    .nftouch-v12__header {
        margin-bottom: 14px;
    }

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

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

    .nftouch-v12 ul {
        margin: 0;
        padding: 0;
        list-style: none;
        display: grid;
        gap: 8px;
    }

    .nftouch-v12 li {
        border: 1px solid var(--border-on-surface);
        border-radius: 12px;
        background: var(--neutral-0);
        padding: 10px 12px;
        display: grid;
        grid-template-columns: 1fr auto auto;
        gap: 8px;
        align-items: center;
    }

    .nftouch-v12 li span {
        color: var(--neutral-600);
        font-size: .85rem;
    }

    .nftouch-v12 li a {
        color: var(--bg-primary);
        text-decoration: none;
    }

    .nftouch-v12__cta {
        display: inline-block;
        margin-top: 12px;
        text-decoration: none;
        background: var(--bg-primary);
        color: var(--neutral-0);
        border-radius: 10px;
        padding: 10px 14px;
    }

    @media (max-width: 680px) {
        .nftouch-v12 li {
            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);
    position: relative;
    z-index: 100;
  }

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

  .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);
    padding: var(--space-y) 0;
    transition: color var(--anim-duration) var(--anim-ease);
  }

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

  .cta-button {
    display: inline-block;
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
    padding: calc(var(--space-y) * 0.5) var(--space-x);
    border-radius: var(--radius-md);
    text-decoration: none;
    font-size: var(--font-size-base);
    font-weight: 600;
    transition: background-color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }

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

  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
    padding: 0;
  }

  .burger span {
    display: block;
    width: 24px;
    height: 3px;
    background-color: var(--neutral-900);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
  }

  .burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .burger.active span:nth-child(2) {
    opacity: 0;
  }

  .burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  @media (max-width: 767px) {
    .nav-menu {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background-color: var(--neutral-0);
      border-bottom: 1px solid var(--border-on-surface-light);
      padding: var(--space-y) var(--space-x);
      display: none;
      box-shadow: var(--shadow-md);
    }

    .nav-menu.open {
      display: block;
    }

    .nav-menu ul {
      flex-direction: column;
      gap: var(--space-y);
    }

    .nav-menu a {
      display: block;
      padding: var(--space-y) 0;
    }

    .cta-button {
      display: none;
    }

    .burger {
      display: flex;
    }
  }

  @media (min-width: 768px) {
    .nav-menu {
      display: flex !important;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 40px 20px;
    font-family: Arial, sans-serif;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
  }
  .footer-left {
    flex: 1 1 300px;
  }
  .footer-brand .logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #f0c040;
    text-transform: uppercase;
    letter-spacing: 2px;
  }
  .copyright {
    margin-top: 10px;
    font-size: 0.9rem;
    color: #b0b0b0;
  }
  .footer-right {
    flex: 2 1 500px;
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #f0c040;
  }
  .footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
  }
  .footer-links a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
  }
  .footer-links a:hover {
    color: #f0c040;
  }
  .footer-contact {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }
  .footer-contact p {
    margin: 0;
    font-size: 0.95rem;
  }
  .footer-contact a {
    color: #e0e0e0;
    text-decoration: none;
  }
  .footer-contact a:hover {
    color: #f0c040;
  }
  .disclaimer {
    font-size: 0.8rem;
    color: #888;
    line-height: 1.4;
    margin-top: 10px;
    border-top: 1px solid #333;
    padding-top: 10px;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-links {
      justify-content: center;
    }
    .footer-contact {
      align-items: center;
    }
  }

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

    .cookie-cv15__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, 0.45), rgba(17, 24, 39, 0.95));
        color: #f3f4f6;
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, 0.35);
    }

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

    .cookie-cv15__top strong {
        font-size: 16px;
    }

    .cookie-cv15__top a {
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
    }

    .cookie-cv15 p {
        margin: 10px 0 0;
        color: #d1d5db;
    }

    .cookie-cv15__actions {
        margin-top: 14px;
        display: flex;
        gap: 8px;
    }

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

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

    @media (max-width: 760px) {
        .cookie-cv15__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;
        }

        /* Dacă randomNumber este par (2) - primul copil primește order: 2 */
        .product-item .product-item__c > *:first-child {
            order: calc((var(--random-number) % 2) * 2);
        }
    }

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

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

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

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

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

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

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

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

    /* Dacă randomNumber este par (2) - primul copil primește order: 2 */
    .product-item .product-item__actions > *:first-child {
        order: calc((var(--random-number) % 2) * 2);
    }

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

    .product-item .product-item__add-cart {
        background: var(--bg-primary);
        color: var(--fg-on-primary) 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);
    }

.gallery--light-v6 {

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

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

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

.gallery__strip {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(120px, 1fr);
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 4px;
}

.gallery__thumb {
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--surface-light);
    border: 1px solid var(--border-on-surface-light);
    min-width: 120px;
}

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

header {
    background-color: var(--neutral-0);
    border-bottom: 1px solid var(--border-on-surface-light);
    padding: var(--space-y) var(--space-x);
    position: relative;
    z-index: 100;
  }

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

  .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);
    padding: var(--space-y) 0;
    transition: color var(--anim-duration) var(--anim-ease);
  }

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

  .cta-button {
    display: inline-block;
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
    padding: calc(var(--space-y) * 0.5) var(--space-x);
    border-radius: var(--radius-md);
    text-decoration: none;
    font-size: var(--font-size-base);
    font-weight: 600;
    transition: background-color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }

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

  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
    padding: 0;
  }

  .burger span {
    display: block;
    width: 24px;
    height: 3px;
    background-color: var(--neutral-900);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
  }

  .burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .burger.active span:nth-child(2) {
    opacity: 0;
  }

  .burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  @media (max-width: 767px) {
    .nav-menu {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background-color: var(--neutral-0);
      border-bottom: 1px solid var(--border-on-surface-light);
      padding: var(--space-y) var(--space-x);
      display: none;
      box-shadow: var(--shadow-md);
    }

    .nav-menu.open {
      display: block;
    }

    .nav-menu ul {
      flex-direction: column;
      gap: var(--space-y);
    }

    .nav-menu a {
      display: block;
      padding: var(--space-y) 0;
    }

    .cta-button {
      display: none;
    }

    .burger {
      display: flex;
    }
  }

  @media (min-width: 768px) {
    .nav-menu {
      display: flex !important;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 40px 20px;
    font-family: Arial, sans-serif;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
  }
  .footer-left {
    flex: 1 1 300px;
  }
  .footer-brand .logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #f0c040;
    text-transform: uppercase;
    letter-spacing: 2px;
  }
  .copyright {
    margin-top: 10px;
    font-size: 0.9rem;
    color: #b0b0b0;
  }
  .footer-right {
    flex: 2 1 500px;
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #f0c040;
  }
  .footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
  }
  .footer-links a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
  }
  .footer-links a:hover {
    color: #f0c040;
  }
  .footer-contact {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }
  .footer-contact p {
    margin: 0;
    font-size: 0.95rem;
  }
  .footer-contact a {
    color: #e0e0e0;
    text-decoration: none;
  }
  .footer-contact a:hover {
    color: #f0c040;
  }
  .disclaimer {
    font-size: 0.8rem;
    color: #888;
    line-height: 1.4;
    margin-top: 10px;
    border-top: 1px solid #333;
    padding-top: 10px;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-links {
      justify-content: center;
    }
    .footer-contact {
      align-items: center;
    }
  }

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

    .cookie-cv15__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, 0.45), rgba(17, 24, 39, 0.95));
        color: #f3f4f6;
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, 0.35);
    }

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

    .cookie-cv15__top strong {
        font-size: 16px;
    }

    .cookie-cv15__top a {
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
    }

    .cookie-cv15 p {
        margin: 10px 0 0;
        color: #d1d5db;
    }

    .cookie-cv15__actions {
        margin-top: 14px;
        display: flex;
        gap: 8px;
    }

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

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

    @media (max-width: 760px) {
        .cookie-cv15__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;
        }

        /* Dacă randomNumber este par (2) - primul copil primește order: 2 */
        .product-item .product-item__c > *:first-child {
            order: calc((var(--random-number) % 2) * 2);
        }
    }

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

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

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

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

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

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

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

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

    /* Dacă randomNumber este par (2) - primul copil primește 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);
    position: relative;
    z-index: 100;
  }

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

  .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);
    padding: var(--space-y) 0;
    transition: color var(--anim-duration) var(--anim-ease);
  }

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

  .cta-button {
    display: inline-block;
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
    padding: calc(var(--space-y) * 0.5) var(--space-x);
    border-radius: var(--radius-md);
    text-decoration: none;
    font-size: var(--font-size-base);
    font-weight: 600;
    transition: background-color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }

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

  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
    padding: 0;
  }

  .burger span {
    display: block;
    width: 24px;
    height: 3px;
    background-color: var(--neutral-900);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
  }

  .burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .burger.active span:nth-child(2) {
    opacity: 0;
  }

  .burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  @media (max-width: 767px) {
    .nav-menu {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background-color: var(--neutral-0);
      border-bottom: 1px solid var(--border-on-surface-light);
      padding: var(--space-y) var(--space-x);
      display: none;
      box-shadow: var(--shadow-md);
    }

    .nav-menu.open {
      display: block;
    }

    .nav-menu ul {
      flex-direction: column;
      gap: var(--space-y);
    }

    .nav-menu a {
      display: block;
      padding: var(--space-y) 0;
    }

    .cta-button {
      display: none;
    }

    .burger {
      display: flex;
    }
  }

  @media (min-width: 768px) {
    .nav-menu {
      display: flex !important;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 40px 20px;
    font-family: Arial, sans-serif;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
  }
  .footer-left {
    flex: 1 1 300px;
  }
  .footer-brand .logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #f0c040;
    text-transform: uppercase;
    letter-spacing: 2px;
  }
  .copyright {
    margin-top: 10px;
    font-size: 0.9rem;
    color: #b0b0b0;
  }
  .footer-right {
    flex: 2 1 500px;
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #f0c040;
  }
  .footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
  }
  .footer-links a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
  }
  .footer-links a:hover {
    color: #f0c040;
  }
  .footer-contact {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }
  .footer-contact p {
    margin: 0;
    font-size: 0.95rem;
  }
  .footer-contact a {
    color: #e0e0e0;
    text-decoration: none;
  }
  .footer-contact a:hover {
    color: #f0c040;
  }
  .disclaimer {
    font-size: 0.8rem;
    color: #888;
    line-height: 1.4;
    margin-top: 10px;
    border-top: 1px solid #333;
    padding-top: 10px;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-links {
      justify-content: center;
    }
    .footer-contact {
      align-items: center;
    }
  }

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

    .cookie-cv15__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, 0.45), rgba(17, 24, 39, 0.95));
        color: #f3f4f6;
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, 0.35);
    }

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

    .cookie-cv15__top strong {
        font-size: 16px;
    }

    .cookie-cv15__top a {
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
    }

    .cookie-cv15 p {
        margin: 10px 0 0;
        color: #d1d5db;
    }

    .cookie-cv15__actions {
        margin-top: 14px;
        display: flex;
        gap: 8px;
    }

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

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

    @media (max-width: 760px) {
        .cookie-cv15__card {
            max-width: none;
        }
    }

.product-item--colored-v5 {

    padding: 56px 20px;
    background: var(--neutral-900);
    color: var(--neutral-0);
}

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

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

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

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

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

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

header {
    background-color: var(--neutral-0);
    border-bottom: 1px solid var(--border-on-surface-light);
    padding: var(--space-y) var(--space-x);
    position: relative;
    z-index: 100;
  }

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

  .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);
    padding: var(--space-y) 0;
    transition: color var(--anim-duration) var(--anim-ease);
  }

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

  .cta-button {
    display: inline-block;
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
    padding: calc(var(--space-y) * 0.5) var(--space-x);
    border-radius: var(--radius-md);
    text-decoration: none;
    font-size: var(--font-size-base);
    font-weight: 600;
    transition: background-color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }

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

  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
    padding: 0;
  }

  .burger span {
    display: block;
    width: 24px;
    height: 3px;
    background-color: var(--neutral-900);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
  }

  .burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .burger.active span:nth-child(2) {
    opacity: 0;
  }

  .burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  @media (max-width: 767px) {
    .nav-menu {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background-color: var(--neutral-0);
      border-bottom: 1px solid var(--border-on-surface-light);
      padding: var(--space-y) var(--space-x);
      display: none;
      box-shadow: var(--shadow-md);
    }

    .nav-menu.open {
      display: block;
    }

    .nav-menu ul {
      flex-direction: column;
      gap: var(--space-y);
    }

    .nav-menu a {
      display: block;
      padding: var(--space-y) 0;
    }

    .cta-button {
      display: none;
    }

    .burger {
      display: flex;
    }
  }

  @media (min-width: 768px) {
    .nav-menu {
      display: flex !important;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 40px 20px;
    font-family: Arial, sans-serif;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
  }
  .footer-left {
    flex: 1 1 300px;
  }
  .footer-brand .logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #f0c040;
    text-transform: uppercase;
    letter-spacing: 2px;
  }
  .copyright {
    margin-top: 10px;
    font-size: 0.9rem;
    color: #b0b0b0;
  }
  .footer-right {
    flex: 2 1 500px;
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #f0c040;
  }
  .footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
  }
  .footer-links a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
  }
  .footer-links a:hover {
    color: #f0c040;
  }
  .footer-contact {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }
  .footer-contact p {
    margin: 0;
    font-size: 0.95rem;
  }
  .footer-contact a {
    color: #e0e0e0;
    text-decoration: none;
  }
  .footer-contact a:hover {
    color: #f0c040;
  }
  .disclaimer {
    font-size: 0.8rem;
    color: #888;
    line-height: 1.4;
    margin-top: 10px;
    border-top: 1px solid #333;
    padding-top: 10px;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-links {
      justify-content: center;
    }
    .footer-contact {
      align-items: center;
    }
  }

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

    .cookie-cv15__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, 0.45), rgba(17, 24, 39, 0.95));
        color: #f3f4f6;
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, 0.35);
    }

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

    .cookie-cv15__top strong {
        font-size: 16px;
    }

    .cookie-cv15__top a {
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
    }

    .cookie-cv15 p {
        margin: 10px 0 0;
        color: #d1d5db;
    }

    .cookie-cv15__actions {
        margin-top: 14px;
        display: flex;
        gap: 8px;
    }

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

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

    @media (max-width: 760px) {
        .cookie-cv15__card {
            max-width: none;
        }
    }

.checkout {

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

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

    @media (min-width: 1024px) {
        .checkout .checkout__c {
            grid-template-columns: 2fr 1fr;
        }
    }

    .checkout h2 {
        font-size: clamp(24px, 4vw, 32px);
        margin: 0 0 var(--space-y);
    }

    .checkout .checkout__items {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .checkout .checkout__item {
        display: flex;
        gap: 1rem;
        background: var(--surface-light);
        padding: 1rem;
        border-radius: var(--radius-lg);
        border: 1px solid var(--ring);
    }

    .checkout .checkout__item-image {
        width: 100px;
        height: 100px;
        object-fit: cover;
        border-radius: var(--radius-md);
    }

    .checkout .checkout__item-info {
        flex: 1;
    }

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

    .checkout .checkout__item-price {
        font-weight: 700;
        color: var(--bg-primary);
        margin: 0.5rem 0;
    }

    .checkout .checkout__item-quantity {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        margin-top: 0.5rem;
    }

    .checkout .checkout__item-quantity button {
        width: 32px;
        height: 32px;
        border-radius: var(--radius-sm);
        border: 1px solid var(--ring);
        background: var(--gradient-hero);
        cursor: pointer;
    }

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

    .checkout .checkout__total {
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--bg-primary);
        margin-bottom: var(--space-y);
        padding-bottom: var(--space-y);
        border-bottom: 1px solid var(--ring);
    }

    .checkout .checkout__form {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .checkout .checkout__form input,
    .checkout .checkout__form textarea {
        padding: 0.875rem;
        border-radius: var(--radius-md);
        border: 1px solid var(--ring);

        outline: none;
    }

    .checkout .checkout__form input:focus,
    .checkout .checkout__form textarea:focus {
        border-color: var(--bg-primary);
        box-shadow: 0 0 0 3px var(--ring);
    }

    .checkout .checkout__form button {
        padding: 1rem 2rem;
        border-radius: var(--radius-lg);
        border: none;
        background: var(--bg-primary);
        color: var(--fg-on-primary) fff;
        font-weight: 600;
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
    }

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

.support-lv1 {
        padding: clamp(50px, 7vw, 88px) clamp(16px, 4vw, 36px);
        background: var(--bg-alt);
        color: var(--fg-on-page);
    }

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

    .support-lv1__head {
        margin-bottom: 14px;
    }

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

    .support-lv1__head p {
        margin: 8px 0 0;
        color: var(--neutral-600);
    }

    .support-lv1__grid {
        display: grid;
        gap: 10px;
        grid-template-columns: repeat(var(--cols, 3), minmax(0, 1fr));
    }

    .support-lv1__grid article {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-md);
        background: var(--surface-1);
        padding: 12px;
    }

    .support-lv1__grid h3 {
        margin: 0 0 6px;
    }

    .support-lv1__grid p {
        margin: 0 0 8px;
        color: var(--neutral-600);
    }

    .support-lv1__grid a {
        color: var(--link);
        text-decoration: none;
        font-weight: 600;
    }

    @media (max-width: 900px) {
        .support-lv1__grid {
            grid-template-columns: 1fr 1fr;
        }
    }

    @media (max-width: 640px) {
        .support-lv1__grid {
            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);
    position: relative;
    z-index: 100;
  }

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

  .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);
    padding: var(--space-y) 0;
    transition: color var(--anim-duration) var(--anim-ease);
  }

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

  .cta-button {
    display: inline-block;
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
    padding: calc(var(--space-y) * 0.5) var(--space-x);
    border-radius: var(--radius-md);
    text-decoration: none;
    font-size: var(--font-size-base);
    font-weight: 600;
    transition: background-color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }

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

  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
    padding: 0;
  }

  .burger span {
    display: block;
    width: 24px;
    height: 3px;
    background-color: var(--neutral-900);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
  }

  .burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .burger.active span:nth-child(2) {
    opacity: 0;
  }

  .burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  @media (max-width: 767px) {
    .nav-menu {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background-color: var(--neutral-0);
      border-bottom: 1px solid var(--border-on-surface-light);
      padding: var(--space-y) var(--space-x);
      display: none;
      box-shadow: var(--shadow-md);
    }

    .nav-menu.open {
      display: block;
    }

    .nav-menu ul {
      flex-direction: column;
      gap: var(--space-y);
    }

    .nav-menu a {
      display: block;
      padding: var(--space-y) 0;
    }

    .cta-button {
      display: none;
    }

    .burger {
      display: flex;
    }
  }

  @media (min-width: 768px) {
    .nav-menu {
      display: flex !important;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 40px 20px;
    font-family: Arial, sans-serif;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
  }
  .footer-left {
    flex: 1 1 300px;
  }
  .footer-brand .logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #f0c040;
    text-transform: uppercase;
    letter-spacing: 2px;
  }
  .copyright {
    margin-top: 10px;
    font-size: 0.9rem;
    color: #b0b0b0;
  }
  .footer-right {
    flex: 2 1 500px;
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #f0c040;
  }
  .footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
  }
  .footer-links a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
  }
  .footer-links a:hover {
    color: #f0c040;
  }
  .footer-contact {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }
  .footer-contact p {
    margin: 0;
    font-size: 0.95rem;
  }
  .footer-contact a {
    color: #e0e0e0;
    text-decoration: none;
  }
  .footer-contact a:hover {
    color: #f0c040;
  }
  .disclaimer {
    font-size: 0.8rem;
    color: #888;
    line-height: 1.4;
    margin-top: 10px;
    border-top: 1px solid #333;
    padding-top: 10px;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-links {
      justify-content: center;
    }
    .footer-contact {
      align-items: center;
    }
  }

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

    .cookie-cv15__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, 0.45), rgba(17, 24, 39, 0.95));
        color: #f3f4f6;
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, 0.35);
    }

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

    .cookie-cv15__top strong {
        font-size: 16px;
    }

    .cookie-cv15__top a {
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
    }

    .cookie-cv15 p {
        margin: 10px 0 0;
        color: #d1d5db;
    }

    .cookie-cv15__actions {
        margin-top: 14px;
        display: flex;
        gap: 8px;
    }

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

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

    @media (max-width: 760px) {
        .cookie-cv15__card {
            max-width: none;
        }
    }

.connect--light-v6 {
        padding: 40px 20px;
        background: var(--surface-light);
        color: var(--fg-on-surface-light);
    }

    .connect__inner {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
        gap: 20px;
        align-items: center;
    }

    .connect__content h2 {
        margin: 0 0 6px;
        font-size: clamp(22px, 3.5vw, 28px);
        color: var(--fg-on-page);
    }

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

    .connect__chips {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        justify-content: flex-end;
    }

    .connect__chip {
        padding: 6px 12px;
        border-radius: 999px;
        background: var(--bg-page);
        border: 1px solid var(--border-on-surface-light);
        text-decoration: none;
        font-size: 0.85rem;
        display: inline-flex;
        align-items: center;
        gap: 6px;
    }

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

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

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

        .connect__chips {
            justify-content: flex-start;
        }
    }

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

    .nfform-v7__form {
        max-width: 760px;
        margin: 0 auto;
        border: 1px solid rgba(255, 255, 255, .26);
        border-radius: var(--radius-lg);
        background: rgba(255, 255, 255, .1);
        padding: 16px;
        display: grid;
        gap: 10px;
    }

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

    .nfform-v7 p {
        margin: 0 0 2px;
        opacity: .92;
    }

    .nfform-v7 label {
        display: grid;
        gap: 6px;
    }

    .nfform-v7 input:not([type='checkbox']),
    .nfform-v7 textarea {
        width: 100%;
        border: 1px solid rgba(255, 255, 255, .35);
        border-radius: var(--radius-sm);
        background: rgba(255, 255, 255, .14);
        color: var(--fg-on-primary);
        padding: 9px;
        font: inherit;
    }

    .nfform-v7__agree {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .nfform-v7 button {
        border: 0;
        border-radius: var(--radius-sm);
        padding: 10px 14px;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        font-weight: 700;
    }

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

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

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

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

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

    .contact-layout-b .grid {
        display: grid;
        gap: var(--gap);
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }

    .contact-layout-b .item-card {
        background: var(--surface-1);
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-on-surface-light);
        padding: 16px;
        box-shadow: var(--shadow-sm);
    }

    .contact-layout-b .item-card h3 {
        margin: 0;
        color: var(--brand);
    }

    .contact-layout-b .item-card p {
        margin: 8px 0 0;
        color: var(--neutral-700, var(--neutral-600));
    }

    .contact-layout-b footer {
        margin-top: 18px;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        align-items: center;
    }

    .contact-layout-b .social {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }

    .contact-layout-b .social a {
        text-decoration: none;
        color: var(--link);
        padding: 6px 10px;
        border: 1px solid var(--border-on-surface);
        border-radius: 999px;
    }

header {
    background-color: var(--neutral-0);
    border-bottom: 1px solid var(--border-on-surface-light);
    padding: var(--space-y) var(--space-x);
    position: relative;
    z-index: 100;
  }

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

  .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);
    padding: var(--space-y) 0;
    transition: color var(--anim-duration) var(--anim-ease);
  }

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

  .cta-button {
    display: inline-block;
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
    padding: calc(var(--space-y) * 0.5) var(--space-x);
    border-radius: var(--radius-md);
    text-decoration: none;
    font-size: var(--font-size-base);
    font-weight: 600;
    transition: background-color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }

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

  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
    padding: 0;
  }

  .burger span {
    display: block;
    width: 24px;
    height: 3px;
    background-color: var(--neutral-900);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
  }

  .burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .burger.active span:nth-child(2) {
    opacity: 0;
  }

  .burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  @media (max-width: 767px) {
    .nav-menu {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background-color: var(--neutral-0);
      border-bottom: 1px solid var(--border-on-surface-light);
      padding: var(--space-y) var(--space-x);
      display: none;
      box-shadow: var(--shadow-md);
    }

    .nav-menu.open {
      display: block;
    }

    .nav-menu ul {
      flex-direction: column;
      gap: var(--space-y);
    }

    .nav-menu a {
      display: block;
      padding: var(--space-y) 0;
    }

    .cta-button {
      display: none;
    }

    .burger {
      display: flex;
    }
  }

  @media (min-width: 768px) {
    .nav-menu {
      display: flex !important;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 40px 20px;
    font-family: Arial, sans-serif;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
  }
  .footer-left {
    flex: 1 1 300px;
  }
  .footer-brand .logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #f0c040;
    text-transform: uppercase;
    letter-spacing: 2px;
  }
  .copyright {
    margin-top: 10px;
    font-size: 0.9rem;
    color: #b0b0b0;
  }
  .footer-right {
    flex: 2 1 500px;
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #f0c040;
  }
  .footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
  }
  .footer-links a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
  }
  .footer-links a:hover {
    color: #f0c040;
  }
  .footer-contact {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }
  .footer-contact p {
    margin: 0;
    font-size: 0.95rem;
  }
  .footer-contact a {
    color: #e0e0e0;
    text-decoration: none;
  }
  .footer-contact a:hover {
    color: #f0c040;
  }
  .disclaimer {
    font-size: 0.8rem;
    color: #888;
    line-height: 1.4;
    margin-top: 10px;
    border-top: 1px solid #333;
    padding-top: 10px;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-links {
      justify-content: center;
    }
    .footer-contact {
      align-items: center;
    }
  }

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

    .cookie-cv15__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, 0.45), rgba(17, 24, 39, 0.95));
        color: #f3f4f6;
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, 0.35);
    }

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

    .cookie-cv15__top strong {
        font-size: 16px;
    }

    .cookie-cv15__top a {
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
    }

    .cookie-cv15 p {
        margin: 10px 0 0;
        color: #d1d5db;
    }

    .cookie-cv15__actions {
        margin-top: 14px;
        display: flex;
        gap: 8px;
    }

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

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

    @media (max-width: 760px) {
        .cookie-cv15__card {
            max-width: none;
        }
    }

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

    .policy-layout-c .wrap {
        max-width: 920px;
        margin: 0 auto;
    }

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

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

    .policy-layout-c .section-head p {
        margin: 10px 0 0;
        opacity: .92;
    }

    .policy-layout-c .stack {
        display: grid;
        gap: 10px;
    }

    .policy-layout-c article {
        border: 1px solid rgba(255, 255, 255, .3);
        border-radius: var(--radius-md);
        padding: 12px;
        background: rgba(255, 255, 255, .1);
    }

    .policy-layout-c h3 {
        margin: 0;
        display: flex;
        gap: 8px;
        align-items: center;
    }

    .policy-layout-c h3 span {
        display: inline-grid;
        place-items: center;
        width: 28px;
        height: 28px;
        border-radius: 50%;
        background: rgba(255, 255, 255, .18);
    }

    .policy-layout-c article p {
        margin: 8px 0 0;
        opacity: .95;
    }

header {
    background-color: var(--neutral-0);
    border-bottom: 1px solid var(--border-on-surface-light);
    padding: var(--space-y) var(--space-x);
    position: relative;
    z-index: 100;
  }

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

  .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);
    padding: var(--space-y) 0;
    transition: color var(--anim-duration) var(--anim-ease);
  }

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

  .cta-button {
    display: inline-block;
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
    padding: calc(var(--space-y) * 0.5) var(--space-x);
    border-radius: var(--radius-md);
    text-decoration: none;
    font-size: var(--font-size-base);
    font-weight: 600;
    transition: background-color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }

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

  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
    padding: 0;
  }

  .burger span {
    display: block;
    width: 24px;
    height: 3px;
    background-color: var(--neutral-900);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
  }

  .burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .burger.active span:nth-child(2) {
    opacity: 0;
  }

  .burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  @media (max-width: 767px) {
    .nav-menu {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background-color: var(--neutral-0);
      border-bottom: 1px solid var(--border-on-surface-light);
      padding: var(--space-y) var(--space-x);
      display: none;
      box-shadow: var(--shadow-md);
    }

    .nav-menu.open {
      display: block;
    }

    .nav-menu ul {
      flex-direction: column;
      gap: var(--space-y);
    }

    .nav-menu a {
      display: block;
      padding: var(--space-y) 0;
    }

    .cta-button {
      display: none;
    }

    .burger {
      display: flex;
    }
  }

  @media (min-width: 768px) {
    .nav-menu {
      display: flex !important;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 40px 20px;
    font-family: Arial, sans-serif;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
  }
  .footer-left {
    flex: 1 1 300px;
  }
  .footer-brand .logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #f0c040;
    text-transform: uppercase;
    letter-spacing: 2px;
  }
  .copyright {
    margin-top: 10px;
    font-size: 0.9rem;
    color: #b0b0b0;
  }
  .footer-right {
    flex: 2 1 500px;
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #f0c040;
  }
  .footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
  }
  .footer-links a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
  }
  .footer-links a:hover {
    color: #f0c040;
  }
  .footer-contact {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }
  .footer-contact p {
    margin: 0;
    font-size: 0.95rem;
  }
  .footer-contact a {
    color: #e0e0e0;
    text-decoration: none;
  }
  .footer-contact a:hover {
    color: #f0c040;
  }
  .disclaimer {
    font-size: 0.8rem;
    color: #888;
    line-height: 1.4;
    margin-top: 10px;
    border-top: 1px solid #333;
    padding-top: 10px;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-links {
      justify-content: center;
    }
    .footer-contact {
      align-items: center;
    }
  }

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

    .cookie-cv15__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, 0.45), rgba(17, 24, 39, 0.95));
        color: #f3f4f6;
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, 0.35);
    }

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

    .cookie-cv15__top strong {
        font-size: 16px;
    }

    .cookie-cv15__top a {
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
    }

    .cookie-cv15 p {
        margin: 10px 0 0;
        color: #d1d5db;
    }

    .cookie-cv15__actions {
        margin-top: 14px;
        display: flex;
        gap: 8px;
    }

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

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

    @media (max-width: 760px) {
        .cookie-cv15__card {
            max-width: none;
        }
    }

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

    .terms-layout-f .wrap {
        max-width: 980px;
        margin: 0 auto;
    }

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

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

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

    .terms-layout-f .list {
        display: grid;
        gap: 14px;
    }

    .terms-layout-f article {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        background: linear-gradient(180deg, var(--surface-1), var(--surface-2));
        padding: var(--space-y) var(--space-x);
    }

    .terms-layout-f h3 {
        margin: 0 0 8px;
        color: var(--brand);
    }

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

    .terms-layout-f p, .terms-layout-f li {
        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);
    position: relative;
    z-index: 100;
  }

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

  .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);
    padding: var(--space-y) 0;
    transition: color var(--anim-duration) var(--anim-ease);
  }

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

  .cta-button {
    display: inline-block;
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
    padding: calc(var(--space-y) * 0.5) var(--space-x);
    border-radius: var(--radius-md);
    text-decoration: none;
    font-size: var(--font-size-base);
    font-weight: 600;
    transition: background-color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }

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

  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
    padding: 0;
  }

  .burger span {
    display: block;
    width: 24px;
    height: 3px;
    background-color: var(--neutral-900);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
  }

  .burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .burger.active span:nth-child(2) {
    opacity: 0;
  }

  .burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  @media (max-width: 767px) {
    .nav-menu {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background-color: var(--neutral-0);
      border-bottom: 1px solid var(--border-on-surface-light);
      padding: var(--space-y) var(--space-x);
      display: none;
      box-shadow: var(--shadow-md);
    }

    .nav-menu.open {
      display: block;
    }

    .nav-menu ul {
      flex-direction: column;
      gap: var(--space-y);
    }

    .nav-menu a {
      display: block;
      padding: var(--space-y) 0;
    }

    .cta-button {
      display: none;
    }

    .burger {
      display: flex;
    }
  }

  @media (min-width: 768px) {
    .nav-menu {
      display: flex !important;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 40px 20px;
    font-family: Arial, sans-serif;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
  }
  .footer-left {
    flex: 1 1 300px;
  }
  .footer-brand .logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #f0c040;
    text-transform: uppercase;
    letter-spacing: 2px;
  }
  .copyright {
    margin-top: 10px;
    font-size: 0.9rem;
    color: #b0b0b0;
  }
  .footer-right {
    flex: 2 1 500px;
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #f0c040;
  }
  .footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
  }
  .footer-links a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
  }
  .footer-links a:hover {
    color: #f0c040;
  }
  .footer-contact {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }
  .footer-contact p {
    margin: 0;
    font-size: 0.95rem;
  }
  .footer-contact a {
    color: #e0e0e0;
    text-decoration: none;
  }
  .footer-contact a:hover {
    color: #f0c040;
  }
  .disclaimer {
    font-size: 0.8rem;
    color: #888;
    line-height: 1.4;
    margin-top: 10px;
    border-top: 1px solid #333;
    padding-top: 10px;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-links {
      justify-content: center;
    }
    .footer-contact {
      align-items: center;
    }
  }

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

    .cookie-cv15__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, 0.45), rgba(17, 24, 39, 0.95));
        color: #f3f4f6;
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, 0.35);
    }

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

    .cookie-cv15__top strong {
        font-size: 16px;
    }

    .cookie-cv15__top a {
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
    }

    .cookie-cv15 p {
        margin: 10px 0 0;
        color: #d1d5db;
    }

    .cookie-cv15__actions {
        margin-top: 14px;
        display: flex;
        gap: 8px;
    }

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

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

    @media (max-width: 760px) {
        .cookie-cv15__card {
            max-width: none;
        }
    }

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

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

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

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

    .nfthank-v12 p a {
        color: var(--link);
        text-decoration: underline;
        background: none;
        padding: 0;
        margin: 0;
        display: inline;
        border-radius: 0;
    }

    .nfthank-v12 a {
        display: inline-block;
        margin-top: 18px;
        padding: 10px 16px;
        border-radius: var(--radius-md);
        text-decoration: none;
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
    }

header {
    background-color: var(--neutral-0);
    border-bottom: 1px solid var(--border-on-surface-light);
    padding: var(--space-y) var(--space-x);
    position: relative;
    z-index: 100;
  }

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

  .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);
    padding: var(--space-y) 0;
    transition: color var(--anim-duration) var(--anim-ease);
  }

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

  .cta-button {
    display: inline-block;
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
    padding: calc(var(--space-y) * 0.5) var(--space-x);
    border-radius: var(--radius-md);
    text-decoration: none;
    font-size: var(--font-size-base);
    font-weight: 600;
    transition: background-color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }

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

  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
    padding: 0;
  }

  .burger span {
    display: block;
    width: 24px;
    height: 3px;
    background-color: var(--neutral-900);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
  }

  .burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .burger.active span:nth-child(2) {
    opacity: 0;
  }

  .burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  @media (max-width: 767px) {
    .nav-menu {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background-color: var(--neutral-0);
      border-bottom: 1px solid var(--border-on-surface-light);
      padding: var(--space-y) var(--space-x);
      display: none;
      box-shadow: var(--shadow-md);
    }

    .nav-menu.open {
      display: block;
    }

    .nav-menu ul {
      flex-direction: column;
      gap: var(--space-y);
    }

    .nav-menu a {
      display: block;
      padding: var(--space-y) 0;
    }

    .cta-button {
      display: none;
    }

    .burger {
      display: flex;
    }
  }

  @media (min-width: 768px) {
    .nav-menu {
      display: flex !important;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 40px 20px;
    font-family: Arial, sans-serif;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
  }
  .footer-left {
    flex: 1 1 300px;
  }
  .footer-brand .logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #f0c040;
    text-transform: uppercase;
    letter-spacing: 2px;
  }
  .copyright {
    margin-top: 10px;
    font-size: 0.9rem;
    color: #b0b0b0;
  }
  .footer-right {
    flex: 2 1 500px;
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #f0c040;
  }
  .footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
  }
  .footer-links a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
  }
  .footer-links a:hover {
    color: #f0c040;
  }
  .footer-contact {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }
  .footer-contact p {
    margin: 0;
    font-size: 0.95rem;
  }
  .footer-contact a {
    color: #e0e0e0;
    text-decoration: none;
  }
  .footer-contact a:hover {
    color: #f0c040;
  }
  .disclaimer {
    font-size: 0.8rem;
    color: #888;
    line-height: 1.4;
    margin-top: 10px;
    border-top: 1px solid #333;
    padding-top: 10px;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-links {
      justify-content: center;
    }
    .footer-contact {
      align-items: center;
    }
  }

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

    .cookie-cv15__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, 0.45), rgba(17, 24, 39, 0.95));
        color: #f3f4f6;
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, 0.35);
    }

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

    .cookie-cv15__top strong {
        font-size: 16px;
    }

    .cookie-cv15__top a {
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
    }

    .cookie-cv15 p {
        margin: 10px 0 0;
        color: #d1d5db;
    }

    .cookie-cv15__actions {
        margin-top: 14px;
        display: flex;
        gap: 8px;
    }

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

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

    @media (max-width: 760px) {
        .cookie-cv15__card {
            max-width: none;
        }
    }

.err-slab-f {
        padding: clamp(56px, 10vw, 112px) 20px;
        background: var(--surface-1);
        color: var(--fg-on-page);
    }

    .err-slab-f .chip {
        max-width: 760px;
        margin: 0 auto;
        text-align: center;
        padding: clamp(28px, 4vw, 46px);
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-on-surface-light);
        box-shadow: var(--shadow-sm);
        position: relative;
    }

    .err-slab-f .chip::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 6px;
        border-radius: var(--radius-lg) var(--radius-lg) 0 0;
        background: var(--gradient-accent);
    }

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

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

    .err-slab-f a {
        display: inline-block;
        margin-top: 18px;
        padding: 10px 16px;
        border-radius: var(--radius-sm);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        text-decoration: none;
    }