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

  --max-w: 1420px;
  --space-x: 1.65rem;
  --space-y: 1.5rem;
  --gap: 2.04rem;

  --radius-xl: 1.13rem;
  --radius-lg: 0.86rem;
  --radius-md: 0.57rem;
  --radius-sm: 0.36rem;

  --shadow-sm: 0 2px 5px rgba(0,0,0,0.15);
  --shadow-md: 0 10px 20px rgba(0,0,0,0.19);
  --shadow-lg: 0 30px 38px rgba(0,0,0,0.23);

  --overlay: rgba(0,0,0,0.5);
  --anim-duration: 180ms;
  --anim-ease: cubic-bezier(0.4,0,0.2,1);
  --random-number: 1;

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

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

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

  --bg-alt: #f9fafb;
  --fg-on-alt: #374151;

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

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

  --bg-primary: #1a3a5c;
  --fg-on-primary: #ffffff;
  --bg-primary-hover: #142d47;
  --ring: #d97706;

  --bg-accent: #fef3c7;
  --fg-on-accent: #1a1a1a;
  --bg-accent-hover: #b45309;

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

  --gradient-hero: linear-gradient(135deg, #1a3a5c 0%, #2a5a7a 100%);
  --gradient-accent: linear-gradient(135deg, #d97706 0%, #f59e0b 100%);

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

header {
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    position: relative;
    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: calc(var(--font-size-base) * 1.25);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.02em;
    line-height: 1.2;
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  .burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: var(--btn-ghost-bg);
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    padding: 10px;
    gap: 5px;
    transition: background var(--anim-duration) var(--anim-ease);
    z-index: 200;
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover);
  }
  .burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--fg-on-surface);
    border-radius: 2px;
    transition: all var(--anim-duration) var(--anim-ease);
  }
  .burger.active .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger.active .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  .nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background: var(--surface-2);
    box-shadow: var(--shadow-lg);
    transform: translateX(100%);
    transition: transform var(--anim-duration) var(--anim-ease);
    padding: calc(var(--space-y) * 2) var(--space-x);
    z-index: 150;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }
  .nav-menu.open {
    transform: translateX(0);
  }
  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--gap);
    width: 100%;
  }
  .nav-list li {
    margin: 0;
  }
  .nav-list a {
    display: block;
    padding: 0.5rem 0;
    font-size: var(--font-size-base);
    font-weight: 500;
    color: var(--fg-on-surface);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: color var(--anim-duration) var(--anim-ease), border-color var(--anim-duration) var(--anim-ease);
  }
  .nav-list a:hover,
  .nav-list a:focus-visible {
    color: var(--brand);
    border-bottom-color: var(--brand);
  }
  @media (min-width: 768px) {
    .burger {
      display: none;
    }
    .nav-menu {
      position: static;
      width: auto;
      height: auto;
      background: transparent;
      box-shadow: none;
      transform: none;
      padding: 0;
      flex-direction: row;
      align-items: center;
    }
    .nav-list {
      flex-direction: row;
      gap: calc(var(--gap) * 1.5);
    }
    .nav-list a {
      padding: 0.25rem 0;
      border-bottom: 2px solid transparent;
    }
  }
  /* overlay */
  .nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay);
    z-index: 140;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--anim-duration) var(--anim-ease);
  }
  .nav-overlay.visible {
    opacity: 1;
    pointer-events: auto;
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 40px 20px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
  }
  .footer-column {
    display: flex;
    flex-direction: column;
  }
  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f0a500;
    margin-bottom: 10px;
  }
  .offer-text {
    font-size: 0.95rem;
    color: #b0b0c0;
    margin: 0;
  }
  .footer-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 15px;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #f0a500;
  }
  .legal-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .legal-links a {
    color: #b0b0c0;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s;
  }
  .legal-links a:hover {
    color: #f0a500;
  }
  .contact-info p {
    margin: 0 0 5px;
    font-size: 0.95rem;
  }
  .contact-info a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
  }
  .contact-info a:hover {
    color: #f0a500;
  }
  .social-links {
    margin-top: 15px;
    display: flex;
    gap: 15px;
  }
  .social-links a {
    color: #b0b0c0;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s;
  }
  .social-links a:hover {
    color: #f0a500;
  }
  .disclaimer {
    font-size: 0.75rem;
    color: #888;
    margin-top: 15px;
    line-height: 1.4;
  }
  .footer-bottom {
    text-align: center;
    margin-top: 30px;
    padding-top: 15px;
    border-top: 1px solid #333;
    font-size: 0.85rem;
    color: #888;
  }
  .footer-bottom p {
    margin: 0;
  }
  @media (max-width: 768px) {
    .footer-container {
      grid-template-columns: 1fr;
      gap: 25px;
    }
    .footer-column {
      text-align: center;
    }
    .footer-nav {
      align-items: center;
    }
    .legal-links {
      align-items: center;
    }
    .social-links {
      justify-content: center;
    }
  }

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

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

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

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

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

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

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

.intro-stack-l12 {
        padding: clamp(3.6rem, 8vw, 6.5rem) var(--space-x);
        background: var(--bg-alt);
        color: var(--fg-on-page);
    }

    .intro-stack-l12__wrap {
        max-width: 58rem;
        margin: 0 auto;
    }

    .intro-stack-l12__hero {
        text-align: center;
    }

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

    .intro-stack-l12__hero h1 {
        margin: .6rem 0 0;
        font-size: clamp(2.4rem, 5vw, 4.2rem);
        line-height: 1.04;
    }

    .intro-stack-l12__hero strong {
        display: block;
        margin-top: .7rem;
    }

    .intro-stack-l12__panels {
        margin-top: 1.15rem;
        display: grid;
        gap: .8rem;
    }

    .intro-stack-l12__panels article {
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface-light);
        color: var(--neutral-600);
    }

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

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

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

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

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

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

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

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

    }

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

.why-choose {

        padding: clamp(16px, 3vw, 44px);
    }

    .why-choose--light.why-choose--v2 {
        background: var(--fg-on-primary);
        color: var(--bg-primary);
    }

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

    .why-choose__wrap {
        border-radius: var(--radius-xl);
        padding: clamp(16px, 2.6vw, 26px);
        background: var(--bg-alt);
        border: 1px solid var(--neutral-300);
        box-shadow: var(--shadow-md);
    }

    .why-choose__h {
        margin-bottom: clamp(14px, 2vw, 22px);
    }

    .why-choose__pill {
        display: inline-flex;
        padding: 7px 12px;
        border-radius: 999px;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-sm);
        margin-bottom: 12px;
        font-size: 0.9rem;
    }

    .why-choose__title {
        margin: 0;
        font-size: clamp(24px, 4.2vw, 40px);
        line-height: 1.1;
        color: var(--bg-primary);
        letter-spacing: -0.02em;
    }

    .why-choose__subtitle {
        margin: 10px 0 0;
        color: var(--neutral-600);
        max-width: 70ch;
    }

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

    .why-choose__card {
        grid-column: span 6;
        border-radius: var(--radius-xl);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-sm);
        overflow: hidden;
        transform: perspective(900px) rotateX(0) rotateY(0) translateY(0);
        transition: transform 180ms var(--anim-ease),
        box-shadow 180ms var(--anim-ease),
        border-color 180ms var(--anim-ease);
        will-change: transform;
        position: relative;
    }

    .why-choose__cardHead {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 14px 16px;
        background: rgba(0, 0, 0, 0.03);
        border-bottom: 1px solid var(--border-on-surface);
    }

    .why-choose__num {
        width: 36px;
        height: 36px;
        border-radius: 12px;
        display: grid;
        place-items: center;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        font-weight: 700;
    }

    .why-choose__mini {
        color: var(--neutral-600);
        font-size: 0.9rem;
    }

    .why-choose__cardBody {
        padding: 14px 16px;
    }

    .why-choose__cardTitle {
        margin: 0 0 8px;
        color: var(--bg-primary);
        font-size: clamp(18px, 2.2vw, 20px);
    }

    .why-choose__cardText {
        margin: 0;
        color: var(--neutral-600);
        line-height: var(--line-height-base);
    }

    @media (max-width: 860px) {
        .why-choose__card {
            grid-column: span 12;
        }
    }

    @media (prefers-reduced-motion: reduce) {
        .why-choose__card {
            transition: none;
            transform: none;
        }
    }

