:root {
  --font-family: "Inter", sans-serif;
  --font-size-base: 13.7px;
  --line-height-base: 1.27;

  --max-w: 1140px;
  --space-x: 0.46rem;
  --space-y: 0.98rem;
  --gap: 0.5rem;

  --radius-xl: 0.83rem;
  --radius-lg: 0.47rem;
  --radius-md: 0.37rem;
  --radius-sm: 0.23rem;

  --shadow-sm: 0 0px 2px rgba(0,0,0,0.06);
  --shadow-md: 0 2px 8px rgba(0,0,0,0.07);
  --shadow-lg: 0 14px 18px rgba(0,0,0,0.09);

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

  --brand: #1E3A5F;
  --brand-contrast: #FFFFFF;
  --accent: #2B6CB0;
  --accent-contrast: #FFFFFF;

  --neutral-0: #FFFFFF;
  --neutral-100: #F7FAFC;
  --neutral-300: #CBD5E0;
  --neutral-600: #718096;
  --neutral-800: #2D3748;
  --neutral-900: #1A202C;

  --bg-page: #F0F4F8;
  --fg-on-page: #1A202C;

  --bg-alt: #E2E8F0;
  --fg-on-alt: #2D3748;

  --surface-1: #FFFFFF;
  --surface-2: #F7FAFC;
  --fg-on-surface: #1A202C;
  --border-on-surface: #CBD5E0;

  --surface-light: #FFFFFF;
  --fg-on-surface-light: #2D3748;
  --border-on-surface-light: #E2E8F0;

  --bg-primary: #2B6CB0;
  --fg-on-primary: #FFFFFF;
  --bg-primary-hover: #1A4A7A;
  --ring: #2B6CB0;

  --bg-accent: #EBF4FF;
  --fg-on-accent: #FFFFFF;
  --bg-accent-hover: #1A4A7A;

  --link: #2B6CB0;
  --link-hover: #1A4A7A;

  --gradient-hero: linear-gradient(135deg, #1E3A5F 0%, #2B6CB0 100%);
  --gradient-accent: linear-gradient(135deg, #2B6CB0 0%, #1A4A7A 100%);

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

header {
    background: var(--neutral-0);
    border-bottom: 1px solid var(--border-on-surface-light);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
  }
  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    letter-spacing: -0.02em;
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  .nav-menu ul {
    list-style: none;
    display: flex;
    gap: calc(var(--gap) * 1.5);
    margin: 0;
    padding: 0;
  }
  .nav-menu a {
    text-decoration: none;
    color: var(--neutral-800);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: 0.25rem 0;
    transition: color var(--anim-duration) var(--anim-ease);
    position: relative;
  }
  .nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width var(--anim-duration) var(--anim-ease);
  }
  .nav-menu a:hover {
    color: var(--accent);
  }
  .nav-menu a:hover::after {
    width: 100%;
  }
  .cta-button {
    display: inline-flex;
    align-items: center;
    background: var(--accent);
    color: var(--accent-contrast);
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    font-size: var(--font-size-base);
    transition: background var(--anim-duration) var(--anim-ease), transform var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }
  .cta-button:hover {
    background: var(--bg-accent-hover);
    transform: translateY(-1px);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    gap: 5px;
    z-index: 200;
  }
  .burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--neutral-900);
    border-radius: 2px;
    transition: all var(--anim-duration) var(--anim-ease);
  }
  .burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .burger.active span:nth-child(2) {
    opacity: 0;
  }
  .burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  @media (max-width: 767px) {
    .nav-menu {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100vh;
      background: var(--surface-1);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      visibility: hidden;
      transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
      z-index: 150;
    }
    .nav-menu.open {
      opacity: 1;
      visibility: visible;
    }
    .nav-menu ul {
      flex-direction: column;
      align-items: center;
      gap: calc(var(--gap) * 2);
    }
    .nav-menu a {
      font-size: 1.25rem;
      color: var(--neutral-900);
    }
    .cta-button {
      display: none;
    }
    .burger {
      display: flex;
    }
  }

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

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

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

    .cookie-lv16__meta {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .cookie-lv16__dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: var(--accent);
        box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 20%, transparent);
    }

    .cookie-lv16__shell p {
        margin: 8px 0 0;
        color: var(--fg-muted);
    }

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

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

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

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

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

    .intro-mosaic-c15__hero {
        flex: 1 1 24rem;
    }

    .intro-mosaic-c15__aside {
        flex: 1 1 18rem;
    }

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

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

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

    .intro-mosaic-c15__buttons {
        margin-top: 1.15rem;
        display: flex;
        gap: .75rem;
        flex-wrap: wrap;
    }

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

    .intro-mosaic-c15__btn--primary {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-color: var(--bg-accent-hover);
    }

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

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

    .intro-mosaic-c15__stats div {
        padding: .85rem;
        border-radius: var(--radius-md);
        background: rgba(255, 255, 255, .12);
        border: 1px solid rgba(255, 255, 255, .18);
    }

    .intro-mosaic-c15__stats strong, .intro-mosaic-c15__stats span {
        display: block;
    }

    .intro-mosaic-c15__stats span {
        margin-top: .25rem;
        color: rgba(255, 255, 255, .82);
    }

