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

  --max-w: 1160px;
  --space-x: 1.2rem;
  --space-y: 1.31rem;
  --gap: 1.19rem;

  --radius-xl: 1.13rem;
  --radius-lg: 0.71rem;
  --radius-md: 0.46rem;
  --radius-sm: 0.2rem;

  --shadow-sm: 0 1px 5px rgba(0,0,0,0.07);
  --shadow-md: 0 5px 10px rgba(0,0,0,0.09);
  --shadow-lg: 0 10px 32px rgba(0,0,0,0.11);

  --overlay: rgba(0,0,0,0.5);
  --anim-duration: 200ms;
  --anim-ease: cubic-bezier(0.16,1,0.3,1);
  --random-number: 1;

  --brand: #00A3E0;
  --brand-contrast: #FFFFFF;
  --accent: #0088CC;
  --accent-contrast: #FFFFFF;

  --neutral-0: #FFFFFF;
  --neutral-100: #F2F6FA;
  --neutral-300: #C8D6E5;
  --neutral-600: #5A6B7D;
  --neutral-800: #2C3A4A;
  --neutral-900: #1A232E;

  --bg-page: #FFFFFF;
  --fg-on-page: #1A232E;

  --bg-alt: #F2F6FA;
  --fg-on-alt: #2C3A4A;

  --surface-1: #FFFFFF;
  --surface-2: #F8FAFC;
  --fg-on-surface: #1A232E;
  --border-on-surface: #D0D9E3;

  --surface-light: #F2F6FA;
  --fg-on-surface-light: #2C3A4A;
  --border-on-surface-light: #C8D6E5;

  --bg-primary: #00A3E0;
  --fg-on-primary: #FFFFFF;
  --bg-primary-hover: #0091C7;
  --ring: #00A3E0;

  --bg-accent: #E0F4FF;
  --fg-on-accent: #003355;
  --bg-accent-hover: #0077B3;

  --link: #0088CC;
  --link-hover: #006699;

  --gradient-hero: linear-gradient(135deg, #00A3E0 0%, #005F8A 100%);
  --gradient-accent: linear-gradient(135deg, #0088CC 0%, #005F8A 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 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: background var(--anim-duration, 0.3s) var(--anim-ease, ease), box-shadow var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .header.scrolled {
    background: var(--surface-1, #ffffff);
    box-shadow: var(--shadow-md, 0 4px 12px rgba(0,0,0,0.1));
    border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
  }

  .header__container {
    max-width: var(--max-w, 1200px);
    margin: 0 auto;
    padding: 0 var(--space-x, 20px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
  }

  .header__logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand, #0056b3);
    text-decoration: none;
    letter-spacing: -0.02em;
    transition: color var(--anim-duration, 0.3s) var(--anim-ease, ease);
    flex-shrink: 0;
  }

  .header.scrolled .header__logo {
    color: var(--brand, #0056b3);
  }

  .header__burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-sm, 4px);
    transition: background var(--anim-duration, 0.3s) var(--anim-ease, ease);
    z-index: 1001;
  }

  .header__burger:hover {
    background: var(--btn-ghost-bg-hover, rgba(0,0,0,0.05));
  }

  .header__burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--fg-on-page, #333);
    border-radius: 2px;
    transition: transform var(--anim-duration, 0.3s) var(--anim-ease, ease), opacity var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .header__burger-line:nth-child(2) {
    margin: 5px 0;
  }

  .header__burger.active .header__burger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .header__burger.active .header__burger-line:nth-child(2) {
    opacity: 0;
  }

  .header__burger.active .header__burger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .header__nav {
    display: flex;
    align-items: center;
  }

  .header__menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap, 24px);
    align-items: center;
  }

  .header__menu-item {
    margin: 0;
    padding: 0;
  }

  .header__menu-link {
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    color: var(--fg-on-page, #333);
    padding: 8px 0;
    position: relative;
    transition: color var(--anim-duration, 0.3s) var(--anim-ease, ease);
    white-space: nowrap;
  }

  .header__menu-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--brand, #0056b3);
    transition: width var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .header__menu-link:hover {
    color: var(--brand, #0056b3);
  }

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

  .header.scrolled .header__menu-link {
    color: var(--fg-on-surface, #333);
  }

  .header.scrolled .header__menu-link:hover {
    color: var(--brand, #0056b3);
  }

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

    .header__nav {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100vh;
      background: var(--surface-1, #ffffff);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      visibility: hidden;
      transition: opacity var(--anim-duration, 0.3s) var(--anim-ease, ease), visibility var(--anim-duration, 0.3s) var(--anim-ease, ease);
      z-index: 1000;
    }

    .header__nav.open {
      opacity: 1;
      visibility: visible;
    }

    .header__menu {
      flex-direction: column;
      gap: 32px;
      text-align: center;
    }

    .header__menu-link {
      font-size: 1.25rem;
      padding: 12px 0;
    }

    .header.scrolled .header__nav {
      background: var(--surface-1, #ffffff);
    }
  }

footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  padding: 2rem 1rem;
  line-height: 1.6;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}
.footer-row:last-child {
  margin-bottom: 0;
}
.footer-brand {
  flex: 1 1 200px;
  margin-bottom: 1rem;
}
.footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #f0c040;
  letter-spacing: 1px;
}
.footer-nav {
  flex: 2 1 300px;
}
.nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.nav-list li a {
  color: #e0e0e0;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s;
}
.nav-list li a:hover {
  color: #f0c040;
}
.footer-contact {
  width: 100%;
}
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}
.contact-list li {
  font-size: 0.95rem;
}
.contact-label {
  font-weight: 600;
  color: #f0c040;
  margin-right: 0.3rem;
}
.contact-list a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.3s;
}
.contact-list a:hover {
  color: #f0c040;
}
.footer-legal {
  width: 100%;
  text-align: center;
  border-top: 1px solid #333;
  padding-top: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.copyright {
  font-size: 0.9rem;
}
.disclaimer {
  font-size: 0.85rem;
  color: #aaa;
  max-width: 700px;
  margin: 0 auto;
}
.legal-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
.legal-links a {
  color: #f0c040;
  text-decoration: none;
  font-size: 0.9rem;
  transition: opacity 0.3s;
}
.legal-links a:hover {
  opacity: 0.8;
}
@media (max-width: 768px) {
  .footer-row.top-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .nav-list {
    justify-content: center;
  }
  .contact-list {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

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

    .nfcookie-v12__shell {
        max-width: 720px;
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-lg);
        padding: var(--space-y) var(--space-x);
    }

    .nfcookie-v12__meta {display: flex; align-items: center; gap: 8px;}

    .nfcookie-v12__shell p {margin: 8px 0 0; color: var(--fg-on-surface-light);}

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

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

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

.intro-band {
        padding: clamp(60px, 9vw, 120px) clamp(16px, 3vw, 40px);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
    }

    .intro-band .wrap {
        max-width: 980px;
        margin: 0 auto;
    }

    .intro-band .eyebrow {
        margin: 0 0 8px;
        opacity: 0.9;
    }

    .intro-band h1 {
        margin: 0 0 10px;
        font-size: clamp(34px, 5.6vw, 60px);
    }

    .intro-band .lead {
        margin: 0 0 16px;
        max-width: 70ch;
        opacity: 0.9;
    }

    .intro-band .row {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 10px;
    }

    .intro-band .fact {
        border: 1px solid var(--chip-bg);
        border-radius: var(--radius-md);
        background: var(--chip-bg);
        padding: 12px;
    }

    .intro-band .label {
        margin: 0;
        opacity: 0.85;
    }

    .intro-band .number {
        margin: 6px 0 0;
        font-size: clamp(24px, 4vw, 36px);
        font-weight: 600;
    }

    .intro-band .actions {
        margin-top: 16px;
    }

    .intro-band .actions a {
        text-decoration: none;
        padding: 10px 16px;
        border-radius: var(--radius-md);
        background: var(--accent);
        color: var(--accent-contrast);
    }

.values-board-l8 {
        padding: clamp(3.1rem, 7vw, 5.7rem) var(--space-x);
        background: var(--bg-alt);
        color: var(--fg-on-page);
    }

    .values-board-l8__wrap {
        max-width: 62rem;
        margin: 0 auto;
    }

    .values-board-l8__head {
        text-align: center;
        margin-bottom: 1.1rem;
    }

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

    .values-board-l8__head p {
        margin: .65rem auto 0;
        max-width: 40rem;
        color: var(--neutral-600);
    }

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

    .values-board-l8__board article {
        padding: 1rem;
        border-radius: var(--radius-xl);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface-light);
    }

    .values-board-l8__board strong {
        color: var(--brand);
    }

    .values-board-l8__board h3 {
        margin: .7rem 0 .35rem;
    }

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

body{margin:0;padding:0;font-family:var(--font-family);box-sizing: border-box;}
    *{box-sizing:border-box;}.plans-ux6{padding:clamp(50px,7vw,92px) clamp(16px,4vw,36px);background:var(--gradient-hero);color:var(--fg-on-primary)}.plans-ux6__wrap{max-width:var(--max-w);margin:0 auto}.plans-ux6__top p{margin:8px 0 12px;color:rgba(255,255,255,.88)}.plans-ux6__matrix{display:grid;grid-template-columns:repeat(12,1fr);gap:10px}.plans-ux6__matrix article{grid-column:span 4;border:1px solid rgba(255,255,255,.28);border-radius:var(--radius-md);background:rgba(255,255,255,.1);padding:12px}.plans-ux6__matrix article:nth-child(1){grid-column:span 6}.plans-ux6__matrix article:nth-child(2){grid-column:span 6}.plans-ux6 h3{margin:0}.plans-ux6 p{margin:7px 0}.plans-ux6 span{display:inline-flex;margin:0 6px 6px 0;padding:4px 8px;border-radius:999px;border:1px solid rgba(255,255,255,.3)}.plans-ux6 button{width:100%;margin-top:8px;border:0;border-radius:var(--radius-sm);padding:8px 10px;background:var(--bg-accent);color:var(--fg-on-accent)}@media(max-width:900px){.plans-ux6__matrix article{grid-column:span 6}}@media(max-width:640px){.plans-ux6__matrix article{grid-column:span 12}}

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

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

.two-column-section__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: calc(var(--gap) * 2);
    align-items: center;
}

.two-column-section__media img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    width: 100%;
    display: block;
}