.plans-ux4{padding:clamp(50px,7vw,92px) clamp(16px,4vw,36px);background:var(--bg-primary);color:var(--fg-on-primary)}.plans-ux4__wrap{max-width:var(--max-w);margin:0 auto}.plans-ux4__head p{margin:8px 0 12px;color:rgba(255,255,255,.86)}.plans-ux4__stack{display:grid;gap:10px}.plans-ux4__stack article{border:1px solid rgba(255,255,255,.28);border-radius:var(--radius-md);background:rgba(255,255,255,.1);padding:12px}.plans-ux4__line{display:flex;justify-content:space-between;gap:8px}.plans-ux4__line span{font-size:.84rem}.plans-ux4__stack p{margin:7px 0}.plans-ux4__chips{display:flex;flex-wrap:wrap;gap:6px}.plans-ux4__chips i{font-style:normal;border:1px solid rgba(255,255,255,.3);border-radius:999px;padding:4px 8px}.plans-ux4 button{margin-top:8px;background:var(--bg-accent);color:var(--fg-on-accent);border:0;border-radius:var(--radius-sm);padding:8px 10px}

.visual-column-l6 {
        padding: clamp(3.1rem, 7vw, 5.7rem) var(--space-x);
        background: linear-gradient(180deg, var(--surface-1), var(--bg-alt));
        color: var(--fg-on-page);
    }

    .visual-column-l6__wrap {
        max-width: 62rem;
        margin: 0 auto;
    }

    .visual-column-l6__head {
        margin-bottom: 1rem;
    }

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

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

    .visual-column-l6__list {
        display: grid;
        gap: .8rem;
    }

    .visual-column-l6__list article {
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface-light);
    }

    .visual-column-l6__meta {
        display: flex;
        justify-content: space-between;
        gap: .75rem;
        align-items: center;
        margin-bottom: .8rem;
    }

    .visual-column-l6__meta span {
        color: var(--neutral-600);
    }

    .visual-column-l6__content {
        display: grid;
        grid-template-columns: 13rem 1fr;
        gap: 1rem;
        align-items: center;
    }

    .visual-column-l6__content img {
        display: block;
        width: 100%;
        height: 10rem;
        object-fit: cover;
        border-radius: var(--radius-md);
    }

    .visual-column-l6__content small {
        color: var(--neutral-600);
    }

    .visual-column-l6__content h3 {
        margin: .45rem 0 .35rem;
    }

    .visual-column-l6__content p {
        margin: 0;
        color: var(--neutral-600);
    }

    @media (max-width: 680px) {
        .visual-column-l6__content {
            grid-template-columns: 1fr;
        }
    }

header {
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    position: relative;
    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: calc(var(--font-size-base) * 1.25);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.02em;
    line-height: 1.2;
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  .burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: var(--btn-ghost-bg);
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    padding: 10px;
    gap: 5px;
    transition: background var(--anim-duration) var(--anim-ease);
    z-index: 200;
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover);
  }
  .burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--fg-on-surface);
    border-radius: 2px;
    transition: all var(--anim-duration) var(--anim-ease);
  }
  .burger.active .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger.active .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  .nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background: var(--surface-2);
    box-shadow: var(--shadow-lg);
    transform: translateX(100%);
    transition: transform var(--anim-duration) var(--anim-ease);
    padding: calc(var(--space-y) * 2) var(--space-x);
    z-index: 150;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }
  .nav-menu.open {
    transform: translateX(0);
  }
  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--gap);
    width: 100%;
  }
  .nav-list li {
    margin: 0;
  }
  .nav-list a {
    display: block;
    padding: 0.5rem 0;
    font-size: var(--font-size-base);
    font-weight: 500;
    color: var(--fg-on-surface);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: color var(--anim-duration) var(--anim-ease), border-color var(--anim-duration) var(--anim-ease);
  }
  .nav-list a:hover,
  .nav-list a:focus-visible {
    color: var(--brand);
    border-bottom-color: var(--brand);
  }
  @media (min-width: 768px) {
    .burger {
      display: none;
    }
    .nav-menu {
      position: static;
      width: auto;
      height: auto;
      background: transparent;
      box-shadow: none;
      transform: none;
      padding: 0;
      flex-direction: row;
      align-items: center;
    }
    .nav-list {
      flex-direction: row;
      gap: calc(var(--gap) * 1.5);
    }
    .nav-list a {
      padding: 0.25rem 0;
      border-bottom: 2px solid transparent;
    }
  }
  /* overlay */
  .nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay);
    z-index: 140;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--anim-duration) var(--anim-ease);
  }
  .nav-overlay.visible {
    opacity: 1;
    pointer-events: auto;
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 40px 20px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
  }
  .footer-column {
    display: flex;
    flex-direction: column;
  }
  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f0a500;
    margin-bottom: 10px;
  }
  .offer-text {
    font-size: 0.95rem;
    color: #b0b0c0;
    margin: 0;
  }
  .footer-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 15px;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #f0a500;
  }
  .legal-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .legal-links a {
    color: #b0b0c0;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s;
  }
  .legal-links a:hover {
    color: #f0a500;
  }
  .contact-info p {
    margin: 0 0 5px;
    font-size: 0.95rem;
  }
  .contact-info a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
  }
  .contact-info a:hover {
    color: #f0a500;
  }
  .social-links {
    margin-top: 15px;
    display: flex;
    gap: 15px;
  }
  .social-links a {
    color: #b0b0c0;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s;
  }
  .social-links a:hover {
    color: #f0a500;
  }
  .disclaimer {
    font-size: 0.75rem;
    color: #888;
    margin-top: 15px;
    line-height: 1.4;
  }
  .footer-bottom {
    text-align: center;
    margin-top: 30px;
    padding-top: 15px;
    border-top: 1px solid #333;
    font-size: 0.85rem;
    color: #888;
  }
  .footer-bottom p {
    margin: 0;
  }
  @media (max-width: 768px) {
    .footer-container {
      grid-template-columns: 1fr;
      gap: 25px;
    }
    .footer-column {
      text-align: center;
    }
    .footer-nav {
      align-items: center;
    }
    .legal-links {
      align-items: center;
    }
    .social-links {
      justify-content: center;
    }
  }

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

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

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

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

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

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

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