.about-struct-v1 {
        padding: calc(var(--space-y) * 2) var(--space-x);
        background: var(--surface-1);
        color: var(--fg-on-surface)
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.why-choose {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        padding: clamp(40px, 6vw, 80px) clamp(16px, 3vw, 40px);
    }

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

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

        transform: translateY(20px);
    }

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

    .why-choose .why-choose__subtitle {
        font-size: clamp(16px, 2vw, 20px);
        margin: 0;
        opacity: 0.9;
    }

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

    .why-choose .why-choose__item {
        background: var(--fg-on-primary);
        padding: clamp(20px, 3vw, 32px);
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-on-surface-light);
        transition: transform var(--anim-duration) var(--anim-ease);

        transform: translateY(30px);
    }

    .why-choose .why-choose__item:hover {
        transform: translateY(-4px);
    }

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

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

    .why-choose .why-choose__item p {
        margin: 0;
        color: var(--fg-on-surface-light);
        opacity: 0.85;
        line-height: var(--line-height-base);
    }

.nfsocial-v12 {
        padding: clamp(20px, 3vw, 44px);
        background: var(--bg-alt);
        color: var(--fg-on-alt);
    }

    .nfsocial-v12__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        gap: 12px;
    }

    .nfsocial-v12 h2 {
        margin: 0;
        font-size: clamp(24px, 4.2vw, 40px);
    }

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

    .nfsocial-v12__badges {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }

    .nfsocial-v12__badges span {
        display: inline-flex;
        align-items: center;
        padding: 7px 10px;
        border-radius: 999px;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border: 1px solid rgba(0, 0, 0, .06);
        font-weight: 700;
    }

    .nfsocial-v12__logos {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
        gap: 10px;
    }

    .nfsocial-v12__logos article {
        border-radius: var(--radius-md);
        border: 1px solid var(--border-on-surface);
        background: var(--surface-1);
        min-height: 96px;
        display: grid;
        place-items: center;
        gap: 6px;
        padding: 10px;
    }

    .nfsocial-v12__logos img {
        max-width: 80%;
        max-height: 42px;
    }

    .nfsocial-v12__logos strong {
        font-size: .9rem;
        color: var(--neutral-700, var(--neutral-600));
    }

.plans-cv2 {
        padding: clamp(54px, 7vw, 96px) clamp(16px, 4vw, 36px);
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
    }

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

    .plans-cv2__head {
        margin-bottom: 16px;
    }

    .plans-cv2__head h2 {
        margin: 0;
        font-size: clamp(30px, 5vw, 48px);
    }

    .plans-cv2__head p {
        margin: 8px 0 0;
        opacity: .92;
    }

    .plans-cv2__grid {
        display: grid;
        gap: var(--gap);
        grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    }

    .plans-cv2__card {
        border-radius: var(--radius-lg);
        border: 1px solid rgba(255, 255, 255, 0.28);
        background: rgba(255, 255, 255, 0.12);
        padding: var(--space-y) var(--space-x);
        transition: transform var(--anim-duration) var(--anim-ease), border-color var(--anim-duration) var(--anim-ease);
    }

    .plans-cv2__card.is-active {
        transform: translateY(-4px);
        border-color: var(--bg-accent);
    }

    .plans-cv2__line {
        display: flex;
        justify-content: space-between;
        gap: 8px;
        align-items: center;
    }

    .plans-cv2__line h3 {
        margin: 0;
    }

    .plans-cv2__line span {
        font-size: .82rem;
        padding: 4px 8px;
        border-radius: 999px;
        background: var(--chip-bg);
    }

    .plans-cv2__list p {
        margin: 10px 0 6px;
        opacity: .92;
    }

    .plans-cv2__card button {
        width: 100%;
        margin-top: 8px;
        border: 0;
        border-radius: var(--radius-sm);
        padding: 9px 12px;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
    }

