:root {
  --font-family: "Lato", sans-serif;
  --font-size-base: 16.4px;
  --line-height-base: 1.66;

  --max-w: 1380px;
  --space-x: 2.7rem;
  --space-y: 1.5rem;
  --gap: 1.62rem;

  --radius-xl: 1.23rem;
  --radius-lg: 0.76rem;
  --radius-md: 0.61rem;
  --radius-sm: 0.32rem;

  --shadow-sm: 0 1px 8px rgba(0,0,0,0.15);
  --shadow-md: 0 12px 26px rgba(0,0,0,0.2);
  --shadow-lg: 0 20px 48px rgba(0,0,0,0.24);

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

  --brand: #1a3a4a;
  --brand-contrast: #ffffff;
  --accent: #d97706;
  --accent-contrast: #1a1a1a;

  --neutral-0: #ffffff;
  --neutral-100: #f3f4f6;
  --neutral-300: #d1d5db;
  --neutral-600: #4b5563;
  --neutral-800: #1f2937;
  --neutral-900: #111827;

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

  --bg-alt: #1e3a5f;
  --fg-on-alt: #e5e7eb;

  --surface-1: #ffffff;
  --surface-2: #f3f4f6;
  --fg-on-surface: #1f2937;
  --border-on-surface: #d1d5db;

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

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

  --bg-accent: #f59e0b;
  --fg-on-accent: #ffffff;
  --bg-accent-hover: #b45309;

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

  --gradient-hero: linear-gradient(135deg, #1a3a4a 0%, #2563eb 100%);
  --gradient-accent: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);

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

.site-header {
  background: var(--surface-1);
  border-bottom: 1px solid var(--border-on-surface);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
}
.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-y) var(--space-x);
  gap: var(--gap);
  position: relative;
}
.logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  letter-spacing: 0.02em;
  white-space: nowrap;
  flex-shrink: 0;
  order: 2;
}
.nav {
  display: flex;
  gap: var(--gap);
  align-items: center;
}
.nav-left {
  order: 1;
}
.nav-right {
  order: 3;
}
.nav-link {
  font-size: var(--font-size-base);
  color: var(--fg-on-surface);
  text-decoration: none;
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius-sm);
  transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  white-space: nowrap;
}
.nav-link:hover,
.nav-link:focus-visible {
  background: var(--btn-ghost-bg-hover);
  color: var(--link-hover);
  outline: none;
}
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: var(--radius-sm);
  order: 0;
  z-index: 10;
}
.burger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--fg-on-surface);
  border-radius: 2px;
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
.burger[aria-expanded="true"] .burger-line:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.burger[aria-expanded="true"] .burger-line:nth-child(2) {
  opacity: 0;
}
.burger[aria-expanded="true"] .burger-line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

@media (max-width: 767px) {
  .header-inner {
    flex-wrap: wrap;
    justify-content: center;
    padding: var(--space-y) var(--space-x);
  }
  .burger {
    display: flex;
    position: absolute;
    left: var(--space-x);
    top: 50%;
    transform: translateY(-50%);
  }
  .logo {
    order: 1;
    flex: 0 0 auto;
  }
  .nav {
    display: none;
    flex-direction: column;
    width: 100%;
    gap: 0.25rem;
    padding: 0.5rem 0;
    order: 3;
    background: var(--surface-1);
    border-top: 1px solid var(--border-on-surface);
  }
  .nav-left,
  .nav-right {
    align-items: center;
  }
  .nav-link {
    width: 100%;
    text-align: center;
    padding: 0.5rem 1rem;
  }
  .nav.open {
    display: flex;
  }
}

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 40px 20px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 30px;
  }
  .footer-col {
    flex: 1 1 280px;
    min-width: 200px;
  }
  .logo {
    font-size: 28px;
    font-weight: 700;
    color: #f5a623;
    margin-bottom: 10px;
  }
  .offer {
    font-size: 14px;
    line-height: 1.6;
    color: #b0b0b0;
  }
  nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0;
  }
  nav ul li {
    margin-bottom: 8px;
  }
  nav ul li a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
  }
  nav ul li a:hover {
    color: #f5a623;
  }
  .legal-links {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
  .legal-links a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s;
  }
  .legal-links a:hover {
    color: #f5a623;
  }
  .contact-info p {
    margin: 6px 0;
    font-size: 14px;
    line-height: 1.5;
  }
  .contact-info a {
    color: #f5a623;
    text-decoration: none;
  }
  .contact-info a:hover {
    text-decoration: underline;
  }
  .social-links {
    margin: 15px 0;
    display: flex;
    gap: 15px;
  }
  .social-links a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
  }
  .social-links a:hover {
    color: #f5a623;
  }
  .disclaimer {
    font-size: 12px;
    color: #888;
    line-height: 1.5;
    margin-top: 10px;
    border-top: 1px solid #333;
    padding-top: 10px;
  }
  .footer-bottom {
    text-align: center;
    margin-top: 30px;
    padding-top: 15px;
    border-top: 1px solid #333;
    font-size: 13px;
    color: #888;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-col {
      flex: 1 1 auto;
    }
    .legal-links {
      align-items: center;
    }
    .social-links {
      justify-content: center;
    }
  }

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

    .nfcookie-v11__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, .45), rgba(17, 24, 39, .95));
        color: var(--neutral-100);
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, .35);
    }

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

    .nfcookie-v11__top strong {font-size: 16px;}

    .nfcookie-v11__top button {
        border: 0;
        background: transparent;
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
        cursor: pointer;
    }

    .nfcookie-v11 p {margin: 10px 0 0; color: #d1d5db;}

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

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

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

    @media (max-width: 760px) {
        .nfcookie-v11__card {max-width: none;}
    }

.intro-beacon-c8 {
        padding: clamp(3.8rem, 9vw, 7rem) var(--space-x);
        background: var(--gradient-hero);
        color: var(--gradient-accent);
        overflow: hidden;
    }

    .intro-beacon-c8__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        grid-template-columns: minmax(0, 1.15fr) minmax(16rem, .85fr);
        gap: 1.5rem;
        align-items: center;
    }

    .intro-beacon-c8__eyebrow {
        margin: 0;
        color: rgba(255, 255, 255, 0.82);
        text-transform: uppercase;
        letter-spacing: .12em;
        font-size: .82rem;
    }

    .intro-beacon-c8__content h1 {
        margin: .7rem 0 0;
        font-size: clamp(2.4rem, 5vw, 4.6rem);
        line-height: 1.02;
    }

    .intro-beacon-c8__lead {
        margin: 1rem 0 0;
        max-width: 42rem;
    }

    .intro-beacon-c8__fact {
        margin-top: 1rem;
        padding-left: .9rem;
        border-left: 3px solid var(--bg-accent);
    }

    .intro-beacon-c8__links {
        margin-top: 1.2rem;
        display: flex;
        gap: .75rem;
        flex-wrap: wrap;
    }

    .intro-beacon-c8__links a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 2.8rem;
        padding: 0 1rem;
        border-radius: var(--radius-md);
        text-decoration: none;
        border: 1px solid rgba(255, 255, 255, 0.2);
        background: rgba(255, 255, 255, 0.14);
    }

    .intro-beacon-c8__aside {
        padding: 1rem;
        border-radius: var(--radius-xl);
        background: rgba(255, 255, 255, 0.12);
        border: 1px solid rgba(255, 255, 255, 0.2);
        box-shadow: var(--shadow-md);
        order: var(--random-number);
    }

    .intro-beacon-c8__aside img {
        width: 100%;
    }

    .intro-beacon-c8__content {
        order: calc(3 - var(--random-number));
    }

    .intro-beacon-c8__aside--panel div + div {
        margin-top: .55rem;
    }

    @media (max-width: 860px) {
        .intro-beacon-c8__wrap {
            grid-template-columns: 1fr;
        }
    }

body{margin:0;padding:0;font-family:var(--font-family);box-sizing: border-box;}
    *{box-sizing:border-box;}