.product-list {

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

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

    .product-list .product-list__h {
        text-align: center;
        margin-bottom: clamp(24px, 4vw, 40px);
    }

    .product-list h1 {
        font-size: clamp(28px, 5vw, 48px);
        margin: 0 0 0.5rem;
        color: var(--fg-on-page);
        font-weight: 700;
    }

    .product-list .product-list__h p {
        font-size: clamp(16px, 2.2vw, 18px);
        color: var(--neutral-600);
        margin: 0;
    }

    .product-list .product-list__toolbar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: clamp(24px, 4vw, 40px);
        gap: 1.5rem;
        flex-wrap: wrap;
    }

    .product-list .product-list__filters {
        display: flex;
        gap: 0.5rem;
        flex-wrap: wrap;
        flex: 1;
    }

    /* Если randomNumber четное (2) - первый ребенок получает order: 2 */
    .product-list .product-list__filters > *:first-child {
        order: calc((var(--random-number) % 2) * 2);
    }

    .product-list .product-list__filter {
        padding: 0.5rem 1rem;
        border-radius: var(--radius-md);
        border: 1px solid var(--ring);
        background: var(--bg-page);
        color: var(--fg-on-page);
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
        font-size: 0.875rem;
    }

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

    .product-list .product-list__view-toggle {
        display: flex;
        gap: 0.5rem;
        border: 1px solid var(--ring);
        border-radius: var(--radius-md);
        padding: 0.25rem;
        background: var(--bg-page);
    }

    .product-list .product-list__view-btn {
        padding: 0.5rem 0.75rem;
        border: none;
        background: transparent;
        color: var(--neutral-600);
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
        border-radius: var(--radius-sm);
        font-size: 1.125rem;
    }

    .product-list .product-list__view-btn.active {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
    }

    .product-list .product-list__container {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: clamp(16px, 2.5vw, 24px);
    }

    /* Если randomNumber четное (2) - первый ребенок получает order: 2 */
    .product-list .product-list__container > *:first-child {
        order: calc((var(--random-number) % 2) * 2);
    }

    .product-list .product-list__card {
        background: var(--surface-light);
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        overflow: hidden;
        box-shadow: var(--shadow-sm);
        transition: all var(--anim-duration) var(--anim-ease);
        display: flex;
        flex-direction: column;
    }

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

    .product-list .product-list__image-container {
        position: relative;
        width: 100%;
        height: 200px;
        overflow: hidden;
        background: var(--bg-alt);
    }

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

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

    .product-list .product-list__overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.6);
        display: flex;
        align-items: center;
        justify-content: center;

        transition: opacity var(--anim-duration) var(--anim-ease);
    }

    .product-list .product-list__card:hover .product-list__overlay {
        opacity: 1;
    }

    .product-list .product-list__quick-view {
        padding: 0.75rem 1.5rem;
        background: var(--bg-page);
        color: var(--fg-on-page);
        text-decoration: none;
        border-radius: var(--radius-md);
        font-weight: 600;
        transform: translateY(10px);
        transition: transform var(--anim-duration) var(--anim-ease);
    }

    .product-list .product-list__card:hover .product-list__quick-view {
        transform: translateY(0);
    }

    .product-list .product-list__content {
        padding: clamp(16px, 2vw, 20px);
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        flex: 1;
    }

    .product-list .product-list__header {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .product-list h3 {
        margin: 0;
        font-size: clamp(16px, 2vw, 18px);
        color: var(--fg-on-page);
        font-weight: 600;
        flex: 1;
        line-height: 1.4;
    }

    .product-list .product-list__wishlist {
        width: 32px;
        height: 32px;
        border: 1px solid var(--ring);
        border-radius: 50%;
        background: var(--bg-page);
        color: var(--neutral-600);
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .product-list .product-list__wishlist:hover {
        border-color: var(--bg-primary);
        color: var(--bg-primary);
        transform: scale(1.1);
    }

    .product-list .product-list__footer {
        display: flex;
        gap: 0.5rem;
        margin-top: auto;
    }

    .product-list .product-list__btn {
        flex: 1;
        padding: 0.625rem 1rem;
        border-radius: var(--radius-md);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        text-decoration: none;
        transition: all var(--anim-duration) var(--anim-ease);
        font-weight: 600;
        font-size: 0.875rem;
        text-align: center;
    }

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

    .product-list .product-list__cart-btn {
        width: 40px;
        height: 40px;
        border: 1px solid var(--ring);
        border-radius: var(--radius-md);
        background: var(--bg-page);
        color: var(--fg-on-page);
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
        font-size: 1.25rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .product-list .product-list__cart-btn:hover {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border-color: var(--bg-primary);
        transform: scale(1.1);
    }

    @media (max-width: 767px) {
        .product-list .product-list__container {
            grid-template-columns: repeat(2, 1fr);
            gap: clamp(12px, 2vw, 16px);
        }

        .product-list .product-list__image-container {
            height: 160px;
        }
    }

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

.cap-lx1{padding:calc(var(--space-y)*2.6) var(--space-x)}
.cap-lx1 .cap-wrap{max-width:var(--max-w);margin:0 auto;display:grid;gap:calc(var(--gap)*1.2)}
.cap-lx1 .cap-top h2{margin:0;font-size:clamp(1.8rem,3.5vw,2.7rem)}
.cap-lx1 .cap-top p{margin:.45rem 0 0;color:var(--fg-on-surface-light);max-width:56ch}
.cap-lx1 .cap-rows{display:grid;gap:.72rem}
.cap-lx1 .cap-row{display:grid;grid-template-columns:190px 1fr auto;gap:.9rem;align-items:center;padding:.95rem;border:1px solid var(--border-on-surface);background:var(--surface-1);border-radius:var(--radius-lg)}
.cap-lx1 .cap-meta{display:grid;gap:.2rem}
.cap-lx1 .cap-meta span{font-size:.8rem;color:var(--fg-on-surface-light)}
.cap-lx1 .cap-meta strong{font-size:1.2rem}
.cap-lx1 h3{margin:0 0 .2rem}
.cap-lx1 .cap-main p{margin:0;color:var(--fg-on-surface-light)}
.cap-lx1 a{justify-self:end;text-decoration:none;color:var(--link);font-weight:700}
.cap-lx1 a:hover{color:var(--link-hover)}
@media (max-width:780px){.cap-lx1 .cap-row{grid-template-columns:1fr}.cap-lx1 a{justify-self:start}}

header {
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    position: relative;
    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: calc(var(--font-size-base) * 1.25);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.02em;
    line-height: 1.2;
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  .burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: var(--btn-ghost-bg);
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    padding: 10px;
    gap: 5px;
    transition: background var(--anim-duration) var(--anim-ease);
    z-index: 200;
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover);
  }
  .burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--fg-on-surface);
    border-radius: 2px;
    transition: all var(--anim-duration) var(--anim-ease);
  }
  .burger.active .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger.active .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  .nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background: var(--surface-2);
    box-shadow: var(--shadow-lg);
    transform: translateX(100%);
    transition: transform var(--anim-duration) var(--anim-ease);
    padding: calc(var(--space-y) * 2) var(--space-x);
    z-index: 150;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }
  .nav-menu.open {
    transform: translateX(0);
  }
  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--gap);
    width: 100%;
  }
  .nav-list li {
    margin: 0;
  }
  .nav-list a {
    display: block;
    padding: 0.5rem 0;
    font-size: var(--font-size-base);
    font-weight: 500;
    color: var(--fg-on-surface);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: color var(--anim-duration) var(--anim-ease), border-color var(--anim-duration) var(--anim-ease);
  }
  .nav-list a:hover,
  .nav-list a:focus-visible {
    color: var(--brand);
    border-bottom-color: var(--brand);
  }
  @media (min-width: 768px) {
    .burger {
      display: none;
    }
    .nav-menu {
      position: static;
      width: auto;
      height: auto;
      background: transparent;
      box-shadow: none;
      transform: none;
      padding: 0;
      flex-direction: row;
      align-items: center;
    }
    .nav-list {
      flex-direction: row;
      gap: calc(var(--gap) * 1.5);
    }
    .nav-list a {
      padding: 0.25rem 0;
      border-bottom: 2px solid transparent;
    }
  }
  /* overlay */
  .nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay);
    z-index: 140;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--anim-duration) var(--anim-ease);
  }
  .nav-overlay.visible {
    opacity: 1;
    pointer-events: auto;
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 40px 20px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
  }
  .footer-column {
    display: flex;
    flex-direction: column;
  }
  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f0a500;
    margin-bottom: 10px;
  }
  .offer-text {
    font-size: 0.95rem;
    color: #b0b0c0;
    margin: 0;
  }
  .footer-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 15px;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #f0a500;
  }
  .legal-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .legal-links a {
    color: #b0b0c0;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s;
  }
  .legal-links a:hover {
    color: #f0a500;
  }
  .contact-info p {
    margin: 0 0 5px;
    font-size: 0.95rem;
  }
  .contact-info a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
  }
  .contact-info a:hover {
    color: #f0a500;
  }
  .social-links {
    margin-top: 15px;
    display: flex;
    gap: 15px;
  }
  .social-links a {
    color: #b0b0c0;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s;
  }
  .social-links a:hover {
    color: #f0a500;
  }
  .disclaimer {
    font-size: 0.75rem;
    color: #888;
    margin-top: 15px;
    line-height: 1.4;
  }
  .footer-bottom {
    text-align: center;
    margin-top: 30px;
    padding-top: 15px;
    border-top: 1px solid #333;
    font-size: 0.85rem;
    color: #888;
  }
  .footer-bottom p {
    margin: 0;
  }
  @media (max-width: 768px) {
    .footer-container {
      grid-template-columns: 1fr;
      gap: 25px;
    }
    .footer-column {
      text-align: center;
    }
    .footer-nav {
      align-items: center;
    }
    .legal-links {
      align-items: center;
    }
    .social-links {
      justify-content: center;
    }
  }

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

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

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

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

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

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

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

