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

  --max-w: 1060px;
  --space-x: 1.41rem;
  --space-y: 1.5rem;
  --gap: 0.86rem;

  --radius-xl: 0.72rem;
  --radius-lg: 0.6rem;
  --radius-md: 0.3rem;
  --radius-sm: 0.21rem;

  --shadow-sm: 0 0px 2px rgba(0,0,0,0.06);
  --shadow-md: 0 3px 8px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 28px rgba(0,0,0,0.1);

  --overlay: rgba(0,0,0,0.6);
  --anim-duration: 380ms;
  --anim-ease: ease-in-out;
  --random-number: 1;

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

  --neutral-0: #ffffff;
  --neutral-100: #f5f7fa;
  --neutral-300: #cbd5e1;
  --neutral-600: #64748b;
  --neutral-800: #1e293b;
  --neutral-900: #0f172a;

  --bg-page: #ffffff;
  --fg-on-page: #1e293b;

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

  --surface-1: #ffffff;
  --surface-2: #f8fafc;
  --fg-on-surface: #1e293b;
  --border-on-surface: #e2e8f0;

  --surface-light: #f8fafc;
  --fg-on-surface-light: #475569;
  --border-on-surface-light: #e2e8f0;

  --bg-primary: #1a3a5c;
  --fg-on-primary: #ffffff;
  --bg-primary-hover: #142c47;
  --ring: #d94f14;

  --bg-accent: #d94f14;
  --fg-on-accent: #ffffff;
  --bg-accent-hover: #b84210;

  --link: #1a3a5c;
  --link-hover: #d94f14;

  --gradient-hero: linear-gradient(135deg, #1a3a5c 0%, #0f172a 100%);
  --gradient-accent: linear-gradient(135deg, #d94f14 0%, #b84210 100%);

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

.site-header {
  background-color: var(--neutral-0);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
}

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

.logo a {
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand);
  letter-spacing: -0.02em;
}

.header-contact .cta-button {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background-color: var(--accent);
  color: var(--accent-contrast);
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background-color var(--anim-duration) var(--anim-ease);
}

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

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  width: 40px;
  height: 40px;
}

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

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

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

.nav-list li a {
  text-decoration: none;
  color: var(--fg-on-page);
  font-weight: 500;
  padding: 0.25rem 0;
  border-bottom: 2px solid transparent;
  transition: color var(--anim-duration) var(--anim-ease), border-color var(--anim-duration) var(--anim-ease);
  font-size: 0.95rem;
}

.nav-list li a:hover {
  color: var(--link-hover);
  border-bottom-color: var(--accent);
}

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

  .header-contact .cta-button {
    display: none;
  }

  .header-nav {
    display: none;
    padding-bottom: 1rem;
  }

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

  .nav-list {
    flex-direction: column;
    gap: 0.5rem;
  }

  .nav-list li a {
    display: block;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-on-surface-light);
  }
}

footer {
    background-color: #2c2c2c;
    color: #f0f0f0;
    padding: 2rem 1rem;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    border-bottom: 1px solid #555;
    padding-bottom: 1.5rem;
  }
  .footer-logo a {
    font-size: 1.8rem;
    font-weight: bold;
    color: #e0b94a;
    text-decoration: none;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-nav a {
    color: #f0f0f0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #e0b94a;
  }
  .footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1.5rem;
  }
  .footer-contact address {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .contact-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
  }
  .contact-item .icon {
    font-size: 1.2rem;
  }
  .contact-item a {
    color: #f0f0f0;
    text-decoration: none;
  }
  .contact-item a:hover {
    text-decoration: underline;
  }
  .footer-legal {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .footer-legal a {
    color: #e0b94a;
    text-decoration: none;
    font-size: 0.95rem;
  }
  .footer-legal a:hover {
    text-decoration: underline;
  }
  .footer-disclaimer {
    flex-basis: 100%;
    font-size: 0.85rem;
    color: #ccc;
    margin-top: 1rem;
    text-align: center;
    border-top: 1px solid #555;
    padding-top: 1rem;
  }
  .footer-disclaimer p {
    margin: 0;
  }
  .footer-copyright {
    flex-basis: 100%;
    text-align: center;
    font-size: 0.85rem;
    color: #aaa;
    margin-top: 0.5rem;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      align-items: flex-start;
      gap: 1rem;
    }
    .footer-nav ul {
      flex-direction: column;
      gap: 0.8rem;
    }
    .footer-bottom {
      flex-direction: column;
      align-items: flex-start;
    }
    .footer-legal {
      flex-direction: row;
      gap: 1rem;
    }
  }

.nfcookie-v10 {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1200;
        background: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.12);
    }

    .nfcookie-v10__inner {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: calc(var(--space-y) * .8) var(--space-x);
        display: flex;
        flex-wrap: wrap;
        gap: 12px var(--gap);
        align-items: center;
        justify-content: space-between;
    }

    .nfcookie-v10__text {flex: 1 1 420px;}
    .nfcookie-v10__text strong {display: block; margin-bottom: 4px; color: var(--fg-on-surface);}
    .nfcookie-v10__text p {margin: 0; color: var(--fg-on-surface-light);}

    .nfcookie-v10__actions {display: flex; flex-wrap: wrap; gap: 8px;}

    .nfcookie-v10__actions button {
        border: 1px solid var(--border-on-surface);
        background: var(--surface-1);
        color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

body{margin:0;padding:0;font-family:var(--font-family);box-sizing: border-box;}
    *{box-sizing:border-box;}

    .next-ux23 {
        padding: clamp(3.1rem, 7vw, 5.6rem) var(--space-x);
        background: var(--neutral-100);
        color: var(--neutral-900);
        max-width: var(--max-w);
        margin: 0 auto;
    }

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

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

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

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

    .next-ux23__line a {
        display: flex;
        gap: .6rem;
        align-items: center;
        padding: .9rem;
        border-radius: var(--radius-md);
        background: var(--neutral-100);
        border: 1px solid var(--neutral-300);
        text-decoration: none;
        color: var(--neutral-900);
    }

    .next-ux23__line i {
        font-style: normal;
    }

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

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

.faq-fresh-v5 {
        padding: calc(var(--space-y) * 2.4) var(--space-x);
        background: var(--neutral-900);
        color: var(--neutral-0);
    }

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

    .faq-fresh-v5 h2 {
        margin: 0;
        font-size: clamp(1.7rem, 3.1vw, 2.4rem);
    }

    .faq-fresh-v5 .stack {
        display: grid;
        gap: .75rem;
    }

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

    .faq-fresh-v5 h3 {
        margin: 0 0 .5rem;
        font-size: 1rem;
    }

    .faq-fresh-v5 p {
        margin: 0;
        opacity: .88;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.site-header {
  background-color: var(--neutral-0);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
}

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

.logo a {
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand);
  letter-spacing: -0.02em;
}

.header-contact .cta-button {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background-color: var(--accent);
  color: var(--accent-contrast);
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background-color var(--anim-duration) var(--anim-ease);
}

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

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  width: 40px;
  height: 40px;
}

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

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

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