header {
    background: var(--neutral-0);
    border-bottom: 1px solid var(--border-on-surface-light);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
  }
  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    letter-spacing: -0.02em;
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  .nav-menu ul {
    list-style: none;
    display: flex;
    gap: calc(var(--gap) * 1.5);
    margin: 0;
    padding: 0;
  }
  .nav-menu a {
    text-decoration: none;
    color: var(--neutral-800);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: 0.25rem 0;
    transition: color var(--anim-duration) var(--anim-ease);
    position: relative;
  }
  .nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width var(--anim-duration) var(--anim-ease);
  }
  .nav-menu a:hover {
    color: var(--accent);
  }
  .nav-menu a:hover::after {
    width: 100%;
  }
  .cta-button {
    display: inline-flex;
    align-items: center;
    background: var(--accent);
    color: var(--accent-contrast);
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    font-size: var(--font-size-base);
    transition: background var(--anim-duration) var(--anim-ease), transform var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }
  .cta-button:hover {
    background: var(--bg-accent-hover);
    transform: translateY(-1px);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    gap: 5px;
    z-index: 200;
  }
  .burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--neutral-900);
    border-radius: 2px;
    transition: all var(--anim-duration) var(--anim-ease);
  }
  .burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .burger.active span:nth-child(2) {
    opacity: 0;
  }
  .burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  @media (max-width: 767px) {
    .nav-menu {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100vh;
      background: var(--surface-1);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      visibility: hidden;
      transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
      z-index: 150;
    }
    .nav-menu.open {
      opacity: 1;
      visibility: visible;
    }
    .nav-menu ul {
      flex-direction: column;
      align-items: center;
      gap: calc(var(--gap) * 2);
    }
    .nav-menu a {
      font-size: 1.25rem;
      color: var(--neutral-900);
    }
    .cta-button {
      display: none;
    }
    .burger {
      display: flex;
    }
  }

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

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

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

    .cookie-lv16__meta {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .cookie-lv16__dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: var(--accent);
        box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 20%, transparent);
    }

    .cookie-lv16__shell p {
        margin: 8px 0 0;
        color: var(--fg-muted);
    }

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

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

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

.product-list {

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

body{margin:0;padding:0;font-family:var(--font-family);font-size:var(--font-size-base);line-height:var(--line-height-base);box-sizing:border-box;background:var(--bg-page);color:var(--fg-on-page)}
*{box-sizing:border-box;}
.rec-lx2{padding:calc(var(--space-y)*2.75) var(--space-x)}
.rec-lx2 .rec-shell{max-width:var(--max-w);margin:0 auto}
.rec-lx2 h2{margin:0;font-size:clamp(1.8rem,3.3vw,2.55rem)}
.rec-lx2 .rec-sub{margin:.4rem 0 1rem;color:var(--fg-on-surface-light)}
.rec-lx2 .rec-cards{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:.65rem}
.rec-lx2 article{padding:.95rem;border:1px solid var(--border-on-surface);border-radius:var(--radius-lg);background:var(--surface-1)}
.rec-lx2 h3{margin:0 0 .28rem}
.rec-lx2 article p{margin:0 0 .58rem;color:var(--fg-on-surface-light)}
.rec-lx2 a{text-decoration:none;color:var(--link);font-weight:700}
@media (max-width:930px){.rec-lx2 .rec-cards{grid-template-columns:1fr 1fr}}@media (max-width:620px){.rec-lx2 .rec-cards{grid-template-columns:1fr}}

header {
    background: var(--neutral-0);
    border-bottom: 1px solid var(--border-on-surface-light);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
  }
  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    letter-spacing: -0.02em;
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  .nav-menu ul {
    list-style: none;
    display: flex;
    gap: calc(var(--gap) * 1.5);
    margin: 0;
    padding: 0;
  }
  .nav-menu a {
    text-decoration: none;
    color: var(--neutral-800);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: 0.25rem 0;
    transition: color var(--anim-duration) var(--anim-ease);
    position: relative;
  }
  .nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width var(--anim-duration) var(--anim-ease);
  }
  .nav-menu a:hover {
    color: var(--accent);
  }
  .nav-menu a:hover::after {
    width: 100%;
  }
  .cta-button {
    display: inline-flex;
    align-items: center;
    background: var(--accent);
    color: var(--accent-contrast);
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    font-size: var(--font-size-base);
    transition: background var(--anim-duration) var(--anim-ease), transform var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }
  .cta-button:hover {
    background: var(--bg-accent-hover);
    transform: translateY(-1px);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    gap: 5px;
    z-index: 200;
  }
  .burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--neutral-900);
    border-radius: 2px;
    transition: all var(--anim-duration) var(--anim-ease);
  }
  .burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .burger.active span:nth-child(2) {
    opacity: 0;
  }
  .burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  @media (max-width: 767px) {
    .nav-menu {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100vh;
      background: var(--surface-1);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      visibility: hidden;
      transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
      z-index: 150;
    }
    .nav-menu.open {
      opacity: 1;
      visibility: visible;
    }
    .nav-menu ul {
      flex-direction: column;
      align-items: center;
      gap: calc(var(--gap) * 2);
    }
    .nav-menu a {
      font-size: 1.25rem;
      color: var(--neutral-900);
    }
    .cta-button {
      display: none;
    }
    .burger {
      display: flex;
    }
  }

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

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

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

    .cookie-lv16__meta {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .cookie-lv16__dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: var(--accent);
        box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 20%, transparent);
    }

    .cookie-lv16__shell p {
        margin: 8px 0 0;
        color: var(--fg-muted);
    }

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

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

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