.next-ux28{padding:clamp(56px,8vw,96px) clamp(16px,4vw,40px);background:var(--neutral-0);color:var(--neutral-900)}
.next-ux28__wrap{max-width:var(--max-w);margin:0 auto;display:grid;grid-template-columns:1.1fr .9fr;gap:12px}
.next-ux28__main{border:1px solid var(--neutral-300);border-radius:var(--radius-lg);padding:14px;background:var(--neutral-100)}
.next-ux28__main h2{margin:0;font-size:clamp(28px,4vw,42px)}
.next-ux28__main p{margin:8px 0 10px;color:var(--neutral-600)}
.next-ux28__main a{display:inline-flex;padding:9px 12px;border-radius:var(--radius-sm);background:var(--bg-primary);color:var(--fg-on-primary);text-decoration:none}
.next-ux28__notes{border:1px solid var(--neutral-300);border-radius:var(--radius-lg);padding:14px;background:var(--neutral-100)}
.next-ux28__notes p{margin:0 0 8px;color:var(--neutral-800)}
.next-ux28__notes p:last-child{margin-bottom:0}
@media(max-width:820px){.next-ux28__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;
    }

.why-choose-light {

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

    .why-choose-light .why-choose-light__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .why-choose-light .why-choose-light__h {
        text-align: center;
        margin-bottom: clamp(32px, 5vw, 64px);

        transform: translateY(20px);
    }

    .why-choose-light h2 {
        font-size: clamp(32px, 5vw, 48px);
        margin: 0 0 1rem;
        color: var(--fg-on-page);
    }

    .why-choose-light .why-choose-light__subtitle {
        font-size: clamp(16px, 2vw, 20px);
        margin: 0;
        color: var(--neutral-600);
    }

    .why-choose-light .why-choose-light__grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: var(--gap);
    }

    .why-choose-light .why-choose-light__item {
        background: var(--surface-1);
        padding: clamp(20px, 3vw, 32px);
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-sm);
        transition: box-shadow var(--anim-duration) var(--anim-ease);

        transform: translateY(30px);
    }

    .why-choose-light .why-choose-light__item:hover {
        box-shadow: var(--shadow-md);
    }

    .why-choose-light .why-choose-light__icon {
        width: 48px;
        height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border-radius: var(--radius-md);
        margin-bottom: 1rem;
        font-size: 24px;
    }

    .why-choose-light .why-choose-light__item h3 {
        font-size: clamp(18px, 2.2vw, 22px);
        margin: 0 0 0.75rem;
        color: var(--fg-on-surface);
    }

    .why-choose-light .why-choose-light__item p {
        margin: 0;
        color: var(--neutral-600);
        line-height: var(--line-height-base);
    }

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

.site-header {
  background: var(--surface-1);
  border-bottom: 1px solid var(--border-on-surface);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
}
.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-y) var(--space-x);
  gap: var(--gap);
  position: relative;
}
.logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  letter-spacing: 0.02em;
  white-space: nowrap;
  flex-shrink: 0;
  order: 2;
}
.nav {
  display: flex;
  gap: var(--gap);
  align-items: center;
}
.nav-left {
  order: 1;
}
.nav-right {
  order: 3;
}
.nav-link {
  font-size: var(--font-size-base);
  color: var(--fg-on-surface);
  text-decoration: none;
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius-sm);
  transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  white-space: nowrap;
}
.nav-link:hover,
.nav-link:focus-visible {
  background: var(--btn-ghost-bg-hover);
  color: var(--link-hover);
  outline: none;
}
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: var(--radius-sm);
  order: 0;
  z-index: 10;
}
.burger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--fg-on-surface);
  border-radius: 2px;
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
.burger[aria-expanded="true"] .burger-line:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.burger[aria-expanded="true"] .burger-line:nth-child(2) {
  opacity: 0;
}
.burger[aria-expanded="true"] .burger-line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

@media (max-width: 767px) {
  .header-inner {
    flex-wrap: wrap;
    justify-content: center;
    padding: var(--space-y) var(--space-x);
  }
  .burger {
    display: flex;
    position: absolute;
    left: var(--space-x);
    top: 50%;
    transform: translateY(-50%);
  }
  .logo {
    order: 1;
    flex: 0 0 auto;
  }
  .nav {
    display: none;
    flex-direction: column;
    width: 100%;
    gap: 0.25rem;
    padding: 0.5rem 0;
    order: 3;
    background: var(--surface-1);
    border-top: 1px solid var(--border-on-surface);
  }
  .nav-left,
  .nav-right {
    align-items: center;
  }
  .nav-link {
    width: 100%;
    text-align: center;
    padding: 0.5rem 1rem;
  }
  .nav.open {
    display: flex;
  }
}

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 40px 20px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 30px;
  }
  .footer-col {
    flex: 1 1 280px;
    min-width: 200px;
  }
  .logo {
    font-size: 28px;
    font-weight: 700;
    color: #f5a623;
    margin-bottom: 10px;
  }
  .offer {
    font-size: 14px;
    line-height: 1.6;
    color: #b0b0b0;
  }
  nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0;
  }
  nav ul li {
    margin-bottom: 8px;
  }
  nav ul li a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
  }
  nav ul li a:hover {
    color: #f5a623;
  }
  .legal-links {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
  .legal-links a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s;
  }
  .legal-links a:hover {
    color: #f5a623;
  }
  .contact-info p {
    margin: 6px 0;
    font-size: 14px;
    line-height: 1.5;
  }
  .contact-info a {
    color: #f5a623;
    text-decoration: none;
  }
  .contact-info a:hover {
    text-decoration: underline;
  }
  .social-links {
    margin: 15px 0;
    display: flex;
    gap: 15px;
  }
  .social-links a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
  }
  .social-links a:hover {
    color: #f5a623;
  }
  .disclaimer {
    font-size: 12px;
    color: #888;
    line-height: 1.5;
    margin-top: 10px;
    border-top: 1px solid #333;
    padding-top: 10px;
  }
  .footer-bottom {
    text-align: center;
    margin-top: 30px;
    padding-top: 15px;
    border-top: 1px solid #333;
    font-size: 13px;
    color: #888;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-col {
      flex: 1 1 auto;
    }
    .legal-links {
      align-items: center;
    }
    .social-links {
      justify-content: center;
    }
  }

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

    .nfcookie-v11__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, .45), rgba(17, 24, 39, .95));
        color: var(--neutral-100);
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, .35);
    }

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

    .nfcookie-v11__top strong {font-size: 16px;}

    .nfcookie-v11__top button {
        border: 0;
        background: transparent;
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
        cursor: pointer;
    }

    .nfcookie-v11 p {margin: 10px 0 0; color: #d1d5db;}

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

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

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

    @media (max-width: 760px) {
        .nfcookie-v11__card {max-width: none;}
    }

.product-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 2 (par) - el primer hijo obtiene order: 2 */
    .product-list .product-list__header-wrapper > *:first-child {
        order: calc((var(--random-number) % 2) * 2);
    }

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

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

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

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

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

    /* Si randomNumber es 2 (par) - el primer hijo obtiene order: 2 */
    .product-list .product-list__filters > *:first-child {
        order: calc((var(--random-number) % 2) * 2);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.recommendations-split-light {
    background: var(--neutral-100);
    color: var(--neutral-900);
    padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 40px);
}

.recommendations-split-light__c {
    max-width: var(--max-w);
    margin: 0 auto;
}

.recommendations-split-light__h {
    text-align: center;
    margin-bottom: clamp(24px, 6vw, 52px);
    transform: translateY(-18px);
}

.recommendations-split-light__h h2 {
    margin: 0 0 10px;
    font-size: clamp(28px, 4.6vw, 48px);
    letter-spacing: -0.02em;
    color: var(--neutral-900);
}

.recommendations-split-light__h p {
    margin: 0;
    color: var(--neutral-600);
}

.recommendations-split-light__grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: clamp(14px, 2.6vw, 22px);
}

.recommendations-split-light__card {
    grid-column: span 6;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    background: var(--neutral-0);
    border: 1px solid var(--neutral-300);
    display: grid;
    grid-template-rows: 170px 1fr;
    transform: translateY(26px);
}

.recommendations-split-light__card:nth-child(1) {
    grid-column: span 12;
    grid-template-columns: 1.2fr 1fr;
    grid-template-rows: 1fr;
    min-height: 320px;
}

.recommendations-split-light__media {
    position: relative;
    background-size: cover;
    background-position: center;
    background-color: rgba(17, 24, 39, 0.06);
}

