:root {
  --font-family: "Merriweather", sans-serif;
  --font-size-base: 17.2px;
  --line-height-base: 1.48;

  --max-w: 1280px;
  --space-x: 1.77rem;
  --space-y: 1.5rem;
  --gap: 2.39rem;

  --radius-xl: 1.25rem;
  --radius-lg: 0.88rem;
  --radius-md: 0.52rem;
  --radius-sm: 0.31rem;

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.2);
  --shadow-md: 0 14px 22px rgba(0,0,0,0.26);
  --shadow-lg: 0 20px 48px rgba(0,0,0,0.32);

  --overlay: rgba(0,0,0,0.4);
  --anim-duration: 170ms;
  --anim-ease: ease;
  --random-number: 1;

  --brand: #1a3a5c;
  --brand-contrast: #ffffff;
  --accent: #0077be;
  --accent-contrast: #ffffff;

  --neutral-0: #ffffff;
  --neutral-100: #f5f7fa;
  --neutral-300: #d0d5dd;
  --neutral-600: #667085;
  --neutral-800: #1d2939;
  --neutral-900: #0a0f1a;

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

  --bg-alt: #f0f4f8;
  --fg-on-alt: #1d2939;

  --surface-1: #ffffff;
  --surface-2: #f9fafb;
  --fg-on-surface: #1d2939;
  --border-on-surface: #e4e7ec;

  --surface-light: #ffffff;
  --fg-on-surface-light: #667085;
  --border-on-surface-light: #e4e7ec;

  --bg-primary: #0077be;
  --fg-on-primary: #ffffff;
  --bg-primary-hover: #005fa3;
  --ring: #0077be;

  --bg-accent: #e0f0ff;
  --fg-on-accent: #ffffff;
  --bg-accent-hover: #005fa3;

  --link: #0077be;
  --link-hover: #005fa3;

  --gradient-hero: linear-gradient(135deg, #1a3a5c 0%, #0077be 100%);
  --gradient-accent: linear-gradient(135deg, #0077be 0%, #005fa3 100%);

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

header {
  background: var(--surface-1);
  border-bottom: 1px solid var(--border-on-surface);
  padding: var(--space-y) var(--space-x);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}

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

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

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

.nav-menu a {
  text-decoration: none;
  color: var(--neutral-800);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  padding: 0.25rem 0;
  transition: color var(--anim-duration) var(--anim-ease);
  position: relative;
}

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

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

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

.cta-button {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1.25rem;
  background: var(--bg-accent);
  color: var(--fg-on-accent);
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 600;
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  transition: background var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
  white-space: nowrap;
}

.cta-button:hover {
  background: var(--bg-accent-hover);
  box-shadow: var(--shadow-md);
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 2.5rem;
  height: 2.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  gap: 4px;
  border-radius: var(--radius-sm);
  transition: background var(--anim-duration) var(--anim-ease);
}

.burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--neutral-900);
  border-radius: 2px;
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

.burger:hover {
  background: var(--btn-ghost-bg-hover);
}

.burger.active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

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

.burger.active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

@media (max-width: 767px) {
  .header-inner {
    flex-wrap: wrap;
  }

  .nav-menu {
    display: none;
    width: 100%;
    order: 3;
    padding-top: var(--space-y);
  }

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

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

  .nav-menu a {
    font-size: 1.125rem;
    padding: 0.5rem 0;
  }

  .cta-button {
    display: none;
  }

  .burger {
    display: flex;
  }
}

@media (min-width: 768px) {
  .burger {
    display: none;
  }
}

footer {
      background-color: #2c3e50;
      color: #ecf0f1;
      padding: 2rem 1rem;
      font-family: Arial, 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 #34495e;
      padding-bottom: 1.5rem;
    }
    .footer-logo a {
      font-size: 1.8rem;
      font-weight: bold;
      color: #f1c40f;
      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: #ecf0f1;
      text-decoration: none;
      font-size: 1rem;
      transition: color 0.3s;
    }
    .footer-nav a:hover {
      color: #f1c40f;
    }
    .footer-bottom {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: flex-start;
      gap: 1.5rem;
    }
    .footer-legal {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
    }
    .footer-legal a {
      color: #bdc3c7;
      text-decoration: none;
      font-size: 0.9rem;
      transition: color 0.3s;
    }
    .footer-legal a:hover {
      color: #f1c40f;
    }
    .footer-contact {
      font-style: normal;
      display: flex;
      flex-direction: column;
      gap: 0.3rem;
      font-size: 0.9rem;
    }
    .footer-contact a {
      color: #ecf0f1;
      text-decoration: none;
    }
    .footer-contact a:hover {
      color: #f1c40f;
    }
    .footer-disclaimer {
      flex-basis: 100%;
      font-size: 0.85rem;
      color: #bdc3c7;
      margin-top: 1rem;
      padding-top: 1rem;
      border-top: 1px solid #34495e;
    }
    .footer-disclaimer p {
      margin: 0;
    }
    .footer-copyright {
      flex-basis: 100%;
      text-align: center;
      font-size: 0.85rem;
      color: #95a5a6;
      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.5rem;
      }
      .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
      }
      .footer-legal {
        flex-direction: column;
        gap: 0.5rem;
      }
    }

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

    .nfcookie-v7__wrap {
        max-width: 920px;
        margin: 0 auto;
        padding: calc(var(--space-y) * .9) var(--space-x);
        border-radius: var(--radius-xl);
        background: linear-gradient(135deg, var(--accent), var(--bg-primary));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .nfcookie-v7__text strong {display: block; margin-bottom: 4px;}
    .nfcookie-v7__text p {margin: 0; opacity: .95;}

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

    .nfcookie-v7__actions button {
        border: 1px solid rgba(255,255,255,.35);
        background: rgba(255,255,255,.18);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

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

    @media (max-width: 760px) {
        .nfcookie-v7__wrap {grid-template-columns: 1fr;}
        .nfcookie-v7__actions {justify-content: flex-start;}
    }

.nfintro-v9 {
        padding: clamp(3.9rem, 9vw, 7rem) var(--space-x);
        background: linear-gradient(135deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
    }

    .nfintro-v9__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        gap: 1.5rem;
        align-items: center;
        flex-wrap: wrap;
    }

    .nfintro-v9__hero {flex: 1 1 24rem;}
    .nfintro-v9__side {flex: 1 1 18rem;}

    .nfintro-v9__hero p {
        margin: 0;
        color: rgba(255, 255, 255, .78);
        font-size: .82rem;
        letter-spacing: .1em;
        text-transform: uppercase;
    }

    .nfintro-v9__hero h1 {
        margin: .6rem 0 0;
        font-size: clamp(2.5rem, 5vw, 4.8rem);
        line-height: 1.01;
    }

    .nfintro-v9__hero span {
        display: block;
        margin-top: .9rem;
        color: rgba(255, 255, 255, .88);
        max-width: 40rem;
    }

    .nfintro-v9__buttons {
        margin-top: 1.15rem;
        display: flex;
        gap: .75rem;
        flex-wrap: wrap;
    }

    .nfintro-v9__buttons a {
        display: inline-flex;
        min-height: 2.85rem;
        align-items: center;
        justify-content: center;
        padding: 0 1rem;
        border-radius: var(--radius-md);
        text-decoration: none;
        background: rgba(255, 255, 255, .14);
        color: var(--fg-on-primary);
        border: 1px solid rgba(255, 255, 255, .18);
    }

    .nfintro-v9__side img {
        display: block;
        width: 100%;
        border-radius: var(--radius-xl);
        border: 1px solid rgba(255, 255, 255, .18);
    }

    .nfintro-v9__stats {
        margin-top: .85rem;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: .7rem;
    }

    .nfintro-v9__stats article {
        padding: .85rem;
        border-radius: var(--radius-md);
        background: rgba(255, 255, 255, .12);
        border: 1px solid rgba(255, 255, 255, .18);
    }

    .nfintro-v9__stats strong,
    .nfintro-v9__stats span {display: block;}

    .nfintro-v9__stats span {margin-top: .25rem; color: rgba(255, 255, 255, .82);}

    @media (max-width: 780px) {
        .nfintro-v9__stats {
            grid-template-columns: 1fr;
        }
    }

.values-grid-l2 {
        padding: clamp(3.1rem, 7vw, 5.7rem) var(--space-x);
        background: var(--surface-1);
        color: var(--fg-on-page);
    }

    .values-grid-l2__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .values-grid-l2__head {
        margin-bottom: 1.1rem;
    }

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

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

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

    .values-grid-l2__grid article {
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: var(--bg-alt);
        border: 1px solid var(--border-on-surface-light);
    }

    .values-grid-l2__grid i {
        font-style: normal;
    }

    .values-grid-l2__grid h3 {
        margin: .75rem 0 .35rem;
    }

    .values-grid-l2__grid p {
        margin: 0;
        color: var(--neutral-600);
    }

    .values-grid-l2__grid span {
        display: block;
        margin-top: .55rem;
        color: var(--neutral-800);
    }

.next-pulse-c3 {
        padding: clamp(3.6rem, 8vw, 6.1rem) var(--space-x);
        background: radial-gradient(circle at 50% 0, rgba(255, 255, 255, .16), transparent 28%), var(--gradient-hero);
        color: var(--fg-on-primary);
        text-align: center;
    }

    .next-pulse-c3__wrap {
        max-width: 54rem;
        margin: 0 auto;
    }

    .next-pulse-c3__wrap p:first-child {
        margin: 0;
        color: rgba(255, 255, 255, .76);
    }

    .next-pulse-c3__wrap h2 {
        margin: .55rem 0 0;
        font-size: clamp(2.1rem, 4vw, 3.1rem);
    }

    .next-pulse-c3__row {
        margin-top: 1.15rem;
        display: flex;
        gap: .75rem;
        justify-content: center;
        flex-wrap: wrap;
    }

    .next-pulse-c3__row a {
        display: inline-flex;
        padding: .8rem 1rem;
        border-radius: 999px;
        background: rgba(255, 255, 255, .12);
        color: var(--fg-on-primary);
        border: 1px solid rgba(255, 255, 255, .18);
        text-decoration: none;
        animation: next_pulse_c3 2.4s ease-in-out infinite;
    }

    .next-pulse-c3__row a:nth-child(2n) {
        animation-delay: .35s;
    }

    @keyframes next_pulse_c3 {
        0%, 100% {
            transform: translateY(0);
        }
        50% {
            transform: translateY(-3px);
        }
    }

    .next-pulse-c3__copy {
        margin-top: 1rem;

    }

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

.social-l1 {

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

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

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

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

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

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

    .social-l1__card {
        grid-column: span 4;
        border-radius: var(--radius-xl);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-md);
        padding: 16px;
        position: relative;
        transform-style: preserve-3d;
        transition: transform 420ms var(--anim-ease);
        min-height: 170px;
    }

    .social-l1__card:hover {
        transform: rotateY(180deg);
    }

    .social-l1__front,
    .social-l1__back {
        position: absolute;
        inset: 0;
        padding: 16px;
        backface-visibility: hidden;
        border-radius: inherit;
    }

    .social-l1__front::before {
        content: '';
        position: absolute;
        inset: -1px;
        background: radial-gradient(260px 130px at 20% 15%, rgba(0, 86, 179, 0.12), transparent 60%),
        radial-gradient(240px 140px at 85% 35%, rgba(255, 107, 53, 0.12), transparent 62%);
        pointer-events: none;
        border-radius: inherit;
    }

    .social-l1__chip {
        display: inline-flex;
        padding: 6px 10px;
        border-radius: 999px;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border: 1px solid rgba(0, 0, 0, 0.06);
        font-weight: 900;
        position: relative;
    }

    .social-l1__big {
        margin-top: 12px;
        font-weight: 900;
        font-size: clamp(18px, 2.4vw, 28px);
        letter-spacing: -.01em;
        position: relative;
    }

    .social-l1__small {
        margin-top: 8px;
        color: var(--neutral-600);
        line-height: var(--line-height-base);
        position: relative;
    }

    .social-l1__back {
        transform: rotateY(180deg);
        background: var(--bg-alt);
        border: 1px solid var(--neutral-300);
    }

    .social-l1__backTitle {
        font-weight: 900;
        color: var(--bg-primary);
        letter-spacing: -.01em;
        margin-bottom: 8px;
    }

    .social-l1__backText {
        color: var(--neutral-600);
        line-height: var(--line-height-base);
    }

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

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

    @media (prefers-reduced-motion: reduce) {
        .social-l1__card {
            transition: none;
        }
    }

.plans-ux3{padding:clamp(50px,7vw,92px) clamp(16px,4vw,36px);background:var(--gradient-accent);color:var(--accent-contrast)}.plans-ux3__wrap{max-width:var(--max-w);margin:0 auto}.plans-ux3 p{margin:8px 0 12px;color:rgba(255,255,255,.88)}.plans-ux3__grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:10px}.plans-ux3__grid article{border:1px solid rgba(255,255,255,.28);background:rgba(255,255,255,.12);border-radius:var(--radius-lg);padding:12px}.plans-ux3 h3{margin:0}.plans-ux3 ul{margin:8px 0 0;padding-left:18px;display:grid;gap:5px}.plans-ux3 button{width:100%;margin-top:9px;border:0;border-radius:var(--radius-sm);padding:8px 10px;background:var(--bg-primary);color:var(--fg-on-primary)}

header {
  background: var(--surface-1);
  border-bottom: 1px solid var(--border-on-surface);
  padding: var(--space-y) var(--space-x);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}

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

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

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

.nav-menu a {
  text-decoration: none;
  color: var(--neutral-800);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  padding: 0.25rem 0;
  transition: color var(--anim-duration) var(--anim-ease);
  position: relative;
}

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

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

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

.cta-button {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1.25rem;
  background: var(--bg-accent);
  color: var(--fg-on-accent);
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 600;
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  transition: background var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
  white-space: nowrap;
}

.cta-button:hover {
  background: var(--bg-accent-hover);
  box-shadow: var(--shadow-md);
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 2.5rem;
  height: 2.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  gap: 4px;
  border-radius: var(--radius-sm);
  transition: background var(--anim-duration) var(--anim-ease);
}

.burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--neutral-900);
  border-radius: 2px;
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