.product-item {

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

header {
    background: var(--neutral-0);
    border-bottom: 1px solid var(--border-on-surface-light);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
  }
  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    letter-spacing: -0.02em;
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  .nav-menu ul {
    list-style: none;
    display: flex;
    gap: calc(var(--gap) * 1.5);
    margin: 0;
    padding: 0;
  }
  .nav-menu a {
    text-decoration: none;
    color: var(--neutral-800);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: 0.25rem 0;
    transition: color var(--anim-duration) var(--anim-ease);
    position: relative;
  }
  .nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width var(--anim-duration) var(--anim-ease);
  }
  .nav-menu a:hover {
    color: var(--accent);
  }
  .nav-menu a:hover::after {
    width: 100%;
  }
  .cta-button {
    display: inline-flex;
    align-items: center;
    background: var(--accent);
    color: var(--accent-contrast);
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    font-size: var(--font-size-base);
    transition: background var(--anim-duration) var(--anim-ease), transform var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }
  .cta-button:hover {
    background: var(--bg-accent-hover);
    transform: translateY(-1px);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    gap: 5px;
    z-index: 200;
  }
  .burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--neutral-900);
    border-radius: 2px;
    transition: all var(--anim-duration) var(--anim-ease);
  }
  .burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .burger.active span:nth-child(2) {
    opacity: 0;
  }
  .burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  @media (max-width: 767px) {
    .nav-menu {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100vh;
      background: var(--surface-1);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      visibility: hidden;
      transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
      z-index: 150;
    }
    .nav-menu.open {
      opacity: 1;
      visibility: visible;
    }
    .nav-menu ul {
      flex-direction: column;
      align-items: center;
      gap: calc(var(--gap) * 2);
    }
    .nav-menu a {
      font-size: 1.25rem;
      color: var(--neutral-900);
    }
    .cta-button {
      display: none;
    }
    .burger {
      display: flex;
    }
  }

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

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

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

    .cookie-lv16__meta {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .cookie-lv16__dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: var(--accent);
        box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 20%, transparent);
    }

    .cookie-lv16__shell p {
        margin: 8px 0 0;
        color: var(--fg-muted);
    }

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

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

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

.product-item--colored-v5 {

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

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

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

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

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

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

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

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

.product-item__sku {
    opacity: 0.9;
}

header {
    background: var(--neutral-0);
    border-bottom: 1px solid var(--border-on-surface-light);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
  }
  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    letter-spacing: -0.02em;
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  .nav-menu ul {
    list-style: none;
    display: flex;
    gap: calc(var(--gap) * 1.5);
    margin: 0;
    padding: 0;
  }
  .nav-menu a {
    text-decoration: none;
    color: var(--neutral-800);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: 0.25rem 0;
    transition: color var(--anim-duration) var(--anim-ease);
    position: relative;
  }
  .nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width var(--anim-duration) var(--anim-ease);
  }
  .nav-menu a:hover {
    color: var(--accent);
  }
  .nav-menu a:hover::after {
    width: 100%;
  }
  .cta-button {
    display: inline-flex;
    align-items: center;
    background: var(--accent);
    color: var(--accent-contrast);
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    font-size: var(--font-size-base);
    transition: background var(--anim-duration) var(--anim-ease), transform var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }
  .cta-button:hover {
    background: var(--bg-accent-hover);
    transform: translateY(-1px);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    gap: 5px;
    z-index: 200;
  }
  .burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--neutral-900);
    border-radius: 2px;
    transition: all var(--anim-duration) var(--anim-ease);
  }
  .burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .burger.active span:nth-child(2) {
    opacity: 0;
  }
  .burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  @media (max-width: 767px) {
    .nav-menu {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100vh;
      background: var(--surface-1);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      visibility: hidden;
      transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
      z-index: 150;
    }
    .nav-menu.open {
      opacity: 1;
      visibility: visible;
    }
    .nav-menu ul {
      flex-direction: column;
      align-items: center;
      gap: calc(var(--gap) * 2);
    }
    .nav-menu a {
      font-size: 1.25rem;
      color: var(--neutral-900);
    }
    .cta-button {
      display: none;
    }
    .burger {
      display: flex;
    }
  }

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

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

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

    .cookie-lv16__meta {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .cookie-lv16__dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: var(--accent);
        box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 20%, transparent);
    }

    .cookie-lv16__shell p {
        margin: 8px 0 0;
        color: var(--fg-muted);
    }

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

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

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