.nav-list li a {
  text-decoration: none;
  color: var(--fg-on-page);
  font-weight: 500;
  padding: 0.25rem 0;
  border-bottom: 2px solid transparent;
  transition: color var(--anim-duration) var(--anim-ease), border-color var(--anim-duration) var(--anim-ease);
  font-size: 0.95rem;
}

.nav-list li a:hover {
  color: var(--link-hover);
  border-bottom-color: var(--accent);
}

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

  .header-contact .cta-button {
    display: none;
  }

  .header-nav {
    display: none;
    padding-bottom: 1rem;
  }

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

  .nav-list {
    flex-direction: column;
    gap: 0.5rem;
  }

  .nav-list li a {
    display: block;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-on-surface-light);
  }
}

footer {
    background-color: #2c2c2c;
    color: #f0f0f0;
    padding: 2rem 1rem;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    border-bottom: 1px solid #555;
    padding-bottom: 1.5rem;
  }
  .footer-logo a {
    font-size: 1.8rem;
    font-weight: bold;
    color: #e0b94a;
    text-decoration: none;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-nav a {
    color: #f0f0f0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #e0b94a;
  }
  .footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1.5rem;
  }
  .footer-contact address {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .contact-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
  }
  .contact-item .icon {
    font-size: 1.2rem;
  }
  .contact-item a {
    color: #f0f0f0;
    text-decoration: none;
  }
  .contact-item a:hover {
    text-decoration: underline;
  }
  .footer-legal {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .footer-legal a {
    color: #e0b94a;
    text-decoration: none;
    font-size: 0.95rem;
  }
  .footer-legal a:hover {
    text-decoration: underline;
  }
  .footer-disclaimer {
    flex-basis: 100%;
    font-size: 0.85rem;
    color: #ccc;
    margin-top: 1rem;
    text-align: center;
    border-top: 1px solid #555;
    padding-top: 1rem;
  }
  .footer-disclaimer p {
    margin: 0;
  }
  .footer-copyright {
    flex-basis: 100%;
    text-align: center;
    font-size: 0.85rem;
    color: #aaa;
    margin-top: 0.5rem;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      align-items: flex-start;
      gap: 1rem;
    }
    .footer-nav ul {
      flex-direction: column;
      gap: 0.8rem;
    }
    .footer-bottom {
      flex-direction: column;
      align-items: flex-start;
    }
    .footer-legal {
      flex-direction: row;
      gap: 1rem;
    }
  }

.nfcookie-v10 {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1200;
        background: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.12);
    }

    .nfcookie-v10__inner {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: calc(var(--space-y) * .8) var(--space-x);
        display: flex;
        flex-wrap: wrap;
        gap: 12px var(--gap);
        align-items: center;
        justify-content: space-between;
    }

    .nfcookie-v10__text {flex: 1 1 420px;}
    .nfcookie-v10__text strong {display: block; margin-bottom: 4px; color: var(--fg-on-surface);}
    .nfcookie-v10__text p {margin: 0; color: var(--fg-on-surface-light);}

    .nfcookie-v10__actions {display: flex; flex-wrap: wrap; gap: 8px;}

    .nfcookie-v10__actions button {
        border: 1px solid var(--border-on-surface);
        background: var(--surface-1);
        color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

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

.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__note {
    margin: 0;
    font-size: 0.9rem;
    color: var(--neutral-100);
}

.site-header {
  background-color: var(--neutral-0);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
}

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

.logo a {
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand);
  letter-spacing: -0.02em;
}

.header-contact .cta-button {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background-color: var(--accent);
  color: var(--accent-contrast);
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background-color var(--anim-duration) var(--anim-ease);
}

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

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  width: 40px;
  height: 40px;
}

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

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

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

.nav-list li a {
  text-decoration: none;
  color: var(--fg-on-page);
  font-weight: 500;
  padding: 0.25rem 0;
  border-bottom: 2px solid transparent;
  transition: color var(--anim-duration) var(--anim-ease), border-color var(--anim-duration) var(--anim-ease);
  font-size: 0.95rem;
}

.nav-list li a:hover {
  color: var(--link-hover);
  border-bottom-color: var(--accent);
}

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

  .header-contact .cta-button {
    display: none;
  }

  .header-nav {
    display: none;
    padding-bottom: 1rem;
  }

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

  .nav-list {
    flex-direction: column;
    gap: 0.5rem;
  }

  .nav-list li a {
    display: block;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-on-surface-light);
  }
}

footer {
    background-color: #2c2c2c;
    color: #f0f0f0;
    padding: 2rem 1rem;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    border-bottom: 1px solid #555;
    padding-bottom: 1.5rem;
  }
  .footer-logo a {
    font-size: 1.8rem;
    font-weight: bold;
    color: #e0b94a;
    text-decoration: none;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-nav a {
    color: #f0f0f0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #e0b94a;
  }
  .footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1.5rem;
  }
  .footer-contact address {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .contact-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
  }
  .contact-item .icon {
    font-size: 1.2rem;
  }
  .contact-item a {
    color: #f0f0f0;
    text-decoration: none;
  }
  .contact-item a:hover {
    text-decoration: underline;
  }
  .footer-legal {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .footer-legal a {
    color: #e0b94a;
    text-decoration: none;
    font-size: 0.95rem;
  }
  .footer-legal a:hover {
    text-decoration: underline;
  }
  .footer-disclaimer {
    flex-basis: 100%;
    font-size: 0.85rem;
    color: #ccc;
    margin-top: 1rem;
    text-align: center;
    border-top: 1px solid #555;
    padding-top: 1rem;
  }
  .footer-disclaimer p {
    margin: 0;
  }
  .footer-copyright {
    flex-basis: 100%;
    text-align: center;
    font-size: 0.85rem;
    color: #aaa;
    margin-top: 0.5rem;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      align-items: flex-start;
      gap: 1rem;
    }
    .footer-nav ul {
      flex-direction: column;
      gap: 0.8rem;
    }
    .footer-bottom {
      flex-direction: column;
      align-items: flex-start;
    }
    .footer-legal {
      flex-direction: row;
      gap: 1rem;
    }
  }