.product-item {

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

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

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

        /* Если randomNumber четное (2) - первый ребенок получает order: 2 */
        .product-item .product-item__c > *:first-child {
            order: calc((var(--random-number) % 2) * 2);
        }
    }

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

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

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

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

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

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

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

    /* Если randomNumber четное (2) - первый ребенок получает order: 2 */
    .product-item .product-item__actions > *:first-child {
        order: calc((var(--random-number) % 2) * 2);
    }

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

    .product-item .product-item__add-cart {
        background: var(--bg-primary);
        color: var(--fg-on-primary) 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(--gradient-hero);
        color: var(--fg-on-primary);
        border: 1px solid var(--ring);
    }

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

.social-l2 {

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

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

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

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

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

    .social-l2__wrap {
        border-radius: var(--radius-xl);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-lg);
        overflow: hidden;
    }

    .social-l2__quoteBox {
        padding: 18px;
        border-bottom: 1px solid var(--border-on-surface);
        position: relative;
    }

    .social-l2__quote {
        display: none;
    }

    .social-l2__quote.is-on {
        display: block;
    }

    .social-l2__q {
        font-size: clamp(16px, 2.2vw, 20px);
        line-height: 1.7;
        color: var(--fg-on-page);
        letter-spacing: -.01em;
    }

    .social-l2__m {
        margin-top: 12px;
        color: var(--neutral-600);
        font-weight: 800;
    }

    .social-l2__badges {
        overflow: hidden;
        background: var(--bg-alt);
    }

    .social-l2__badgeTrack {
        display: flex;
        gap: 10px;
        padding: 12px;
        width: max-content;
        animation: socialL2Badges 16s linear infinite;
    }

    @keyframes socialL2Badges {
        0% {
            transform: translateX(0)
        }
        100% {
            transform: translateX(-50%)
        }
    }

    .social-l2__badge {
        display: inline-flex;
        align-items: center;
        padding: 8px 12px;
        border-radius: 999px;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border: 1px solid rgba(0, 0, 0, 0.06);
        font-weight: 900;
        white-space: nowrap;
    }

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

header {
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    position: relative;
    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: calc(var(--font-size-base) * 1.25);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.02em;
    line-height: 1.2;
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  .burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: var(--btn-ghost-bg);
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    padding: 10px;
    gap: 5px;
    transition: background var(--anim-duration) var(--anim-ease);
    z-index: 200;
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover);
  }
  .burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--fg-on-surface);
    border-radius: 2px;
    transition: all var(--anim-duration) var(--anim-ease);
  }
  .burger.active .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger.active .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  .nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background: var(--surface-2);
    box-shadow: var(--shadow-lg);
    transform: translateX(100%);
    transition: transform var(--anim-duration) var(--anim-ease);
    padding: calc(var(--space-y) * 2) var(--space-x);
    z-index: 150;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }
  .nav-menu.open {
    transform: translateX(0);
  }
  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--gap);
    width: 100%;
  }
  .nav-list li {
    margin: 0;
  }
  .nav-list a {
    display: block;
    padding: 0.5rem 0;
    font-size: var(--font-size-base);
    font-weight: 500;
    color: var(--fg-on-surface);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: color var(--anim-duration) var(--anim-ease), border-color var(--anim-duration) var(--anim-ease);
  }
  .nav-list a:hover,
  .nav-list a:focus-visible {
    color: var(--brand);
    border-bottom-color: var(--brand);
  }
  @media (min-width: 768px) {
    .burger {
      display: none;
    }
    .nav-menu {
      position: static;
      width: auto;
      height: auto;
      background: transparent;
      box-shadow: none;
      transform: none;
      padding: 0;
      flex-direction: row;
      align-items: center;
    }
    .nav-list {
      flex-direction: row;
      gap: calc(var(--gap) * 1.5);
    }
    .nav-list a {
      padding: 0.25rem 0;
      border-bottom: 2px solid transparent;
    }
  }
  /* overlay */
  .nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay);
    z-index: 140;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--anim-duration) var(--anim-ease);
  }
  .nav-overlay.visible {
    opacity: 1;
    pointer-events: auto;
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 40px 20px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
  }
  .footer-column {
    display: flex;
    flex-direction: column;
  }
  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f0a500;
    margin-bottom: 10px;
  }
  .offer-text {
    font-size: 0.95rem;
    color: #b0b0c0;
    margin: 0;
  }
  .footer-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 15px;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #f0a500;
  }
  .legal-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .legal-links a {
    color: #b0b0c0;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s;
  }
  .legal-links a:hover {
    color: #f0a500;
  }
  .contact-info p {
    margin: 0 0 5px;
    font-size: 0.95rem;
  }
  .contact-info a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
  }
  .contact-info a:hover {
    color: #f0a500;
  }
  .social-links {
    margin-top: 15px;
    display: flex;
    gap: 15px;
  }
  .social-links a {
    color: #b0b0c0;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s;
  }
  .social-links a:hover {
    color: #f0a500;
  }
  .disclaimer {
    font-size: 0.75rem;
    color: #888;
    margin-top: 15px;
    line-height: 1.4;
  }
  .footer-bottom {
    text-align: center;
    margin-top: 30px;
    padding-top: 15px;
    border-top: 1px solid #333;
    font-size: 0.85rem;
    color: #888;
  }
  .footer-bottom p {
    margin: 0;
  }
  @media (max-width: 768px) {
    .footer-container {
      grid-template-columns: 1fr;
      gap: 25px;
    }
    .footer-column {
      text-align: center;
    }
    .footer-nav {
      align-items: center;
    }
    .legal-links {
      align-items: center;
    }
    .social-links {
      justify-content: center;
    }
  }

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

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

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

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

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

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

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