.product-item--light-v6 {
        padding: 40px 20px;
        background: var(--bg-page);
        color: var(--fg-on-page);
    }

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

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

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

header {
    background: var(--neutral-0);
    border-bottom: 1px solid var(--border-on-surface-light);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
  }
  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    letter-spacing: -0.02em;
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  .nav-menu ul {
    list-style: none;
    display: flex;
    gap: calc(var(--gap) * 1.5);
    margin: 0;
    padding: 0;
  }
  .nav-menu a {
    text-decoration: none;
    color: var(--neutral-800);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: 0.25rem 0;
    transition: color var(--anim-duration) var(--anim-ease);
    position: relative;
  }
  .nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width var(--anim-duration) var(--anim-ease);
  }
  .nav-menu a:hover {
    color: var(--accent);
  }
  .nav-menu a:hover::after {
    width: 100%;
  }
  .cta-button {
    display: inline-flex;
    align-items: center;
    background: var(--accent);
    color: var(--accent-contrast);
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    font-size: var(--font-size-base);
    transition: background var(--anim-duration) var(--anim-ease), transform var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }
  .cta-button:hover {
    background: var(--bg-accent-hover);
    transform: translateY(-1px);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    gap: 5px;
    z-index: 200;
  }
  .burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--neutral-900);
    border-radius: 2px;
    transition: all var(--anim-duration) var(--anim-ease);
  }
  .burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .burger.active span:nth-child(2) {
    opacity: 0;
  }
  .burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  @media (max-width: 767px) {
    .nav-menu {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100vh;
      background: var(--surface-1);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      visibility: hidden;
      transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
      z-index: 150;
    }
    .nav-menu.open {
      opacity: 1;
      visibility: visible;
    }
    .nav-menu ul {
      flex-direction: column;
      align-items: center;
      gap: calc(var(--gap) * 2);
    }
    .nav-menu a {
      font-size: 1.25rem;
      color: var(--neutral-900);
    }
    .cta-button {
      display: none;
    }
    .burger {
      display: flex;
    }
  }

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

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

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

    .cookie-lv16__meta {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .cookie-lv16__dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: var(--accent);
        box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 20%, transparent);
    }

    .cookie-lv16__shell p {
        margin: 8px 0 0;
        color: var(--fg-muted);
    }

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

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

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