.nfcookie-v10 {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1200;
        background: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.12);
    }

    .nfcookie-v10__inner {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: calc(var(--space-y) * .8) var(--space-x);
        display: flex;
        flex-wrap: wrap;
        gap: 12px var(--gap);
        align-items: center;
        justify-content: space-between;
    }

    .nfcookie-v10__text {flex: 1 1 420px;}
    .nfcookie-v10__text strong {display: block; margin-bottom: 4px; color: var(--fg-on-surface);}
    .nfcookie-v10__text p {margin: 0; color: var(--fg-on-surface-light);}

    .nfcookie-v10__actions {display: flex; flex-wrap: wrap; gap: 8px;}

    .nfcookie-v10__actions button {
        border: 1px solid var(--border-on-surface);
        background: var(--surface-1);
        color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

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

.product-item--light-v6 {

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

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

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

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

body{margin:0;padding:0;font-family:var(--font-family);box-sizing: border-box;}
    *{box-sizing:border-box;}

    .feedback-ux4 {
        background: radial-gradient(circle at 20% 25%, rgba(255, 255, 255, 0.7), transparent 60%),
        radial-gradient(circle at 85% 65%, rgba(212, 165, 165, 0.35), transparent 55%),
        var(--gradient-accent);
        color: var(--fg-on-primary);
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 40px);
        overflow: hidden;
    }

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

    .feedback-ux4__h {
        text-align: center;
        margin-bottom: clamp(28px, 6vw, 60px);

        transform: translateY(-18px);
    }

    .feedback-ux4__eyebrow {
        margin: 0 0 10px;
        text-transform: uppercase;
        letter-spacing: 0.22em;
        font-size: 12px;
        color: rgba(58, 46, 61, 0.75);
    }

    .feedback-ux4__h h2 {
        margin: 0;
        font-size: clamp(28px, 4.6vw, 48px);
        letter-spacing: -0.02em;
    }

    .feedback-ux4__grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
        gap: clamp(14px, 2.6vw, 22px);
    }

    .feedback-ux4__card {
        border-radius: var(--radius-xl);
        border: 1px solid rgba(58, 46, 61, 0.12);
        background: rgba(255, 255, 255, 0.6);
        box-shadow: var(--shadow-lg);
        padding: clamp(18px, 3vw, 26px);
        backdrop-filter: blur(10px);

        transform: translateY(28px);
        position: relative;
        overflow: hidden;
    }

    .feedback-ux4__card::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.6), transparent 55%);
        opacity: 0.6;
        pointer-events: none;
    }

    .feedback-ux4__top {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 14px;
        position: relative;
        z-index: 1;
    }

    .feedback-ux4__who {
        display: flex;
        align-items: center;
        gap: 12px;
        min-width: 0;
    }

    .feedback-ux4__name {
        margin: 0;
        font-size: 16px;
        font-weight: 700;
        color: var(--fg-on-page);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 18ch;
    }

    .feedback-ux4__meta {
        margin: 2px 0 0;
        font-size: 13px;
        color: rgba(58, 46, 61, 0.7);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 22ch;
    }

    .feedback-ux4__rating {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 8px 10px;
        border-radius: 999px;
        background: var(--bg-page);
        border: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-sm);
        flex: 0 0 auto;
    }

    .feedback-ux4__stars {
        font-size: 14px;
        letter-spacing: 0.08em;
        color: var(--accent);
        line-height: 1;
    }

    .feedback-ux4__score {
        font-size: 12px;
        font-weight: 700;
        color: var(--fg-on-page);
    }

    .feedback-ux4__quote {
        margin: 14px 0 0;
        position: relative;
        z-index: 1;
        color: rgba(58, 46, 61, 0.88);
        font-size: 14px;
        line-height: 1.65;
    }

    .feedback-ux4__badge {
        display: inline-flex;
        margin-top: 12px;
        position: relative;
        z-index: 1;
        padding: 6px 10px;
        border-radius: 999px;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border: 1px solid var(--border-on-surface-light);
        font-size: 11px;
        letter-spacing: 0.14em;
        text-transform: uppercase;
    }

.site-header {
  background-color: var(--neutral-0);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
}

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

.logo a {
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand);
  letter-spacing: -0.02em;
}

.header-contact .cta-button {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background-color: var(--accent);
  color: var(--accent-contrast);
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background-color var(--anim-duration) var(--anim-ease);
}

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

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  width: 40px;
  height: 40px;
}

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

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

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

.nav-list li a {
  text-decoration: none;
  color: var(--fg-on-page);
  font-weight: 500;
  padding: 0.25rem 0;
  border-bottom: 2px solid transparent;
  transition: color var(--anim-duration) var(--anim-ease), border-color var(--anim-duration) var(--anim-ease);
  font-size: 0.95rem;
}

.nav-list li a:hover {
  color: var(--link-hover);
  border-bottom-color: var(--accent);
}

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

  .header-contact .cta-button {
    display: none;
  }

  .header-nav {
    display: none;
    padding-bottom: 1rem;
  }

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

  .nav-list {
    flex-direction: column;
    gap: 0.5rem;
  }

  .nav-list li a {
    display: block;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-on-surface-light);
  }
}