.two-column-section__text h2 {
    margin-bottom: var(--space-y);
    color: var(--fg-on-page);
}

.two-column-section__text p {
    margin-bottom: var(--space-y);
    color: var(--neutral-600);
}

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

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

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: background var(--anim-duration, 0.3s) var(--anim-ease, ease), box-shadow var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .header.scrolled {
    background: var(--surface-1, #ffffff);
    box-shadow: var(--shadow-md, 0 4px 12px rgba(0,0,0,0.1));
    border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
  }

  .header__container {
    max-width: var(--max-w, 1200px);
    margin: 0 auto;
    padding: 0 var(--space-x, 20px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
  }

  .header__logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand, #0056b3);
    text-decoration: none;
    letter-spacing: -0.02em;
    transition: color var(--anim-duration, 0.3s) var(--anim-ease, ease);
    flex-shrink: 0;
  }

  .header.scrolled .header__logo {
    color: var(--brand, #0056b3);
  }

  .header__burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-sm, 4px);
    transition: background var(--anim-duration, 0.3s) var(--anim-ease, ease);
    z-index: 1001;
  }

  .header__burger:hover {
    background: var(--btn-ghost-bg-hover, rgba(0,0,0,0.05));
  }

  .header__burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--fg-on-page, #333);
    border-radius: 2px;
    transition: transform var(--anim-duration, 0.3s) var(--anim-ease, ease), opacity var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .header__burger-line:nth-child(2) {
    margin: 5px 0;
  }

  .header__burger.active .header__burger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .header__burger.active .header__burger-line:nth-child(2) {
    opacity: 0;
  }

  .header__burger.active .header__burger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .header__nav {
    display: flex;
    align-items: center;
  }

  .header__menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap, 24px);
    align-items: center;
  }

  .header__menu-item {
    margin: 0;
    padding: 0;
  }

  .header__menu-link {
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    color: var(--fg-on-page, #333);
    padding: 8px 0;
    position: relative;
    transition: color var(--anim-duration, 0.3s) var(--anim-ease, ease);
    white-space: nowrap;
  }

  .header__menu-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--brand, #0056b3);
    transition: width var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .header__menu-link:hover {
    color: var(--brand, #0056b3);
  }

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

  .header.scrolled .header__menu-link {
    color: var(--fg-on-surface, #333);
  }

  .header.scrolled .header__menu-link:hover {
    color: var(--brand, #0056b3);
  }

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

    .header__nav {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100vh;
      background: var(--surface-1, #ffffff);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      visibility: hidden;
      transition: opacity var(--anim-duration, 0.3s) var(--anim-ease, ease), visibility var(--anim-duration, 0.3s) var(--anim-ease, ease);
      z-index: 1000;
    }

    .header__nav.open {
      opacity: 1;
      visibility: visible;
    }

    .header__menu {
      flex-direction: column;
      gap: 32px;
      text-align: center;
    }

    .header__menu-link {
      font-size: 1.25rem;
      padding: 12px 0;
    }

    .header.scrolled .header__nav {
      background: var(--surface-1, #ffffff);
    }
  }

footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  padding: 2rem 1rem;
  line-height: 1.6;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}
.footer-row:last-child {
  margin-bottom: 0;
}
.footer-brand {
  flex: 1 1 200px;
  margin-bottom: 1rem;
}
.footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #f0c040;
  letter-spacing: 1px;
}
.footer-nav {
  flex: 2 1 300px;
}
.nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.nav-list li a {
  color: #e0e0e0;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s;
}
.nav-list li a:hover {
  color: #f0c040;
}
.footer-contact {
  width: 100%;
}
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}
.contact-list li {
  font-size: 0.95rem;
}
.contact-label {
  font-weight: 600;
  color: #f0c040;
  margin-right: 0.3rem;
}
.contact-list a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.3s;
}
.contact-list a:hover {
  color: #f0c040;
}
.footer-legal {
  width: 100%;
  text-align: center;
  border-top: 1px solid #333;
  padding-top: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.copyright {
  font-size: 0.9rem;
}
.disclaimer {
  font-size: 0.85rem;
  color: #aaa;
  max-width: 700px;
  margin: 0 auto;
}
.legal-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
.legal-links a {
  color: #f0c040;
  text-decoration: none;
  font-size: 0.9rem;
  transition: opacity 0.3s;
}
.legal-links a:hover {
  opacity: 0.8;
}
@media (max-width: 768px) {
  .footer-row.top-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .nav-list {
    justify-content: center;
  }
  .contact-list {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

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

    .nfcookie-v12__shell {
        max-width: 720px;
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-lg);
        padding: var(--space-y) var(--space-x);
    }

    .nfcookie-v12__meta {display: flex; align-items: center; gap: 8px;}

    .nfcookie-v12__shell p {margin: 8px 0 0; color: var(--fg-on-surface-light);}

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

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

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

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

    /* Si randomNumber es 1 (impar) - primer hijo mantiene order: 0 */
    .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;
    }

    /* Si randomNumber es 1 (impar) - primer hijo mantiene order: 0 */
    .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;
        }
    }