.product-item {

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

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

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

        /* Если randomNumber четное (2) - первый ребенок получает 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;
    }

    /* Если randomNumber четное (2) - первый ребенок получает order: 2 */
    .product-item .product-item__actions > *:first-child {
        order: calc((var(--random-number) % 2) * 2);
    }

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

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

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

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

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

header {
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    position: relative;
    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: calc(var(--font-size-base) * 1.25);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.02em;
    line-height: 1.2;
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  .burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: var(--btn-ghost-bg);
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    padding: 10px;
    gap: 5px;
    transition: background var(--anim-duration) var(--anim-ease);
    z-index: 200;
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover);
  }
  .burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--fg-on-surface);
    border-radius: 2px;
    transition: all var(--anim-duration) var(--anim-ease);
  }
  .burger.active .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger.active .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  .nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background: var(--surface-2);
    box-shadow: var(--shadow-lg);
    transform: translateX(100%);
    transition: transform var(--anim-duration) var(--anim-ease);
    padding: calc(var(--space-y) * 2) var(--space-x);
    z-index: 150;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }
  .nav-menu.open {
    transform: translateX(0);
  }
  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--gap);
    width: 100%;
  }
  .nav-list li {
    margin: 0;
  }
  .nav-list a {
    display: block;
    padding: 0.5rem 0;
    font-size: var(--font-size-base);
    font-weight: 500;
    color: var(--fg-on-surface);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: color var(--anim-duration) var(--anim-ease), border-color var(--anim-duration) var(--anim-ease);
  }
  .nav-list a:hover,
  .nav-list a:focus-visible {
    color: var(--brand);
    border-bottom-color: var(--brand);
  }
  @media (min-width: 768px) {
    .burger {
      display: none;
    }
    .nav-menu {
      position: static;
      width: auto;
      height: auto;
      background: transparent;
      box-shadow: none;
      transform: none;
      padding: 0;
      flex-direction: row;
      align-items: center;
    }
    .nav-list {
      flex-direction: row;
      gap: calc(var(--gap) * 1.5);
    }
    .nav-list a {
      padding: 0.25rem 0;
      border-bottom: 2px solid transparent;
    }
  }
  /* overlay */
  .nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay);
    z-index: 140;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--anim-duration) var(--anim-ease);
  }
  .nav-overlay.visible {
    opacity: 1;
    pointer-events: auto;
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 40px 20px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
  }
  .footer-column {
    display: flex;
    flex-direction: column;
  }
  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f0a500;
    margin-bottom: 10px;
  }
  .offer-text {
    font-size: 0.95rem;
    color: #b0b0c0;
    margin: 0;
  }
  .footer-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 15px;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #f0a500;
  }
  .legal-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .legal-links a {
    color: #b0b0c0;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s;
  }
  .legal-links a:hover {
    color: #f0a500;
  }
  .contact-info p {
    margin: 0 0 5px;
    font-size: 0.95rem;
  }
  .contact-info a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
  }
  .contact-info a:hover {
    color: #f0a500;
  }
  .social-links {
    margin-top: 15px;
    display: flex;
    gap: 15px;
  }
  .social-links a {
    color: #b0b0c0;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s;
  }
  .social-links a:hover {
    color: #f0a500;
  }
  .disclaimer {
    font-size: 0.75rem;
    color: #888;
    margin-top: 15px;
    line-height: 1.4;
  }
  .footer-bottom {
    text-align: center;
    margin-top: 30px;
    padding-top: 15px;
    border-top: 1px solid #333;
    font-size: 0.85rem;
    color: #888;
  }
  .footer-bottom p {
    margin: 0;
  }
  @media (max-width: 768px) {
    .footer-container {
      grid-template-columns: 1fr;
      gap: 25px;
    }
    .footer-column {
      text-align: center;
    }
    .footer-nav {
      align-items: center;
    }
    .legal-links {
      align-items: center;
    }
    .social-links {
      justify-content: center;
    }
  }

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

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

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

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

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

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

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