footer {
    background-color: #2c2c2c;
    color: #f0f0f0;
    padding: 2rem 1rem;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    border-bottom: 1px solid #555;
    padding-bottom: 1.5rem;
  }
  .footer-logo a {
    font-size: 1.8rem;
    font-weight: bold;
    color: #e0b94a;
    text-decoration: none;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-nav a {
    color: #f0f0f0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #e0b94a;
  }
  .footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1.5rem;
  }
  .footer-contact address {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .contact-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
  }
  .contact-item .icon {
    font-size: 1.2rem;
  }
  .contact-item a {
    color: #f0f0f0;
    text-decoration: none;
  }
  .contact-item a:hover {
    text-decoration: underline;
  }
  .footer-legal {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .footer-legal a {
    color: #e0b94a;
    text-decoration: none;
    font-size: 0.95rem;
  }
  .footer-legal a:hover {
    text-decoration: underline;
  }
  .footer-disclaimer {
    flex-basis: 100%;
    font-size: 0.85rem;
    color: #ccc;
    margin-top: 1rem;
    text-align: center;
    border-top: 1px solid #555;
    padding-top: 1rem;
  }
  .footer-disclaimer p {
    margin: 0;
  }
  .footer-copyright {
    flex-basis: 100%;
    text-align: center;
    font-size: 0.85rem;
    color: #aaa;
    margin-top: 0.5rem;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      align-items: flex-start;
      gap: 1rem;
    }
    .footer-nav ul {
      flex-direction: column;
      gap: 0.8rem;
    }
    .footer-bottom {
      flex-direction: column;
      align-items: flex-start;
    }
    .footer-legal {
      flex-direction: row;
      gap: 1rem;
    }
  }

.nfcookie-v10 {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1200;
        background: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.12);
    }

    .nfcookie-v10__inner {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: calc(var(--space-y) * .8) var(--space-x);
        display: flex;
        flex-wrap: wrap;
        gap: 12px var(--gap);
        align-items: center;
        justify-content: space-between;
    }

    .nfcookie-v10__text {flex: 1 1 420px;}
    .nfcookie-v10__text strong {display: block; margin-bottom: 4px; color: var(--fg-on-surface);}
    .nfcookie-v10__text p {margin: 0; color: var(--fg-on-surface-light);}

    .nfcookie-v10__actions {display: flex; flex-wrap: wrap; gap: 8px;}

    .nfcookie-v10__actions button {
        border: 1px solid var(--border-on-surface);
        background: var(--surface-1);
        color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

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

.product-item--light-v6 {

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

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

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

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

.statistics {
    padding: clamp(48px, 8vw, 80px) 0;
    background: var(--gradient-hero);
    color: var(--neutral-0);
}

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

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

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

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

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

.site-header {
  background-color: var(--neutral-0);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
}

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

.logo a {
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand);
  letter-spacing: -0.02em;
}

.header-contact .cta-button {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background-color: var(--accent);
  color: var(--accent-contrast);
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background-color var(--anim-duration) var(--anim-ease);
}

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

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  width: 40px;
  height: 40px;
}

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

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

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

.nav-list li a {
  text-decoration: none;
  color: var(--fg-on-page);
  font-weight: 500;
  padding: 0.25rem 0;
  border-bottom: 2px solid transparent;
  transition: color var(--anim-duration) var(--anim-ease), border-color var(--anim-duration) var(--anim-ease);
  font-size: 0.95rem;
}

.nav-list li a:hover {
  color: var(--link-hover);
  border-bottom-color: var(--accent);
}

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

  .header-contact .cta-button {
    display: none;
  }

  .header-nav {
    display: none;
    padding-bottom: 1rem;
  }

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

  .nav-list {
    flex-direction: column;
    gap: 0.5rem;
  }

  .nav-list li a {
    display: block;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-on-surface-light);
  }
}

footer {
    background-color: #2c2c2c;
    color: #f0f0f0;
    padding: 2rem 1rem;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    border-bottom: 1px solid #555;
    padding-bottom: 1.5rem;
  }
  .footer-logo a {
    font-size: 1.8rem;
    font-weight: bold;
    color: #e0b94a;
    text-decoration: none;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-nav a {
    color: #f0f0f0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #e0b94a;
  }
  .footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1.5rem;
  }
  .footer-contact address {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .contact-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
  }
  .contact-item .icon {
    font-size: 1.2rem;
  }
  .contact-item a {
    color: #f0f0f0;
    text-decoration: none;
  }
  .contact-item a:hover {
    text-decoration: underline;
  }
  .footer-legal {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .footer-legal a {
    color: #e0b94a;
    text-decoration: none;
    font-size: 0.95rem;
  }
  .footer-legal a:hover {
    text-decoration: underline;
  }
  .footer-disclaimer {
    flex-basis: 100%;
    font-size: 0.85rem;
    color: #ccc;
    margin-top: 1rem;
    text-align: center;
    border-top: 1px solid #555;
    padding-top: 1rem;
  }
  .footer-disclaimer p {
    margin: 0;
  }
  .footer-copyright {
    flex-basis: 100%;
    text-align: center;
    font-size: 0.85rem;
    color: #aaa;
    margin-top: 0.5rem;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      align-items: flex-start;
      gap: 1rem;
    }
    .footer-nav ul {
      flex-direction: column;
      gap: 0.8rem;
    }
    .footer-bottom {
      flex-direction: column;
      align-items: flex-start;
    }
    .footer-legal {
      flex-direction: row;
      gap: 1rem;
    }
  }

.nfcookie-v10 {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1200;
        background: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.12);
    }

    .nfcookie-v10__inner {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: calc(var(--space-y) * .8) var(--space-x);
        display: flex;
        flex-wrap: wrap;
        gap: 12px var(--gap);
        align-items: center;
        justify-content: space-between;
    }

    .nfcookie-v10__text {flex: 1 1 420px;}
    .nfcookie-v10__text strong {display: block; margin-bottom: 4px; color: var(--fg-on-surface);}
    .nfcookie-v10__text p {margin: 0; color: var(--fg-on-surface-light);}

    .nfcookie-v10__actions {display: flex; flex-wrap: wrap; gap: 8px;}

    .nfcookie-v10__actions button {
        border: 1px solid var(--border-on-surface);
        background: var(--surface-1);
        color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

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

.product-item--light-v6 {

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

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

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

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

.site-header {
  background-color: var(--neutral-0);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
}

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

.logo a {
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand);
  letter-spacing: -0.02em;
}

.header-contact .cta-button {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background-color: var(--accent);
  color: var(--accent-contrast);
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background-color var(--anim-duration) var(--anim-ease);
}

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

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  width: 40px;
  height: 40px;
}

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

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

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