body{margin:0;padding:0;font-family:var(--font-family);box-sizing:border-box;}
*{box-sizing:border-box;}
.form-u7{padding:calc(var(--space-y)*2.9) var(--space-x);background:var(--gradient-accent);color:var(--brand-contrast)} .form-u7 .shell{max-width:var(--max-w);margin:0 auto;display:grid;gap:var(--gap)} .form-u7 h2{margin:0;font-size:clamp(1.85rem,3.6vw,2.8rem);line-height:1.1} .form-u7 .sub{margin:.35rem 0 0;opacity:.9;} .form-u7 .panel,.form-u7 .box{padding:1.1rem;border-radius:var(--radius-xl);background:var(--chip-bg);border:1px solid var(--btn-ghost-bg-hover);box-shadow:var(--shadow-md)} .form-u7 form{display:grid;gap:.75rem} .form-u7 .field{display:grid;gap:.28rem} .form-u7 .field span{font-size:.82rem;font-weight:700;color:var(--fg-on-surface-light)} .form-u7 input,.form-u7 textarea{width:100%;padding:.8rem .85rem;border-radius:var(--radius-md);border:1px solid var(--border-on-surface-light);background:var(--surface-1);color:var(--fg-on-surface);font:inherit;outline:none;transition:border-color var(--anim-duration) var(--anim-ease),box-shadow var(--anim-duration) var(--anim-ease)} .form-u7 input:focus,.form-u7 textarea:focus{border-color:var(--ring);box-shadow:0 0 0 3px color-mix(in srgb,var(--ring) 22%, transparent)} .form-u7 textarea{min-height:120px;resize:vertical} .form-u7 button{padding:.82rem 1rem;border:0;border-radius:var(--radius-md);background:var(--bg-primary);color:var(--fg-on-primary);font-weight:700;cursor:pointer;transition:transform var(--anim-duration) var(--anim-ease),background var(--anim-duration) var(--anim-ease)} .form-u7 button:hover{transform:translateY(-1px);background:var(--bg-primary-hover)} .form-u7 .split{display:grid;grid-template-columns:1fr 1fr;gap:var(--gap)} .form-u7 .grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:.65rem} .form-u7 .line{padding:1rem;border-radius:var(--radius-lg);background:var(--chip-bg);border:1px solid var(--btn-ghost-bg-hover)} .form-u7 .bar{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:.65rem;padding:1rem;border-radius:var(--radius-lg);background:var(--chip-bg);border:1px solid var(--btn-ghost-bg-hover)} .form-u7 .stack{padding:1rem;border-radius:var(--radius-lg);background:var(--chip-bg);border:1px solid var(--btn-ghost-bg-hover)} .form-u7 .steps{display:flex;gap:.45rem;flex-wrap:wrap} .form-u7 .steps span{padding:.33rem .55rem;border-radius:var(--radius-sm);background:var(--chip-bg);border:1px solid var(--btn-ghost-bg-hover);font-size:.8rem} .form-u7 .agree{display:flex;align-items:center;gap:.45rem;font-size:.86rem} .form-u7 .media{display:grid;grid-template-columns:.9fr 1.1fr;gap:var(--gap)} .form-u7 .media img,.form-u7 .frame img{width:100%;height:100%;min-height:320px;object-fit:cover;border-radius:var(--radius-xl)} .form-u7 .frame{display:grid;grid-template-columns:1.1fr .9fr;gap:var(--gap)} .form-u7 .full{grid-column:1/-1} @media (max-width:860px){.form-u7 .split,.form-u7 .media,.form-u7 .frame{grid-template-columns:1fr} .form-u7 .grid,.form-u7 .bar{grid-template-columns:1fr}}

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

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

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

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

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

    .faq-layout-f .table {
        display: grid;
        gap: 10px;
    }

    .faq-layout-f .line {
        display: grid;
        grid-template-columns: .9fr 1.1fr;
        gap: 12px;
        padding: 12px;
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-md);
        background: var(--surface-1);
    }

    .faq-layout-f .q {
        font-weight: 600;
        color: var(--brand);
    }

    .faq-layout-f .a {
        color: var(--neutral-600);
    }

    @media (max-width: 780px) {
        .faq-layout-f .line {
            grid-template-columns: 1fr;
        }
    }

body{margin:0;padding:0;font-family:var(--font-family);box-sizing:border-box;}
*{box-sizing:border-box;}
.contacts-u9{padding:calc(var(--space-y)*2.9) var(--space-x);background:var(--bg-primary);color:var(--fg-on-primary)} .contacts-u9 .shell{max-width:var(--max-w);margin:0 auto;display:grid;gap:var(--gap)} .contacts-u9 h2{margin:0;font-size:clamp(1.85rem,3.6vw,2.8rem);line-height:1.1} .contacts-u9 .sub{margin:.35rem 0 0;opacity:.9;} .contacts-u9 article,.contacts-u9 li{padding:.85rem;border-radius:var(--radius-sm);background:var(--chip-bg);border:1px solid var(--btn-ghost-bg-hover);list-style:none} .contacts-u9 p{margin:0} .contacts-u9 a{text-decoration:none;color:inherit;font-weight:700} .contacts-u9 .media{display:grid;grid-template-columns:.95fr 1.05fr;gap:var(--gap)} .contacts-u9 .media img{width:100%;height:100%;min-height:280px;object-fit:cover;border-radius:var(--radius-xl)} .contacts-u9 .grid{display:grid;gap:.5rem;margin-top:.55rem} .contacts-u9 article{transition:transform var(--anim-duration) var(--anim-ease),box-shadow var(--anim-duration) var(--anim-ease)} .contacts-u9 article:hover{transform:translateY(-4px);box-shadow:var(--shadow-md)} @media (max-width:860px){.contacts-u9 .split,.contacts-u9 .media,.contacts-u9 .grid,.contacts-u9 .cards,.contacts-u9 .bento,.contacts-u9 .foot{grid-template-columns:1fr}}