.product-item {

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

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

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

        /* Если randomNumber четное (2) - первый ребенок получает 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__description ul {
        list-style: disc;
        padding-left: 1.5rem;
        margin: 1rem 0;
    }

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

    .product-item .product-item__price {
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--accent);
        margin-top: 1rem;
    }

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

    /* Если randomNumber четное (2) - первый ребенок получает order: 2 */
    .product-item .product-item__actions > *:first-child {
        order: calc((var(--random-number) % 2) * 2);
    }

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

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

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

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

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

header {
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    position: relative;
    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: calc(var(--font-size-base) * 1.25);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.02em;
    line-height: 1.2;
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  .burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: var(--btn-ghost-bg);
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    padding: 10px;
    gap: 5px;
    transition: background var(--anim-duration) var(--anim-ease);
    z-index: 200;
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover);
  }
  .burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--fg-on-surface);
    border-radius: 2px;
    transition: all var(--anim-duration) var(--anim-ease);
  }
  .burger.active .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger.active .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  .nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background: var(--surface-2);
    box-shadow: var(--shadow-lg);
    transform: translateX(100%);
    transition: transform var(--anim-duration) var(--anim-ease);
    padding: calc(var(--space-y) * 2) var(--space-x);
    z-index: 150;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }
  .nav-menu.open {
    transform: translateX(0);
  }
  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--gap);
    width: 100%;
  }
  .nav-list li {
    margin: 0;
  }
  .nav-list a {
    display: block;
    padding: 0.5rem 0;
    font-size: var(--font-size-base);
    font-weight: 500;
    color: var(--fg-on-surface);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: color var(--anim-duration) var(--anim-ease), border-color var(--anim-duration) var(--anim-ease);
  }
  .nav-list a:hover,
  .nav-list a:focus-visible {
    color: var(--brand);
    border-bottom-color: var(--brand);
  }
  @media (min-width: 768px) {
    .burger {
      display: none;
    }
    .nav-menu {
      position: static;
      width: auto;
      height: auto;
      background: transparent;
      box-shadow: none;
      transform: none;
      padding: 0;
      flex-direction: row;
      align-items: center;
    }
    .nav-list {
      flex-direction: row;
      gap: calc(var(--gap) * 1.5);
    }
    .nav-list a {
      padding: 0.25rem 0;
      border-bottom: 2px solid transparent;
    }
  }
  /* overlay */
  .nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay);
    z-index: 140;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--anim-duration) var(--anim-ease);
  }
  .nav-overlay.visible {
    opacity: 1;
    pointer-events: auto;
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 40px 20px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
  }
  .footer-column {
    display: flex;
    flex-direction: column;
  }
  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f0a500;
    margin-bottom: 10px;
  }
  .offer-text {
    font-size: 0.95rem;
    color: #b0b0c0;
    margin: 0;
  }
  .footer-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 15px;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #f0a500;
  }
  .legal-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .legal-links a {
    color: #b0b0c0;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s;
  }
  .legal-links a:hover {
    color: #f0a500;
  }
  .contact-info p {
    margin: 0 0 5px;
    font-size: 0.95rem;
  }
  .contact-info a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
  }
  .contact-info a:hover {
    color: #f0a500;
  }
  .social-links {
    margin-top: 15px;
    display: flex;
    gap: 15px;
  }
  .social-links a {
    color: #b0b0c0;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s;
  }
  .social-links a:hover {
    color: #f0a500;
  }
  .disclaimer {
    font-size: 0.75rem;
    color: #888;
    margin-top: 15px;
    line-height: 1.4;
  }
  .footer-bottom {
    text-align: center;
    margin-top: 30px;
    padding-top: 15px;
    border-top: 1px solid #333;
    font-size: 0.85rem;
    color: #888;
  }
  .footer-bottom p {
    margin: 0;
  }
  @media (max-width: 768px) {
    .footer-container {
      grid-template-columns: 1fr;
      gap: 25px;
    }
    .footer-column {
      text-align: center;
    }
    .footer-nav {
      align-items: center;
    }
    .legal-links {
      align-items: center;
    }
    .social-links {
      justify-content: center;
    }
  }

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

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

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

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

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

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

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

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

.frm-lx10{padding:calc(var(--space-y)*2.7) var(--space-x)}
.frm-lx10 .frm-bounds{max-width:var(--max-w);margin:0 auto;display:grid;gap:.8rem}
.frm-lx10 .frm-copy{display:flex;justify-content:space-between;gap:1rem;align-items:end}
.frm-lx10 h2{margin:0;font-size:clamp(1.75rem,3.1vw,2.45rem)}
.frm-lx10 .frm-copy p{margin:0;color:var(--fg-on-surface-light);max-width:55ch}
.frm-lx10 .frm-frame{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:.6rem;padding:.9rem;border-radius:var(--radius-xl);background:var(--surface-2);border:1px solid var(--border-on-surface)}
.frm-lx10 label{grid-column:span 2;display:grid;gap:.22rem;padding:.65rem;border:1px solid var(--border-on-surface-light);border-radius:var(--radius-md);background:var(--surface-1)}
.frm-lx10 label span{font-size:.8rem;font-weight:700;color:var(--fg-on-surface-light)}
.frm-lx10 input,.frm-lx10 textarea{width:100%;padding:.64rem .72rem;border:1px solid var(--border-on-surface-light);border-radius:var(--radius-sm);font:inherit;background:var(--surface-1);color:var(--fg-on-surface)}
.frm-lx10 .frm-wide{grid-column:1/-1}
.frm-lx10 textarea{min-height:130px;resize:vertical}
.frm-lx10 button{grid-column:1/-1;justify-self:start;padding:.82rem 1.15rem;border-radius:var(--radius-md);border:0;background:var(--bg-primary);color:var(--fg-on-primary);font-weight:700;cursor:pointer}
@keyframes frmPulse{0%,100%{box-shadow:0 0 0 0 color-mix(in srgb,var(--ring) 0%, transparent)}50%{box-shadow:0 0 0 6px color-mix(in srgb,var(--ring) 18%, transparent)}}
.frm-lx10 button:focus-visible{animation:frmPulse .8s ease-out 1}
@media (max-width:900px){.frm-lx10 .frm-copy{display:grid}.frm-lx10 .frm-frame{grid-template-columns:1fr}.frm-lx10 label{grid-column:1/-1}}

.map-note-c3 {
        padding: clamp(3.5rem, 8vw, 6rem) var(--space-x);
        background: var(--gradient-accent);
        color: var(--fg-on-primary);
    }

    .map-note-c3__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        grid-template-columns: .9fr 1.1fr;
        gap: 1rem;
    }

    .map-note-c3__copy p {
        margin: 0;
        color: rgba(255, 255, 255, .76);
        text-transform: uppercase;
        letter-spacing: .1em;
        font-size: .82rem;
    }

    .map-note-c3__copy h2 {
        margin: .55rem 0 0;
        font-size: clamp(2rem, 4vw, 3rem);
    }

    .map-note-c3__notes {
        margin-top: 1rem;
        display: grid;
        gap: .7rem;
    }

    .map-note-c3__notes div {
        padding: .9rem;
        border-radius: var(--radius-md);
        background: rgba(255, 255, 255, .12);
        border: 1px solid rgba(255, 255, 255, .18);
    }

    .map-note-c3__notes span {
        display: block;
        margin-top: .3rem;
        color: rgba(255, 255, 255, .84);
    }

    .map-note-c3__embed {
        overflow: hidden;
        border-radius: var(--radius-xl);
        border: 1px solid rgba(255, 255, 255, .18);
    }

    .map-note-c3__embed iframe {
        display: block;
        width: 100%;
        height: 24rem;
    }

    @media (max-width: 840px) {
        .map-note-c3__wrap {
            grid-template-columns: 1fr;
        }
    }