.education-struct-light-v16 {
    padding: calc(var(--space-y) * 2) var(--space-x);
    background: var(--neutral-0);
    color: var(--neutral-900);
}

.education-struct-light-v16__shell {
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    gap: var(--gap);
}

.education-struct-light-v16__modules {
    display: grid;
    gap: .6rem;
}

.education-struct-light-v16 details {
    background: var(--neutral-100);
    border: 1px solid var(--neutral-300);
    border-radius: var(--radius-lg);
    padding: .85rem;
}

.education-struct-light-v16 summary {
    cursor: pointer;
    font-weight: 700;
    color: var(--neutral-900);
}

.education-struct-light-v16 p {
    margin: .55rem 0 0;
    color: var(--neutral-800);
}

.education-struct-light-v16__cta {
    display: flex;
}

.education-struct-light-v16__cta a {
    display: inline-flex;
    min-height: 2.3rem;
    padding: 0 .8rem;
    align-items: center;
    border-radius: var(--radius-sm);
    background: var(--bg-primary);
    color: var(--fg-on-primary);
    border: 1px solid var(--ring);
    text-decoration: none;
}

.nftouch-v9 {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 3vw, 36px);
        background: linear-gradient(160deg, var(--bg-primary), var(--bg-primary-hover));
        color: var(--fg-on-primary);
    }

    .nftouch-v9__wrap {
        max-width: 980px;
        margin: 0 auto;
    }

    .nftouch-v9__head {
        margin-bottom: 12px;
    }

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

    .nftouch-v9__head p {
        margin: 10px 0 0;
        opacity: .9;
    }

    .nftouch-v9__stream {
        display: grid;
        gap: 8px;
    }

    .nftouch-v9__stream a {
        text-decoration: none;
        color: var(--fg-on-primary);
        border: 1px solid rgba(255, 255, 255, .3);
        border-radius: 999px;
        background: rgba(255, 255, 255, .1);
        padding: 10px 12px;
        display: flex;
        justify-content: space-between;
        gap: 10px;
        align-items: center;
    }

    .nftouch-v9__stream span {
        opacity: .86;
        white-space: nowrap;
    }

    .nftouch-v9__foot {
        margin-top: 12px;
    }

    .nftouch-v9__foot a {
        text-decoration: none;
        color: var(--fg-on-primary);
        border: 1px solid rgba(255, 255, 255, .45);
        border-radius: var(--radius-md);
        padding: 10px 14px;
        display: inline-block;
    }

    @media (max-width: 700px) {
        .nftouch-v9__stream a {
            flex-direction: column;
            align-items: flex-start;
            border-radius: var(--radius-md);
        }

        .nftouch-v9__stream span {
            white-space: normal;
        }
    }

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: background var(--anim-duration, 0.3s) var(--anim-ease, ease), box-shadow var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .header.scrolled {
    background: var(--surface-1, #ffffff);
    box-shadow: var(--shadow-md, 0 4px 12px rgba(0,0,0,0.1));
    border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
  }

  .header__container {
    max-width: var(--max-w, 1200px);
    margin: 0 auto;
    padding: 0 var(--space-x, 20px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
  }

  .header__logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand, #0056b3);
    text-decoration: none;
    letter-spacing: -0.02em;
    transition: color var(--anim-duration, 0.3s) var(--anim-ease, ease);
    flex-shrink: 0;
  }

  .header.scrolled .header__logo {
    color: var(--brand, #0056b3);
  }

  .header__burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-sm, 4px);
    transition: background var(--anim-duration, 0.3s) var(--anim-ease, ease);
    z-index: 1001;
  }

  .header__burger:hover {
    background: var(--btn-ghost-bg-hover, rgba(0,0,0,0.05));
  }

  .header__burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--fg-on-page, #333);
    border-radius: 2px;
    transition: transform var(--anim-duration, 0.3s) var(--anim-ease, ease), opacity var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .header__burger-line:nth-child(2) {
    margin: 5px 0;
  }

  .header__burger.active .header__burger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .header__burger.active .header__burger-line:nth-child(2) {
    opacity: 0;
  }

  .header__burger.active .header__burger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .header__nav {
    display: flex;
    align-items: center;
  }

  .header__menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap, 24px);
    align-items: center;
  }

  .header__menu-item {
    margin: 0;
    padding: 0;
  }

  .header__menu-link {
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    color: var(--fg-on-page, #333);
    padding: 8px 0;
    position: relative;
    transition: color var(--anim-duration, 0.3s) var(--anim-ease, ease);
    white-space: nowrap;
  }

  .header__menu-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--brand, #0056b3);
    transition: width var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .header__menu-link:hover {
    color: var(--brand, #0056b3);
  }

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

  .header.scrolled .header__menu-link {
    color: var(--fg-on-surface, #333);
  }

  .header.scrolled .header__menu-link:hover {
    color: var(--brand, #0056b3);
  }

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

    .header__nav {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100vh;
      background: var(--surface-1, #ffffff);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      visibility: hidden;
      transition: opacity var(--anim-duration, 0.3s) var(--anim-ease, ease), visibility var(--anim-duration, 0.3s) var(--anim-ease, ease);
      z-index: 1000;
    }

    .header__nav.open {
      opacity: 1;
      visibility: visible;
    }

    .header__menu {
      flex-direction: column;
      gap: 32px;
      text-align: center;
    }

    .header__menu-link {
      font-size: 1.25rem;
      padding: 12px 0;
    }

    .header.scrolled .header__nav {
      background: var(--surface-1, #ffffff);
    }
  }

footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  padding: 2rem 1rem;
  line-height: 1.6;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}
.footer-row:last-child {
  margin-bottom: 0;
}
.footer-brand {
  flex: 1 1 200px;
  margin-bottom: 1rem;
}
.footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #f0c040;
  letter-spacing: 1px;
}
.footer-nav {
  flex: 2 1 300px;
}
.nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.nav-list li a {
  color: #e0e0e0;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s;
}
.nav-list li a:hover {
  color: #f0c040;
}
.footer-contact {
  width: 100%;
}
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}
.contact-list li {
  font-size: 0.95rem;
}
.contact-label {
  font-weight: 600;
  color: #f0c040;
  margin-right: 0.3rem;
}
.contact-list a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.3s;
}
.contact-list a:hover {
  color: #f0c040;
}
.footer-legal {
  width: 100%;
  text-align: center;
  border-top: 1px solid #333;
  padding-top: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.copyright {
  font-size: 0.9rem;
}
.disclaimer {
  font-size: 0.85rem;
  color: #aaa;
  max-width: 700px;
  margin: 0 auto;
}
.legal-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
.legal-links a {
  color: #f0c040;
  text-decoration: none;
  font-size: 0.9rem;
  transition: opacity 0.3s;
}
.legal-links a:hover {
  opacity: 0.8;
}
@media (max-width: 768px) {
  .footer-row.top-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .nav-list {
    justify-content: center;
  }
  .contact-list {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

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

    .nfcookie-v12__shell {
        max-width: 720px;
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-lg);
        padding: var(--space-y) var(--space-x);
    }

    .nfcookie-v12__meta {display: flex; align-items: center; gap: 8px;}

    .nfcookie-v12__shell p {margin: 8px 0 0; color: var(--fg-on-surface-light);}

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

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

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

.product-item {

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

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

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

        /* Si randomNumber es 1 (impar) - primer hijo mantiene order: 0 */
        .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-primary);
    }

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

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

    /* Si randomNumber es 1 (impar) - primer hijo mantiene order: 0 */
    .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(--gradient-hero);
        color: var(--fg-on-primary);
        border: 1px solid var(--ring);
    }

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

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

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

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

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

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

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

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: background var(--anim-duration, 0.3s) var(--anim-ease, ease), box-shadow var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .header.scrolled {
    background: var(--surface-1, #ffffff);
    box-shadow: var(--shadow-md, 0 4px 12px rgba(0,0,0,0.1));
    border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
  }

  .header__container {
    max-width: var(--max-w, 1200px);
    margin: 0 auto;
    padding: 0 var(--space-x, 20px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
  }

  .header__logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand, #0056b3);
    text-decoration: none;
    letter-spacing: -0.02em;
    transition: color var(--anim-duration, 0.3s) var(--anim-ease, ease);
    flex-shrink: 0;
  }

  .header.scrolled .header__logo {
    color: var(--brand, #0056b3);
  }

  .header__burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-sm, 4px);
    transition: background var(--anim-duration, 0.3s) var(--anim-ease, ease);
    z-index: 1001;
  }

  .header__burger:hover {
    background: var(--btn-ghost-bg-hover, rgba(0,0,0,0.05));
  }

  .header__burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--fg-on-page, #333);
    border-radius: 2px;
    transition: transform var(--anim-duration, 0.3s) var(--anim-ease, ease), opacity var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .header__burger-line:nth-child(2) {
    margin: 5px 0;
  }

  .header__burger.active .header__burger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .header__burger.active .header__burger-line:nth-child(2) {
    opacity: 0;
  }

  .header__burger.active .header__burger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .header__nav {
    display: flex;
    align-items: center;
  }

  .header__menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap, 24px);
    align-items: center;
  }

  .header__menu-item {
    margin: 0;
    padding: 0;
  }

  .header__menu-link {
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    color: var(--fg-on-page, #333);
    padding: 8px 0;
    position: relative;
    transition: color var(--anim-duration, 0.3s) var(--anim-ease, ease);
    white-space: nowrap;
  }

  .header__menu-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--brand, #0056b3);
    transition: width var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .header__menu-link:hover {
    color: var(--brand, #0056b3);
  }

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

  .header.scrolled .header__menu-link {
    color: var(--fg-on-surface, #333);
  }

  .header.scrolled .header__menu-link:hover {
    color: var(--brand, #0056b3);
  }

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

    .header__nav {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100vh;
      background: var(--surface-1, #ffffff);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      visibility: hidden;
      transition: opacity var(--anim-duration, 0.3s) var(--anim-ease, ease), visibility var(--anim-duration, 0.3s) var(--anim-ease, ease);
      z-index: 1000;
    }

    .header__nav.open {
      opacity: 1;
      visibility: visible;
    }

    .header__menu {
      flex-direction: column;
      gap: 32px;
      text-align: center;
    }

    .header__menu-link {
      font-size: 1.25rem;
      padding: 12px 0;
    }

    .header.scrolled .header__nav {
      background: var(--surface-1, #ffffff);
    }
  }

footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  padding: 2rem 1rem;
  line-height: 1.6;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}
.footer-row:last-child {
  margin-bottom: 0;
}
.footer-brand {
  flex: 1 1 200px;
  margin-bottom: 1rem;
}
.footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #f0c040;
  letter-spacing: 1px;
}
.footer-nav {
  flex: 2 1 300px;
}
.nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.nav-list li a {
  color: #e0e0e0;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s;
}
.nav-list li a:hover {
  color: #f0c040;
}
.footer-contact {
  width: 100%;
}
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}
.contact-list li {
  font-size: 0.95rem;
}
.contact-label {
  font-weight: 600;
  color: #f0c040;
  margin-right: 0.3rem;
}
.contact-list a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.3s;
}
.contact-list a:hover {
  color: #f0c040;
}
.footer-legal {
  width: 100%;
  text-align: center;
  border-top: 1px solid #333;
  padding-top: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.copyright {
  font-size: 0.9rem;
}
.disclaimer {
  font-size: 0.85rem;
  color: #aaa;
  max-width: 700px;
  margin: 0 auto;
}
.legal-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
.legal-links a {
  color: #f0c040;
  text-decoration: none;
  font-size: 0.9rem;
  transition: opacity 0.3s;
}
.legal-links a:hover {
  opacity: 0.8;
}
@media (max-width: 768px) {
  .footer-row.top-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .nav-list {
    justify-content: center;
  }
  .contact-list {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

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

    .nfcookie-v12__shell {
        max-width: 720px;
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-lg);
        padding: var(--space-y) var(--space-x);
    }

    .nfcookie-v12__meta {display: flex; align-items: center; gap: 8px;}

    .nfcookie-v12__shell p {margin: 8px 0 0; color: var(--fg-on-surface-light);}

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

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

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

.product-item {

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

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

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

        /* Si randomNumber (1) es impar, el primer hijo mantiene order: 0 */
        .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-600);
        line-height: 1.8;
        margin-bottom: var(--space-y);
    }

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

    /* Si randomNumber (1) es impar, el primer hijo mantiene order: 0 */
    .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);
        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);
    }

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

    .faq-layout-e .wrap {
        max-width: 860px;
        margin: 0 auto;
    }

    .faq-layout-e .section-head {
        margin-bottom: 16px;
    }

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

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

    .faq-layout-e .accordion {
        border-top: 1px solid var(--border-on-surface-light);
    }

    .faq-layout-e .entry {
        border-bottom: 1px solid var(--border-on-surface-light);
    }

    .faq-layout-e .question {
        width: 100%;
        text-align: left;
        border: 0;
        background: transparent;
        padding: 12px 0;
        font: inherit;
        font-weight: 600;
        color: var(--brand);
        cursor: pointer;
    }

    .faq-layout-e .answer {
        margin: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--anim-duration) var(--anim-ease), padding var(--anim-duration) var(--anim-ease);
        color: var(--neutral-600);
        padding: 0;
    }

    .faq-layout-e .entry.open .answer {
        max-height: 220px;
        padding-bottom: 12px;
    }

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: background var(--anim-duration, 0.3s) var(--anim-ease, ease), box-shadow var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .header.scrolled {
    background: var(--surface-1, #ffffff);
    box-shadow: var(--shadow-md, 0 4px 12px rgba(0,0,0,0.1));
    border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
  }

  .header__container {
    max-width: var(--max-w, 1200px);
    margin: 0 auto;
    padding: 0 var(--space-x, 20px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
  }

  .header__logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand, #0056b3);
    text-decoration: none;
    letter-spacing: -0.02em;
    transition: color var(--anim-duration, 0.3s) var(--anim-ease, ease);
    flex-shrink: 0;
  }

  .header.scrolled .header__logo {
    color: var(--brand, #0056b3);
  }

  .header__burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-sm, 4px);
    transition: background var(--anim-duration, 0.3s) var(--anim-ease, ease);
    z-index: 1001;
  }

  .header__burger:hover {
    background: var(--btn-ghost-bg-hover, rgba(0,0,0,0.05));
  }

  .header__burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--fg-on-page, #333);
    border-radius: 2px;
    transition: transform var(--anim-duration, 0.3s) var(--anim-ease, ease), opacity var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .header__burger-line:nth-child(2) {
    margin: 5px 0;
  }

  .header__burger.active .header__burger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .header__burger.active .header__burger-line:nth-child(2) {
    opacity: 0;
  }

  .header__burger.active .header__burger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .header__nav {
    display: flex;
    align-items: center;
  }

  .header__menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap, 24px);
    align-items: center;
  }

  .header__menu-item {
    margin: 0;
    padding: 0;
  }

  .header__menu-link {
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    color: var(--fg-on-page, #333);
    padding: 8px 0;
    position: relative;
    transition: color var(--anim-duration, 0.3s) var(--anim-ease, ease);
    white-space: nowrap;
  }

  .header__menu-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--brand, #0056b3);
    transition: width var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .header__menu-link:hover {
    color: var(--brand, #0056b3);
  }

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

  .header.scrolled .header__menu-link {
    color: var(--fg-on-surface, #333);
  }

  .header.scrolled .header__menu-link:hover {
    color: var(--brand, #0056b3);
  }

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

    .header__nav {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100vh;
      background: var(--surface-1, #ffffff);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      visibility: hidden;
      transition: opacity var(--anim-duration, 0.3s) var(--anim-ease, ease), visibility var(--anim-duration, 0.3s) var(--anim-ease, ease);
      z-index: 1000;
    }

    .header__nav.open {
      opacity: 1;
      visibility: visible;
    }

    .header__menu {
      flex-direction: column;
      gap: 32px;
      text-align: center;
    }

    .header__menu-link {
      font-size: 1.25rem;
      padding: 12px 0;
    }

    .header.scrolled .header__nav {
      background: var(--surface-1, #ffffff);
    }
  }

footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  padding: 2rem 1rem;
  line-height: 1.6;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}
.footer-row:last-child {
  margin-bottom: 0;
}
.footer-brand {
  flex: 1 1 200px;
  margin-bottom: 1rem;
}
.footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #f0c040;
  letter-spacing: 1px;
}
.footer-nav {
  flex: 2 1 300px;
}
.nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.nav-list li a {
  color: #e0e0e0;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s;
}
.nav-list li a:hover {
  color: #f0c040;
}
.footer-contact {
  width: 100%;
}
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}
.contact-list li {
  font-size: 0.95rem;
}
.contact-label {
  font-weight: 600;
  color: #f0c040;
  margin-right: 0.3rem;
}
.contact-list a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.3s;
}
.contact-list a:hover {
  color: #f0c040;
}
.footer-legal {
  width: 100%;
  text-align: center;
  border-top: 1px solid #333;
  padding-top: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.copyright {
  font-size: 0.9rem;
}
.disclaimer {
  font-size: 0.85rem;
  color: #aaa;
  max-width: 700px;
  margin: 0 auto;
}
.legal-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
.legal-links a {
  color: #f0c040;
  text-decoration: none;
  font-size: 0.9rem;
  transition: opacity 0.3s;
}
.legal-links a:hover {
  opacity: 0.8;
}
@media (max-width: 768px) {
  .footer-row.top-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .nav-list {
    justify-content: center;
  }
  .contact-list {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

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

    .nfcookie-v12__shell {
        max-width: 720px;
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-lg);
        padding: var(--space-y) var(--space-x);
    }

    .nfcookie-v12__meta {display: flex; align-items: center; gap: 8px;}

    .nfcookie-v12__shell p {margin: 8px 0 0; color: var(--fg-on-surface-light);}

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

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

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

.product-item--colored-v5 {

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

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

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

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

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

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

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

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

.product-item__sku {
    opacity: 0.9;
}

.story-column-l4 {
        padding: clamp(3.2rem, 7vw, 5.7rem) var(--space-x);
        background: var(--surface-1);
        color: var(--fg-on-page);
    }

    .story-column-l4__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1.2fr .8fr;
        gap: 1rem;
    }

    .story-column-l4__copy p:first-child {
        margin: 0;
        color: var(--brand);
        font-size: .82rem;
        text-transform: uppercase;
        letter-spacing: .1em;
    }

    .story-column-l4__copy h2 {
        margin: .55rem 0 0;
        font-size: clamp(2rem, 4vw, 3rem);
    }

    .story-column-l4__copy strong {
        display: block;
        margin-top: .8rem;
    }

    .story-column-l4__copy p {
        color: var(--neutral-600);
    }

    .story-column-l4__stats {
        display: grid;
        gap: .75rem;
    }

    .story-column-l4__stats div {
        padding: .9rem;
        border-radius: var(--radius-lg);
        background: var(--bg-alt);
        border: 1px solid var(--border-on-surface-light);
    }

    .story-column-l4__stats span {
        display: block;
        margin-top: .25rem;
        color: var(--neutral-600);
    }

    @media (max-width: 820px) {
        .story-column-l4__wrap {
            grid-template-columns: 1fr;
        }
    }

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: background var(--anim-duration, 0.3s) var(--anim-ease, ease), box-shadow var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .header.scrolled {
    background: var(--surface-1, #ffffff);
    box-shadow: var(--shadow-md, 0 4px 12px rgba(0,0,0,0.1));
    border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
  }

  .header__container {
    max-width: var(--max-w, 1200px);
    margin: 0 auto;
    padding: 0 var(--space-x, 20px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
  }

  .header__logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand, #0056b3);
    text-decoration: none;
    letter-spacing: -0.02em;
    transition: color var(--anim-duration, 0.3s) var(--anim-ease, ease);
    flex-shrink: 0;
  }

  .header.scrolled .header__logo {
    color: var(--brand, #0056b3);
  }

  .header__burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-sm, 4px);
    transition: background var(--anim-duration, 0.3s) var(--anim-ease, ease);
    z-index: 1001;
  }

  .header__burger:hover {
    background: var(--btn-ghost-bg-hover, rgba(0,0,0,0.05));
  }

  .header__burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--fg-on-page, #333);
    border-radius: 2px;
    transition: transform var(--anim-duration, 0.3s) var(--anim-ease, ease), opacity var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .header__burger-line:nth-child(2) {
    margin: 5px 0;
  }

  .header__burger.active .header__burger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .header__burger.active .header__burger-line:nth-child(2) {
    opacity: 0;
  }

  .header__burger.active .header__burger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .header__nav {
    display: flex;
    align-items: center;
  }

  .header__menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap, 24px);
    align-items: center;
  }

  .header__menu-item {
    margin: 0;
    padding: 0;
  }

  .header__menu-link {
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    color: var(--fg-on-page, #333);
    padding: 8px 0;
    position: relative;
    transition: color var(--anim-duration, 0.3s) var(--anim-ease, ease);
    white-space: nowrap;
  }

  .header__menu-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--brand, #0056b3);
    transition: width var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .header__menu-link:hover {
    color: var(--brand, #0056b3);
  }

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

  .header.scrolled .header__menu-link {
    color: var(--fg-on-surface, #333);
  }

  .header.scrolled .header__menu-link:hover {
    color: var(--brand, #0056b3);
  }

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

    .header__nav {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100vh;
      background: var(--surface-1, #ffffff);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      visibility: hidden;
      transition: opacity var(--anim-duration, 0.3s) var(--anim-ease, ease), visibility var(--anim-duration, 0.3s) var(--anim-ease, ease);
      z-index: 1000;
    }

    .header__nav.open {
      opacity: 1;
      visibility: visible;
    }

    .header__menu {
      flex-direction: column;
      gap: 32px;
      text-align: center;
    }

    .header__menu-link {
      font-size: 1.25rem;
      padding: 12px 0;
    }

    .header.scrolled .header__nav {
      background: var(--surface-1, #ffffff);
    }
  }

footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  padding: 2rem 1rem;
  line-height: 1.6;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}
.footer-row:last-child {
  margin-bottom: 0;
}
.footer-brand {
  flex: 1 1 200px;
  margin-bottom: 1rem;
}
.footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #f0c040;
  letter-spacing: 1px;
}
.footer-nav {
  flex: 2 1 300px;
}
.nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.nav-list li a {
  color: #e0e0e0;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s;
}
.nav-list li a:hover {
  color: #f0c040;
}
.footer-contact {
  width: 100%;
}
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}
.contact-list li {
  font-size: 0.95rem;
}
.contact-label {
  font-weight: 600;
  color: #f0c040;
  margin-right: 0.3rem;
}
.contact-list a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.3s;
}
.contact-list a:hover {
  color: #f0c040;
}
.footer-legal {
  width: 100%;
  text-align: center;
  border-top: 1px solid #333;
  padding-top: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.copyright {
  font-size: 0.9rem;
}
.disclaimer {
  font-size: 0.85rem;
  color: #aaa;
  max-width: 700px;
  margin: 0 auto;
}
.legal-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
.legal-links a {
  color: #f0c040;
  text-decoration: none;
  font-size: 0.9rem;
  transition: opacity 0.3s;
}
.legal-links a:hover {
  opacity: 0.8;
}
@media (max-width: 768px) {
  .footer-row.top-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .nav-list {
    justify-content: center;
  }
  .contact-list {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

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

    .nfcookie-v12__shell {
        max-width: 720px;
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-lg);
        padding: var(--space-y) var(--space-x);
    }

    .nfcookie-v12__meta {display: flex; align-items: center; gap: 8px;}

    .nfcookie-v12__shell p {margin: 8px 0 0; color: var(--fg-on-surface-light);}

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

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

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

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

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

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

    .contacts-fresh-v5 .head p {
        margin: .35rem 0 0;
        opacity: .85;
    }

    .contacts-fresh-v5 .stack {
        display: grid;
        gap: .7rem;
    }

    .contacts-fresh-v5 details {
        background: var(--chip-bg);
        border-radius: var(--radius-md);
        padding: .8rem 1rem;
    }

    .contacts-fresh-v5 summary {
        cursor: pointer;
        font-weight: 700;
    }

    .contacts-fresh-v5 .inside {
        display: grid;
        gap: .4rem;
        padding-top: .6rem;
    }

    .contacts-fresh-v5 .inside p {
        margin: 0;
    }

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

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

    .support-ux10 {
        padding: clamp(48px, 6vw, 80px) clamp(16px, 4vw, 36px);
        background: var(--neutral-100);
        color: var(--neutral-900);
    }

    .support-ux10__wrap {
        max-width: 900px;
        margin: 0 auto;
        display: grid;
        gap: 12px;
        grid-template-columns: 1fr 1fr;
    }

    .support-ux10__wrap article {
        border: 1px solid var(--neutral-300);
        border-radius: var(--radius-lg);
        background: var(--neutral-100);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-sm);
    }

    .support-ux10__wrap h3 {
        margin: 0 0 7px;
        color: var(--brand);
    }

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

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

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

    .faq-layout-e .wrap {
        max-width: 860px;
        margin: 0 auto;
    }

    .faq-layout-e .section-head {
        margin-bottom: 16px;
    }

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

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

    .faq-layout-e .accordion {
        border-top: 1px solid var(--border-on-surface-light);
    }

    .faq-layout-e .entry {
        border-bottom: 1px solid var(--border-on-surface-light);
    }

    .faq-layout-e .question {
        width: 100%;
        text-align: left;
        border: 0;
        background: transparent;
        padding: 12px 0;
        font: inherit;
        font-weight: 600;
        color: var(--brand);
        cursor: pointer;
    }

    .faq-layout-e .answer {
        margin: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--anim-duration) var(--anim-ease), padding var(--anim-duration) var(--anim-ease);
        color: var(--neutral-600);
        padding: 0;
    }

    .faq-layout-e .entry.open .answer {
        max-height: 220px;
        padding-bottom: 12px;
    }

.nfform-v12 {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 36px);
        background: var(--surface-2);
        color: var(--fg-on-page);
    }

    .nfform-v12__form {
        max-width: 760px;
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        padding: 16px;
        display: grid;
        gap: 10px;
    }

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

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

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

    .nfform-v12 input:not([type='checkbox']),
    .nfform-v12 textarea {
        width: 100%;
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-sm);
        background: var(--surface-1);
        color: var(--fg-on-page);
        padding: 9px;
        font: inherit;
    }

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

    .nfform-v12 button {
        justify-self: start;
        border: 0;
        border-radius: var(--radius-sm);
        padding: 10px 14px;
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
        font-weight: 700;
    }

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: background var(--anim-duration, 0.3s) var(--anim-ease, ease), box-shadow var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .header.scrolled {
    background: var(--surface-1, #ffffff);
    box-shadow: var(--shadow-md, 0 4px 12px rgba(0,0,0,0.1));
    border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
  }

  .header__container {
    max-width: var(--max-w, 1200px);
    margin: 0 auto;
    padding: 0 var(--space-x, 20px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
  }

  .header__logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand, #0056b3);
    text-decoration: none;
    letter-spacing: -0.02em;
    transition: color var(--anim-duration, 0.3s) var(--anim-ease, ease);
    flex-shrink: 0;
  }

  .header.scrolled .header__logo {
    color: var(--brand, #0056b3);
  }

  .header__burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-sm, 4px);
    transition: background var(--anim-duration, 0.3s) var(--anim-ease, ease);
    z-index: 1001;
  }

  .header__burger:hover {
    background: var(--btn-ghost-bg-hover, rgba(0,0,0,0.05));
  }

  .header__burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--fg-on-page, #333);
    border-radius: 2px;
    transition: transform var(--anim-duration, 0.3s) var(--anim-ease, ease), opacity var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .header__burger-line:nth-child(2) {
    margin: 5px 0;
  }

  .header__burger.active .header__burger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .header__burger.active .header__burger-line:nth-child(2) {
    opacity: 0;
  }

  .header__burger.active .header__burger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .header__nav {
    display: flex;
    align-items: center;
  }

  .header__menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap, 24px);
    align-items: center;
  }

  .header__menu-item {
    margin: 0;
    padding: 0;
  }

  .header__menu-link {
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    color: var(--fg-on-page, #333);
    padding: 8px 0;
    position: relative;
    transition: color var(--anim-duration, 0.3s) var(--anim-ease, ease);
    white-space: nowrap;
  }

  .header__menu-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--brand, #0056b3);
    transition: width var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .header__menu-link:hover {
    color: var(--brand, #0056b3);
  }

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

  .header.scrolled .header__menu-link {
    color: var(--fg-on-surface, #333);
  }

  .header.scrolled .header__menu-link:hover {
    color: var(--brand, #0056b3);
  }

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

    .header__nav {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100vh;
      background: var(--surface-1, #ffffff);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      visibility: hidden;
      transition: opacity var(--anim-duration, 0.3s) var(--anim-ease, ease), visibility var(--anim-duration, 0.3s) var(--anim-ease, ease);
      z-index: 1000;
    }

    .header__nav.open {
      opacity: 1;
      visibility: visible;
    }

    .header__menu {
      flex-direction: column;
      gap: 32px;
      text-align: center;
    }

    .header__menu-link {
      font-size: 1.25rem;
      padding: 12px 0;
    }

    .header.scrolled .header__nav {
      background: var(--surface-1, #ffffff);
    }
  }

footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  padding: 2rem 1rem;
  line-height: 1.6;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}
.footer-row:last-child {
  margin-bottom: 0;
}
.footer-brand {
  flex: 1 1 200px;
  margin-bottom: 1rem;
}
.footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #f0c040;
  letter-spacing: 1px;
}
.footer-nav {
  flex: 2 1 300px;
}
.nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.nav-list li a {
  color: #e0e0e0;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s;
}
.nav-list li a:hover {
  color: #f0c040;
}
.footer-contact {
  width: 100%;
}
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}
.contact-list li {
  font-size: 0.95rem;
}
.contact-label {
  font-weight: 600;
  color: #f0c040;
  margin-right: 0.3rem;
}
.contact-list a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.3s;
}
.contact-list a:hover {
  color: #f0c040;
}
.footer-legal {
  width: 100%;
  text-align: center;
  border-top: 1px solid #333;
  padding-top: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.copyright {
  font-size: 0.9rem;
}
.disclaimer {
  font-size: 0.85rem;
  color: #aaa;
  max-width: 700px;
  margin: 0 auto;
}
.legal-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
.legal-links a {
  color: #f0c040;
  text-decoration: none;
  font-size: 0.9rem;
  transition: opacity 0.3s;
}
.legal-links a:hover {
  opacity: 0.8;
}
@media (max-width: 768px) {
  .footer-row.top-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .nav-list {
    justify-content: center;
  }
  .contact-list {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

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

    .nfcookie-v12__shell {
        max-width: 720px;
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-lg);
        padding: var(--space-y) var(--space-x);
    }

    .nfcookie-v12__meta {display: flex; align-items: center; gap: 8px;}

    .nfcookie-v12__shell p {margin: 8px 0 0; color: var(--fg-on-surface-light);}

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

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

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

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

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

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

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

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

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

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

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

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

    .terms-layout-b p, .terms-layout-b li {
        color: var(--neutral-600);
        margin-top: 0;
    }

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: background var(--anim-duration, 0.3s) var(--anim-ease, ease), box-shadow var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .header.scrolled {
    background: var(--surface-1, #ffffff);
    box-shadow: var(--shadow-md, 0 4px 12px rgba(0,0,0,0.1));
    border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
  }

  .header__container {
    max-width: var(--max-w, 1200px);
    margin: 0 auto;
    padding: 0 var(--space-x, 20px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
  }

  .header__logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand, #0056b3);
    text-decoration: none;
    letter-spacing: -0.02em;
    transition: color var(--anim-duration, 0.3s) var(--anim-ease, ease);
    flex-shrink: 0;
  }

  .header.scrolled .header__logo {
    color: var(--brand, #0056b3);
  }

  .header__burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-sm, 4px);
    transition: background var(--anim-duration, 0.3s) var(--anim-ease, ease);
    z-index: 1001;
  }

  .header__burger:hover {
    background: var(--btn-ghost-bg-hover, rgba(0,0,0,0.05));
  }

  .header__burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--fg-on-page, #333);
    border-radius: 2px;
    transition: transform var(--anim-duration, 0.3s) var(--anim-ease, ease), opacity var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .header__burger-line:nth-child(2) {
    margin: 5px 0;
  }

  .header__burger.active .header__burger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .header__burger.active .header__burger-line:nth-child(2) {
    opacity: 0;
  }

  .header__burger.active .header__burger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .header__nav {
    display: flex;
    align-items: center;
  }

  .header__menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap, 24px);
    align-items: center;
  }

  .header__menu-item {
    margin: 0;
    padding: 0;
  }

  .header__menu-link {
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    color: var(--fg-on-page, #333);
    padding: 8px 0;
    position: relative;
    transition: color var(--anim-duration, 0.3s) var(--anim-ease, ease);
    white-space: nowrap;
  }

  .header__menu-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--brand, #0056b3);
    transition: width var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .header__menu-link:hover {
    color: var(--brand, #0056b3);
  }

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

  .header.scrolled .header__menu-link {
    color: var(--fg-on-surface, #333);
  }

  .header.scrolled .header__menu-link:hover {
    color: var(--brand, #0056b3);
  }

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

    .header__nav {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100vh;
      background: var(--surface-1, #ffffff);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      visibility: hidden;
      transition: opacity var(--anim-duration, 0.3s) var(--anim-ease, ease), visibility var(--anim-duration, 0.3s) var(--anim-ease, ease);
      z-index: 1000;
    }

    .header__nav.open {
      opacity: 1;
      visibility: visible;
    }

    .header__menu {
      flex-direction: column;
      gap: 32px;
      text-align: center;
    }

    .header__menu-link {
      font-size: 1.25rem;
      padding: 12px 0;
    }

    .header.scrolled .header__nav {
      background: var(--surface-1, #ffffff);
    }
  }

footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  padding: 2rem 1rem;
  line-height: 1.6;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}
.footer-row:last-child {
  margin-bottom: 0;
}
.footer-brand {
  flex: 1 1 200px;
  margin-bottom: 1rem;
}
.footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #f0c040;
  letter-spacing: 1px;
}
.footer-nav {
  flex: 2 1 300px;
}
.nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.nav-list li a {
  color: #e0e0e0;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s;
}
.nav-list li a:hover {
  color: #f0c040;
}
.footer-contact {
  width: 100%;
}
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}
.contact-list li {
  font-size: 0.95rem;
}
.contact-label {
  font-weight: 600;
  color: #f0c040;
  margin-right: 0.3rem;
}
.contact-list a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.3s;
}
.contact-list a:hover {
  color: #f0c040;
}
.footer-legal {
  width: 100%;
  text-align: center;
  border-top: 1px solid #333;
  padding-top: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.copyright {
  font-size: 0.9rem;
}
.disclaimer {
  font-size: 0.85rem;
  color: #aaa;
  max-width: 700px;
  margin: 0 auto;
}
.legal-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
.legal-links a {
  color: #f0c040;
  text-decoration: none;
  font-size: 0.9rem;
  transition: opacity 0.3s;
}
.legal-links a:hover {
  opacity: 0.8;
}
@media (max-width: 768px) {
  .footer-row.top-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .nav-list {
    justify-content: center;
  }
  .contact-list {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

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

    .nfcookie-v12__shell {
        max-width: 720px;
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-lg);
        padding: var(--space-y) var(--space-x);
    }

    .nfcookie-v12__meta {display: flex; align-items: center; gap: 8px;}

    .nfcookie-v12__shell p {margin: 8px 0 0; color: var(--fg-on-surface-light);}

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

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

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

.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 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: background var(--anim-duration, 0.3s) var(--anim-ease, ease), box-shadow var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .header.scrolled {
    background: var(--surface-1, #ffffff);
    box-shadow: var(--shadow-md, 0 4px 12px rgba(0,0,0,0.1));
    border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
  }

  .header__container {
    max-width: var(--max-w, 1200px);
    margin: 0 auto;
    padding: 0 var(--space-x, 20px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
  }

  .header__logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand, #0056b3);
    text-decoration: none;
    letter-spacing: -0.02em;
    transition: color var(--anim-duration, 0.3s) var(--anim-ease, ease);
    flex-shrink: 0;
  }

  .header.scrolled .header__logo {
    color: var(--brand, #0056b3);
  }

  .header__burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-sm, 4px);
    transition: background var(--anim-duration, 0.3s) var(--anim-ease, ease);
    z-index: 1001;
  }

  .header__burger:hover {
    background: var(--btn-ghost-bg-hover, rgba(0,0,0,0.05));
  }

  .header__burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--fg-on-page, #333);
    border-radius: 2px;
    transition: transform var(--anim-duration, 0.3s) var(--anim-ease, ease), opacity var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .header__burger-line:nth-child(2) {
    margin: 5px 0;
  }

  .header__burger.active .header__burger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .header__burger.active .header__burger-line:nth-child(2) {
    opacity: 0;
  }

  .header__burger.active .header__burger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .header__nav {
    display: flex;
    align-items: center;
  }

  .header__menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap, 24px);
    align-items: center;
  }

  .header__menu-item {
    margin: 0;
    padding: 0;
  }

  .header__menu-link {
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    color: var(--fg-on-page, #333);
    padding: 8px 0;
    position: relative;
    transition: color var(--anim-duration, 0.3s) var(--anim-ease, ease);
    white-space: nowrap;
  }

  .header__menu-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--brand, #0056b3);
    transition: width var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .header__menu-link:hover {
    color: var(--brand, #0056b3);
  }

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

  .header.scrolled .header__menu-link {
    color: var(--fg-on-surface, #333);
  }

  .header.scrolled .header__menu-link:hover {
    color: var(--brand, #0056b3);
  }

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

    .header__nav {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100vh;
      background: var(--surface-1, #ffffff);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      visibility: hidden;
      transition: opacity var(--anim-duration, 0.3s) var(--anim-ease, ease), visibility var(--anim-duration, 0.3s) var(--anim-ease, ease);
      z-index: 1000;
    }

    .header__nav.open {
      opacity: 1;
      visibility: visible;
    }

    .header__menu {
      flex-direction: column;
      gap: 32px;
      text-align: center;
    }

    .header__menu-link {
      font-size: 1.25rem;
      padding: 12px 0;
    }

    .header.scrolled .header__nav {
      background: var(--surface-1, #ffffff);
    }
  }

footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  padding: 2rem 1rem;
  line-height: 1.6;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}
.footer-row:last-child {
  margin-bottom: 0;
}
.footer-brand {
  flex: 1 1 200px;
  margin-bottom: 1rem;
}
.footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #f0c040;
  letter-spacing: 1px;
}
.footer-nav {
  flex: 2 1 300px;
}
.nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.nav-list li a {
  color: #e0e0e0;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s;
}
.nav-list li a:hover {
  color: #f0c040;
}
.footer-contact {
  width: 100%;
}
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}
.contact-list li {
  font-size: 0.95rem;
}
.contact-label {
  font-weight: 600;
  color: #f0c040;
  margin-right: 0.3rem;
}
.contact-list a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.3s;
}
.contact-list a:hover {
  color: #f0c040;
}
.footer-legal {
  width: 100%;
  text-align: center;
  border-top: 1px solid #333;
  padding-top: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.copyright {
  font-size: 0.9rem;
}
.disclaimer {
  font-size: 0.85rem;
  color: #aaa;
  max-width: 700px;
  margin: 0 auto;
}
.legal-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
.legal-links a {
  color: #f0c040;
  text-decoration: none;
  font-size: 0.9rem;
  transition: opacity 0.3s;
}
.legal-links a:hover {
  opacity: 0.8;
}
@media (max-width: 768px) {
  .footer-row.top-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .nav-list {
    justify-content: center;
  }
  .contact-list {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

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

    .nfcookie-v12__shell {
        max-width: 720px;
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-lg);
        padding: var(--space-y) var(--space-x);
    }

    .nfcookie-v12__meta {display: flex; align-items: center; gap: 8px;}

    .nfcookie-v12__shell p {margin: 8px 0 0; color: var(--fg-on-surface-light);}

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

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

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

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

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

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

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

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

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: background var(--anim-duration, 0.3s) var(--anim-ease, ease), box-shadow var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .header.scrolled {
    background: var(--surface-1, #ffffff);
    box-shadow: var(--shadow-md, 0 4px 12px rgba(0,0,0,0.1));
    border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
  }

  .header__container {
    max-width: var(--max-w, 1200px);
    margin: 0 auto;
    padding: 0 var(--space-x, 20px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
  }

  .header__logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand, #0056b3);
    text-decoration: none;
    letter-spacing: -0.02em;
    transition: color var(--anim-duration, 0.3s) var(--anim-ease, ease);
    flex-shrink: 0;
  }

  .header.scrolled .header__logo {
    color: var(--brand, #0056b3);
  }

  .header__burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-sm, 4px);
    transition: background var(--anim-duration, 0.3s) var(--anim-ease, ease);
    z-index: 1001;
  }

  .header__burger:hover {
    background: var(--btn-ghost-bg-hover, rgba(0,0,0,0.05));
  }

  .header__burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--fg-on-page, #333);
    border-radius: 2px;
    transition: transform var(--anim-duration, 0.3s) var(--anim-ease, ease), opacity var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .header__burger-line:nth-child(2) {
    margin: 5px 0;
  }

  .header__burger.active .header__burger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .header__burger.active .header__burger-line:nth-child(2) {
    opacity: 0;
  }

  .header__burger.active .header__burger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .header__nav {
    display: flex;
    align-items: center;
  }

  .header__menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap, 24px);
    align-items: center;
  }

  .header__menu-item {
    margin: 0;
    padding: 0;
  }

  .header__menu-link {
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    color: var(--fg-on-page, #333);
    padding: 8px 0;
    position: relative;
    transition: color var(--anim-duration, 0.3s) var(--anim-ease, ease);
    white-space: nowrap;
  }

  .header__menu-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--brand, #0056b3);
    transition: width var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .header__menu-link:hover {
    color: var(--brand, #0056b3);
  }

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

  .header.scrolled .header__menu-link {
    color: var(--fg-on-surface, #333);
  }

  .header.scrolled .header__menu-link:hover {
    color: var(--brand, #0056b3);
  }

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

    .header__nav {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100vh;
      background: var(--surface-1, #ffffff);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      visibility: hidden;
      transition: opacity var(--anim-duration, 0.3s) var(--anim-ease, ease), visibility var(--anim-duration, 0.3s) var(--anim-ease, ease);
      z-index: 1000;
    }

    .header__nav.open {
      opacity: 1;
      visibility: visible;
    }

    .header__menu {
      flex-direction: column;
      gap: 32px;
      text-align: center;
    }

    .header__menu-link {
      font-size: 1.25rem;
      padding: 12px 0;
    }

    .header.scrolled .header__nav {
      background: var(--surface-1, #ffffff);
    }
  }

footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  padding: 2rem 1rem;
  line-height: 1.6;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}
.footer-row:last-child {
  margin-bottom: 0;
}
.footer-brand {
  flex: 1 1 200px;
  margin-bottom: 1rem;
}
.footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #f0c040;
  letter-spacing: 1px;
}
.footer-nav {
  flex: 2 1 300px;
}
.nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.nav-list li a {
  color: #e0e0e0;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s;
}
.nav-list li a:hover {
  color: #f0c040;
}
.footer-contact {
  width: 100%;
}
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}
.contact-list li {
  font-size: 0.95rem;
}
.contact-label {
  font-weight: 600;
  color: #f0c040;
  margin-right: 0.3rem;
}
.contact-list a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.3s;
}
.contact-list a:hover {
  color: #f0c040;
}
.footer-legal {
  width: 100%;
  text-align: center;
  border-top: 1px solid #333;
  padding-top: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.copyright {
  font-size: 0.9rem;
}
.disclaimer {
  font-size: 0.85rem;
  color: #aaa;
  max-width: 700px;
  margin: 0 auto;
}
.legal-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
.legal-links a {
  color: #f0c040;
  text-decoration: none;
  font-size: 0.9rem;
  transition: opacity 0.3s;
}
.legal-links a:hover {
  opacity: 0.8;
}
@media (max-width: 768px) {
  .footer-row.top-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .nav-list {
    justify-content: center;
  }
  .contact-list {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

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

    .nfcookie-v12__shell {
        max-width: 720px;
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-lg);
        padding: var(--space-y) var(--space-x);
    }

    .nfcookie-v12__meta {display: flex; align-items: center; gap: 8px;}

    .nfcookie-v12__shell p {margin: 8px 0 0; color: var(--fg-on-surface-light);}

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

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

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

.err-slab-c {
        padding: clamp(56px, 10vw, 114px) 20px;
        background: linear-gradient(180deg, var(--bg-accent), var(--bg-page));
        color: var(--fg-on-page);
    }

    .err-slab-c .tile {
        max-width: 760px;
        margin: 0 auto;
        text-align: center;
        padding: clamp(28px, 4vw, 44px);
        background: var(--surface-1);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-lg);
        border-top: 8px solid var(--accent);
    }

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

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

    .err-slab-c a {
        display: inline-block;
        margin-top: 18px;
        padding: 10px 18px;
        border-radius: 999px;
        border: 1px solid var(--neutral-300);
        color: var(--fg-on-page);
        text-decoration: none;
    }