.burger:hover {
  background: var(--btn-ghost-bg-hover);
}

.burger.active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

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

.burger.active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

@media (max-width: 767px) {
  .header-inner {
    flex-wrap: wrap;
  }

  .nav-menu {
    display: none;
    width: 100%;
    order: 3;
    padding-top: var(--space-y);
  }

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

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

  .nav-menu a {
    font-size: 1.125rem;
    padding: 0.5rem 0;
  }

  .cta-button {
    display: none;
  }

  .burger {
    display: flex;
  }
}

@media (min-width: 768px) {
  .burger {
    display: none;
  }
}

footer {
      background-color: #2c3e50;
      color: #ecf0f1;
      padding: 2rem 1rem;
      font-family: Arial, 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 #34495e;
      padding-bottom: 1.5rem;
    }
    .footer-logo a {
      font-size: 1.8rem;
      font-weight: bold;
      color: #f1c40f;
      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: #ecf0f1;
      text-decoration: none;
      font-size: 1rem;
      transition: color 0.3s;
    }
    .footer-nav a:hover {
      color: #f1c40f;
    }
    .footer-bottom {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: flex-start;
      gap: 1.5rem;
    }
    .footer-legal {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
    }
    .footer-legal a {
      color: #bdc3c7;
      text-decoration: none;
      font-size: 0.9rem;
      transition: color 0.3s;
    }
    .footer-legal a:hover {
      color: #f1c40f;
    }
    .footer-contact {
      font-style: normal;
      display: flex;
      flex-direction: column;
      gap: 0.3rem;
      font-size: 0.9rem;
    }
    .footer-contact a {
      color: #ecf0f1;
      text-decoration: none;
    }
    .footer-contact a:hover {
      color: #f1c40f;
    }
    .footer-disclaimer {
      flex-basis: 100%;
      font-size: 0.85rem;
      color: #bdc3c7;
      margin-top: 1rem;
      padding-top: 1rem;
      border-top: 1px solid #34495e;
    }
    .footer-disclaimer p {
      margin: 0;
    }
    .footer-copyright {
      flex-basis: 100%;
      text-align: center;
      font-size: 0.85rem;
      color: #95a5a6;
      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.5rem;
      }
      .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
      }
      .footer-legal {
        flex-direction: column;
        gap: 0.5rem;
      }
    }

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

    .nfcookie-v7__wrap {
        max-width: 920px;
        margin: 0 auto;
        padding: calc(var(--space-y) * .9) var(--space-x);
        border-radius: var(--radius-xl);
        background: linear-gradient(135deg, var(--accent), var(--bg-primary));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .nfcookie-v7__text strong {display: block; margin-bottom: 4px;}
    .nfcookie-v7__text p {margin: 0; opacity: .95;}

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

    .nfcookie-v7__actions button {
        border: 1px solid rgba(255,255,255,.35);
        background: rgba(255,255,255,.18);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

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

    @media (max-width: 760px) {
        .nfcookie-v7__wrap {grid-template-columns: 1fr;}
        .nfcookie-v7__actions {justify-content: flex-start;}
    }

.product-list {

        color: var(--fg-on-page);
        background: linear-gradient(180deg, var(--bg-accent) 0%, var(--bg-page) 40%);
        padding: clamp(24px, 4vw, 56px) clamp(16px, 4vw, 40px);
    }

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

    .product-list .product-list__header-wrapper {
        display: grid;
        grid-template-columns: 1fr auto;
        gap: clamp(24px, 4vw, 48px);
        align-items: start;
        margin-bottom: clamp(32px, 5vw, 56px);
    }

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

    @media (max-width: 1023px) {
        .product-list .product-list__header-wrapper {
            grid-template-columns: 1fr;
        }
    }

    .product-list .product-list__h {
        text-align: left;
    }

    .product-list h1 {
        font-size: clamp(32px, 6vw, 56px);
        margin: 0 0 0.75rem;
        color: var(--fg-on-page);
        font-weight: 700;
        line-height: 1.1;
    }

    .product-list .product-list__h p {
        font-size: clamp(16px, 2.4vw, 20px);
        color: var(--neutral-600);
        margin: 0;
        line-height: 1.6;
    }

    .product-list .product-list__filters {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        min-width: 200px;
    }

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

    @media (max-width: 1023px) {
        .product-list .product-list__filters {
            flex-direction: row;
            flex-wrap: wrap;
            min-width: auto;
        }
    }

    .product-list .product-list__filter {
        padding: 0.75rem 1.5rem;
        border-radius: var(--radius-lg);
        border: 2px solid var(--ring);
        background: var(--bg-page);
        color: var(--fg-on-page);
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
        font-weight: 500;
        text-align: left;
    }

    @media (max-width: 1023px) {
        .product-list .product-list__filter {
            text-align: center;
        }
    }

    .product-list .product-list__filter:hover {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border-color: var(--bg-primary);
        transform: translateX(4px);
    }

    .product-list .product-list__list {
        display: flex;
        flex-direction: column;
        gap: clamp(16px, 2.5vw, 24px);
    }

    .product-list .product-list__card {
        background: var(--surface-light);
        border: 2px solid var(--border-on-surface-light);
        border-radius: var(--radius-xl);
        padding: clamp(20px, 3vw, 32px);
        box-shadow: var(--shadow-sm);
        transition: all var(--anim-duration) var(--anim-ease);
        display: grid;
        grid-template-columns: 50% 1fr auto;
        gap: clamp(20px, 3vw, 32px);
        align-items: center;
    }

    .product-list .product-list__card:hover {
        border-color: var(--bg-primary);
        box-shadow: var(--shadow-lg);
        transform: translateX(8px);
    }

    .product-list .product-list__image {
        width: 100%;
        height: 180px;
        border-radius: var(--radius-lg);
        overflow: hidden;
    }

    .product-list .product-list__image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform var(--anim-duration) var(--anim-ease);
    }

    .product-list .product-list__card:hover .product-list__image img {
        transform: scale(1.05);
    }

    .product-list .product-list__info {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        flex: 1;
    }

    .product-list .product-list__main {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }

    .product-list h3 {
        margin: 0;
        font-size: clamp(20px, 2.8vw, 24px);
        color: var(--fg-on-page);
        font-weight: 600;
    }

    .product-list .product-list__description {
        color: var(--neutral-600);
        line-height: 1.6;
        margin: 0;
        font-size: 0.95rem;
    }

    .product-list .product-list__meta {
        display: flex;
        gap: 0.5rem;
        align-items: center;
        font-size: 0.875rem;
        color: var(--neutral-600);
    }

    .product-list .product-list__rating {
        font-weight: 600;
        color: var(--accent);
    }

    .product-list .product-list__actions {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        align-items: flex-end;
        min-width: 180px;
    }

    .product-list .product-list__btn {
        padding: 0.875rem 2rem;
        border-radius: var(--radius-lg);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        text-decoration: none;
        transition: all var(--anim-duration) var(--anim-ease);
        font-weight: 600;
        width: 100%;
        text-align: center;
    }

    .product-list .product-list__btn:hover {
        background: var(--bg-primary-hover);
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
    }

    .product-list__image img {
        width: 100%;
    }
    @media (max-width: 1023px) {
        .product-list .product-list__card {
            grid-template-columns: 1fr;
        }

        .product-list .product-list__image {
            height: 240px;
        }

        .product-list .product-list__actions {
            flex-direction: row;
            justify-content: space-between;
            align-items: center;
            width: 100%;
            min-width: auto;
        }

        .product-list .product-list__btn {
            width: auto;
        }
    }

.recommendations-u5{padding:calc(var(--space-y)*2.9) var(--space-x);background:var(--neutral-900);color:var(--neutral-0)} .recommendations-u5 .shell{max-width:var(--max-w);margin:0 auto;display:grid;gap:var(--gap)} .recommendations-u5 h2{margin:0;font-size:clamp(1.85rem,3.6vw,2.8rem);line-height:1.1} .recommendations-u5 .sub{margin:.35rem 0 0;opacity:.9;} .recommendations-u5 article,.recommendations-u5 li{padding:.85rem;border-radius:var(--radius-sm);background:var(--chip-bg);border:1px solid var(--btn-ghost-bg-hover);list-style:none} .recommendations-u5 p{margin:0} .recommendations-u5 a{text-decoration:none;color:inherit;font-weight:700} .recommendations-u5 .table{display:grid;gap:.5rem} .recommendations-u5 .foot{display:grid;grid-template-columns:1fr 1fr;gap:.5rem;margin-top:.65rem} .recommendations-u5 .foot p{padding:.65rem;border-radius:var(--radius-sm);background:var(--chip-bg);border:1px solid var(--btn-ghost-bg-hover)} @media (max-width:860px){.recommendations-u5 .split,.recommendations-u5 .media,.recommendations-u5 .grid,.recommendations-u5 .cards,.recommendations-u5 .bento,.recommendations-u5 .foot{grid-template-columns:1fr}}

header {
  background: var(--surface-1);
  border-bottom: 1px solid var(--border-on-surface);
  padding: var(--space-y) var(--space-x);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}

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

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

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

.nav-menu a {
  text-decoration: none;
  color: var(--neutral-800);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  padding: 0.25rem 0;
  transition: color var(--anim-duration) var(--anim-ease);
  position: relative;
}

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

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

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

.cta-button {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1.25rem;
  background: var(--bg-accent);
  color: var(--fg-on-accent);
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 600;
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  transition: background var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
  white-space: nowrap;
}

.cta-button:hover {
  background: var(--bg-accent-hover);
  box-shadow: var(--shadow-md);
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 2.5rem;
  height: 2.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  gap: 4px;
  border-radius: var(--radius-sm);
  transition: background var(--anim-duration) var(--anim-ease);
}

.burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--neutral-900);
  border-radius: 2px;
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