header {
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    position: relative;
    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: calc(var(--font-size-base) * 1.25);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.02em;
    line-height: 1.2;
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  .burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: var(--btn-ghost-bg);
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    padding: 10px;
    gap: 5px;
    transition: background var(--anim-duration) var(--anim-ease);
    z-index: 200;
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover);
  }
  .burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--fg-on-surface);
    border-radius: 2px;
    transition: all var(--anim-duration) var(--anim-ease);
  }
  .burger.active .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger.active .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  .nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background: var(--surface-2);
    box-shadow: var(--shadow-lg);
    transform: translateX(100%);
    transition: transform var(--anim-duration) var(--anim-ease);
    padding: calc(var(--space-y) * 2) var(--space-x);
    z-index: 150;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }
  .nav-menu.open {
    transform: translateX(0);
  }
  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--gap);
    width: 100%;
  }
  .nav-list li {
    margin: 0;
  }
  .nav-list a {
    display: block;
    padding: 0.5rem 0;
    font-size: var(--font-size-base);
    font-weight: 500;
    color: var(--fg-on-surface);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: color var(--anim-duration) var(--anim-ease), border-color var(--anim-duration) var(--anim-ease);
  }
  .nav-list a:hover,
  .nav-list a:focus-visible {
    color: var(--brand);
    border-bottom-color: var(--brand);
  }
  @media (min-width: 768px) {
    .burger {
      display: none;
    }
    .nav-menu {
      position: static;
      width: auto;
      height: auto;
      background: transparent;
      box-shadow: none;
      transform: none;
      padding: 0;
      flex-direction: row;
      align-items: center;
    }
    .nav-list {
      flex-direction: row;
      gap: calc(var(--gap) * 1.5);
    }
    .nav-list a {
      padding: 0.25rem 0;
      border-bottom: 2px solid transparent;
    }
  }
  /* overlay */
  .nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay);
    z-index: 140;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--anim-duration) var(--anim-ease);
  }
  .nav-overlay.visible {
    opacity: 1;
    pointer-events: auto;
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 40px 20px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
  }
  .footer-column {
    display: flex;
    flex-direction: column;
  }
  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f0a500;
    margin-bottom: 10px;
  }
  .offer-text {
    font-size: 0.95rem;
    color: #b0b0c0;
    margin: 0;
  }
  .footer-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 15px;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #f0a500;
  }
  .legal-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .legal-links a {
    color: #b0b0c0;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s;
  }
  .legal-links a:hover {
    color: #f0a500;
  }
  .contact-info p {
    margin: 0 0 5px;
    font-size: 0.95rem;
  }
  .contact-info a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
  }
  .contact-info a:hover {
    color: #f0a500;
  }
  .social-links {
    margin-top: 15px;
    display: flex;
    gap: 15px;
  }
  .social-links a {
    color: #b0b0c0;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s;
  }
  .social-links a:hover {
    color: #f0a500;
  }
  .disclaimer {
    font-size: 0.75rem;
    color: #888;
    margin-top: 15px;
    line-height: 1.4;
  }
  .footer-bottom {
    text-align: center;
    margin-top: 30px;
    padding-top: 15px;
    border-top: 1px solid #333;
    font-size: 0.85rem;
    color: #888;
  }
  .footer-bottom p {
    margin: 0;
  }
  @media (max-width: 768px) {
    .footer-container {
      grid-template-columns: 1fr;
      gap: 25px;
    }
    .footer-column {
      text-align: center;
    }
    .footer-nav {
      align-items: center;
    }
    .legal-links {
      align-items: center;
    }
    .social-links {
      justify-content: center;
    }
  }

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

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

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

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

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

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

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

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

header {
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    position: relative;
    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: calc(var(--font-size-base) * 1.25);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.02em;
    line-height: 1.2;
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  .burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: var(--btn-ghost-bg);
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    padding: 10px;
    gap: 5px;
    transition: background var(--anim-duration) var(--anim-ease);
    z-index: 200;
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover);
  }
  .burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--fg-on-surface);
    border-radius: 2px;
    transition: all var(--anim-duration) var(--anim-ease);
  }
  .burger.active .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger.active .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  .nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background: var(--surface-2);
    box-shadow: var(--shadow-lg);
    transform: translateX(100%);
    transition: transform var(--anim-duration) var(--anim-ease);
    padding: calc(var(--space-y) * 2) var(--space-x);
    z-index: 150;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }
  .nav-menu.open {
    transform: translateX(0);
  }
  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--gap);
    width: 100%;
  }
  .nav-list li {
    margin: 0;
  }
  .nav-list a {
    display: block;
    padding: 0.5rem 0;
    font-size: var(--font-size-base);
    font-weight: 500;
    color: var(--fg-on-surface);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: color var(--anim-duration) var(--anim-ease), border-color var(--anim-duration) var(--anim-ease);
  }
  .nav-list a:hover,
  .nav-list a:focus-visible {
    color: var(--brand);
    border-bottom-color: var(--brand);
  }
  @media (min-width: 768px) {
    .burger {
      display: none;
    }
    .nav-menu {
      position: static;
      width: auto;
      height: auto;
      background: transparent;
      box-shadow: none;
      transform: none;
      padding: 0;
      flex-direction: row;
      align-items: center;
    }
    .nav-list {
      flex-direction: row;
      gap: calc(var(--gap) * 1.5);
    }
    .nav-list a {
      padding: 0.25rem 0;
      border-bottom: 2px solid transparent;
    }
  }
  /* overlay */
  .nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay);
    z-index: 140;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--anim-duration) var(--anim-ease);
  }
  .nav-overlay.visible {
    opacity: 1;
    pointer-events: auto;
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 40px 20px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
  }
  .footer-column {
    display: flex;
    flex-direction: column;
  }
  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f0a500;
    margin-bottom: 10px;
  }
  .offer-text {
    font-size: 0.95rem;
    color: #b0b0c0;
    margin: 0;
  }
  .footer-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 15px;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #f0a500;
  }
  .legal-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .legal-links a {
    color: #b0b0c0;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s;
  }
  .legal-links a:hover {
    color: #f0a500;
  }
  .contact-info p {
    margin: 0 0 5px;
    font-size: 0.95rem;
  }
  .contact-info a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
  }
  .contact-info a:hover {
    color: #f0a500;
  }
  .social-links {
    margin-top: 15px;
    display: flex;
    gap: 15px;
  }
  .social-links a {
    color: #b0b0c0;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s;
  }
  .social-links a:hover {
    color: #f0a500;
  }
  .disclaimer {
    font-size: 0.75rem;
    color: #888;
    margin-top: 15px;
    line-height: 1.4;
  }
  .footer-bottom {
    text-align: center;
    margin-top: 30px;
    padding-top: 15px;
    border-top: 1px solid #333;
    font-size: 0.85rem;
    color: #888;
  }
  .footer-bottom p {
    margin: 0;
  }
  @media (max-width: 768px) {
    .footer-container {
      grid-template-columns: 1fr;
      gap: 25px;
    }
    .footer-column {
      text-align: center;
    }
    .footer-nav {
      align-items: center;
    }
    .legal-links {
      align-items: center;
    }
    .social-links {
      justify-content: center;
    }
  }

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

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

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

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

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

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

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