.recommendations-split-light__card:nth-child(1) .recommendations-split-light__media {
    border-right: 1px solid var(--neutral-300);
}

.recommendations-split-light__media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(17, 24, 39, 0.5), rgba(17, 24, 39, 0));
    pointer-events: none;
}

.recommendations-split-light__body {
    padding: 18px 18px 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.recommendations-split-light__body h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 900;
    letter-spacing: -0.01em;
    color: var(--neutral-900);
}

.recommendations-split-light__body p {
    margin: 0;
    color: var(--neutral-800);
    font-size: 14px;
    line-height: 1.65;
}

.recommendations-split-light__link {
    margin-top: auto;
    color: var(--link);
    text-decoration: none;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-size: 11px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.recommendations-split-light__link::after {
    content: '->';
}

.recommendations-split-light__link:hover {
    color: var(--link-hover);
}

@media (max-width: 900px) {
    .recommendations-split-light__grid {
        grid-template-columns: repeat(6, 1fr);
    }

    .recommendations-split-light__card {
        grid-column: span 6;
    }

    .recommendations-split-light__card:nth-child(1) {
        grid-template-columns: 1fr;
        grid-template-rows: 200px 1fr;
        min-height: 0;
    }

    .recommendations-split-light__card:nth-child(1) .recommendations-split-light__media {
        border-right: 0;
        border-bottom: 1px solid var(--neutral-300);
    }
}

.site-header {
  background: var(--surface-1);
  border-bottom: 1px solid var(--border-on-surface);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
}
.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-y) var(--space-x);
  gap: var(--gap);
  position: relative;
}
.logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  letter-spacing: 0.02em;
  white-space: nowrap;
  flex-shrink: 0;
  order: 2;
}
.nav {
  display: flex;
  gap: var(--gap);
  align-items: center;
}
.nav-left {
  order: 1;
}
.nav-right {
  order: 3;
}
.nav-link {
  font-size: var(--font-size-base);
  color: var(--fg-on-surface);
  text-decoration: none;
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius-sm);
  transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  white-space: nowrap;
}
.nav-link:hover,
.nav-link:focus-visible {
  background: var(--btn-ghost-bg-hover);
  color: var(--link-hover);
  outline: none;
}
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: var(--radius-sm);
  order: 0;
  z-index: 10;
}
.burger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--fg-on-surface);
  border-radius: 2px;
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
.burger[aria-expanded="true"] .burger-line:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.burger[aria-expanded="true"] .burger-line:nth-child(2) {
  opacity: 0;
}
.burger[aria-expanded="true"] .burger-line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

@media (max-width: 767px) {
  .header-inner {
    flex-wrap: wrap;
    justify-content: center;
    padding: var(--space-y) var(--space-x);
  }
  .burger {
    display: flex;
    position: absolute;
    left: var(--space-x);
    top: 50%;
    transform: translateY(-50%);
  }
  .logo {
    order: 1;
    flex: 0 0 auto;
  }
  .nav {
    display: none;
    flex-direction: column;
    width: 100%;
    gap: 0.25rem;
    padding: 0.5rem 0;
    order: 3;
    background: var(--surface-1);
    border-top: 1px solid var(--border-on-surface);
  }
  .nav-left,
  .nav-right {
    align-items: center;
  }
  .nav-link {
    width: 100%;
    text-align: center;
    padding: 0.5rem 1rem;
  }
  .nav.open {
    display: flex;
  }
}

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 40px 20px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 30px;
  }
  .footer-col {
    flex: 1 1 280px;
    min-width: 200px;
  }
  .logo {
    font-size: 28px;
    font-weight: 700;
    color: #f5a623;
    margin-bottom: 10px;
  }
  .offer {
    font-size: 14px;
    line-height: 1.6;
    color: #b0b0b0;
  }
  nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0;
  }
  nav ul li {
    margin-bottom: 8px;
  }
  nav ul li a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
  }
  nav ul li a:hover {
    color: #f5a623;
  }
  .legal-links {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
  .legal-links a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s;
  }
  .legal-links a:hover {
    color: #f5a623;
  }
  .contact-info p {
    margin: 6px 0;
    font-size: 14px;
    line-height: 1.5;
  }
  .contact-info a {
    color: #f5a623;
    text-decoration: none;
  }
  .contact-info a:hover {
    text-decoration: underline;
  }
  .social-links {
    margin: 15px 0;
    display: flex;
    gap: 15px;
  }
  .social-links a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
  }
  .social-links a:hover {
    color: #f5a623;
  }
  .disclaimer {
    font-size: 12px;
    color: #888;
    line-height: 1.5;
    margin-top: 10px;
    border-top: 1px solid #333;
    padding-top: 10px;
  }
  .footer-bottom {
    text-align: center;
    margin-top: 30px;
    padding-top: 15px;
    border-top: 1px solid #333;
    font-size: 13px;
    color: #888;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-col {
      flex: 1 1 auto;
    }
    .legal-links {
      align-items: center;
    }
    .social-links {
      justify-content: center;
    }
  }

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

    .nfcookie-v11__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, .45), rgba(17, 24, 39, .95));
        color: var(--neutral-100);
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, .35);
    }

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

    .nfcookie-v11__top strong {font-size: 16px;}

    .nfcookie-v11__top button {
        border: 0;
        background: transparent;
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
        cursor: pointer;
    }

    .nfcookie-v11 p {margin: 10px 0 0; color: #d1d5db;}

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

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

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

    @media (max-width: 760px) {
        .nfcookie-v11__card {max-width: none;}
    }

.product-item {

        color: var(--fg-on-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 par (2) - primer hijo obtiene order: 2 */
        .product-item .product-item__c > *:first-child {
            order: calc((var(--random-number) % 2) * 2);
        }
    }

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

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

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

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

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

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

    .product-item .product-item__description ul {
        list-style: disc;
        padding-left: 1.5rem;
        margin-top: 0.5rem;
    }

    .product-item .product-item__description li {
        margin-bottom: 0.3rem;
    }

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

    /* Si randomNumber es par (2) - primer hijo obtiene order: 2 */
    .product-item .product-item__actions > *:first-child {
        order: calc((var(--random-number) % 2) * 2);
    }

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

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

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

    .feedback-ux8 {
        background: var(--neutral-100);
        color: var(--neutral-900);
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 40px);
    }

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

    .feedback-ux8__h {
        text-align: center;
        margin-bottom: clamp(22px, 5vw, 44px);

        transform: translateY(-18px);
    }

    .feedback-ux8__eyebrow {
        margin: 0 0 10px;
        text-transform: uppercase;
        letter-spacing: 0.22em;
        font-size: 12px;
        color: var(--neutral-600);
    }

    .feedback-ux8__h h2 {
        margin: 0;
        font-size: clamp(26px, 4.4vw, 44px);
        letter-spacing: -0.02em;
        color: var(--neutral-900);
    }

    .feedback-ux8__list {
        display: grid;
        gap: 12px;
    }

    .feedback-ux8__row {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        background: var(--neutral-100);
        box-shadow: var(--shadow-sm);
        overflow: hidden;

        transform: translateY(24px);
    }

    .feedback-ux8__q {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        cursor: pointer;
        padding: 14px 16px;
        border: 0;
        background: transparent;
        color: var(--neutral-900);
        font: inherit;
        text-align: left;
    }

    .feedback-ux8__who {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        min-width: 0;
    }

    .feedback-ux8__avatar {
        width: 36px;
        height: 36px;
        border-radius: 12px;
        background: var(--bg-accent);
        border: 1px solid var(--border-on-surface);
        display: flex;
        align-items: center;
        justify-content: center;
        flex: 0 0 auto;
    }

    .feedback-ux8__name {
        font-weight: 800;
        font-size: 14px;
        color: var(--neutral-900);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 18ch;
    }

    .feedback-ux8__meta {
        font-size: 12px;
        color: var(--neutral-600);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 24ch;
    }

    .feedback-ux8__rating {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        flex: 0 0 auto;
        padding: 6px 10px;
        border-radius: 999px;
        background: var(--neutral-100);
        border: 1px solid var(--border-on-surface);
    }

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

    .feedback-ux8__score {
        font-weight: 800;
        font-size: 12px;
        color: var(--neutral-900);
    }

    .feedback-ux8__a {
        display: none;
        padding: 0 16px 14px;
        color: var(--neutral-800);
        overflow: hidden;
    }

    .feedback-ux8__a p {
        margin: 0;
        font-size: 14px;
        line-height: 1.65;
        color: var(--neutral-800);
    }

    .feedback-ux8__chip {
        display: inline-flex;
        margin-top: 10px;
        padding: 6px 10px;
        border-radius: 999px;
        background: var(--bg-primary);
        border: 1px solid var(--ring);
        color: var(--fg-on-primary);
        letter-spacing: 0.14em;
        text-transform: uppercase;
        font-size: 10px;
    }

    @media (max-width: 560px) {
        .feedback-ux8__q {
            align-items: flex-start;
        }

        .feedback-ux8__rating {
            margin-top: 2px;
        }

        .feedback-ux8__meta {
            display: none;
        }
    }

.site-header {
  background: var(--surface-1);
  border-bottom: 1px solid var(--border-on-surface);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
}
.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-y) var(--space-x);
  gap: var(--gap);
  position: relative;
}
.logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  letter-spacing: 0.02em;
  white-space: nowrap;
  flex-shrink: 0;
  order: 2;
}
.nav {
  display: flex;
  gap: var(--gap);
  align-items: center;
}
.nav-left {
  order: 1;
}
.nav-right {
  order: 3;
}
.nav-link {
  font-size: var(--font-size-base);
  color: var(--fg-on-surface);
  text-decoration: none;
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius-sm);
  transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  white-space: nowrap;
}
.nav-link:hover,
.nav-link:focus-visible {
  background: var(--btn-ghost-bg-hover);
  color: var(--link-hover);
  outline: none;
}
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: var(--radius-sm);
  order: 0;
  z-index: 10;
}
.burger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--fg-on-surface);
  border-radius: 2px;
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
.burger[aria-expanded="true"] .burger-line:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.burger[aria-expanded="true"] .burger-line:nth-child(2) {
  opacity: 0;
}
.burger[aria-expanded="true"] .burger-line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