.nav-list li a {
  text-decoration: none;
  color: var(--fg-on-page);
  font-weight: 500;
  padding: 0.25rem 0;
  border-bottom: 2px solid transparent;
  transition: color var(--anim-duration) var(--anim-ease), border-color var(--anim-duration) var(--anim-ease);
  font-size: 0.95rem;
}

.nav-list li a:hover {
  color: var(--link-hover);
  border-bottom-color: var(--accent);
}

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

  .header-contact .cta-button {
    display: none;
  }

  .header-nav {
    display: none;
    padding-bottom: 1rem;
  }

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

  .nav-list {
    flex-direction: column;
    gap: 0.5rem;
  }

  .nav-list li a {
    display: block;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-on-surface-light);
  }
}

footer {
    background-color: #2c2c2c;
    color: #f0f0f0;
    padding: 2rem 1rem;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    border-bottom: 1px solid #555;
    padding-bottom: 1.5rem;
  }
  .footer-logo a {
    font-size: 1.8rem;
    font-weight: bold;
    color: #e0b94a;
    text-decoration: none;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-nav a {
    color: #f0f0f0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #e0b94a;
  }
  .footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1.5rem;
  }
  .footer-contact address {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .contact-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
  }
  .contact-item .icon {
    font-size: 1.2rem;
  }
  .contact-item a {
    color: #f0f0f0;
    text-decoration: none;
  }
  .contact-item a:hover {
    text-decoration: underline;
  }
  .footer-legal {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .footer-legal a {
    color: #e0b94a;
    text-decoration: none;
    font-size: 0.95rem;
  }
  .footer-legal a:hover {
    text-decoration: underline;
  }
  .footer-disclaimer {
    flex-basis: 100%;
    font-size: 0.85rem;
    color: #ccc;
    margin-top: 1rem;
    text-align: center;
    border-top: 1px solid #555;
    padding-top: 1rem;
  }
  .footer-disclaimer p {
    margin: 0;
  }
  .footer-copyright {
    flex-basis: 100%;
    text-align: center;
    font-size: 0.85rem;
    color: #aaa;
    margin-top: 0.5rem;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      align-items: flex-start;
      gap: 1rem;
    }
    .footer-nav ul {
      flex-direction: column;
      gap: 0.8rem;
    }
    .footer-bottom {
      flex-direction: column;
      align-items: flex-start;
    }
    .footer-legal {
      flex-direction: row;
      gap: 1rem;
    }
  }

.nfcookie-v10 {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1200;
        background: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.12);
    }

    .nfcookie-v10__inner {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: calc(var(--space-y) * .8) var(--space-x);
        display: flex;
        flex-wrap: wrap;
        gap: 12px var(--gap);
        align-items: center;
        justify-content: space-between;
    }

    .nfcookie-v10__text {flex: 1 1 420px;}
    .nfcookie-v10__text strong {display: block; margin-bottom: 4px; color: var(--fg-on-surface);}
    .nfcookie-v10__text p {margin: 0; color: var(--fg-on-surface-light);}

    .nfcookie-v10__actions {display: flex; flex-wrap: wrap; gap: 8px;}

    .nfcookie-v10__actions button {
        border: 1px solid var(--border-on-surface);
        background: var(--surface-1);
        color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

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

.checkout--colored-v5 {

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

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

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

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

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

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

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

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

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

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

    .contact-layout-c .section-head {
        margin-bottom: 18px;
        text-align: center;
    }

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

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

    .contact-layout-c .stack {
        border-left: 3px solid var(--brand);
        padding-left: 16px;
        display: grid;
        gap: 12px;
    }

    .contact-layout-c .line h3 {
        margin: 0;
        font-size: 1rem;
        color: var(--brand);
    }

    .contact-layout-c .line p {
        margin: 4px 0 0;
    }

    .contact-layout-c .social-bar {
        margin-top: 18px;
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        align-items: center;
    }

    .contact-layout-c .social-bar a {
        text-decoration: none;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border-radius: var(--radius-sm);
        padding: 7px 11px;
        transition: transform var(--anim-duration) var(--anim-ease);
    }

    .contact-layout-c .social-bar a:hover {
        transform: translateY(-2px);
    }

.site-header {
  background-color: var(--neutral-0);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
}

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

.logo a {
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand);
  letter-spacing: -0.02em;
}

.header-contact .cta-button {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background-color: var(--accent);
  color: var(--accent-contrast);
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background-color var(--anim-duration) var(--anim-ease);
}

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

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  width: 40px;
  height: 40px;
}

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

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

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

.nav-list li a {
  text-decoration: none;
  color: var(--fg-on-page);
  font-weight: 500;
  padding: 0.25rem 0;
  border-bottom: 2px solid transparent;
  transition: color var(--anim-duration) var(--anim-ease), border-color var(--anim-duration) var(--anim-ease);
  font-size: 0.95rem;
}

.nav-list li a:hover {
  color: var(--link-hover);
  border-bottom-color: var(--accent);
}

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

  .header-contact .cta-button {
    display: none;
  }

  .header-nav {
    display: none;
    padding-bottom: 1rem;
  }

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

  .nav-list {
    flex-direction: column;
    gap: 0.5rem;
  }

  .nav-list li a {
    display: block;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-on-surface-light);
  }
}