header {
    background: var(--neutral-0);
    border-bottom: 1px solid var(--border-on-surface-light);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
  }
  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    letter-spacing: -0.02em;
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  .nav-menu ul {
    list-style: none;
    display: flex;
    gap: calc(var(--gap) * 1.5);
    margin: 0;
    padding: 0;
  }
  .nav-menu a {
    text-decoration: none;
    color: var(--neutral-800);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: 0.25rem 0;
    transition: color var(--anim-duration) var(--anim-ease);
    position: relative;
  }
  .nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width var(--anim-duration) var(--anim-ease);
  }
  .nav-menu a:hover {
    color: var(--accent);
  }
  .nav-menu a:hover::after {
    width: 100%;
  }
  .cta-button {
    display: inline-flex;
    align-items: center;
    background: var(--accent);
    color: var(--accent-contrast);
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    font-size: var(--font-size-base);
    transition: background var(--anim-duration) var(--anim-ease), transform var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }
  .cta-button:hover {
    background: var(--bg-accent-hover);
    transform: translateY(-1px);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    gap: 5px;
    z-index: 200;
  }
  .burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--neutral-900);
    border-radius: 2px;
    transition: all var(--anim-duration) var(--anim-ease);
  }
  .burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .burger.active span:nth-child(2) {
    opacity: 0;
  }
  .burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  @media (max-width: 767px) {
    .nav-menu {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100vh;
      background: var(--surface-1);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      visibility: hidden;
      transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
      z-index: 150;
    }
    .nav-menu.open {
      opacity: 1;
      visibility: visible;
    }
    .nav-menu ul {
      flex-direction: column;
      align-items: center;
      gap: calc(var(--gap) * 2);
    }
    .nav-menu a {
      font-size: 1.25rem;
      color: var(--neutral-900);
    }
    .cta-button {
      display: none;
    }
    .burger {
      display: flex;
    }
  }

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

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

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

    .cookie-lv16__meta {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .cookie-lv16__dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: var(--accent);
        box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 20%, transparent);
    }

    .cookie-lv16__shell p {
        margin: 8px 0 0;
        color: var(--fg-muted);
    }

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

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

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

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

header {
    background: var(--neutral-0);
    border-bottom: 1px solid var(--border-on-surface-light);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
  }
  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    letter-spacing: -0.02em;
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  .nav-menu ul {
    list-style: none;
    display: flex;
    gap: calc(var(--gap) * 1.5);
    margin: 0;
    padding: 0;
  }
  .nav-menu a {
    text-decoration: none;
    color: var(--neutral-800);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: 0.25rem 0;
    transition: color var(--anim-duration) var(--anim-ease);
    position: relative;
  }
  .nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width var(--anim-duration) var(--anim-ease);
  }
  .nav-menu a:hover {
    color: var(--accent);
  }
  .nav-menu a:hover::after {
    width: 100%;
  }
  .cta-button {
    display: inline-flex;
    align-items: center;
    background: var(--accent);
    color: var(--accent-contrast);
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    font-size: var(--font-size-base);
    transition: background var(--anim-duration) var(--anim-ease), transform var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }
  .cta-button:hover {
    background: var(--bg-accent-hover);
    transform: translateY(-1px);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    gap: 5px;
    z-index: 200;
  }
  .burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--neutral-900);
    border-radius: 2px;
    transition: all var(--anim-duration) var(--anim-ease);
  }
  .burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .burger.active span:nth-child(2) {
    opacity: 0;
  }
  .burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  @media (max-width: 767px) {
    .nav-menu {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100vh;
      background: var(--surface-1);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      visibility: hidden;
      transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
      z-index: 150;
    }
    .nav-menu.open {
      opacity: 1;
      visibility: visible;
    }
    .nav-menu ul {
      flex-direction: column;
      align-items: center;
      gap: calc(var(--gap) * 2);
    }
    .nav-menu a {
      font-size: 1.25rem;
      color: var(--neutral-900);
    }
    .cta-button {
      display: none;
    }
    .burger {
      display: flex;
    }
  }

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

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

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

    .cookie-lv16__meta {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .cookie-lv16__dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: var(--accent);
        box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 20%, transparent);
    }

    .cookie-lv16__shell p {
        margin: 8px 0 0;
        color: var(--fg-muted);
    }

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

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

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

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