@media (max-width: 767px) {
  .header-inner {
    flex-wrap: wrap;
    justify-content: center;
    padding: var(--space-y) var(--space-x);
  }
  .burger {
    display: flex;
    position: absolute;
    left: var(--space-x);
    top: 50%;
    transform: translateY(-50%);
  }
  .logo {
    order: 1;
    flex: 0 0 auto;
  }
  .nav {
    display: none;
    flex-direction: column;
    width: 100%;
    gap: 0.25rem;
    padding: 0.5rem 0;
    order: 3;
    background: var(--surface-1);
    border-top: 1px solid var(--border-on-surface);
  }
  .nav-left,
  .nav-right {
    align-items: center;
  }
  .nav-link {
    width: 100%;
    text-align: center;
    padding: 0.5rem 1rem;
  }
  .nav.open {
    display: flex;
  }
}

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 40px 20px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 30px;
  }
  .footer-col {
    flex: 1 1 280px;
    min-width: 200px;
  }
  .logo {
    font-size: 28px;
    font-weight: 700;
    color: #f5a623;
    margin-bottom: 10px;
  }
  .offer {
    font-size: 14px;
    line-height: 1.6;
    color: #b0b0b0;
  }
  nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0;
  }
  nav ul li {
    margin-bottom: 8px;
  }
  nav ul li a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
  }
  nav ul li a:hover {
    color: #f5a623;
  }
  .legal-links {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
  .legal-links a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s;
  }
  .legal-links a:hover {
    color: #f5a623;
  }
  .contact-info p {
    margin: 6px 0;
    font-size: 14px;
    line-height: 1.5;
  }
  .contact-info a {
    color: #f5a623;
    text-decoration: none;
  }
  .contact-info a:hover {
    text-decoration: underline;
  }
  .social-links {
    margin: 15px 0;
    display: flex;
    gap: 15px;
  }
  .social-links a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
  }
  .social-links a:hover {
    color: #f5a623;
  }
  .disclaimer {
    font-size: 12px;
    color: #888;
    line-height: 1.5;
    margin-top: 10px;
    border-top: 1px solid #333;
    padding-top: 10px;
  }
  .footer-bottom {
    text-align: center;
    margin-top: 30px;
    padding-top: 15px;
    border-top: 1px solid #333;
    font-size: 13px;
    color: #888;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-col {
      flex: 1 1 auto;
    }
    .legal-links {
      align-items: center;
    }
    .social-links {
      justify-content: center;
    }
  }

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

    .nfcookie-v11__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, .45), rgba(17, 24, 39, .95));
        color: var(--neutral-100);
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, .35);
    }

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

    .nfcookie-v11__top strong {font-size: 16px;}

    .nfcookie-v11__top button {
        border: 0;
        background: transparent;
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
        cursor: pointer;
    }

    .nfcookie-v11 p {margin: 10px 0 0; color: #d1d5db;}

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

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

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

    @media (max-width: 760px) {
        .nfcookie-v11__card {max-width: none;}
    }

.product-item {

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

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

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

        /* Si randomNumber es par (2) - el primer hijo recibe order: 2 */
        .product-item .product-item__c > *:first-child {
            order: calc((var(--random-number) % 2) * 2);
        }
    }

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

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

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

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

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

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

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

    /* Si randomNumber es par (2) - el primer hijo recibe order: 2 */
    .product-item .product-item__actions > *:first-child {
        order: calc((var(--random-number) % 2) * 2);
    }

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

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

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

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

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

.capabilities-alt {

        background: var(--bg-primary);
        color: var(--fg-on-primary);
        padding: clamp(60px, 8vw, 100px) clamp(16px, 3vw, 40px);
        position: relative;
        overflow: hidden;
    }

    .capabilities-alt::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 200px;
        background: linear-gradient(180deg, var(--accent) 0%, transparent 100%);
        opacity: 0.1;
    }

    .capabilities-alt .capabilities-alt__c {
        max-width: var(--max-w);
        margin: 0 auto;
        position: relative;
        z-index: 1;
    }

    .capabilities-alt .capabilities-alt__h {
        text-align: center;
        margin-bottom: clamp(48px, 7vw, 80px);

    }

    .capabilities-alt h2 {
        font-size: clamp(32px, 5vw, 48px);
        font-weight: 800;
        margin: 0 0 1rem;
    }

    .capabilities-alt .capabilities-alt__subtitle {
        font-size: clamp(16px, 2vw, 20px);
        margin: 0;
        opacity: 0.9;
    }

    .capabilities-alt .capabilities-alt__flow {
        display: flex;
        flex-direction: column;
        gap: clamp(40px, 5vw, 64px);
        position: relative;
    }

    .capabilities-alt .capabilities-alt__item {
        display: flex;
        align-items: center;
        gap: clamp(24px, 4vw, 48px);

        transform: translateX(-50px);
    }

    .capabilities-alt .capabilities-alt__item:nth-child(even) {
        flex-direction: row-reverse;
        transform: translateX(50px);
    }

    .capabilities-alt .capabilities-alt__connector {
        flex-shrink: 0;
        width: 60px;
        height: 60px;
        background: var(--accent);
        border-radius: 50%;
        position: relative;
        box-shadow: 0 0 0 8px rgba(255, 107, 53, 0.2);
        animation: pulse 2s ease-in-out infinite;
    }

    @keyframes pulse {
        0%, 100% {
            box-shadow: 0 0 0 8px rgba(255, 107, 53, 0.2);
        }
        50% {
            box-shadow: 0 0 0 16px rgba(255, 107, 53, 0.1);
        }
    }

    .capabilities-alt .capabilities-alt__connector::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 24px;
        height: 24px;
        background: var(--fg-on-primary);
        border-radius: 50%;
    }

    .capabilities-alt .capabilities-alt__bubble {
        flex: 1;
        background: var(--surface-light);
        padding: clamp(24px, 3vw, 36px);
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-lg);
        position: relative;
    }

    .capabilities-alt .capabilities-alt__bubble::before {
        content: '';
        position: absolute;
        top: 50%;
        width: 20px;
        height: 20px;
        background: var(--surface-light);
        transform: translateY(-50%) rotate(45deg);
    }

    .capabilities-alt .capabilities-alt__item:nth-child(odd) .capabilities-alt__bubble::before {
        left: -10px;
    }

    .capabilities-alt .capabilities-alt__item:nth-child(even) .capabilities-alt__bubble::before {
        right: -10px;
    }

    .capabilities-alt .capabilities-alt__icon {
        color: var(--fg-on-surface-light);
        font-size: 36px;
        margin-bottom: 1rem;
    }

    .capabilities-alt .capabilities-alt__bubble h3 {
        font-size: clamp(20px, 2.5vw, 26px);
        font-weight: 700;
        margin: 0 0 0.75rem;
        color: var(--brand);
    }

    .capabilities-alt .capabilities-alt__bubble p {
        margin: 0;
        color: var(--neutral-600);
        line-height: var(--line-height-base);
    }