footer {
    background-color: #2c2c2c;
    color: #f0f0f0;
    padding: 2rem 1rem;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    border-bottom: 1px solid #555;
    padding-bottom: 1.5rem;
  }
  .footer-logo a {
    font-size: 1.8rem;
    font-weight: bold;
    color: #e0b94a;
    text-decoration: none;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-nav a {
    color: #f0f0f0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #e0b94a;
  }
  .footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1.5rem;
  }
  .footer-contact address {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .contact-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
  }
  .contact-item .icon {
    font-size: 1.2rem;
  }
  .contact-item a {
    color: #f0f0f0;
    text-decoration: none;
  }
  .contact-item a:hover {
    text-decoration: underline;
  }
  .footer-legal {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .footer-legal a {
    color: #e0b94a;
    text-decoration: none;
    font-size: 0.95rem;
  }
  .footer-legal a:hover {
    text-decoration: underline;
  }
  .footer-disclaimer {
    flex-basis: 100%;
    font-size: 0.85rem;
    color: #ccc;
    margin-top: 1rem;
    text-align: center;
    border-top: 1px solid #555;
    padding-top: 1rem;
  }
  .footer-disclaimer p {
    margin: 0;
  }
  .footer-copyright {
    flex-basis: 100%;
    text-align: center;
    font-size: 0.85rem;
    color: #aaa;
    margin-top: 0.5rem;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      align-items: flex-start;
      gap: 1rem;
    }
    .footer-nav ul {
      flex-direction: column;
      gap: 0.8rem;
    }
    .footer-bottom {
      flex-direction: column;
      align-items: flex-start;
    }
    .footer-legal {
      flex-direction: row;
      gap: 1rem;
    }
  }

.nfcookie-v10 {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1200;
        background: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.12);
    }

    .nfcookie-v10__inner {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: calc(var(--space-y) * .8) var(--space-x);
        display: flex;
        flex-wrap: wrap;
        gap: 12px var(--gap);
        align-items: center;
        justify-content: space-between;
    }

    .nfcookie-v10__text {flex: 1 1 420px;}
    .nfcookie-v10__text strong {display: block; margin-bottom: 4px; color: var(--fg-on-surface);}
    .nfcookie-v10__text p {margin: 0; color: var(--fg-on-surface-light);}

    .nfcookie-v10__actions {display: flex; flex-wrap: wrap; gap: 8px;}

    .nfcookie-v10__actions button {
        border: 1px solid var(--border-on-surface);
        background: var(--surface-1);
        color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

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

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

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

    .contact-layout-c .section-head {
        margin-bottom: 18px;
        text-align: center;
    }

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

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

    .contact-layout-c .stack {
        border-left: 3px solid var(--brand);
        padding-left: 16px;
        display: grid;
        gap: 12px;
    }

    .contact-layout-c .line h3 {
        margin: 0;
        font-size: 1rem;
        color: var(--brand);
    }

    .contact-layout-c .line p {
        margin: 4px 0 0;
    }

    .contact-layout-c .social-bar {
        margin-top: 18px;
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        align-items: center;
    }

    .contact-layout-c .social-bar a {
        text-decoration: none;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border-radius: var(--radius-sm);
        padding: 7px 11px;
        transition: transform var(--anim-duration) var(--anim-ease);
    }

    .contact-layout-c .social-bar a:hover {
        transform: translateY(-2px);
    }

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

    .form-fresh-v1 .shell {
        max-width: 1000px;
        margin: 0 auto;
        display: grid;
        grid-template-columns:.9fr 1.1fr;
        gap: calc(var(--gap) * 1.4);
    }

    .form-fresh-v1 .intro h2 {
        margin: .3rem 0;
        font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    }

    .form-fresh-v1 .intro p {
        margin: 0;
        color: var(--fg-on-surface-light);
    }

    .form-fresh-v1 .form {
        display: grid;
        gap: .75rem;
        padding: 1.1rem;
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        background: var(--surface-1);
    }

    .form-fresh-v1 label {
        display: grid;
        gap: .3rem;
    }

    .form-fresh-v1 span {
        font-size: .85rem;
        color: var(--fg-on-surface-light);
    }

    .form-fresh-v1 input {
        padding: .68rem .8rem;
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-sm);
        font: inherit;
    }

    .form-fresh-v1 button {
        padding: .75rem 1rem;
        border: 0;
        border-radius: var(--radius-sm);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        font-weight: 700;
        cursor: pointer;
    }

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

.site-header {
  background-color: var(--neutral-0);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
}

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

.logo a {
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand);
  letter-spacing: -0.02em;
}

.header-contact .cta-button {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background-color: var(--accent);
  color: var(--accent-contrast);
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background-color var(--anim-duration) var(--anim-ease);
}

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

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  width: 40px;
  height: 40px;
}

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

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

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

.nav-list li a {
  text-decoration: none;
  color: var(--fg-on-page);
  font-weight: 500;
  padding: 0.25rem 0;
  border-bottom: 2px solid transparent;
  transition: color var(--anim-duration) var(--anim-ease), border-color var(--anim-duration) var(--anim-ease);
  font-size: 0.95rem;
}

.nav-list li a:hover {
  color: var(--link-hover);
  border-bottom-color: var(--accent);
}

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

  .header-contact .cta-button {
    display: none;
  }

  .header-nav {
    display: none;
    padding-bottom: 1rem;
  }

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

  .nav-list {
    flex-direction: column;
    gap: 0.5rem;
  }

  .nav-list li a {
    display: block;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-on-surface-light);
  }
}

footer {
    background-color: #2c2c2c;
    color: #f0f0f0;
    padding: 2rem 1rem;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    border-bottom: 1px solid #555;
    padding-bottom: 1.5rem;
  }
  .footer-logo a {
    font-size: 1.8rem;
    font-weight: bold;
    color: #e0b94a;
    text-decoration: none;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-nav a {
    color: #f0f0f0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #e0b94a;
  }
  .footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1.5rem;
  }
  .footer-contact address {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .contact-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
  }
  .contact-item .icon {
    font-size: 1.2rem;
  }
  .contact-item a {
    color: #f0f0f0;
    text-decoration: none;
  }
  .contact-item a:hover {
    text-decoration: underline;
  }
  .footer-legal {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .footer-legal a {
    color: #e0b94a;
    text-decoration: none;
    font-size: 0.95rem;
  }
  .footer-legal a:hover {
    text-decoration: underline;
  }
  .footer-disclaimer {
    flex-basis: 100%;
    font-size: 0.85rem;
    color: #ccc;
    margin-top: 1rem;
    text-align: center;
    border-top: 1px solid #555;
    padding-top: 1rem;
  }
  .footer-disclaimer p {
    margin: 0;
  }
  .footer-copyright {
    flex-basis: 100%;
    text-align: center;
    font-size: 0.85rem;
    color: #aaa;
    margin-top: 0.5rem;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      align-items: flex-start;
      gap: 1rem;
    }
    .footer-nav ul {
      flex-direction: column;
      gap: 0.8rem;
    }
    .footer-bottom {
      flex-direction: column;
      align-items: flex-start;
    }
    .footer-legal {
      flex-direction: row;
      gap: 1rem;
    }
  }