.burger:hover {
  background: var(--btn-ghost-bg-hover);
}

.burger.active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

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

.burger.active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

@media (max-width: 767px) {
  .header-inner {
    flex-wrap: wrap;
  }

  .nav-menu {
    display: none;
    width: 100%;
    order: 3;
    padding-top: var(--space-y);
  }

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

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

  .nav-menu a {
    font-size: 1.125rem;
    padding: 0.5rem 0;
  }

  .cta-button {
    display: none;
  }

  .burger {
    display: flex;
  }
}

@media (min-width: 768px) {
  .burger {
    display: none;
  }
}

footer {
      background-color: #2c3e50;
      color: #ecf0f1;
      padding: 2rem 1rem;
      font-family: Arial, 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 #34495e;
      padding-bottom: 1.5rem;
    }
    .footer-logo a {
      font-size: 1.8rem;
      font-weight: bold;
      color: #f1c40f;
      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: #ecf0f1;
      text-decoration: none;
      font-size: 1rem;
      transition: color 0.3s;
    }
    .footer-nav a:hover {
      color: #f1c40f;
    }
    .footer-bottom {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: flex-start;
      gap: 1.5rem;
    }
    .footer-legal {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
    }
    .footer-legal a {
      color: #bdc3c7;
      text-decoration: none;
      font-size: 0.9rem;
      transition: color 0.3s;
    }
    .footer-legal a:hover {
      color: #f1c40f;
    }
    .footer-contact {
      font-style: normal;
      display: flex;
      flex-direction: column;
      gap: 0.3rem;
      font-size: 0.9rem;
    }
    .footer-contact a {
      color: #ecf0f1;
      text-decoration: none;
    }
    .footer-contact a:hover {
      color: #f1c40f;
    }
    .footer-disclaimer {
      flex-basis: 100%;
      font-size: 0.85rem;
      color: #bdc3c7;
      margin-top: 1rem;
      padding-top: 1rem;
      border-top: 1px solid #34495e;
    }
    .footer-disclaimer p {
      margin: 0;
    }
    .footer-copyright {
      flex-basis: 100%;
      text-align: center;
      font-size: 0.85rem;
      color: #95a5a6;
      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.5rem;
      }
      .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
      }
      .footer-legal {
        flex-direction: column;
        gap: 0.5rem;
      }
    }

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

    .nfcookie-v7__wrap {
        max-width: 920px;
        margin: 0 auto;
        padding: calc(var(--space-y) * .9) var(--space-x);
        border-radius: var(--radius-xl);
        background: linear-gradient(135deg, var(--accent), var(--bg-primary));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .nfcookie-v7__text strong {display: block; margin-bottom: 4px;}
    .nfcookie-v7__text p {margin: 0; opacity: .95;}

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

    .nfcookie-v7__actions button {
        border: 1px solid rgba(255,255,255,.35);
        background: rgba(255,255,255,.18);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

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

    @media (max-width: 760px) {
        .nfcookie-v7__wrap {grid-template-columns: 1fr;}
        .nfcookie-v7__actions {justify-content: flex-start;}
    }

.product-item {

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

header {
  background: var(--surface-1);
  border-bottom: 1px solid var(--border-on-surface);
  padding: var(--space-y) var(--space-x);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}

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

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

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

.nav-menu a {
  text-decoration: none;
  color: var(--neutral-800);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  padding: 0.25rem 0;
  transition: color var(--anim-duration) var(--anim-ease);
  position: relative;
}

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

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

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

.cta-button {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1.25rem;
  background: var(--bg-accent);
  color: var(--fg-on-accent);
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 600;
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  transition: background var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
  white-space: nowrap;
}

.cta-button:hover {
  background: var(--bg-accent-hover);
  box-shadow: var(--shadow-md);
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 2.5rem;
  height: 2.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  gap: 4px;
  border-radius: var(--radius-sm);
  transition: background var(--anim-duration) var(--anim-ease);
}

.burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--neutral-900);
  border-radius: 2px;
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

.burger:hover {
  background: var(--btn-ghost-bg-hover);
}

.burger.active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

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

.burger.active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

@media (max-width: 767px) {
  .header-inner {
    flex-wrap: wrap;
  }

  .nav-menu {
    display: none;
    width: 100%;
    order: 3;
    padding-top: var(--space-y);
  }

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

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

  .nav-menu a {
    font-size: 1.125rem;
    padding: 0.5rem 0;
  }

  .cta-button {
    display: none;
  }

  .burger {
    display: flex;
  }
}

@media (min-width: 768px) {
  .burger {
    display: none;
  }
}

footer {
      background-color: #2c3e50;
      color: #ecf0f1;
      padding: 2rem 1rem;
      font-family: Arial, 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 #34495e;
      padding-bottom: 1.5rem;
    }
    .footer-logo a {
      font-size: 1.8rem;
      font-weight: bold;
      color: #f1c40f;
      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: #ecf0f1;
      text-decoration: none;
      font-size: 1rem;
      transition: color 0.3s;
    }
    .footer-nav a:hover {
      color: #f1c40f;
    }
    .footer-bottom {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: flex-start;
      gap: 1.5rem;
    }
    .footer-legal {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
    }
    .footer-legal a {
      color: #bdc3c7;
      text-decoration: none;
      font-size: 0.9rem;
      transition: color 0.3s;
    }
    .footer-legal a:hover {
      color: #f1c40f;
    }
    .footer-contact {
      font-style: normal;
      display: flex;
      flex-direction: column;
      gap: 0.3rem;
      font-size: 0.9rem;
    }
    .footer-contact a {
      color: #ecf0f1;
      text-decoration: none;
    }
    .footer-contact a:hover {
      color: #f1c40f;
    }
    .footer-disclaimer {
      flex-basis: 100%;
      font-size: 0.85rem;
      color: #bdc3c7;
      margin-top: 1rem;
      padding-top: 1rem;
      border-top: 1px solid #34495e;
    }
    .footer-disclaimer p {
      margin: 0;
    }
    .footer-copyright {
      flex-basis: 100%;
      text-align: center;
      font-size: 0.85rem;
      color: #95a5a6;
      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.5rem;
      }
      .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
      }
      .footer-legal {
        flex-direction: column;
        gap: 0.5rem;
      }
    }

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

    .nfcookie-v7__wrap {
        max-width: 920px;
        margin: 0 auto;
        padding: calc(var(--space-y) * .9) var(--space-x);
        border-radius: var(--radius-xl);
        background: linear-gradient(135deg, var(--accent), var(--bg-primary));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .nfcookie-v7__text strong {display: block; margin-bottom: 4px;}
    .nfcookie-v7__text p {margin: 0; opacity: .95;}

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

    .nfcookie-v7__actions button {
        border: 1px solid rgba(255,255,255,.35);
        background: rgba(255,255,255,.18);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

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

    @media (max-width: 760px) {
        .nfcookie-v7__wrap {grid-template-columns: 1fr;}
        .nfcookie-v7__actions {justify-content: flex-start;}
    }

.product-item {

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

header {
  background: var(--surface-1);
  border-bottom: 1px solid var(--border-on-surface);
  padding: var(--space-y) var(--space-x);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}

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

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

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

.nav-menu a {
  text-decoration: none;
  color: var(--neutral-800);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  padding: 0.25rem 0;
  transition: color var(--anim-duration) var(--anim-ease);
  position: relative;
}

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

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

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

.cta-button {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1.25rem;
  background: var(--bg-accent);
  color: var(--fg-on-accent);
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 600;
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  transition: background var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
  white-space: nowrap;
}

.cta-button:hover {
  background: var(--bg-accent-hover);
  box-shadow: var(--shadow-md);
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 2.5rem;
  height: 2.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  gap: 4px;
  border-radius: var(--radius-sm);
  transition: background var(--anim-duration) var(--anim-ease);
}

.burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--neutral-900);
  border-radius: 2px;
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

.burger:hover {
  background: var(--btn-ghost-bg-hover);
}

.burger.active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

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

.burger.active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

@media (max-width: 767px) {
  .header-inner {
    flex-wrap: wrap;
  }

  .nav-menu {
    display: none;
    width: 100%;
    order: 3;
    padding-top: var(--space-y);
  }

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

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

  .nav-menu a {
    font-size: 1.125rem;
    padding: 0.5rem 0;
  }

  .cta-button {
    display: none;
  }

  .burger {
    display: flex;
  }
}

@media (min-width: 768px) {
  .burger {
    display: none;
  }
}

footer {
      background-color: #2c3e50;
      color: #ecf0f1;
      padding: 2rem 1rem;
      font-family: Arial, 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 #34495e;
      padding-bottom: 1.5rem;
    }
    .footer-logo a {
      font-size: 1.8rem;
      font-weight: bold;
      color: #f1c40f;
      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: #ecf0f1;
      text-decoration: none;
      font-size: 1rem;
      transition: color 0.3s;
    }
    .footer-nav a:hover {
      color: #f1c40f;
    }
    .footer-bottom {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: flex-start;
      gap: 1.5rem;
    }
    .footer-legal {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
    }
    .footer-legal a {
      color: #bdc3c7;
      text-decoration: none;
      font-size: 0.9rem;
      transition: color 0.3s;
    }
    .footer-legal a:hover {
      color: #f1c40f;
    }
    .footer-contact {
      font-style: normal;
      display: flex;
      flex-direction: column;
      gap: 0.3rem;
      font-size: 0.9rem;
    }
    .footer-contact a {
      color: #ecf0f1;
      text-decoration: none;
    }
    .footer-contact a:hover {
      color: #f1c40f;
    }
    .footer-disclaimer {
      flex-basis: 100%;
      font-size: 0.85rem;
      color: #bdc3c7;
      margin-top: 1rem;
      padding-top: 1rem;
      border-top: 1px solid #34495e;
    }
    .footer-disclaimer p {
      margin: 0;
    }
    .footer-copyright {
      flex-basis: 100%;
      text-align: center;
      font-size: 0.85rem;
      color: #95a5a6;
      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.5rem;
      }
      .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
      }
      .footer-legal {
        flex-direction: column;
        gap: 0.5rem;
      }
    }

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

    .nfcookie-v7__wrap {
        max-width: 920px;
        margin: 0 auto;
        padding: calc(var(--space-y) * .9) var(--space-x);
        border-radius: var(--radius-xl);
        background: linear-gradient(135deg, var(--accent), var(--bg-primary));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .nfcookie-v7__text strong {display: block; margin-bottom: 4px;}
    .nfcookie-v7__text p {margin: 0; opacity: .95;}

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

    .nfcookie-v7__actions button {
        border: 1px solid rgba(255,255,255,.35);
        background: rgba(255,255,255,.18);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

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

    @media (max-width: 760px) {
        .nfcookie-v7__wrap {grid-template-columns: 1fr;}
        .nfcookie-v7__actions {justify-content: flex-start;}
    }

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

header {
  background: var(--surface-1);
  border-bottom: 1px solid var(--border-on-surface);
  padding: var(--space-y) var(--space-x);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}

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

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

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

.nav-menu a {
  text-decoration: none;
  color: var(--neutral-800);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  padding: 0.25rem 0;
  transition: color var(--anim-duration) var(--anim-ease);
  position: relative;
}

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

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

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

.cta-button {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1.25rem;
  background: var(--bg-accent);
  color: var(--fg-on-accent);
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 600;
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  transition: background var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
  white-space: nowrap;
}

.cta-button:hover {
  background: var(--bg-accent-hover);
  box-shadow: var(--shadow-md);
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 2.5rem;
  height: 2.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  gap: 4px;
  border-radius: var(--radius-sm);
  transition: background var(--anim-duration) var(--anim-ease);
}

.burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--neutral-900);
  border-radius: 2px;
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

.burger:hover {
  background: var(--btn-ghost-bg-hover);
}

.burger.active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

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

.burger.active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

@media (max-width: 767px) {
  .header-inner {
    flex-wrap: wrap;
  }

  .nav-menu {
    display: none;
    width: 100%;
    order: 3;
    padding-top: var(--space-y);
  }

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

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

  .nav-menu a {
    font-size: 1.125rem;
    padding: 0.5rem 0;
  }

  .cta-button {
    display: none;
  }

  .burger {
    display: flex;
  }
}

@media (min-width: 768px) {
  .burger {
    display: none;
  }
}

footer {
      background-color: #2c3e50;
      color: #ecf0f1;
      padding: 2rem 1rem;
      font-family: Arial, 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 #34495e;
      padding-bottom: 1.5rem;
    }
    .footer-logo a {
      font-size: 1.8rem;
      font-weight: bold;
      color: #f1c40f;
      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: #ecf0f1;
      text-decoration: none;
      font-size: 1rem;
      transition: color 0.3s;
    }
    .footer-nav a:hover {
      color: #f1c40f;
    }
    .footer-bottom {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: flex-start;
      gap: 1.5rem;
    }
    .footer-legal {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
    }
    .footer-legal a {
      color: #bdc3c7;
      text-decoration: none;
      font-size: 0.9rem;
      transition: color 0.3s;
    }
    .footer-legal a:hover {
      color: #f1c40f;
    }
    .footer-contact {
      font-style: normal;
      display: flex;
      flex-direction: column;
      gap: 0.3rem;
      font-size: 0.9rem;
    }
    .footer-contact a {
      color: #ecf0f1;
      text-decoration: none;
    }
    .footer-contact a:hover {
      color: #f1c40f;
    }
    .footer-disclaimer {
      flex-basis: 100%;
      font-size: 0.85rem;
      color: #bdc3c7;
      margin-top: 1rem;
      padding-top: 1rem;
      border-top: 1px solid #34495e;
    }
    .footer-disclaimer p {
      margin: 0;
    }
    .footer-copyright {
      flex-basis: 100%;
      text-align: center;
      font-size: 0.85rem;
      color: #95a5a6;
      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.5rem;
      }
      .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
      }
      .footer-legal {
        flex-direction: column;
        gap: 0.5rem;
      }
    }

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

    .nfcookie-v7__wrap {
        max-width: 920px;
        margin: 0 auto;
        padding: calc(var(--space-y) * .9) var(--space-x);
        border-radius: var(--radius-xl);
        background: linear-gradient(135deg, var(--accent), var(--bg-primary));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .nfcookie-v7__text strong {display: block; margin-bottom: 4px;}
    .nfcookie-v7__text p {margin: 0; opacity: .95;}

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

    .nfcookie-v7__actions button {
        border: 1px solid rgba(255,255,255,.35);
        background: rgba(255,255,255,.18);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

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

    @media (max-width: 760px) {
        .nfcookie-v7__wrap {grid-template-columns: 1fr;}
        .nfcookie-v7__actions {justify-content: flex-start;}
    }

.contacts-u7{padding:calc(var(--space-y)*2.9) var(--space-x);background:var(--gradient-accent);color:var(--brand-contrast)} .contacts-u7 .shell{max-width:var(--max-w);margin:0 auto;display:grid;gap:var(--gap)} .contacts-u7 h2{margin:0;font-size:clamp(1.85rem,3.6vw,2.8rem);line-height:1.1} .contacts-u7 .sub{margin:.35rem 0 0;opacity:.9;} .contacts-u7 article,.contacts-u7 li{padding:.85rem;border-radius:var(--radius-sm);background:var(--chip-bg);border:1px solid var(--btn-ghost-bg-hover);list-style:none} .contacts-u7 p{margin:0} .contacts-u7 a{text-decoration:none;color:inherit;font-weight:700} .contacts-u7 .pulse{margin-top:.8rem;padding:1rem;border-radius:var(--radius-lg);background:var(--chip-bg);border:1px solid var(--btn-ghost-bg-hover);animation:contacts-u7Pulse 2.8s ease-in-out infinite} @keyframes contacts-u7Pulse{0%,100%{transform:scale(1)}50%{transform:scale(1.01)}} .contacts-u7 article{transition:transform var(--anim-duration) var(--anim-ease),box-shadow var(--anim-duration) var(--anim-ease)} .contacts-u7 article:hover{transform:translateY(-4px);box-shadow:var(--shadow-md)} @media (max-width:860px){.contacts-u7 .split,.contacts-u7 .media,.contacts-u7 .grid,.contacts-u7 .cards,.contacts-u7 .bento,.contacts-u7 .foot{grid-template-columns:1fr}}

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

.recommendations-u5{padding:calc(var(--space-y)*2.9) var(--space-x);background:var(--neutral-900);color:var(--neutral-0)} .recommendations-u5 .shell{max-width:var(--max-w);margin:0 auto;display:grid;gap:var(--gap)} .recommendations-u5 h2{margin:0;font-size:clamp(1.85rem,3.6vw,2.8rem);line-height:1.1} .recommendations-u5 .sub{margin:.35rem 0 0;opacity:.9;} .recommendations-u5 article,.recommendations-u5 li{padding:.85rem;border-radius:var(--radius-sm);background:var(--chip-bg);border:1px solid var(--btn-ghost-bg-hover);list-style:none} .recommendations-u5 p{margin:0} .recommendations-u5 a{text-decoration:none;color:inherit;font-weight:700} .recommendations-u5 .table{display:grid;gap:.5rem} .recommendations-u5 .foot{display:grid;grid-template-columns:1fr 1fr;gap:.5rem;margin-top:.65rem} .recommendations-u5 .foot p{padding:.65rem;border-radius:var(--radius-sm);background:var(--chip-bg);border:1px solid var(--btn-ghost-bg-hover)} @media (max-width:860px){.recommendations-u5 .split,.recommendations-u5 .media,.recommendations-u5 .grid,.recommendations-u5 .cards,.recommendations-u5 .bento,.recommendations-u5 .foot{grid-template-columns:1fr}}

header {
  background: var(--surface-1);
  border-bottom: 1px solid var(--border-on-surface);
  padding: var(--space-y) var(--space-x);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}

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

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

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

.nav-menu a {
  text-decoration: none;
  color: var(--neutral-800);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  padding: 0.25rem 0;
  transition: color var(--anim-duration) var(--anim-ease);
  position: relative;
}

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

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

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

.cta-button {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1.25rem;
  background: var(--bg-accent);
  color: var(--fg-on-accent);
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 600;
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  transition: background var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
  white-space: nowrap;
}

.cta-button:hover {
  background: var(--bg-accent-hover);
  box-shadow: var(--shadow-md);
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 2.5rem;
  height: 2.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  gap: 4px;
  border-radius: var(--radius-sm);
  transition: background var(--anim-duration) var(--anim-ease);
}

.burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--neutral-900);
  border-radius: 2px;
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

.burger:hover {
  background: var(--btn-ghost-bg-hover);
}

.burger.active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

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

.burger.active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

@media (max-width: 767px) {
  .header-inner {
    flex-wrap: wrap;
  }

  .nav-menu {
    display: none;
    width: 100%;
    order: 3;
    padding-top: var(--space-y);
  }

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

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

  .nav-menu a {
    font-size: 1.125rem;
    padding: 0.5rem 0;
  }

  .cta-button {
    display: none;
  }

  .burger {
    display: flex;
  }
}

@media (min-width: 768px) {
  .burger {
    display: none;
  }
}

footer {
      background-color: #2c3e50;
      color: #ecf0f1;
      padding: 2rem 1rem;
      font-family: Arial, 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 #34495e;
      padding-bottom: 1.5rem;
    }
    .footer-logo a {
      font-size: 1.8rem;
      font-weight: bold;
      color: #f1c40f;
      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: #ecf0f1;
      text-decoration: none;
      font-size: 1rem;
      transition: color 0.3s;
    }
    .footer-nav a:hover {
      color: #f1c40f;
    }
    .footer-bottom {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: flex-start;
      gap: 1.5rem;
    }
    .footer-legal {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
    }
    .footer-legal a {
      color: #bdc3c7;
      text-decoration: none;
      font-size: 0.9rem;
      transition: color 0.3s;
    }
    .footer-legal a:hover {
      color: #f1c40f;
    }
    .footer-contact {
      font-style: normal;
      display: flex;
      flex-direction: column;
      gap: 0.3rem;
      font-size: 0.9rem;
    }
    .footer-contact a {
      color: #ecf0f1;
      text-decoration: none;
    }
    .footer-contact a:hover {
      color: #f1c40f;
    }
    .footer-disclaimer {
      flex-basis: 100%;
      font-size: 0.85rem;
      color: #bdc3c7;
      margin-top: 1rem;
      padding-top: 1rem;
      border-top: 1px solid #34495e;
    }
    .footer-disclaimer p {
      margin: 0;
    }
    .footer-copyright {
      flex-basis: 100%;
      text-align: center;
      font-size: 0.85rem;
      color: #95a5a6;
      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.5rem;
      }
      .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
      }
      .footer-legal {
        flex-direction: column;
        gap: 0.5rem;
      }
    }

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

    .nfcookie-v7__wrap {
        max-width: 920px;
        margin: 0 auto;
        padding: calc(var(--space-y) * .9) var(--space-x);
        border-radius: var(--radius-xl);
        background: linear-gradient(135deg, var(--accent), var(--bg-primary));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .nfcookie-v7__text strong {display: block; margin-bottom: 4px;}
    .nfcookie-v7__text p {margin: 0; opacity: .95;}

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

    .nfcookie-v7__actions button {
        border: 1px solid rgba(255,255,255,.35);
        background: rgba(255,255,255,.18);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

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

    @media (max-width: 760px) {
        .nfcookie-v7__wrap {grid-template-columns: 1fr;}
        .nfcookie-v7__actions {justify-content: flex-start;}
    }

.pol-lx2{padding:calc(var(--space-y)*2.8) var(--space-x)}
.pol-lx2 .pol-shell{max-width:var(--max-w);margin:0 auto;display:grid;gap:.75rem}
.pol-lx2 h2{margin:0;font-size:clamp(1.8rem,3.4vw,2.55rem)}
.pol-lx2 .pol-core{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:.65rem}
.pol-lx2 .pol-core article{padding:.9rem;border-radius:var(--radius-lg);background:var(--surface-2);border:1px solid var(--border-on-surface)}
.pol-lx2 h3{margin:0 0 .28rem;font-size:1rem}
.pol-lx2 p{margin:0;color:var(--fg-on-surface-light)}
.pol-lx2 .pol-list{list-style:none;margin:0;padding:0;display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:.58rem}
.pol-lx2 .pol-list li{padding:.85rem;border-radius:var(--radius-md);background:var(--surface-1);border:1px solid var(--border-on-surface)}
@media (max-width:860px){.pol-lx2 .pol-core,.pol-lx2 .pol-list{grid-template-columns:1fr}}

header {
  background: var(--surface-1);
  border-bottom: 1px solid var(--border-on-surface);
  padding: var(--space-y) var(--space-x);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}

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

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

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

.nav-menu a {
  text-decoration: none;
  color: var(--neutral-800);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  padding: 0.25rem 0;
  transition: color var(--anim-duration) var(--anim-ease);
  position: relative;
}

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

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

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

.cta-button {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1.25rem;
  background: var(--bg-accent);
  color: var(--fg-on-accent);
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 600;
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  transition: background var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
  white-space: nowrap;
}

.cta-button:hover {
  background: var(--bg-accent-hover);
  box-shadow: var(--shadow-md);
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 2.5rem;
  height: 2.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  gap: 4px;
  border-radius: var(--radius-sm);
  transition: background var(--anim-duration) var(--anim-ease);
}

.burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--neutral-900);
  border-radius: 2px;
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

.burger:hover {
  background: var(--btn-ghost-bg-hover);
}

.burger.active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

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

.burger.active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

@media (max-width: 767px) {
  .header-inner {
    flex-wrap: wrap;
  }

  .nav-menu {
    display: none;
    width: 100%;
    order: 3;
    padding-top: var(--space-y);
  }

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

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

  .nav-menu a {
    font-size: 1.125rem;
    padding: 0.5rem 0;
  }

  .cta-button {
    display: none;
  }

  .burger {
    display: flex;
  }
}

@media (min-width: 768px) {
  .burger {
    display: none;
  }
}

footer {
      background-color: #2c3e50;
      color: #ecf0f1;
      padding: 2rem 1rem;
      font-family: Arial, 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 #34495e;
      padding-bottom: 1.5rem;
    }
    .footer-logo a {
      font-size: 1.8rem;
      font-weight: bold;
      color: #f1c40f;
      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: #ecf0f1;
      text-decoration: none;
      font-size: 1rem;
      transition: color 0.3s;
    }
    .footer-nav a:hover {
      color: #f1c40f;
    }
    .footer-bottom {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: flex-start;
      gap: 1.5rem;
    }
    .footer-legal {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
    }
    .footer-legal a {
      color: #bdc3c7;
      text-decoration: none;
      font-size: 0.9rem;
      transition: color 0.3s;
    }
    .footer-legal a:hover {
      color: #f1c40f;
    }
    .footer-contact {
      font-style: normal;
      display: flex;
      flex-direction: column;
      gap: 0.3rem;
      font-size: 0.9rem;
    }
    .footer-contact a {
      color: #ecf0f1;
      text-decoration: none;
    }
    .footer-contact a:hover {
      color: #f1c40f;
    }
    .footer-disclaimer {
      flex-basis: 100%;
      font-size: 0.85rem;
      color: #bdc3c7;
      margin-top: 1rem;
      padding-top: 1rem;
      border-top: 1px solid #34495e;
    }
    .footer-disclaimer p {
      margin: 0;
    }
    .footer-copyright {
      flex-basis: 100%;
      text-align: center;
      font-size: 0.85rem;
      color: #95a5a6;
      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.5rem;
      }
      .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
      }
      .footer-legal {
        flex-direction: column;
        gap: 0.5rem;
      }
    }

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

    .nfcookie-v7__wrap {
        max-width: 920px;
        margin: 0 auto;
        padding: calc(var(--space-y) * .9) var(--space-x);
        border-radius: var(--radius-xl);
        background: linear-gradient(135deg, var(--accent), var(--bg-primary));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .nfcookie-v7__text strong {display: block; margin-bottom: 4px;}
    .nfcookie-v7__text p {margin: 0; opacity: .95;}

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

    .nfcookie-v7__actions button {
        border: 1px solid rgba(255,255,255,.35);
        background: rgba(255,255,255,.18);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

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

    @media (max-width: 760px) {
        .nfcookie-v7__wrap {grid-template-columns: 1fr;}
        .nfcookie-v7__actions {justify-content: flex-start;}
    }

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

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

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

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

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

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

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

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

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

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

header {
  background: var(--surface-1);
  border-bottom: 1px solid var(--border-on-surface);
  padding: var(--space-y) var(--space-x);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}

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

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

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

.nav-menu a {
  text-decoration: none;
  color: var(--neutral-800);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  padding: 0.25rem 0;
  transition: color var(--anim-duration) var(--anim-ease);
  position: relative;
}

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

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

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

.cta-button {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1.25rem;
  background: var(--bg-accent);
  color: var(--fg-on-accent);
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 600;
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  transition: background var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
  white-space: nowrap;
}

.cta-button:hover {
  background: var(--bg-accent-hover);
  box-shadow: var(--shadow-md);
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 2.5rem;
  height: 2.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  gap: 4px;
  border-radius: var(--radius-sm);
  transition: background var(--anim-duration) var(--anim-ease);
}

.burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--neutral-900);
  border-radius: 2px;
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

.burger:hover {
  background: var(--btn-ghost-bg-hover);
}

.burger.active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

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

.burger.active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

@media (max-width: 767px) {
  .header-inner {
    flex-wrap: wrap;
  }

  .nav-menu {
    display: none;
    width: 100%;
    order: 3;
    padding-top: var(--space-y);
  }

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

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

  .nav-menu a {
    font-size: 1.125rem;
    padding: 0.5rem 0;
  }

  .cta-button {
    display: none;
  }

  .burger {
    display: flex;
  }
}

@media (min-width: 768px) {
  .burger {
    display: none;
  }
}

footer {
      background-color: #2c3e50;
      color: #ecf0f1;
      padding: 2rem 1rem;
      font-family: Arial, 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 #34495e;
      padding-bottom: 1.5rem;
    }
    .footer-logo a {
      font-size: 1.8rem;
      font-weight: bold;
      color: #f1c40f;
      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: #ecf0f1;
      text-decoration: none;
      font-size: 1rem;
      transition: color 0.3s;
    }
    .footer-nav a:hover {
      color: #f1c40f;
    }
    .footer-bottom {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: flex-start;
      gap: 1.5rem;
    }
    .footer-legal {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
    }
    .footer-legal a {
      color: #bdc3c7;
      text-decoration: none;
      font-size: 0.9rem;
      transition: color 0.3s;
    }
    .footer-legal a:hover {
      color: #f1c40f;
    }
    .footer-contact {
      font-style: normal;
      display: flex;
      flex-direction: column;
      gap: 0.3rem;
      font-size: 0.9rem;
    }
    .footer-contact a {
      color: #ecf0f1;
      text-decoration: none;
    }
    .footer-contact a:hover {
      color: #f1c40f;
    }
    .footer-disclaimer {
      flex-basis: 100%;
      font-size: 0.85rem;
      color: #bdc3c7;
      margin-top: 1rem;
      padding-top: 1rem;
      border-top: 1px solid #34495e;
    }
    .footer-disclaimer p {
      margin: 0;
    }
    .footer-copyright {
      flex-basis: 100%;
      text-align: center;
      font-size: 0.85rem;
      color: #95a5a6;
      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.5rem;
      }
      .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
      }
      .footer-legal {
        flex-direction: column;
        gap: 0.5rem;
      }
    }

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

    .nfcookie-v7__wrap {
        max-width: 920px;
        margin: 0 auto;
        padding: calc(var(--space-y) * .9) var(--space-x);
        border-radius: var(--radius-xl);
        background: linear-gradient(135deg, var(--accent), var(--bg-primary));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .nfcookie-v7__text strong {display: block; margin-bottom: 4px;}
    .nfcookie-v7__text p {margin: 0; opacity: .95;}

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

    .nfcookie-v7__actions button {
        border: 1px solid rgba(255,255,255,.35);
        background: rgba(255,255,255,.18);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

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

    @media (max-width: 760px) {
        .nfcookie-v7__wrap {grid-template-columns: 1fr;}
        .nfcookie-v7__actions {justify-content: flex-start;}
    }

.thank-u9{padding:calc(var(--space-y)*2.9) var(--space-x);background:var(--bg-primary);color:var(--fg-on-primary)} .thank-u9 .shell{max-width:var(--max-w);margin:0 auto;display:grid;gap:var(--gap)} .thank-u9 h2{margin:0;font-size:clamp(1.85rem,3.6vw,2.8rem);line-height:1.1} .thank-u9 .sub{margin:.35rem 0 0;opacity:.9;} .thank-u9 article,.thank-u9 li{padding:.85rem;border-radius:var(--radius-sm);background:var(--chip-bg);border:1px solid var(--btn-ghost-bg-hover);list-style:none} .thank-u9 p{margin:0} .thank-u9 a{text-decoration:none;color:inherit;font-weight:700} .thank-u9 .bento{display:grid;grid-template-columns:repeat(12,minmax(0,1fr));gap:.55rem} .thank-u9 .bento article:nth-child(1){grid-column:span 6} .thank-u9 .bento article:nth-child(2){grid-column:span 3} .thank-u9 .bento article:nth-child(3){grid-column:span 3} .thank-u9 .bento article:nth-child(4){grid-column:span 4} .thank-u9 .bento article:nth-child(5){grid-column:span 4} .thank-u9 .bento article:nth-child(6){grid-column:span 4} .thank-u9 article{transition:transform var(--anim-duration) var(--anim-ease),box-shadow var(--anim-duration) var(--anim-ease)} .thank-u9 article:hover{transform:translateY(-4px);box-shadow:var(--shadow-md)} @media (max-width:860px){.thank-u9 .split,.thank-u9 .media,.thank-u9 .grid,.thank-u9 .cards,.thank-u9 .bento,.thank-u9 .foot{grid-template-columns:1fr}}

header {
  background: var(--surface-1);
  border-bottom: 1px solid var(--border-on-surface);
  padding: var(--space-y) var(--space-x);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}

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

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

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

.nav-menu a {
  text-decoration: none;
  color: var(--neutral-800);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  padding: 0.25rem 0;
  transition: color var(--anim-duration) var(--anim-ease);
  position: relative;
}

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

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

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

.cta-button {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1.25rem;
  background: var(--bg-accent);
  color: var(--fg-on-accent);
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 600;
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  transition: background var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
  white-space: nowrap;
}

.cta-button:hover {
  background: var(--bg-accent-hover);
  box-shadow: var(--shadow-md);
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 2.5rem;
  height: 2.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  gap: 4px;
  border-radius: var(--radius-sm);
  transition: background var(--anim-duration) var(--anim-ease);
}

.burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--neutral-900);
  border-radius: 2px;
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

.burger:hover {
  background: var(--btn-ghost-bg-hover);
}

.burger.active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

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

.burger.active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

@media (max-width: 767px) {
  .header-inner {
    flex-wrap: wrap;
  }

  .nav-menu {
    display: none;
    width: 100%;
    order: 3;
    padding-top: var(--space-y);
  }

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

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

  .nav-menu a {
    font-size: 1.125rem;
    padding: 0.5rem 0;
  }

  .cta-button {
    display: none;
  }

  .burger {
    display: flex;
  }
}

@media (min-width: 768px) {
  .burger {
    display: none;
  }
}

footer {
      background-color: #2c3e50;
      color: #ecf0f1;
      padding: 2rem 1rem;
      font-family: Arial, 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 #34495e;
      padding-bottom: 1.5rem;
    }
    .footer-logo a {
      font-size: 1.8rem;
      font-weight: bold;
      color: #f1c40f;
      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: #ecf0f1;
      text-decoration: none;
      font-size: 1rem;
      transition: color 0.3s;
    }
    .footer-nav a:hover {
      color: #f1c40f;
    }
    .footer-bottom {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: flex-start;
      gap: 1.5rem;
    }
    .footer-legal {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
    }
    .footer-legal a {
      color: #bdc3c7;
      text-decoration: none;
      font-size: 0.9rem;
      transition: color 0.3s;
    }
    .footer-legal a:hover {
      color: #f1c40f;
    }
    .footer-contact {
      font-style: normal;
      display: flex;
      flex-direction: column;
      gap: 0.3rem;
      font-size: 0.9rem;
    }
    .footer-contact a {
      color: #ecf0f1;
      text-decoration: none;
    }
    .footer-contact a:hover {
      color: #f1c40f;
    }
    .footer-disclaimer {
      flex-basis: 100%;
      font-size: 0.85rem;
      color: #bdc3c7;
      margin-top: 1rem;
      padding-top: 1rem;
      border-top: 1px solid #34495e;
    }
    .footer-disclaimer p {
      margin: 0;
    }
    .footer-copyright {
      flex-basis: 100%;
      text-align: center;
      font-size: 0.85rem;
      color: #95a5a6;
      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.5rem;
      }
      .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
      }
      .footer-legal {
        flex-direction: column;
        gap: 0.5rem;
      }
    }

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

    .nfcookie-v7__wrap {
        max-width: 920px;
        margin: 0 auto;
        padding: calc(var(--space-y) * .9) var(--space-x);
        border-radius: var(--radius-xl);
        background: linear-gradient(135deg, var(--accent), var(--bg-primary));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .nfcookie-v7__text strong {display: block; margin-bottom: 4px;}
    .nfcookie-v7__text p {margin: 0; opacity: .95;}

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

    .nfcookie-v7__actions button {
        border: 1px solid rgba(255,255,255,.35);
        background: rgba(255,255,255,.18);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

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

    @media (max-width: 760px) {
        .nfcookie-v7__wrap {grid-template-columns: 1fr;}
        .nfcookie-v7__actions {justify-content: flex-start;}
    }

.nf404-v7 {
        padding: clamp(56px, 10vw, 112px) 20px;
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
    }

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

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

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

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