.site-header {
  background: var(--surface-1);
  border-bottom: 1px solid var(--border-on-surface);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
}
.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-y) var(--space-x);
  gap: var(--gap);
  position: relative;
}
.logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  letter-spacing: 0.02em;
  white-space: nowrap;
  flex-shrink: 0;
  order: 2;
}
.nav {
  display: flex;
  gap: var(--gap);
  align-items: center;
}
.nav-left {
  order: 1;
}
.nav-right {
  order: 3;
}
.nav-link {
  font-size: var(--font-size-base);
  color: var(--fg-on-surface);
  text-decoration: none;
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius-sm);
  transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  white-space: nowrap;
}
.nav-link:hover,
.nav-link:focus-visible {
  background: var(--btn-ghost-bg-hover);
  color: var(--link-hover);
  outline: none;
}
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: var(--radius-sm);
  order: 0;
  z-index: 10;
}
.burger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--fg-on-surface);
  border-radius: 2px;
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
.burger[aria-expanded="true"] .burger-line:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.burger[aria-expanded="true"] .burger-line:nth-child(2) {
  opacity: 0;
}
.burger[aria-expanded="true"] .burger-line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

@media (max-width: 767px) {
  .header-inner {
    flex-wrap: wrap;
    justify-content: center;
    padding: var(--space-y) var(--space-x);
  }
  .burger {
    display: flex;
    position: absolute;
    left: var(--space-x);
    top: 50%;
    transform: translateY(-50%);
  }
  .logo {
    order: 1;
    flex: 0 0 auto;
  }
  .nav {
    display: none;
    flex-direction: column;
    width: 100%;
    gap: 0.25rem;
    padding: 0.5rem 0;
    order: 3;
    background: var(--surface-1);
    border-top: 1px solid var(--border-on-surface);
  }
  .nav-left,
  .nav-right {
    align-items: center;
  }
  .nav-link {
    width: 100%;
    text-align: center;
    padding: 0.5rem 1rem;
  }
  .nav.open {
    display: flex;
  }
}

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 40px 20px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 30px;
  }
  .footer-col {
    flex: 1 1 280px;
    min-width: 200px;
  }
  .logo {
    font-size: 28px;
    font-weight: 700;
    color: #f5a623;
    margin-bottom: 10px;
  }
  .offer {
    font-size: 14px;
    line-height: 1.6;
    color: #b0b0b0;
  }
  nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0;
  }
  nav ul li {
    margin-bottom: 8px;
  }
  nav ul li a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
  }
  nav ul li a:hover {
    color: #f5a623;
  }
  .legal-links {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
  .legal-links a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s;
  }
  .legal-links a:hover {
    color: #f5a623;
  }
  .contact-info p {
    margin: 6px 0;
    font-size: 14px;
    line-height: 1.5;
  }
  .contact-info a {
    color: #f5a623;
    text-decoration: none;
  }
  .contact-info a:hover {
    text-decoration: underline;
  }
  .social-links {
    margin: 15px 0;
    display: flex;
    gap: 15px;
  }
  .social-links a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
  }
  .social-links a:hover {
    color: #f5a623;
  }
  .disclaimer {
    font-size: 12px;
    color: #888;
    line-height: 1.5;
    margin-top: 10px;
    border-top: 1px solid #333;
    padding-top: 10px;
  }
  .footer-bottom {
    text-align: center;
    margin-top: 30px;
    padding-top: 15px;
    border-top: 1px solid #333;
    font-size: 13px;
    color: #888;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-col {
      flex: 1 1 auto;
    }
    .legal-links {
      align-items: center;
    }
    .social-links {
      justify-content: center;
    }
  }

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

    .nfcookie-v11__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, .45), rgba(17, 24, 39, .95));
        color: var(--neutral-100);
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, .35);
    }

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

    .nfcookie-v11__top strong {font-size: 16px;}

    .nfcookie-v11__top button {
        border: 0;
        background: transparent;
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
        cursor: pointer;
    }

    .nfcookie-v11 p {margin: 10px 0 0; color: #d1d5db;}

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

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

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

    @media (max-width: 760px) {
        .nfcookie-v11__card {max-width: none;}
    }

.product-item {

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

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

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

        /* Si randomNumber es par (2) - primer hijo obtiene order: 2 */
        .product-item .product-item__c > *:first-child {
            order: calc((var(--random-number) % 2) * 2);
        }
    }

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

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

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

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

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

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

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

    /* Si randomNumber es par (2) - primer hijo obtiene order: 2 */
    .product-item .product-item__actions > *:first-child {
        order: calc((var(--random-number) % 2) * 2);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

    }

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

.site-header {
  background: var(--surface-1);
  border-bottom: 1px solid var(--border-on-surface);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
}
.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-y) var(--space-x);
  gap: var(--gap);
  position: relative;
}
.logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  letter-spacing: 0.02em;
  white-space: nowrap;
  flex-shrink: 0;
  order: 2;
}
.nav {
  display: flex;
  gap: var(--gap);
  align-items: center;
}
.nav-left {
  order: 1;
}
.nav-right {
  order: 3;
}
.nav-link {
  font-size: var(--font-size-base);
  color: var(--fg-on-surface);
  text-decoration: none;
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius-sm);
  transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  white-space: nowrap;
}
.nav-link:hover,
.nav-link:focus-visible {
  background: var(--btn-ghost-bg-hover);
  color: var(--link-hover);
  outline: none;
}
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: var(--radius-sm);
  order: 0;
  z-index: 10;
}
.burger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--fg-on-surface);
  border-radius: 2px;
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
.burger[aria-expanded="true"] .burger-line:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.burger[aria-expanded="true"] .burger-line:nth-child(2) {
  opacity: 0;
}
.burger[aria-expanded="true"] .burger-line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