header {
    background: var(--neutral-0);
    border-bottom: 1px solid var(--border-on-surface-light);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
  }
  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    letter-spacing: -0.02em;
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  .nav-menu ul {
    list-style: none;
    display: flex;
    gap: calc(var(--gap) * 1.5);
    margin: 0;
    padding: 0;
  }
  .nav-menu a {
    text-decoration: none;
    color: var(--neutral-800);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: 0.25rem 0;
    transition: color var(--anim-duration) var(--anim-ease);
    position: relative;
  }
  .nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width var(--anim-duration) var(--anim-ease);
  }
  .nav-menu a:hover {
    color: var(--accent);
  }
  .nav-menu a:hover::after {
    width: 100%;
  }
  .cta-button {
    display: inline-flex;
    align-items: center;
    background: var(--accent);
    color: var(--accent-contrast);
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    font-size: var(--font-size-base);
    transition: background var(--anim-duration) var(--anim-ease), transform var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }
  .cta-button:hover {
    background: var(--bg-accent-hover);
    transform: translateY(-1px);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    gap: 5px;
    z-index: 200;
  }
  .burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--neutral-900);
    border-radius: 2px;
    transition: all var(--anim-duration) var(--anim-ease);
  }
  .burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .burger.active span:nth-child(2) {
    opacity: 0;
  }
  .burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  @media (max-width: 767px) {
    .nav-menu {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100vh;
      background: var(--surface-1);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      visibility: hidden;
      transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
      z-index: 150;
    }
    .nav-menu.open {
      opacity: 1;
      visibility: visible;
    }
    .nav-menu ul {
      flex-direction: column;
      align-items: center;
      gap: calc(var(--gap) * 2);
    }
    .nav-menu a {
      font-size: 1.25rem;
      color: var(--neutral-900);
    }
    .cta-button {
      display: none;
    }
    .burger {
      display: flex;
    }
  }

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

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

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

    .cookie-lv16__meta {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .cookie-lv16__dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: var(--accent);
        box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 20%, transparent);
    }

    .cookie-lv16__shell p {
        margin: 8px 0 0;
        color: var(--fg-muted);
    }

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

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

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

body{margin:0;padding:0;font-family:var(--font-family);font-size:var(--font-size-base);line-height:var(--line-height-base);box-sizing:border-box;background:var(--bg-page);color:var(--fg-on-page)}
*{box-sizing:border-box;}
.thx-lx6{padding:calc(var(--space-y)*2.65) var(--space-x)}
.thx-lx6 .thx-grid{max-width:980px;margin:0 auto;display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:.62rem}
.thx-lx6 .thx-main{grid-column:1/-1;padding:1rem;border-radius:var(--radius-xl);background:var(--surface-1);border:1px solid var(--border-on-surface)}
.thx-lx6 h2{margin:0;font-size:clamp(1.78rem,3.3vw,2.52rem)}
.thx-lx6 .thx-main p{margin:.38rem 0 0;color:var(--fg-on-surface-light)}
.thx-lx6 article:not(.thx-main){padding:.88rem;border-radius:var(--radius-md);background:var(--surface-2);border:1px solid var(--border-on-surface)}
.thx-lx6 h3{margin:0 0 .22rem;font-size:1rem}
.thx-lx6 article p{margin:0;color:var(--fg-on-surface-light)}
@media (max-width:700px){.thx-lx6 .thx-grid{grid-template-columns:1fr}}

header {
    background: var(--neutral-0);
    border-bottom: 1px solid var(--border-on-surface-light);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
  }
  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    letter-spacing: -0.02em;
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  .nav-menu ul {
    list-style: none;
    display: flex;
    gap: calc(var(--gap) * 1.5);
    margin: 0;
    padding: 0;
  }
  .nav-menu a {
    text-decoration: none;
    color: var(--neutral-800);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: 0.25rem 0;
    transition: color var(--anim-duration) var(--anim-ease);
    position: relative;
  }
  .nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width var(--anim-duration) var(--anim-ease);
  }
  .nav-menu a:hover {
    color: var(--accent);
  }
  .nav-menu a:hover::after {
    width: 100%;
  }
  .cta-button {
    display: inline-flex;
    align-items: center;
    background: var(--accent);
    color: var(--accent-contrast);
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    font-size: var(--font-size-base);
    transition: background var(--anim-duration) var(--anim-ease), transform var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }
  .cta-button:hover {
    background: var(--bg-accent-hover);
    transform: translateY(-1px);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    gap: 5px;
    z-index: 200;
  }
  .burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--neutral-900);
    border-radius: 2px;
    transition: all var(--anim-duration) var(--anim-ease);
  }
  .burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .burger.active span:nth-child(2) {
    opacity: 0;
  }
  .burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  @media (max-width: 767px) {
    .nav-menu {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100vh;
      background: var(--surface-1);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      visibility: hidden;
      transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
      z-index: 150;
    }
    .nav-menu.open {
      opacity: 1;
      visibility: visible;
    }
    .nav-menu ul {
      flex-direction: column;
      align-items: center;
      gap: calc(var(--gap) * 2);
    }
    .nav-menu a {
      font-size: 1.25rem;
      color: var(--neutral-900);
    }
    .cta-button {
      display: none;
    }
    .burger {
      display: flex;
    }
  }

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

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

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

    .cookie-lv16__meta {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .cookie-lv16__dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: var(--accent);
        box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 20%, transparent);
    }

    .cookie-lv16__shell p {
        margin: 8px 0 0;
        color: var(--fg-muted);
    }

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

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

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

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

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

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

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

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