.nfcookie-v10 {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1200;
        background: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.12);
    }

    .nfcookie-v10__inner {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: calc(var(--space-y) * .8) var(--space-x);
        display: flex;
        flex-wrap: wrap;
        gap: 12px var(--gap);
        align-items: center;
        justify-content: space-between;
    }

    .nfcookie-v10__text {flex: 1 1 420px;}
    .nfcookie-v10__text strong {display: block; margin-bottom: 4px; color: var(--fg-on-surface);}
    .nfcookie-v10__text p {margin: 0; color: var(--fg-on-surface-light);}

    .nfcookie-v10__actions {display: flex; flex-wrap: wrap; gap: 8px;}

    .nfcookie-v10__actions button {
        border: 1px solid var(--border-on-surface);
        background: var(--surface-1);
        color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

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

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

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

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

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

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

    .policy-layout-b ol {
        margin: 0;
        padding-left: 18px;
        display: grid;
        gap: 10px;
    }

    .policy-layout-b li {
        background: var(--bg-alt);
        border-radius: var(--radius-md);
        border: 1px solid var(--border-on-surface);
        padding: 12px;
    }

    .policy-layout-b h3 {
        margin: 0;
        color: var(--brand);
        font-size: 1rem;
    }

    .policy-layout-b li p {
        margin: 8px 0 0;
        color: var(--neutral-600);
    }

.site-header {
  background-color: var(--neutral-0);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
}

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

.logo a {
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand);
  letter-spacing: -0.02em;
}

.header-contact .cta-button {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background-color: var(--accent);
  color: var(--accent-contrast);
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background-color var(--anim-duration) var(--anim-ease);
}

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

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  width: 40px;
  height: 40px;
}

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

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

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

.nav-list li a {
  text-decoration: none;
  color: var(--fg-on-page);
  font-weight: 500;
  padding: 0.25rem 0;
  border-bottom: 2px solid transparent;
  transition: color var(--anim-duration) var(--anim-ease), border-color var(--anim-duration) var(--anim-ease);
  font-size: 0.95rem;
}

.nav-list li a:hover {
  color: var(--link-hover);
  border-bottom-color: var(--accent);
}

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

  .header-contact .cta-button {
    display: none;
  }

  .header-nav {
    display: none;
    padding-bottom: 1rem;
  }

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

  .nav-list {
    flex-direction: column;
    gap: 0.5rem;
  }

  .nav-list li a {
    display: block;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-on-surface-light);
  }
}

footer {
    background-color: #2c2c2c;
    color: #f0f0f0;
    padding: 2rem 1rem;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    border-bottom: 1px solid #555;
    padding-bottom: 1.5rem;
  }
  .footer-logo a {
    font-size: 1.8rem;
    font-weight: bold;
    color: #e0b94a;
    text-decoration: none;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-nav a {
    color: #f0f0f0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #e0b94a;
  }
  .footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1.5rem;
  }
  .footer-contact address {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .contact-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
  }
  .contact-item .icon {
    font-size: 1.2rem;
  }
  .contact-item a {
    color: #f0f0f0;
    text-decoration: none;
  }
  .contact-item a:hover {
    text-decoration: underline;
  }
  .footer-legal {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .footer-legal a {
    color: #e0b94a;
    text-decoration: none;
    font-size: 0.95rem;
  }
  .footer-legal a:hover {
    text-decoration: underline;
  }
  .footer-disclaimer {
    flex-basis: 100%;
    font-size: 0.85rem;
    color: #ccc;
    margin-top: 1rem;
    text-align: center;
    border-top: 1px solid #555;
    padding-top: 1rem;
  }
  .footer-disclaimer p {
    margin: 0;
  }
  .footer-copyright {
    flex-basis: 100%;
    text-align: center;
    font-size: 0.85rem;
    color: #aaa;
    margin-top: 0.5rem;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      align-items: flex-start;
      gap: 1rem;
    }
    .footer-nav ul {
      flex-direction: column;
      gap: 0.8rem;
    }
    .footer-bottom {
      flex-direction: column;
      align-items: flex-start;
    }
    .footer-legal {
      flex-direction: row;
      gap: 1rem;
    }
  }

.nfcookie-v10 {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1200;
        background: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.12);
    }

    .nfcookie-v10__inner {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: calc(var(--space-y) * .8) var(--space-x);
        display: flex;
        flex-wrap: wrap;
        gap: 12px var(--gap);
        align-items: center;
        justify-content: space-between;
    }

    .nfcookie-v10__text {flex: 1 1 420px;}
    .nfcookie-v10__text strong {display: block; margin-bottom: 4px; color: var(--fg-on-surface);}
    .nfcookie-v10__text p {margin: 0; color: var(--fg-on-surface-light);}

    .nfcookie-v10__actions {display: flex; flex-wrap: wrap; gap: 8px;}

    .nfcookie-v10__actions button {
        border: 1px solid var(--border-on-surface);
        background: var(--surface-1);
        color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

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

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

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

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

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

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

    .terms-layout-a article {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        padding: var(--space-y) var(--space-x);
        margin-bottom: 12px;
    }

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

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

.site-header {
  background-color: var(--neutral-0);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
}

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

.logo a {
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand);
  letter-spacing: -0.02em;
}

.header-contact .cta-button {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background-color: var(--accent);
  color: var(--accent-contrast);
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background-color var(--anim-duration) var(--anim-ease);
}

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

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  width: 40px;
  height: 40px;
}

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

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

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

.nav-list li a {
  text-decoration: none;
  color: var(--fg-on-page);
  font-weight: 500;
  padding: 0.25rem 0;
  border-bottom: 2px solid transparent;
  transition: color var(--anim-duration) var(--anim-ease), border-color var(--anim-duration) var(--anim-ease);
  font-size: 0.95rem;
}

.nav-list li a:hover {
  color: var(--link-hover);
  border-bottom-color: var(--accent);
}

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

  .header-contact .cta-button {
    display: none;
  }

  .header-nav {
    display: none;
    padding-bottom: 1rem;
  }

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

  .nav-list {
    flex-direction: column;
    gap: 0.5rem;
  }

  .nav-list li a {
    display: block;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-on-surface-light);
  }
}