@media (max-width: 767px) {
  .header-inner {
    flex-wrap: wrap;
    justify-content: center;
    padding: var(--space-y) var(--space-x);
  }
  .burger {
    display: flex;
    position: absolute;
    left: var(--space-x);
    top: 50%;
    transform: translateY(-50%);
  }
  .logo {
    order: 1;
    flex: 0 0 auto;
  }
  .nav {
    display: none;
    flex-direction: column;
    width: 100%;
    gap: 0.25rem;
    padding: 0.5rem 0;
    order: 3;
    background: var(--surface-1);
    border-top: 1px solid var(--border-on-surface);
  }
  .nav-left,
  .nav-right {
    align-items: center;
  }
  .nav-link {
    width: 100%;
    text-align: center;
    padding: 0.5rem 1rem;
  }
  .nav.open {
    display: flex;
  }
}

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 40px 20px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 30px;
  }
  .footer-col {
    flex: 1 1 280px;
    min-width: 200px;
  }
  .logo {
    font-size: 28px;
    font-weight: 700;
    color: #f5a623;
    margin-bottom: 10px;
  }
  .offer {
    font-size: 14px;
    line-height: 1.6;
    color: #b0b0b0;
  }
  nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0;
  }
  nav ul li {
    margin-bottom: 8px;
  }
  nav ul li a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
  }
  nav ul li a:hover {
    color: #f5a623;
  }
  .legal-links {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
  .legal-links a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s;
  }
  .legal-links a:hover {
    color: #f5a623;
  }
  .contact-info p {
    margin: 6px 0;
    font-size: 14px;
    line-height: 1.5;
  }
  .contact-info a {
    color: #f5a623;
    text-decoration: none;
  }
  .contact-info a:hover {
    text-decoration: underline;
  }
  .social-links {
    margin: 15px 0;
    display: flex;
    gap: 15px;
  }
  .social-links a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
  }
  .social-links a:hover {
    color: #f5a623;
  }
  .disclaimer {
    font-size: 12px;
    color: #888;
    line-height: 1.5;
    margin-top: 10px;
    border-top: 1px solid #333;
    padding-top: 10px;
  }
  .footer-bottom {
    text-align: center;
    margin-top: 30px;
    padding-top: 15px;
    border-top: 1px solid #333;
    font-size: 13px;
    color: #888;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-col {
      flex: 1 1 auto;
    }
    .legal-links {
      align-items: center;
    }
    .social-links {
      justify-content: center;
    }
  }

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

    .nfcookie-v11__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, .45), rgba(17, 24, 39, .95));
        color: var(--neutral-100);
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, .35);
    }

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

    .nfcookie-v11__top strong {font-size: 16px;}

    .nfcookie-v11__top button {
        border: 0;
        background: transparent;
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
        cursor: pointer;
    }

    .nfcookie-v11 p {margin: 10px 0 0; color: #d1d5db;}

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

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

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

    @media (max-width: 760px) {
        .nfcookie-v11__card {max-width: none;}
    }

.checkout {

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

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

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

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

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

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

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

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

    .checkout h4 {
        margin: 0 0 0.5rem;
    }

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

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

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

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

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

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

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

        outline: none;
    }

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

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

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

.site-header {
  background: var(--surface-1);
  border-bottom: 1px solid var(--border-on-surface);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
}
.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-y) var(--space-x);
  gap: var(--gap);
  position: relative;
}
.logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  letter-spacing: 0.02em;
  white-space: nowrap;
  flex-shrink: 0;
  order: 2;
}
.nav {
  display: flex;
  gap: var(--gap);
  align-items: center;
}
.nav-left {
  order: 1;
}
.nav-right {
  order: 3;
}
.nav-link {
  font-size: var(--font-size-base);
  color: var(--fg-on-surface);
  text-decoration: none;
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius-sm);
  transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  white-space: nowrap;
}
.nav-link:hover,
.nav-link:focus-visible {
  background: var(--btn-ghost-bg-hover);
  color: var(--link-hover);
  outline: none;
}
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: var(--radius-sm);
  order: 0;
  z-index: 10;
}
.burger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--fg-on-surface);
  border-radius: 2px;
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
.burger[aria-expanded="true"] .burger-line:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.burger[aria-expanded="true"] .burger-line:nth-child(2) {
  opacity: 0;
}
.burger[aria-expanded="true"] .burger-line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

@media (max-width: 767px) {
  .header-inner {
    flex-wrap: wrap;
    justify-content: center;
    padding: var(--space-y) var(--space-x);
  }
  .burger {
    display: flex;
    position: absolute;
    left: var(--space-x);
    top: 50%;
    transform: translateY(-50%);
  }
  .logo {
    order: 1;
    flex: 0 0 auto;
  }
  .nav {
    display: none;
    flex-direction: column;
    width: 100%;
    gap: 0.25rem;
    padding: 0.5rem 0;
    order: 3;
    background: var(--surface-1);
    border-top: 1px solid var(--border-on-surface);
  }
  .nav-left,
  .nav-right {
    align-items: center;
  }
  .nav-link {
    width: 100%;
    text-align: center;
    padding: 0.5rem 1rem;
  }
  .nav.open {
    display: flex;
  }
}

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 40px 20px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 30px;
  }
  .footer-col {
    flex: 1 1 280px;
    min-width: 200px;
  }
  .logo {
    font-size: 28px;
    font-weight: 700;
    color: #f5a623;
    margin-bottom: 10px;
  }
  .offer {
    font-size: 14px;
    line-height: 1.6;
    color: #b0b0b0;
  }
  nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0;
  }
  nav ul li {
    margin-bottom: 8px;
  }
  nav ul li a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
  }
  nav ul li a:hover {
    color: #f5a623;
  }
  .legal-links {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
  .legal-links a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s;
  }
  .legal-links a:hover {
    color: #f5a623;
  }
  .contact-info p {
    margin: 6px 0;
    font-size: 14px;
    line-height: 1.5;
  }
  .contact-info a {
    color: #f5a623;
    text-decoration: none;
  }
  .contact-info a:hover {
    text-decoration: underline;
  }
  .social-links {
    margin: 15px 0;
    display: flex;
    gap: 15px;
  }
  .social-links a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
  }
  .social-links a:hover {
    color: #f5a623;
  }
  .disclaimer {
    font-size: 12px;
    color: #888;
    line-height: 1.5;
    margin-top: 10px;
    border-top: 1px solid #333;
    padding-top: 10px;
  }
  .footer-bottom {
    text-align: center;
    margin-top: 30px;
    padding-top: 15px;
    border-top: 1px solid #333;
    font-size: 13px;
    color: #888;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-col {
      flex: 1 1 auto;
    }
    .legal-links {
      align-items: center;
    }
    .social-links {
      justify-content: center;
    }
  }

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

    .nfcookie-v11__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, .45), rgba(17, 24, 39, .95));
        color: var(--neutral-100);
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, .35);
    }

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

    .nfcookie-v11__top strong {font-size: 16px;}

    .nfcookie-v11__top button {
        border: 0;
        background: transparent;
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
        cursor: pointer;
    }

    .nfcookie-v11 p {margin: 10px 0 0; color: #d1d5db;}

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

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

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

    @media (max-width: 760px) {
        .nfcookie-v11__card {max-width: none;}
    }

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

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

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

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

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

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

    .nfform-v8 label span {
        color: var(--neutral-600);
        font-size: .9rem;
    }

    .nfform-v8 input {
        width: 100%;
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-sm);
        background: var(--surface-1);
        color: var(--fg-on-surface);
        padding: 9px;
        font: inherit;
    }

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

.site-header {
  background: var(--surface-1);
  border-bottom: 1px solid var(--border-on-surface);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
}
.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-y) var(--space-x);
  gap: var(--gap);
  position: relative;
}
.logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  letter-spacing: 0.02em;
  white-space: nowrap;
  flex-shrink: 0;
  order: 2;
}
.nav {
  display: flex;
  gap: var(--gap);
  align-items: center;
}
.nav-left {
  order: 1;
}
.nav-right {
  order: 3;
}
.nav-link {
  font-size: var(--font-size-base);
  color: var(--fg-on-surface);
  text-decoration: none;
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius-sm);
  transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  white-space: nowrap;
}
.nav-link:hover,
.nav-link:focus-visible {
  background: var(--btn-ghost-bg-hover);
  color: var(--link-hover);
  outline: none;
}
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: var(--radius-sm);
  order: 0;
  z-index: 10;
}
.burger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--fg-on-surface);
  border-radius: 2px;
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
.burger[aria-expanded="true"] .burger-line:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.burger[aria-expanded="true"] .burger-line:nth-child(2) {
  opacity: 0;
}
.burger[aria-expanded="true"] .burger-line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