.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(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    position: relative;
    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: calc(var(--font-size-base) * 1.25);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.02em;
    line-height: 1.2;
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  .burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: var(--btn-ghost-bg);
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    padding: 10px;
    gap: 5px;
    transition: background var(--anim-duration) var(--anim-ease);
    z-index: 200;
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover);
  }
  .burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--fg-on-surface);
    border-radius: 2px;
    transition: all var(--anim-duration) var(--anim-ease);
  }
  .burger.active .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger.active .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  .nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background: var(--surface-2);
    box-shadow: var(--shadow-lg);
    transform: translateX(100%);
    transition: transform var(--anim-duration) var(--anim-ease);
    padding: calc(var(--space-y) * 2) var(--space-x);
    z-index: 150;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }
  .nav-menu.open {
    transform: translateX(0);
  }
  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--gap);
    width: 100%;
  }
  .nav-list li {
    margin: 0;
  }
  .nav-list a {
    display: block;
    padding: 0.5rem 0;
    font-size: var(--font-size-base);
    font-weight: 500;
    color: var(--fg-on-surface);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: color var(--anim-duration) var(--anim-ease), border-color var(--anim-duration) var(--anim-ease);
  }
  .nav-list a:hover,
  .nav-list a:focus-visible {
    color: var(--brand);
    border-bottom-color: var(--brand);
  }
  @media (min-width: 768px) {
    .burger {
      display: none;
    }
    .nav-menu {
      position: static;
      width: auto;
      height: auto;
      background: transparent;
      box-shadow: none;
      transform: none;
      padding: 0;
      flex-direction: row;
      align-items: center;
    }
    .nav-list {
      flex-direction: row;
      gap: calc(var(--gap) * 1.5);
    }
    .nav-list a {
      padding: 0.25rem 0;
      border-bottom: 2px solid transparent;
    }
  }
  /* overlay */
  .nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay);
    z-index: 140;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--anim-duration) var(--anim-ease);
  }
  .nav-overlay.visible {
    opacity: 1;
    pointer-events: auto;
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 40px 20px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
  }
  .footer-column {
    display: flex;
    flex-direction: column;
  }
  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f0a500;
    margin-bottom: 10px;
  }
  .offer-text {
    font-size: 0.95rem;
    color: #b0b0c0;
    margin: 0;
  }
  .footer-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 15px;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #f0a500;
  }
  .legal-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .legal-links a {
    color: #b0b0c0;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s;
  }
  .legal-links a:hover {
    color: #f0a500;
  }
  .contact-info p {
    margin: 0 0 5px;
    font-size: 0.95rem;
  }
  .contact-info a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
  }
  .contact-info a:hover {
    color: #f0a500;
  }
  .social-links {
    margin-top: 15px;
    display: flex;
    gap: 15px;
  }
  .social-links a {
    color: #b0b0c0;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s;
  }
  .social-links a:hover {
    color: #f0a500;
  }
  .disclaimer {
    font-size: 0.75rem;
    color: #888;
    margin-top: 15px;
    line-height: 1.4;
  }
  .footer-bottom {
    text-align: center;
    margin-top: 30px;
    padding-top: 15px;
    border-top: 1px solid #333;
    font-size: 0.85rem;
    color: #888;
  }
  .footer-bottom p {
    margin: 0;
  }
  @media (max-width: 768px) {
    .footer-container {
      grid-template-columns: 1fr;
      gap: 25px;
    }
    .footer-column {
      text-align: center;
    }
    .footer-nav {
      align-items: center;
    }
    .legal-links {
      align-items: center;
    }
    .social-links {
      justify-content: center;
    }
  }

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

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

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

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

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

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

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

.thx-lx8{padding:calc(var(--space-y)*2.9) var(--space-x);background:var(--bg-alt)}
.thx-lx8 .thx-shell{max-width:900px;margin:0 auto;text-align:center}
.thx-lx8 h2{margin:0;font-size:clamp(1.76rem,3.2vw,2.46rem)}
.thx-lx8 .thx-sub{margin:.42rem 0 .92rem;color:var(--fg-on-surface-light)}
.thx-lx8 .thx-steps{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:.55rem}
.thx-lx8 .thx-steps div{padding:.82rem;border-radius:var(--radius-md);border:1px solid var(--border-on-surface);background:var(--surface-1);display:grid;gap:.22rem}
.thx-lx8 b{font-size:.94rem}
.thx-lx8 span{color:var(--fg-on-surface-light)}
@keyframes thankSoft{0%{opacity:.65;transform:translateY(5px)}100%{opacity:1;transform:none}}
.thx-lx8 .thx-steps div{animation:thankSoft .45s var(--anim-ease) both}
.thx-lx8 .thx-steps div:nth-child(2){animation-delay:.06s}.thx-lx8 .thx-steps div:nth-child(3){animation-delay:.12s}
@media (max-width:760px){.thx-lx8 .thx-steps{grid-template-columns:1fr}}

header {
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    position: relative;
    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: calc(var(--font-size-base) * 1.25);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.02em;
    line-height: 1.2;
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  .burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: var(--btn-ghost-bg);
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    padding: 10px;
    gap: 5px;
    transition: background var(--anim-duration) var(--anim-ease);
    z-index: 200;
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover);
  }
  .burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--fg-on-surface);
    border-radius: 2px;
    transition: all var(--anim-duration) var(--anim-ease);
  }
  .burger.active .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger.active .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  .nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background: var(--surface-2);
    box-shadow: var(--shadow-lg);
    transform: translateX(100%);
    transition: transform var(--anim-duration) var(--anim-ease);
    padding: calc(var(--space-y) * 2) var(--space-x);
    z-index: 150;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }
  .nav-menu.open {
    transform: translateX(0);
  }
  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--gap);
    width: 100%;
  }
  .nav-list li {
    margin: 0;
  }
  .nav-list a {
    display: block;
    padding: 0.5rem 0;
    font-size: var(--font-size-base);
    font-weight: 500;
    color: var(--fg-on-surface);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: color var(--anim-duration) var(--anim-ease), border-color var(--anim-duration) var(--anim-ease);
  }
  .nav-list a:hover,
  .nav-list a:focus-visible {
    color: var(--brand);
    border-bottom-color: var(--brand);
  }
  @media (min-width: 768px) {
    .burger {
      display: none;
    }
    .nav-menu {
      position: static;
      width: auto;
      height: auto;
      background: transparent;
      box-shadow: none;
      transform: none;
      padding: 0;
      flex-direction: row;
      align-items: center;
    }
    .nav-list {
      flex-direction: row;
      gap: calc(var(--gap) * 1.5);
    }
    .nav-list a {
      padding: 0.25rem 0;
      border-bottom: 2px solid transparent;
    }
  }
  /* overlay */
  .nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay);
    z-index: 140;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--anim-duration) var(--anim-ease);
  }
  .nav-overlay.visible {
    opacity: 1;
    pointer-events: auto;
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 40px 20px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
  }
  .footer-column {
    display: flex;
    flex-direction: column;
  }
  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f0a500;
    margin-bottom: 10px;
  }
  .offer-text {
    font-size: 0.95rem;
    color: #b0b0c0;
    margin: 0;
  }
  .footer-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 15px;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #f0a500;
  }
  .legal-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .legal-links a {
    color: #b0b0c0;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s;
  }
  .legal-links a:hover {
    color: #f0a500;
  }
  .contact-info p {
    margin: 0 0 5px;
    font-size: 0.95rem;
  }
  .contact-info a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
  }
  .contact-info a:hover {
    color: #f0a500;
  }
  .social-links {
    margin-top: 15px;
    display: flex;
    gap: 15px;
  }
  .social-links a {
    color: #b0b0c0;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s;
  }
  .social-links a:hover {
    color: #f0a500;
  }
  .disclaimer {
    font-size: 0.75rem;
    color: #888;
    margin-top: 15px;
    line-height: 1.4;
  }
  .footer-bottom {
    text-align: center;
    margin-top: 30px;
    padding-top: 15px;
    border-top: 1px solid #333;
    font-size: 0.85rem;
    color: #888;
  }
  .footer-bottom p {
    margin: 0;
  }
  @media (max-width: 768px) {
    .footer-container {
      grid-template-columns: 1fr;
      gap: 25px;
    }
    .footer-column {
      text-align: center;
    }
    .footer-nav {
      align-items: center;
    }
    .legal-links {
      align-items: center;
    }
    .social-links {
      justify-content: center;
    }
  }

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

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

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

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

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

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

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

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

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

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

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

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