footer {
    background-color: #2c2c2c;
    color: #f0f0f0;
    padding: 2rem 1rem;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    border-bottom: 1px solid #555;
    padding-bottom: 1.5rem;
  }
  .footer-logo a {
    font-size: 1.8rem;
    font-weight: bold;
    color: #e0b94a;
    text-decoration: none;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-nav a {
    color: #f0f0f0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #e0b94a;
  }
  .footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1.5rem;
  }
  .footer-contact address {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .contact-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
  }
  .contact-item .icon {
    font-size: 1.2rem;
  }
  .contact-item a {
    color: #f0f0f0;
    text-decoration: none;
  }
  .contact-item a:hover {
    text-decoration: underline;
  }
  .footer-legal {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .footer-legal a {
    color: #e0b94a;
    text-decoration: none;
    font-size: 0.95rem;
  }
  .footer-legal a:hover {
    text-decoration: underline;
  }
  .footer-disclaimer {
    flex-basis: 100%;
    font-size: 0.85rem;
    color: #ccc;
    margin-top: 1rem;
    text-align: center;
    border-top: 1px solid #555;
    padding-top: 1rem;
  }
  .footer-disclaimer p {
    margin: 0;
  }
  .footer-copyright {
    flex-basis: 100%;
    text-align: center;
    font-size: 0.85rem;
    color: #aaa;
    margin-top: 0.5rem;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      align-items: flex-start;
      gap: 1rem;
    }
    .footer-nav ul {
      flex-direction: column;
      gap: 0.8rem;
    }
    .footer-bottom {
      flex-direction: column;
      align-items: flex-start;
    }
    .footer-legal {
      flex-direction: row;
      gap: 1rem;
    }
  }

.nfcookie-v10 {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1200;
        background: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.12);
    }

    .nfcookie-v10__inner {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: calc(var(--space-y) * .8) var(--space-x);
        display: flex;
        flex-wrap: wrap;
        gap: 12px var(--gap);
        align-items: center;
        justify-content: space-between;
    }

    .nfcookie-v10__text {flex: 1 1 420px;}
    .nfcookie-v10__text strong {display: block; margin-bottom: 4px; color: var(--fg-on-surface);}
    .nfcookie-v10__text p {margin: 0; color: var(--fg-on-surface-light);}

    .nfcookie-v10__actions {display: flex; flex-wrap: wrap; gap: 8px;}

    .nfcookie-v10__actions button {
        border: 1px solid var(--border-on-surface);
        background: var(--surface-1);
        color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

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

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

.site-header {
  background-color: var(--neutral-0);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
}

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

.logo a {
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand);
  letter-spacing: -0.02em;
}

.header-contact .cta-button {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background-color: var(--accent);
  color: var(--accent-contrast);
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background-color var(--anim-duration) var(--anim-ease);
}

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

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  width: 40px;
  height: 40px;
}

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

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

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

.nav-list li a {
  text-decoration: none;
  color: var(--fg-on-page);
  font-weight: 500;
  padding: 0.25rem 0;
  border-bottom: 2px solid transparent;
  transition: color var(--anim-duration) var(--anim-ease), border-color var(--anim-duration) var(--anim-ease);
  font-size: 0.95rem;
}

.nav-list li a:hover {
  color: var(--link-hover);
  border-bottom-color: var(--accent);
}

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

  .header-contact .cta-button {
    display: none;
  }

  .header-nav {
    display: none;
    padding-bottom: 1rem;
  }

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

  .nav-list {
    flex-direction: column;
    gap: 0.5rem;
  }

  .nav-list li a {
    display: block;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-on-surface-light);
  }
}

footer {
    background-color: #2c2c2c;
    color: #f0f0f0;
    padding: 2rem 1rem;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    border-bottom: 1px solid #555;
    padding-bottom: 1.5rem;
  }
  .footer-logo a {
    font-size: 1.8rem;
    font-weight: bold;
    color: #e0b94a;
    text-decoration: none;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-nav a {
    color: #f0f0f0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #e0b94a;
  }
  .footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1.5rem;
  }
  .footer-contact address {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .contact-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
  }
  .contact-item .icon {
    font-size: 1.2rem;
  }
  .contact-item a {
    color: #f0f0f0;
    text-decoration: none;
  }
  .contact-item a:hover {
    text-decoration: underline;
  }
  .footer-legal {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .footer-legal a {
    color: #e0b94a;
    text-decoration: none;
    font-size: 0.95rem;
  }
  .footer-legal a:hover {
    text-decoration: underline;
  }
  .footer-disclaimer {
    flex-basis: 100%;
    font-size: 0.85rem;
    color: #ccc;
    margin-top: 1rem;
    text-align: center;
    border-top: 1px solid #555;
    padding-top: 1rem;
  }
  .footer-disclaimer p {
    margin: 0;
  }
  .footer-copyright {
    flex-basis: 100%;
    text-align: center;
    font-size: 0.85rem;
    color: #aaa;
    margin-top: 0.5rem;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      align-items: flex-start;
      gap: 1rem;
    }
    .footer-nav ul {
      flex-direction: column;
      gap: 0.8rem;
    }
    .footer-bottom {
      flex-direction: column;
      align-items: flex-start;
    }
    .footer-legal {
      flex-direction: row;
      gap: 1rem;
    }
  }

.nfcookie-v10 {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1200;
        background: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.12);
    }

    .nfcookie-v10__inner {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: calc(var(--space-y) * .8) var(--space-x);
        display: flex;
        flex-wrap: wrap;
        gap: 12px var(--gap);
        align-items: center;
        justify-content: space-between;
    }

    .nfcookie-v10__text {flex: 1 1 420px;}
    .nfcookie-v10__text strong {display: block; margin-bottom: 4px; color: var(--fg-on-surface);}
    .nfcookie-v10__text p {margin: 0; color: var(--fg-on-surface-light);}

    .nfcookie-v10__actions {display: flex; flex-wrap: wrap; gap: 8px;}

    .nfcookie-v10__actions button {
        border: 1px solid var(--border-on-surface);
        background: var(--surface-1);
        color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

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

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