@media (max-width: 767px) {
  .header-inner {
    flex-wrap: wrap;
    justify-content: center;
    padding: var(--space-y) var(--space-x);
  }
  .burger {
    display: flex;
    position: absolute;
    left: var(--space-x);
    top: 50%;
    transform: translateY(-50%);
  }
  .logo {
    order: 1;
    flex: 0 0 auto;
  }
  .nav {
    display: none;
    flex-direction: column;
    width: 100%;
    gap: 0.25rem;
    padding: 0.5rem 0;
    order: 3;
    background: var(--surface-1);
    border-top: 1px solid var(--border-on-surface);
  }
  .nav-left,
  .nav-right {
    align-items: center;
  }
  .nav-link {
    width: 100%;
    text-align: center;
    padding: 0.5rem 1rem;
  }
  .nav.open {
    display: flex;
  }
}

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 40px 20px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 30px;
  }
  .footer-col {
    flex: 1 1 280px;
    min-width: 200px;
  }
  .logo {
    font-size: 28px;
    font-weight: 700;
    color: #f5a623;
    margin-bottom: 10px;
  }
  .offer {
    font-size: 14px;
    line-height: 1.6;
    color: #b0b0b0;
  }
  nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0;
  }
  nav ul li {
    margin-bottom: 8px;
  }
  nav ul li a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
  }
  nav ul li a:hover {
    color: #f5a623;
  }
  .legal-links {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
  .legal-links a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s;
  }
  .legal-links a:hover {
    color: #f5a623;
  }
  .contact-info p {
    margin: 6px 0;
    font-size: 14px;
    line-height: 1.5;
  }
  .contact-info a {
    color: #f5a623;
    text-decoration: none;
  }
  .contact-info a:hover {
    text-decoration: underline;
  }
  .social-links {
    margin: 15px 0;
    display: flex;
    gap: 15px;
  }
  .social-links a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
  }
  .social-links a:hover {
    color: #f5a623;
  }
  .disclaimer {
    font-size: 12px;
    color: #888;
    line-height: 1.5;
    margin-top: 10px;
    border-top: 1px solid #333;
    padding-top: 10px;
  }
  .footer-bottom {
    text-align: center;
    margin-top: 30px;
    padding-top: 15px;
    border-top: 1px solid #333;
    font-size: 13px;
    color: #888;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-col {
      flex: 1 1 auto;
    }
    .legal-links {
      align-items: center;
    }
    .social-links {
      justify-content: center;
    }
  }

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

    .nfcookie-v11__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, .45), rgba(17, 24, 39, .95));
        color: var(--neutral-100);
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, .35);
    }

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

    .nfcookie-v11__top strong {font-size: 16px;}

    .nfcookie-v11__top button {
        border: 0;
        background: transparent;
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
        cursor: pointer;
    }

    .nfcookie-v11 p {margin: 10px 0 0; color: #d1d5db;}

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

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

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

    @media (max-width: 760px) {
        .nfcookie-v11__card {max-width: none;}
    }

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

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

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

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

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

    .policy-layout-f .rows {
        display: grid;
        gap: 10px;
    }

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

    .policy-layout-f .head {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .policy-layout-f .head span {
        min-width: 30px;
        height: 30px;
        display: grid;
        place-items: center;
        border-radius: 50%;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        font-weight: 700;
    }

    .policy-layout-f .head h3 {
        margin: 0;
    }

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

.site-header {
  background: var(--surface-1);
  border-bottom: 1px solid var(--border-on-surface);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
}
.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-y) var(--space-x);
  gap: var(--gap);
  position: relative;
}
.logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  letter-spacing: 0.02em;
  white-space: nowrap;
  flex-shrink: 0;
  order: 2;
}
.nav {
  display: flex;
  gap: var(--gap);
  align-items: center;
}
.nav-left {
  order: 1;
}
.nav-right {
  order: 3;
}
.nav-link {
  font-size: var(--font-size-base);
  color: var(--fg-on-surface);
  text-decoration: none;
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius-sm);
  transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  white-space: nowrap;
}
.nav-link:hover,
.nav-link:focus-visible {
  background: var(--btn-ghost-bg-hover);
  color: var(--link-hover);
  outline: none;
}
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: var(--radius-sm);
  order: 0;
  z-index: 10;
}
.burger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--fg-on-surface);
  border-radius: 2px;
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
.burger[aria-expanded="true"] .burger-line:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.burger[aria-expanded="true"] .burger-line:nth-child(2) {
  opacity: 0;
}
.burger[aria-expanded="true"] .burger-line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

@media (max-width: 767px) {
  .header-inner {
    flex-wrap: wrap;
    justify-content: center;
    padding: var(--space-y) var(--space-x);
  }
  .burger {
    display: flex;
    position: absolute;
    left: var(--space-x);
    top: 50%;
    transform: translateY(-50%);
  }
  .logo {
    order: 1;
    flex: 0 0 auto;
  }
  .nav {
    display: none;
    flex-direction: column;
    width: 100%;
    gap: 0.25rem;
    padding: 0.5rem 0;
    order: 3;
    background: var(--surface-1);
    border-top: 1px solid var(--border-on-surface);
  }
  .nav-left,
  .nav-right {
    align-items: center;
  }
  .nav-link {
    width: 100%;
    text-align: center;
    padding: 0.5rem 1rem;
  }
  .nav.open {
    display: flex;
  }
}

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 40px 20px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 30px;
  }
  .footer-col {
    flex: 1 1 280px;
    min-width: 200px;
  }
  .logo {
    font-size: 28px;
    font-weight: 700;
    color: #f5a623;
    margin-bottom: 10px;
  }
  .offer {
    font-size: 14px;
    line-height: 1.6;
    color: #b0b0b0;
  }
  nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0;
  }
  nav ul li {
    margin-bottom: 8px;
  }
  nav ul li a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
  }
  nav ul li a:hover {
    color: #f5a623;
  }
  .legal-links {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
  .legal-links a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s;
  }
  .legal-links a:hover {
    color: #f5a623;
  }
  .contact-info p {
    margin: 6px 0;
    font-size: 14px;
    line-height: 1.5;
  }
  .contact-info a {
    color: #f5a623;
    text-decoration: none;
  }
  .contact-info a:hover {
    text-decoration: underline;
  }
  .social-links {
    margin: 15px 0;
    display: flex;
    gap: 15px;
  }
  .social-links a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
  }
  .social-links a:hover {
    color: #f5a623;
  }
  .disclaimer {
    font-size: 12px;
    color: #888;
    line-height: 1.5;
    margin-top: 10px;
    border-top: 1px solid #333;
    padding-top: 10px;
  }
  .footer-bottom {
    text-align: center;
    margin-top: 30px;
    padding-top: 15px;
    border-top: 1px solid #333;
    font-size: 13px;
    color: #888;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-col {
      flex: 1 1 auto;
    }
    .legal-links {
      align-items: center;
    }
    .social-links {
      justify-content: center;
    }
  }

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

    .nfcookie-v11__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, .45), rgba(17, 24, 39, .95));
        color: var(--neutral-100);
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, .35);
    }

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

    .nfcookie-v11__top strong {font-size: 16px;}

    .nfcookie-v11__top button {
        border: 0;
        background: transparent;
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
        cursor: pointer;
    }

    .nfcookie-v11 p {margin: 10px 0 0; color: #d1d5db;}

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

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

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

    @media (max-width: 760px) {
        .nfcookie-v11__card {max-width: none;}
    }

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

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

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

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

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

    .policy-layout-d .timeline {
        border-left: 3px solid var(--brand);
        padding-left: 14px;
        display: grid;
        gap: 12px;
    }

    .policy-layout-d article {
        position: relative;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-md);
        padding: 12px;
    }

    .policy-layout-d .meta {
        margin: 0;
        color: var(--brand);
        font-size: .9rem;
        font-weight: 600;
    }

    .policy-layout-d h3 {
        margin: 7px 0;
    }

    .policy-layout-d article p {
        margin: 0;
        color: var(--neutral-600);
    }

.site-header {
  background: var(--surface-1);
  border-bottom: 1px solid var(--border-on-surface);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
}
.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-y) var(--space-x);
  gap: var(--gap);
  position: relative;
}
.logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  letter-spacing: 0.02em;
  white-space: nowrap;
  flex-shrink: 0;
  order: 2;
}
.nav {
  display: flex;
  gap: var(--gap);
  align-items: center;
}
.nav-left {
  order: 1;
}
.nav-right {
  order: 3;
}
.nav-link {
  font-size: var(--font-size-base);
  color: var(--fg-on-surface);
  text-decoration: none;
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius-sm);
  transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  white-space: nowrap;
}
.nav-link:hover,
.nav-link:focus-visible {
  background: var(--btn-ghost-bg-hover);
  color: var(--link-hover);
  outline: none;
}
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: var(--radius-sm);
  order: 0;
  z-index: 10;
}
.burger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--fg-on-surface);
  border-radius: 2px;
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
.burger[aria-expanded="true"] .burger-line:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.burger[aria-expanded="true"] .burger-line:nth-child(2) {
  opacity: 0;
}
.burger[aria-expanded="true"] .burger-line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

@media (max-width: 767px) {
  .header-inner {
    flex-wrap: wrap;
    justify-content: center;
    padding: var(--space-y) var(--space-x);
  }
  .burger {
    display: flex;
    position: absolute;
    left: var(--space-x);
    top: 50%;
    transform: translateY(-50%);
  }
  .logo {
    order: 1;
    flex: 0 0 auto;
  }
  .nav {
    display: none;
    flex-direction: column;
    width: 100%;
    gap: 0.25rem;
    padding: 0.5rem 0;
    order: 3;
    background: var(--surface-1);
    border-top: 1px solid var(--border-on-surface);
  }
  .nav-left,
  .nav-right {
    align-items: center;
  }
  .nav-link {
    width: 100%;
    text-align: center;
    padding: 0.5rem 1rem;
  }
  .nav.open {
    display: flex;
  }
}

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 40px 20px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 30px;
  }
  .footer-col {
    flex: 1 1 280px;
    min-width: 200px;
  }
  .logo {
    font-size: 28px;
    font-weight: 700;
    color: #f5a623;
    margin-bottom: 10px;
  }
  .offer {
    font-size: 14px;
    line-height: 1.6;
    color: #b0b0b0;
  }
  nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0;
  }
  nav ul li {
    margin-bottom: 8px;
  }
  nav ul li a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
  }
  nav ul li a:hover {
    color: #f5a623;
  }
  .legal-links {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
  .legal-links a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s;
  }
  .legal-links a:hover {
    color: #f5a623;
  }
  .contact-info p {
    margin: 6px 0;
    font-size: 14px;
    line-height: 1.5;
  }
  .contact-info a {
    color: #f5a623;
    text-decoration: none;
  }
  .contact-info a:hover {
    text-decoration: underline;
  }
  .social-links {
    margin: 15px 0;
    display: flex;
    gap: 15px;
  }
  .social-links a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
  }
  .social-links a:hover {
    color: #f5a623;
  }
  .disclaimer {
    font-size: 12px;
    color: #888;
    line-height: 1.5;
    margin-top: 10px;
    border-top: 1px solid #333;
    padding-top: 10px;
  }
  .footer-bottom {
    text-align: center;
    margin-top: 30px;
    padding-top: 15px;
    border-top: 1px solid #333;
    font-size: 13px;
    color: #888;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-col {
      flex: 1 1 auto;
    }
    .legal-links {
      align-items: center;
    }
    .social-links {
      justify-content: center;
    }
  }

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

    .nfcookie-v11__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, .45), rgba(17, 24, 39, .95));
        color: var(--neutral-100);
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, .35);
    }

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

    .nfcookie-v11__top strong {font-size: 16px;}

    .nfcookie-v11__top button {
        border: 0;
        background: transparent;
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
        cursor: pointer;
    }

    .nfcookie-v11 p {margin: 10px 0 0; color: #d1d5db;}

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

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

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

    @media (max-width: 760px) {
        .nfcookie-v11__card {max-width: none;}
    }

.thank-mode-e {
        padding: clamp(58px, 10vw, 114px) 18px;
        background: repeating-linear-gradient(135deg, var(--bg-alt), var(--bg-alt) 16px, var(--neutral-0) 16px, var(--neutral-0) 32px);
        color: var(--fg-on-page);
    }

    .thank-mode-e .wrap {
        max-width: 720px;
        margin: 0 auto;
        text-align: center;
        padding: clamp(28px, 4vw, 42px);
        background: var(--surface-1);
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-md);
    }

    .thank-mode-e h1 {
        margin: 0;
        font-size: clamp(32px, 5vw, 52px);
    }

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

    .thank-mode-e a {
        display: inline-block;
        margin-top: 16px;
        padding: 9px 14px;
        border-radius: var(--radius-sm);
        text-decoration: none;
        border: 1px solid var(--border-on-surface);
        color: var(--fg-on-page);
    }

.site-header {
  background: var(--surface-1);
  border-bottom: 1px solid var(--border-on-surface);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
}
.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-y) var(--space-x);
  gap: var(--gap);
  position: relative;
}
.logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  letter-spacing: 0.02em;
  white-space: nowrap;
  flex-shrink: 0;
  order: 2;
}
.nav {
  display: flex;
  gap: var(--gap);
  align-items: center;
}
.nav-left {
  order: 1;
}
.nav-right {
  order: 3;
}
.nav-link {
  font-size: var(--font-size-base);
  color: var(--fg-on-surface);
  text-decoration: none;
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius-sm);
  transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  white-space: nowrap;
}
.nav-link:hover,
.nav-link:focus-visible {
  background: var(--btn-ghost-bg-hover);
  color: var(--link-hover);
  outline: none;
}
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: var(--radius-sm);
  order: 0;
  z-index: 10;
}
.burger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--fg-on-surface);
  border-radius: 2px;
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
.burger[aria-expanded="true"] .burger-line:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.burger[aria-expanded="true"] .burger-line:nth-child(2) {
  opacity: 0;
}
.burger[aria-expanded="true"] .burger-line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

@media (max-width: 767px) {
  .header-inner {
    flex-wrap: wrap;
    justify-content: center;
    padding: var(--space-y) var(--space-x);
  }
  .burger {
    display: flex;
    position: absolute;
    left: var(--space-x);
    top: 50%;
    transform: translateY(-50%);
  }
  .logo {
    order: 1;
    flex: 0 0 auto;
  }
  .nav {
    display: none;
    flex-direction: column;
    width: 100%;
    gap: 0.25rem;
    padding: 0.5rem 0;
    order: 3;
    background: var(--surface-1);
    border-top: 1px solid var(--border-on-surface);
  }
  .nav-left,
  .nav-right {
    align-items: center;
  }
  .nav-link {
    width: 100%;
    text-align: center;
    padding: 0.5rem 1rem;
  }
  .nav.open {
    display: flex;
  }
}

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 40px 20px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 30px;
  }
  .footer-col {
    flex: 1 1 280px;
    min-width: 200px;
  }
  .logo {
    font-size: 28px;
    font-weight: 700;
    color: #f5a623;
    margin-bottom: 10px;
  }
  .offer {
    font-size: 14px;
    line-height: 1.6;
    color: #b0b0b0;
  }
  nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0;
  }
  nav ul li {
    margin-bottom: 8px;
  }
  nav ul li a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
  }
  nav ul li a:hover {
    color: #f5a623;
  }
  .legal-links {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
  .legal-links a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s;
  }
  .legal-links a:hover {
    color: #f5a623;
  }
  .contact-info p {
    margin: 6px 0;
    font-size: 14px;
    line-height: 1.5;
  }
  .contact-info a {
    color: #f5a623;
    text-decoration: none;
  }
  .contact-info a:hover {
    text-decoration: underline;
  }
  .social-links {
    margin: 15px 0;
    display: flex;
    gap: 15px;
  }
  .social-links a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
  }
  .social-links a:hover {
    color: #f5a623;
  }
  .disclaimer {
    font-size: 12px;
    color: #888;
    line-height: 1.5;
    margin-top: 10px;
    border-top: 1px solid #333;
    padding-top: 10px;
  }
  .footer-bottom {
    text-align: center;
    margin-top: 30px;
    padding-top: 15px;
    border-top: 1px solid #333;
    font-size: 13px;
    color: #888;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-col {
      flex: 1 1 auto;
    }
    .legal-links {
      align-items: center;
    }
    .social-links {
      justify-content: center;
    }
  }

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

    .nfcookie-v11__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, .45), rgba(17, 24, 39, .95));
        color: var(--neutral-100);
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, .35);
    }

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

    .nfcookie-v11__top strong {font-size: 16px;}

    .nfcookie-v11__top button {
        border: 0;
        background: transparent;
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
        cursor: pointer;
    }

    .nfcookie-v11 p {margin: 10px 0 0; color: #d1d5db;}

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

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

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

    @media (max-width: 760px) {
        .nfcookie-v11__card {max-width: none;}
    }

.nf404-v11 {
        padding: clamp(56px, 10vw, 112px) 20px;
        background: linear-gradient(150deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
    }

    .nf404-v11__shell {
        max-width: 700px;
        margin: 0 auto;
        text-align: center;
        border-radius: var(--radius-xl);
        padding: clamp(28px, 4vw, 44px);
        background: rgba(15, 23, 42, .24);
        border: 1px solid rgba(255, 255, 255, .24);
    }

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

    .nf404-v11 p {
        margin: 12px 0 0;
        opacity: .9;
    }

    .nf404-v11 a {
        display: inline-block;
        margin-top: 18px;
        padding: 10px 16px;
        border-radius: var(--radius-sm);
        background: var(--neutral-0);
        color: var(--neutral-900);
        text-decoration: none;
    }