:root {
  --font-family: "Epilogue", sans-serif;
  --font-size-base: 17.5px;
  --line-height-base: 1.31;

  --max-w: 1060px;
  --space-x: 1.75rem;
  --space-y: 1.5rem;
  --gap: 1.17rem;

  --radius-xl: 1.39rem;
  --radius-lg: 0.94rem;
  --radius-md: 0.56rem;
  --radius-sm: 0.28rem;

  --shadow-sm: 0 2px 5px rgba(0,0,0,0.21);
  --shadow-md: 0 10px 24px rgba(0,0,0,0.27);
  --shadow-lg: 0 30px 34px rgba(0,0,0,0.33);

  --overlay: rgba(10, 20, 40, 0.7);
  --anim-duration: 130ms;
  --anim-ease: ease-in-out;
  --random-number: 2;

  --brand: #0a2a4a;
  --brand-contrast: #e0f7ff;
  --accent: #00d4ff;
  --accent-contrast: #0a1a2a;

  --neutral-0: #ffffff;
  --neutral-100: #f2f6fa;
  --neutral-300: #b0c4d8;
  --neutral-600: #4a6a8a;
  --neutral-800: #1a2a3a;
  --neutral-900: #0a1a2a;

  --bg-page: #0a1a2a;
  --fg-on-page: #e0f0ff;

  --bg-alt: #112a3a;
  --fg-on-alt: #c0e0ff;

  --surface-1: #0f2030;
  --surface-2: #142a3a;
  --fg-on-surface: #d0e8ff;
  --border-on-surface: #2a4a6a;

  --surface-light: #1a3040;
  --fg-on-surface-light: #d0e8ff;
  --border-on-surface-light: #3a5a7a;

  --bg-primary: #0088cc;
  --fg-on-primary: #ffffff;
  --bg-primary-hover: #0077b3;
  --ring: #00d4ff;

  --bg-accent: #00d4ff;
  --fg-on-accent: #0a1a2a;
  --bg-accent-hover: #00b8e6;

  --link: #00d4ff;
  --link-hover: #66e5ff;

  --gradient-hero: linear-gradient(135deg, #0a1a2a 0%, #0a2a4a 50%, #003355 100%);
  --gradient-accent: linear-gradient(135deg, #00d4ff 0%, #0088cc 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: sticky;
    top: 0;
    z-index: 100;
    padding: 0 var(--space-x);
  }

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

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

  .logo:hover {
    color: var(--brand-contrast);
  }

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

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

  .burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--neutral-800);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }

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

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

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

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

  .nav-link {
    text-decoration: none;
    color: var(--neutral-600);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-md);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }

  .nav-link:hover {
    background: var(--btn-ghost-bg-hover);
    color: var(--neutral-900);
  }

  .nav-link.active {
    background: var(--bg-primary);
    color: var(--fg-on-primary);
    font-weight: 600;
    box-shadow: 0 0 0 2px var(--ring);
  }

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

  .cta-secondary:hover {
    background: var(--bg-accent-hover);
    transform: translateY(-1px);
  }

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

    .nav {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--surface-1);
      border-bottom: 1px solid var(--border-on-surface);
      box-shadow: var(--shadow-md);
      padding: 0 var(--space-x) var(--space-y);
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--anim-duration) var(--anim-ease), padding var(--anim-duration) var(--anim-ease);
    }

    .nav.open {
      max-height: 400px;
      padding-bottom: var(--space-y);
    }

    .nav-list {
      flex-direction: column;
      align-items: stretch;
      gap: 0.25rem;
    }

    .nav-link {
      display: block;
      padding: 0.75rem 1rem;
      text-align: center;
    }

    .cta-secondary {
      display: none;
    }
  }

  @media (min-width: 768px) {
    .cta-secondary {
      display: inline-flex;
    }
  }

footer {
      background-color: #1a1a2e;
      color: #e0e0e0;
      padding: 2rem 1rem;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }
    .footer-container {
      max-width: 1200px;
      margin: 0 auto;
    }
    .footer-row {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 1.5rem;
      margin-bottom: 1.5rem;
    }
    .footer-brand {
      flex: 1 1 200px;
    }
    .logo {
      font-size: 1.8rem;
      font-weight: 700;
      color: #f0a500;
      text-decoration: none;
    }
    .footer-nav ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
    }
    .footer-nav a {
      color: #e0e0e0;
      text-decoration: none;
      transition: color 0.3s;
    }
    .footer-nav a:hover {
      color: #f0a500;
    }
    .footer-policy {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }
    .footer-policy a {
      color: #e0e0e0;
      text-decoration: none;
      transition: color 0.3s;
    }
    .footer-policy a:hover {
      color: #f0a500;
    }
    .footer-contacts {
      flex: 1 1 250px;
    }
    .footer-contacts p {
      margin: 0.3rem 0;
    }
    .footer-contacts a {
      color: #e0e0e0;
      text-decoration: none;
    }
    .footer-contacts a:hover {
      color: #f0a500;
    }
    .footer-disclaimer {
      border-top: 1px solid #333;
      padding-top: 1rem;
      margin-top: 1rem;
      font-size: 0.85rem;
      text-align: center;
      color: #aaa;
    }
    .footer-copyright {
      text-align: center;
      font-size: 0.85rem;
      margin-top: 0.5rem;
      color: #aaa;
    }
    @media (max-width: 768px) {
      .footer-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }
      .footer-nav ul {
        justify-content: center;
      }
      .footer-policy {
        align-items: center;
      }
    }

.cookie-cv9 {
        position: fixed;
        inset: 0;
        z-index: 1200;
        display: grid;
        place-items: end;
    }

    .cookie-cv9__overlay {
        position: absolute;
        inset: 0;
        background: var(--overlay);
    }

    .cookie-cv9__dialog {
        position: relative;
        width: min(520px, calc(100vw - (var(--space-x) * 2)));
        border-radius: var(--radius-xl);
        padding: 18px;
        background: linear-gradient(135deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv9__dialog h3 {
        margin: 0 0 8px;
    }

    .cookie-cv9__dialog p {
        margin: 0;
        opacity: .94;
    }

    .cookie-cv9__actions {
        margin-top: 12px;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-cv9__actions button {
        border: 0;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        background: rgba(255, 255, 255, 0.18);
        color: inherit;
        cursor: pointer;
    }

    .cookie-cv9__actions button[data-choice='accept'] {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
    }

.intro-window-l9 {
        padding: clamp(3.7rem, 8vw, 6.7rem) var(--space-x);
        background: var(--bg-alt);
        color: var(--fg-on-page);
    }

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

    .intro-window-l9__copy {
        flex: 1 1 22rem;
        order: calc(3 - var(--random-number));
    }

    .intro-window-l9__media {
        flex: 1 1 18rem;
        order: var(--random-number);
    }

    .intro-window-l9__copy p {
        margin: 0;
        color: var(--neutral-600);
        font-size: .82rem;
        letter-spacing: .1em;
        text-transform: uppercase;
    }

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

    .intro-window-l9__copy span {
        display: block;
        margin-top: .9rem;
        color: var(--neutral-600);
    }

    .intro-window-l9__links {
        margin-top: 1.1rem;
        display: flex;
        gap: .75rem;
        flex-wrap: wrap;
    }

    .intro-window-l9__links a {
        display: inline-flex;
        min-height: 2.8rem;
        align-items: center;
        justify-content: center;
        padding: 0 1rem;
        border-radius: var(--radius-md);
        text-decoration: none;
        background: var(--surface-1);
        color: var(--fg-on-page);
        border: 1px solid var(--border-on-surface-light);
    }

    .intro-window-l9__links a:first-child {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border-color: var(--bg-primary);
    }

    .intro-window-l9__media img {
        display: block;
        width: 100%;
        border-radius: var(--radius-xl);
        border: 1px solid var(--border-on-surface-light);
    }

    .intro-window-l9__mark {
        margin-top: .85rem;
        padding: .8rem .9rem;
        border-radius: var(--radius-md);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface-light);
    }

.values-spine-c1 {
        padding: clamp(3.5rem, 8vw, 6.2rem) var(--space-x);
        background: var(--gradient-hero);
        color: var(--gradient-accent);
    }

    .values-spine-c1__wrap {
        max-width: 58rem;
        margin: 0 auto;
    }

    .values-spine-c1__head {
        text-align: center;
        margin-bottom: 1.2rem;
    }

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

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

    .values-spine-c1__head span {
        display: block;
        margin-top: .8rem;
    }

    .values-spine-c1__list {
        display: grid;
        gap: .8rem;
    }

    .values-spine-c1__list article {
        display: grid;
        grid-template-columns: 3rem 1fr;
        gap: .9rem;
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: rgba(255, 255, 255, .12);
        border: 1px solid rgba(255, 255, 255, .18);
    }

    .values-spine-c1__list strong {
        display: grid;
        place-items: center;
        width: 3rem;
        height: 3rem;
        border-radius: var(--radius-md);
        background: var(--bg-accent);
    }

    .values-spine-c1__list h3 {
        margin: 0;
    }

    .values-spine-c1__list p {
        margin: .35rem 0 0;
    }

    .values-spine-c1__list small {
        display: block;
        margin-top: .55rem;
    }

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

    .visual-board-l4__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .visual-board-l4__head {
        margin-bottom: 1rem;
        text-align: center;
    }

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

    .visual-board-l4__head p {
        margin: .6rem 0 0;
        color: var(--neutral-600);
    }

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

    .visual-board-l4__grid figure {
        margin: 0;
        padding: .9rem;
        border-radius: var(--radius-xl);
        background: var(--bg-alt);
        border: 1px solid var(--border-on-surface-light);
    }

    .visual-board-l4__grid figcaption strong {
        color: var(--brand);
    }

    .visual-board-l4__grid h3 {
        margin: .45rem 0 .35rem;
    }

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

    .visual-board-l4__grid img {
        display: block;
        width: 100%;
        height: 12rem;
        object-fit: cover;
        border-radius: var(--radius-md);
        margin-top: .85rem;
    }

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

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

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

.two-column-section--split .two-column-section__text {
    padding: 0 0 0 0;
    border-left: 2px solid var(--border-on-surface);
    padding-left: var(--space-x);
}

.two-column-section--split .two-column-section__text:first-child {
    border-left: 0;
    padding-left: 0;
}

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

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

.touch-gridline {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 3vw, 36px);
        background: var(--bg-page);
        color: var(--fg-on-page);
    }

    .touch-gridline .wrap {
        max-width: 900px;
        margin: 0 auto;
    }

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

    .touch-gridline .lead {
        margin: 10px 0 14px;
        color: var(--neutral-600);
    }

    .touch-gridline .list {
        display: grid;
        gap: 8px;
    }

    .touch-gridline .row {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-md);
        background: var(--surface-1);
        padding: 10px 12px;
        display: flex;
        justify-content: space-between;
        gap: 10px;
        align-items: center;
    }

    .touch-gridline .title {
        margin: 0 0 4px;
        font-weight: 600;
    }

    .touch-gridline .text {
        margin: 0;
        color: var(--neutral-600);
    }

    .touch-gridline .row a {
        color: var(--link);
        text-decoration: none;
    }

    .touch-gridline .cta {
        display: inline-block;
        margin-top: 12px;
        text-decoration: none;
        padding: 10px 16px;
        border-radius: var(--radius-md);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
    }

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

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

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

  .logo:hover {
    color: var(--brand-contrast);
  }

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

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

  .burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--neutral-800);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }

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

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

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

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

  .nav-link {
    text-decoration: none;
    color: var(--neutral-600);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-md);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }

  .nav-link:hover {
    background: var(--btn-ghost-bg-hover);
    color: var(--neutral-900);
  }

  .nav-link.active {
    background: var(--bg-primary);
    color: var(--fg-on-primary);
    font-weight: 600;
    box-shadow: 0 0 0 2px var(--ring);
  }

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

  .cta-secondary:hover {
    background: var(--bg-accent-hover);
    transform: translateY(-1px);
  }

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

    .nav {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--surface-1);
      border-bottom: 1px solid var(--border-on-surface);
      box-shadow: var(--shadow-md);
      padding: 0 var(--space-x) var(--space-y);
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--anim-duration) var(--anim-ease), padding var(--anim-duration) var(--anim-ease);
    }

    .nav.open {
      max-height: 400px;
      padding-bottom: var(--space-y);
    }

    .nav-list {
      flex-direction: column;
      align-items: stretch;
      gap: 0.25rem;
    }

    .nav-link {
      display: block;
      padding: 0.75rem 1rem;
      text-align: center;
    }

    .cta-secondary {
      display: none;
    }
  }

  @media (min-width: 768px) {
    .cta-secondary {
      display: inline-flex;
    }
  }

footer {
      background-color: #1a1a2e;
      color: #e0e0e0;
      padding: 2rem 1rem;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }
    .footer-container {
      max-width: 1200px;
      margin: 0 auto;
    }
    .footer-row {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 1.5rem;
      margin-bottom: 1.5rem;
    }
    .footer-brand {
      flex: 1 1 200px;
    }
    .logo {
      font-size: 1.8rem;
      font-weight: 700;
      color: #f0a500;
      text-decoration: none;
    }
    .footer-nav ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
    }
    .footer-nav a {
      color: #e0e0e0;
      text-decoration: none;
      transition: color 0.3s;
    }
    .footer-nav a:hover {
      color: #f0a500;
    }
    .footer-policy {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }
    .footer-policy a {
      color: #e0e0e0;
      text-decoration: none;
      transition: color 0.3s;
    }
    .footer-policy a:hover {
      color: #f0a500;
    }
    .footer-contacts {
      flex: 1 1 250px;
    }
    .footer-contacts p {
      margin: 0.3rem 0;
    }
    .footer-contacts a {
      color: #e0e0e0;
      text-decoration: none;
    }
    .footer-contacts a:hover {
      color: #f0a500;
    }
    .footer-disclaimer {
      border-top: 1px solid #333;
      padding-top: 1rem;
      margin-top: 1rem;
      font-size: 0.85rem;
      text-align: center;
      color: #aaa;
    }
    .footer-copyright {
      text-align: center;
      font-size: 0.85rem;
      margin-top: 0.5rem;
      color: #aaa;
    }
    @media (max-width: 768px) {
      .footer-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }
      .footer-nav ul {
        justify-content: center;
      }
      .footer-policy {
        align-items: center;
      }
    }

.cookie-cv9 {
        position: fixed;
        inset: 0;
        z-index: 1200;
        display: grid;
        place-items: end;
    }

    .cookie-cv9__overlay {
        position: absolute;
        inset: 0;
        background: var(--overlay);
    }

    .cookie-cv9__dialog {
        position: relative;
        width: min(520px, calc(100vw - (var(--space-x) * 2)));
        border-radius: var(--radius-xl);
        padding: 18px;
        background: linear-gradient(135deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv9__dialog h3 {
        margin: 0 0 8px;
    }

    .cookie-cv9__dialog p {
        margin: 0;
        opacity: .94;
    }

    .cookie-cv9__actions {
        margin-top: 12px;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-cv9__actions button {
        border: 0;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        background: rgba(255, 255, 255, 0.18);
        color: inherit;
        cursor: pointer;
    }

    .cookie-cv9__actions button[data-choice='accept'] {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
    }

.bloglist-fresh-v4 {
        padding: calc(var(--space-y) * 2.7) var(--space-x);
        background: var(--gradient-hero);
        color: var(--brand-contrast);
    }

    .bloglist-fresh-v4 .shell {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        gap: var(--gap);
    }

    .bloglist-fresh-v4 .head p {
        margin: .35rem 0 0;
        opacity: .9;
    }

    .bloglist-fresh-v4 .cards {
        display: grid;
        grid-template-columns:repeat(2, minmax(0, 1fr));
        gap: var(--gap);
    }

    .bloglist-fresh-v4 article {
        background: var(--chip-bg);
        border: 1px solid var(--btn-ghost-bg-hover);
        border-radius: var(--radius-lg);
        overflow: hidden;
    }

    .bloglist-fresh-v4 img {
        width: 100%;
        aspect-ratio: 16/9;
        object-fit: cover;
        display: block;
    }

    .bloglist-fresh-v4 .text {
        padding: .85rem;
    }

    .bloglist-fresh-v4 h3 {
        margin: 0 0 .4rem;
    }

    .bloglist-fresh-v4 h3 a {
        text-decoration: none;
        color: var(--brand-contrast);
    }

    .bloglist-fresh-v4 p {
        margin: 0;
        opacity: .9;
    }

    .bloglist-fresh-v4 .meta {
        margin-top: .5rem;
        font-size: .84rem;
    }

    @media (max-width: 760px) {
        .bloglist-fresh-v4 .cards {
            grid-template-columns:1fr;
        }
    }

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

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

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

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

  .logo:hover {
    color: var(--brand-contrast);
  }

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

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

  .burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--neutral-800);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }

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

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

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

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

  .nav-link {
    text-decoration: none;
    color: var(--neutral-600);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-md);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }

  .nav-link:hover {
    background: var(--btn-ghost-bg-hover);
    color: var(--neutral-900);
  }

  .nav-link.active {
    background: var(--bg-primary);
    color: var(--fg-on-primary);
    font-weight: 600;
    box-shadow: 0 0 0 2px var(--ring);
  }

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

  .cta-secondary:hover {
    background: var(--bg-accent-hover);
    transform: translateY(-1px);
  }

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

    .nav {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--surface-1);
      border-bottom: 1px solid var(--border-on-surface);
      box-shadow: var(--shadow-md);
      padding: 0 var(--space-x) var(--space-y);
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--anim-duration) var(--anim-ease), padding var(--anim-duration) var(--anim-ease);
    }

    .nav.open {
      max-height: 400px;
      padding-bottom: var(--space-y);
    }

    .nav-list {
      flex-direction: column;
      align-items: stretch;
      gap: 0.25rem;
    }

    .nav-link {
      display: block;
      padding: 0.75rem 1rem;
      text-align: center;
    }

    .cta-secondary {
      display: none;
    }
  }

  @media (min-width: 768px) {
    .cta-secondary {
      display: inline-flex;
    }
  }

footer {
      background-color: #1a1a2e;
      color: #e0e0e0;
      padding: 2rem 1rem;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }
    .footer-container {
      max-width: 1200px;
      margin: 0 auto;
    }
    .footer-row {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 1.5rem;
      margin-bottom: 1.5rem;
    }
    .footer-brand {
      flex: 1 1 200px;
    }
    .logo {
      font-size: 1.8rem;
      font-weight: 700;
      color: #f0a500;
      text-decoration: none;
    }
    .footer-nav ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
    }
    .footer-nav a {
      color: #e0e0e0;
      text-decoration: none;
      transition: color 0.3s;
    }
    .footer-nav a:hover {
      color: #f0a500;
    }
    .footer-policy {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }
    .footer-policy a {
      color: #e0e0e0;
      text-decoration: none;
      transition: color 0.3s;
    }
    .footer-policy a:hover {
      color: #f0a500;
    }
    .footer-contacts {
      flex: 1 1 250px;
    }
    .footer-contacts p {
      margin: 0.3rem 0;
    }
    .footer-contacts a {
      color: #e0e0e0;
      text-decoration: none;
    }
    .footer-contacts a:hover {
      color: #f0a500;
    }
    .footer-disclaimer {
      border-top: 1px solid #333;
      padding-top: 1rem;
      margin-top: 1rem;
      font-size: 0.85rem;
      text-align: center;
      color: #aaa;
    }
    .footer-copyright {
      text-align: center;
      font-size: 0.85rem;
      margin-top: 0.5rem;
      color: #aaa;
    }
    @media (max-width: 768px) {
      .footer-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }
      .footer-nav ul {
        justify-content: center;
      }
      .footer-policy {
        align-items: center;
      }
    }

.cookie-cv9 {
        position: fixed;
        inset: 0;
        z-index: 1200;
        display: grid;
        place-items: end;
    }

    .cookie-cv9__overlay {
        position: absolute;
        inset: 0;
        background: var(--overlay);
    }

    .cookie-cv9__dialog {
        position: relative;
        width: min(520px, calc(100vw - (var(--space-x) * 2)));
        border-radius: var(--radius-xl);
        padding: 18px;
        background: linear-gradient(135deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv9__dialog h3 {
        margin: 0 0 8px;
    }

    .cookie-cv9__dialog p {
        margin: 0;
        opacity: .94;
    }

    .cookie-cv9__actions {
        margin-top: 12px;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-cv9__actions button {
        border: 0;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        background: rgba(255, 255, 255, 0.18);
        color: inherit;
        cursor: pointer;
    }

    .cookie-cv9__actions button[data-choice='accept'] {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
    }

.blog-item {

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

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

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

    .blog-item .blog-item__header {
        margin-bottom: var(--space-y);
    }

    .blog-item h1 {
        font-size: clamp(28px, 5vw, 42px);
        margin: 0 0 1rem;
        color: var(--fg-on-primary);
    }

    .blog-item .blog-item__meta {
        display: flex;
        gap: 1rem;
        color: var(--neutral-600);
        font-size: 0.875rem;
    }

    .blog-item .blog-item__content {
        line-height: 1.8;
        color: var(--fg-on-primary);
    }

    .blog-item .blog-item__related {
        background: var(--surface-light);
        padding: clamp(16px, 2vw, 24px);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-sm);
    }

    .blog-item .blog-item__related h3 {
        margin: 0 0 1rem;
        font-size: 1.25rem;
        color: var(--fg-on-primary);
    }

    .blog-item .blog-item__related-list {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }

    .blog-item .blog-item__related-item a {
        color: var(--bg-primary);
        text-decoration: none;
    }

    .blog-item .blog-item__related-item a:hover {
        text-decoration: underline;
    }

.articles {

        color: var(--fg-on-page);
        background: var(--surface-light);
        padding: clamp(32px, 5vw, 64px) clamp(16px, 4vw, 40px);
    }

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

    .articles .articles__title {
        font-size: clamp(28px, 5vw, 48px);
        margin: 0 0 clamp(40px, 6vw, 56px);
        color: var(--fg-on-surface-light);
    }

    .articles .articles__grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: clamp(28px, 4.5vw, 40px);
    }

    .articles .articles__card {
        background: var(--bg-page);
        border-radius: var(--radius-xl);
        overflow: hidden;
        transition: transform 0.3s;
    }

    .articles .articles__card:hover {
        transform: translateY(-6px);
    }

    .articles .articles__link {
        display: block;
        text-decoration: none;
        color: inherit;
    }

    .articles .articles__image {
        width: 100%;
        height: 220px;
        overflow: hidden;
    }

    .articles .articles__image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .articles .articles__content {
        padding: clamp(24px, 4vw, 32px);
    }

    .articles .articles__content h3 {
        font-size: clamp(20px, 3vw, 24px);
        margin: 0 0 0.75rem;
        color: var(--fg-on-page);
    }

    .articles .articles__content p {
        font-size: clamp(15px, 2.2vw, 17px);
        line-height: 1.6;
        color: var(--neutral-600);
        margin: 0 0 1rem;
    }

    .articles .articles__date {
        font-size: clamp(13px, 2vw, 15px);
        color: var(--neutral-600);
    }

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

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

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

  .logo:hover {
    color: var(--brand-contrast);
  }

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

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

  .burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--neutral-800);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }

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

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

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

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

  .nav-link {
    text-decoration: none;
    color: var(--neutral-600);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-md);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }

  .nav-link:hover {
    background: var(--btn-ghost-bg-hover);
    color: var(--neutral-900);
  }

  .nav-link.active {
    background: var(--bg-primary);
    color: var(--fg-on-primary);
    font-weight: 600;
    box-shadow: 0 0 0 2px var(--ring);
  }

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

  .cta-secondary:hover {
    background: var(--bg-accent-hover);
    transform: translateY(-1px);
  }

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

    .nav {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--surface-1);
      border-bottom: 1px solid var(--border-on-surface);
      box-shadow: var(--shadow-md);
      padding: 0 var(--space-x) var(--space-y);
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--anim-duration) var(--anim-ease), padding var(--anim-duration) var(--anim-ease);
    }

    .nav.open {
      max-height: 400px;
      padding-bottom: var(--space-y);
    }

    .nav-list {
      flex-direction: column;
      align-items: stretch;
      gap: 0.25rem;
    }

    .nav-link {
      display: block;
      padding: 0.75rem 1rem;
      text-align: center;
    }

    .cta-secondary {
      display: none;
    }
  }

  @media (min-width: 768px) {
    .cta-secondary {
      display: inline-flex;
    }
  }

footer {
      background-color: #1a1a2e;
      color: #e0e0e0;
      padding: 2rem 1rem;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }
    .footer-container {
      max-width: 1200px;
      margin: 0 auto;
    }
    .footer-row {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 1.5rem;
      margin-bottom: 1.5rem;
    }
    .footer-brand {
      flex: 1 1 200px;
    }
    .logo {
      font-size: 1.8rem;
      font-weight: 700;
      color: #f0a500;
      text-decoration: none;
    }
    .footer-nav ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
    }
    .footer-nav a {
      color: #e0e0e0;
      text-decoration: none;
      transition: color 0.3s;
    }
    .footer-nav a:hover {
      color: #f0a500;
    }
    .footer-policy {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }
    .footer-policy a {
      color: #e0e0e0;
      text-decoration: none;
      transition: color 0.3s;
    }
    .footer-policy a:hover {
      color: #f0a500;
    }
    .footer-contacts {
      flex: 1 1 250px;
    }
    .footer-contacts p {
      margin: 0.3rem 0;
    }
    .footer-contacts a {
      color: #e0e0e0;
      text-decoration: none;
    }
    .footer-contacts a:hover {
      color: #f0a500;
    }
    .footer-disclaimer {
      border-top: 1px solid #333;
      padding-top: 1rem;
      margin-top: 1rem;
      font-size: 0.85rem;
      text-align: center;
      color: #aaa;
    }
    .footer-copyright {
      text-align: center;
      font-size: 0.85rem;
      margin-top: 0.5rem;
      color: #aaa;
    }
    @media (max-width: 768px) {
      .footer-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }
      .footer-nav ul {
        justify-content: center;
      }
      .footer-policy {
        align-items: center;
      }
    }

.cookie-cv9 {
        position: fixed;
        inset: 0;
        z-index: 1200;
        display: grid;
        place-items: end;
    }

    .cookie-cv9__overlay {
        position: absolute;
        inset: 0;
        background: var(--overlay);
    }

    .cookie-cv9__dialog {
        position: relative;
        width: min(520px, calc(100vw - (var(--space-x) * 2)));
        border-radius: var(--radius-xl);
        padding: 18px;
        background: linear-gradient(135deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv9__dialog h3 {
        margin: 0 0 8px;
    }

    .cookie-cv9__dialog p {
        margin: 0;
        opacity: .94;
    }

    .cookie-cv9__actions {
        margin-top: 12px;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-cv9__actions button {
        border: 0;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        background: rgba(255, 255, 255, 0.18);
        color: inherit;
        cursor: pointer;
    }

    .cookie-cv9__actions button[data-choice='accept'] {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
    }

.blog-item {

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

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

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

    .blog-item .blog-item__header {
        margin-bottom: var(--space-y);
    }

    .blog-item h1 {
        font-size: clamp(28px, 5vw, 42px);
        margin: 0 0 1rem;
        color: var(--fg-on-primary);
    }

    .blog-item .blog-item__meta {
        display: flex;
        gap: 1rem;
        color: var(--neutral-600);
        font-size: 0.875rem;
    }

    .blog-item .blog-item__content {
        line-height: 1.8;
        color: var(--fg-on-primary);
    }

    .blog-item .blog-item__related {
        background: var(--surface-light);
        padding: clamp(16px, 2vw, 24px);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-sm);
    }

    .blog-item .blog-item__related h3 {
        margin: 0 0 1rem;
        font-size: 1.25rem;
        color: var(--fg-on-primary);
    }

    .blog-item .blog-item__related-list {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }

    .blog-item .blog-item__related-item a {
        color: var(--bg-primary);
        text-decoration: none;
    }

    .blog-item .blog-item__related-item a:hover {
        text-decoration: underline;
    }

.identity-ux20 {
        padding: clamp(50px, 7vw, 90px) clamp(16px, 4vw, 36px);
        background: var(--neutral-100);
        color: var(--neutral-900);
    }

    .identity-ux20__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        grid-template-columns: .9fr 1.1fr;
        gap: var(--gap);
        align-items: start;
    }

    .identity-ux20__img img {
        width: 100%;
        height: auto;
        border-radius: var(--radius-lg);
        border: 1px solid var(--neutral-300);
    }

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

    .identity-ux20__body h3 {
        margin: 0 0 10px;
        color: var(--brand);
        font-size: 1rem;
    }

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

    .identity-ux20__body ul {
        margin: 0;
        padding-left: 18px;
        display: grid;
        gap: 6px;
        color: var(--neutral-800);
    }

    @media (max-width: 820px) {
        .identity-ux20__wrap {
            grid-template-columns: 1fr;
        }
    }

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

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

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

  .logo:hover {
    color: var(--brand-contrast);
  }

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

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

  .burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--neutral-800);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }

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

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

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

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

  .nav-link {
    text-decoration: none;
    color: var(--neutral-600);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-md);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }

  .nav-link:hover {
    background: var(--btn-ghost-bg-hover);
    color: var(--neutral-900);
  }

  .nav-link.active {
    background: var(--bg-primary);
    color: var(--fg-on-primary);
    font-weight: 600;
    box-shadow: 0 0 0 2px var(--ring);
  }

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

  .cta-secondary:hover {
    background: var(--bg-accent-hover);
    transform: translateY(-1px);
  }

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

    .nav {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--surface-1);
      border-bottom: 1px solid var(--border-on-surface);
      box-shadow: var(--shadow-md);
      padding: 0 var(--space-x) var(--space-y);
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--anim-duration) var(--anim-ease), padding var(--anim-duration) var(--anim-ease);
    }

    .nav.open {
      max-height: 400px;
      padding-bottom: var(--space-y);
    }

    .nav-list {
      flex-direction: column;
      align-items: stretch;
      gap: 0.25rem;
    }

    .nav-link {
      display: block;
      padding: 0.75rem 1rem;
      text-align: center;
    }

    .cta-secondary {
      display: none;
    }
  }

  @media (min-width: 768px) {
    .cta-secondary {
      display: inline-flex;
    }
  }

footer {
      background-color: #1a1a2e;
      color: #e0e0e0;
      padding: 2rem 1rem;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }
    .footer-container {
      max-width: 1200px;
      margin: 0 auto;
    }
    .footer-row {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 1.5rem;
      margin-bottom: 1.5rem;
    }
    .footer-brand {
      flex: 1 1 200px;
    }
    .logo {
      font-size: 1.8rem;
      font-weight: 700;
      color: #f0a500;
      text-decoration: none;
    }
    .footer-nav ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
    }
    .footer-nav a {
      color: #e0e0e0;
      text-decoration: none;
      transition: color 0.3s;
    }
    .footer-nav a:hover {
      color: #f0a500;
    }
    .footer-policy {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }
    .footer-policy a {
      color: #e0e0e0;
      text-decoration: none;
      transition: color 0.3s;
    }
    .footer-policy a:hover {
      color: #f0a500;
    }
    .footer-contacts {
      flex: 1 1 250px;
    }
    .footer-contacts p {
      margin: 0.3rem 0;
    }
    .footer-contacts a {
      color: #e0e0e0;
      text-decoration: none;
    }
    .footer-contacts a:hover {
      color: #f0a500;
    }
    .footer-disclaimer {
      border-top: 1px solid #333;
      padding-top: 1rem;
      margin-top: 1rem;
      font-size: 0.85rem;
      text-align: center;
      color: #aaa;
    }
    .footer-copyright {
      text-align: center;
      font-size: 0.85rem;
      margin-top: 0.5rem;
      color: #aaa;
    }
    @media (max-width: 768px) {
      .footer-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }
      .footer-nav ul {
        justify-content: center;
      }
      .footer-policy {
        align-items: center;
      }
    }

.cookie-cv9 {
        position: fixed;
        inset: 0;
        z-index: 1200;
        display: grid;
        place-items: end;
    }

    .cookie-cv9__overlay {
        position: absolute;
        inset: 0;
        background: var(--overlay);
    }

    .cookie-cv9__dialog {
        position: relative;
        width: min(520px, calc(100vw - (var(--space-x) * 2)));
        border-radius: var(--radius-xl);
        padding: 18px;
        background: linear-gradient(135deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv9__dialog h3 {
        margin: 0 0 8px;
    }

    .cookie-cv9__dialog p {
        margin: 0;
        opacity: .94;
    }

    .cookie-cv9__actions {
        margin-top: 12px;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-cv9__actions button {
        border: 0;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        background: rgba(255, 255, 255, 0.18);
        color: inherit;
        cursor: pointer;
    }

    .cookie-cv9__actions button[data-choice='accept'] {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
    }

.blog-item {

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

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

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

    .blog-item .blog-item__header {
        margin-bottom: var(--space-y);
    }

    .blog-item h1 {
        font-size: clamp(28px, 5vw, 42px);
        margin: 0 0 1rem;
        color: var(--fg-on-page);
    }

    .blog-item .blog-item__meta {
        display: flex;
        gap: 1rem;
        color: var(--neutral-600);
        font-size: 0.875rem;
    }

    .blog-item .blog-item__content {
        line-height: 1.8;
        color: var(--fg-on-page);
    }

    .blog-item .blog-item__related {
        background: var(--surface-light);
        padding: clamp(16px, 2vw, 24px);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-sm);
    }

    .blog-item .blog-item__related h3 {
        margin: 0 0 1rem;
        font-size: 1.25rem;
        color: var(--fg-on-page);
    }

    .blog-item .blog-item__related-list {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }

    .blog-item .blog-item__related-item a {
        color: var(--bg-primary);
        text-decoration: none;
    }

    .blog-item .blog-item__related-item a:hover {
        text-decoration: underline;
    }

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

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

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

  .logo:hover {
    color: var(--brand-contrast);
  }

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

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

  .burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--neutral-800);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }

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

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

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

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

  .nav-link {
    text-decoration: none;
    color: var(--neutral-600);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-md);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }

  .nav-link:hover {
    background: var(--btn-ghost-bg-hover);
    color: var(--neutral-900);
  }

  .nav-link.active {
    background: var(--bg-primary);
    color: var(--fg-on-primary);
    font-weight: 600;
    box-shadow: 0 0 0 2px var(--ring);
  }

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

  .cta-secondary:hover {
    background: var(--bg-accent-hover);
    transform: translateY(-1px);
  }

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

    .nav {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--surface-1);
      border-bottom: 1px solid var(--border-on-surface);
      box-shadow: var(--shadow-md);
      padding: 0 var(--space-x) var(--space-y);
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--anim-duration) var(--anim-ease), padding var(--anim-duration) var(--anim-ease);
    }

    .nav.open {
      max-height: 400px;
      padding-bottom: var(--space-y);
    }

    .nav-list {
      flex-direction: column;
      align-items: stretch;
      gap: 0.25rem;
    }

    .nav-link {
      display: block;
      padding: 0.75rem 1rem;
      text-align: center;
    }

    .cta-secondary {
      display: none;
    }
  }

  @media (min-width: 768px) {
    .cta-secondary {
      display: inline-flex;
    }
  }

footer {
      background-color: #1a1a2e;
      color: #e0e0e0;
      padding: 2rem 1rem;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }
    .footer-container {
      max-width: 1200px;
      margin: 0 auto;
    }
    .footer-row {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 1.5rem;
      margin-bottom: 1.5rem;
    }
    .footer-brand {
      flex: 1 1 200px;
    }
    .logo {
      font-size: 1.8rem;
      font-weight: 700;
      color: #f0a500;
      text-decoration: none;
    }
    .footer-nav ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
    }
    .footer-nav a {
      color: #e0e0e0;
      text-decoration: none;
      transition: color 0.3s;
    }
    .footer-nav a:hover {
      color: #f0a500;
    }
    .footer-policy {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }
    .footer-policy a {
      color: #e0e0e0;
      text-decoration: none;
      transition: color 0.3s;
    }
    .footer-policy a:hover {
      color: #f0a500;
    }
    .footer-contacts {
      flex: 1 1 250px;
    }
    .footer-contacts p {
      margin: 0.3rem 0;
    }
    .footer-contacts a {
      color: #e0e0e0;
      text-decoration: none;
    }
    .footer-contacts a:hover {
      color: #f0a500;
    }
    .footer-disclaimer {
      border-top: 1px solid #333;
      padding-top: 1rem;
      margin-top: 1rem;
      font-size: 0.85rem;
      text-align: center;
      color: #aaa;
    }
    .footer-copyright {
      text-align: center;
      font-size: 0.85rem;
      margin-top: 0.5rem;
      color: #aaa;
    }
    @media (max-width: 768px) {
      .footer-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }
      .footer-nav ul {
        justify-content: center;
      }
      .footer-policy {
        align-items: center;
      }
    }

.cookie-cv9 {
        position: fixed;
        inset: 0;
        z-index: 1200;
        display: grid;
        place-items: end;
    }

    .cookie-cv9__overlay {
        position: absolute;
        inset: 0;
        background: var(--overlay);
    }

    .cookie-cv9__dialog {
        position: relative;
        width: min(520px, calc(100vw - (var(--space-x) * 2)));
        border-radius: var(--radius-xl);
        padding: 18px;
        background: linear-gradient(135deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv9__dialog h3 {
        margin: 0 0 8px;
    }

    .cookie-cv9__dialog p {
        margin: 0;
        opacity: .94;
    }

    .cookie-cv9__actions {
        margin-top: 12px;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-cv9__actions button {
        border: 0;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        background: rgba(255, 255, 255, 0.18);
        color: inherit;
        cursor: pointer;
    }

    .cookie-cv9__actions button[data-choice='accept'] {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
    }

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

    .support-ux7__wrap {
        max-width: 900px;
        margin: 0 auto;
    }

    .support-ux7__head {
        margin-bottom: 14px;
    }

    .support-ux7__head h2 {
        margin: 0;
        font-size: clamp(28px, 4vw, 42px);
    }

    .support-ux7__head p {
        margin: 8px 0 0;
        opacity: .92;
    }

    .support-ux7__list {
        display: grid;
        gap: 10px;
    }

    .support-ux7__item {
        border: 1px solid rgba(255, 255, 255, 0.32);
        border-radius: var(--radius-md);
        background: rgba(255, 255, 255, 0.12);
        overflow: hidden;
    }

    .support-ux7__item button {
        width: 100%;
        border: 0;
        background: transparent;
        color: inherit;
        text-align: left;
        font: inherit;
        font-weight: 700;
        padding: 11px 12px;
        cursor: pointer;
    }

    .support-ux7__item p {
        margin: 0;
        max-height: 0;
        overflow: hidden;
        padding: 0 12px;
        transition: max-height var(--anim-duration) var(--anim-ease), padding var(--anim-duration) var(--anim-ease);
        opacity: .95;
    }

    .support-ux7__item.is-open p {
        max-height: 220px;
        padding: 0 12px 12px;
    }

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

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

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

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

  .logo:hover {
    color: var(--brand-contrast);
  }

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

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

  .burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--neutral-800);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }

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

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

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

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

  .nav-link {
    text-decoration: none;
    color: var(--neutral-600);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-md);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }

  .nav-link:hover {
    background: var(--btn-ghost-bg-hover);
    color: var(--neutral-900);
  }

  .nav-link.active {
    background: var(--bg-primary);
    color: var(--fg-on-primary);
    font-weight: 600;
    box-shadow: 0 0 0 2px var(--ring);
  }

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

  .cta-secondary:hover {
    background: var(--bg-accent-hover);
    transform: translateY(-1px);
  }

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

    .nav {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--surface-1);
      border-bottom: 1px solid var(--border-on-surface);
      box-shadow: var(--shadow-md);
      padding: 0 var(--space-x) var(--space-y);
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--anim-duration) var(--anim-ease), padding var(--anim-duration) var(--anim-ease);
    }

    .nav.open {
      max-height: 400px;
      padding-bottom: var(--space-y);
    }

    .nav-list {
      flex-direction: column;
      align-items: stretch;
      gap: 0.25rem;
    }

    .nav-link {
      display: block;
      padding: 0.75rem 1rem;
      text-align: center;
    }

    .cta-secondary {
      display: none;
    }
  }

  @media (min-width: 768px) {
    .cta-secondary {
      display: inline-flex;
    }
  }

footer {
      background-color: #1a1a2e;
      color: #e0e0e0;
      padding: 2rem 1rem;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }
    .footer-container {
      max-width: 1200px;
      margin: 0 auto;
    }
    .footer-row {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 1.5rem;
      margin-bottom: 1.5rem;
    }
    .footer-brand {
      flex: 1 1 200px;
    }
    .logo {
      font-size: 1.8rem;
      font-weight: 700;
      color: #f0a500;
      text-decoration: none;
    }
    .footer-nav ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
    }
    .footer-nav a {
      color: #e0e0e0;
      text-decoration: none;
      transition: color 0.3s;
    }
    .footer-nav a:hover {
      color: #f0a500;
    }
    .footer-policy {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }
    .footer-policy a {
      color: #e0e0e0;
      text-decoration: none;
      transition: color 0.3s;
    }
    .footer-policy a:hover {
      color: #f0a500;
    }
    .footer-contacts {
      flex: 1 1 250px;
    }
    .footer-contacts p {
      margin: 0.3rem 0;
    }
    .footer-contacts a {
      color: #e0e0e0;
      text-decoration: none;
    }
    .footer-contacts a:hover {
      color: #f0a500;
    }
    .footer-disclaimer {
      border-top: 1px solid #333;
      padding-top: 1rem;
      margin-top: 1rem;
      font-size: 0.85rem;
      text-align: center;
      color: #aaa;
    }
    .footer-copyright {
      text-align: center;
      font-size: 0.85rem;
      margin-top: 0.5rem;
      color: #aaa;
    }
    @media (max-width: 768px) {
      .footer-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }
      .footer-nav ul {
        justify-content: center;
      }
      .footer-policy {
        align-items: center;
      }
    }

.cookie-cv9 {
        position: fixed;
        inset: 0;
        z-index: 1200;
        display: grid;
        place-items: end;
    }

    .cookie-cv9__overlay {
        position: absolute;
        inset: 0;
        background: var(--overlay);
    }

    .cookie-cv9__dialog {
        position: relative;
        width: min(520px, calc(100vw - (var(--space-x) * 2)));
        border-radius: var(--radius-xl);
        padding: 18px;
        background: linear-gradient(135deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv9__dialog h3 {
        margin: 0 0 8px;
    }

    .cookie-cv9__dialog p {
        margin: 0;
        opacity: .94;
    }

    .cookie-cv9__actions {
        margin-top: 12px;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-cv9__actions button {
        border: 0;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        background: rgba(255, 255, 255, 0.18);
        color: inherit;
        cursor: pointer;
    }

    .cookie-cv9__actions button[data-choice='accept'] {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
    }

body{margin:0;padding:0;font-family:var(--font-family);font-size:var(--font-size-base);line-height:var(--line-height-base);box-sizing:border-box;background:var(--bg-page);color:var(--fg-on-page)}
*{box-sizing:border-box;}
.frm-lx2{padding:calc(var(--space-y)*2.9) var(--space-x)}
.frm-lx2 .frm-shell{max-width:var(--max-w);margin:0 auto;display:grid;grid-template-columns:.9fr 1.1fr;gap:var(--gap)}
.frm-lx2 .frm-intro{padding:1rem;border-radius:var(--radius-lg);background:var(--surface-2);border:1px solid var(--border-on-surface)}
.frm-lx2 h2{margin:0;font-size:clamp(1.85rem,3.5vw,2.65rem)}
.frm-lx2 .frm-intro p{margin:.45rem 0 0;color:var(--fg-on-surface-light)}
.frm-lx2 .frm-panel{padding:1.1rem;border:1px solid var(--border-on-surface);border-radius:var(--radius-xl);background:var(--surface-1);box-shadow:var(--shadow-md);display:grid;gap:.75rem}
.frm-lx2 .frm-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:.62rem}
.frm-lx2 label{display:grid;gap:.28rem}
.frm-lx2 span{font-size:.84rem;font-weight:700;color:var(--fg-on-surface-light)}
.frm-lx2 input,.frm-lx2 textarea{width:100%;padding:.78rem .82rem;border:1px solid var(--border-on-surface-light);border-radius:var(--radius-md);background:var(--surface-1);color:var(--fg-on-surface);font:inherit;outline:none;transition:border-color var(--anim-duration) var(--anim-ease),box-shadow var(--anim-duration) var(--anim-ease)}
.frm-lx2 input:focus,.frm-lx2 textarea:focus{border-color:var(--ring);box-shadow:0 0 0 3px color-mix(in srgb,var(--ring) 20%, transparent)}
.frm-lx2 textarea{min-height:128px;resize:vertical}
.frm-lx2 button{justify-self:start;padding:.82rem 1.1rem;border:0;border-radius:var(--radius-md);background:var(--bg-primary);color:var(--fg-on-primary);font-weight:700;cursor:pointer}
.frm-lx2 button:hover{background:var(--bg-primary-hover)}
@media (max-width:920px){.frm-lx2 .frm-shell,.frm-lx2 .frm-grid{grid-template-columns:1fr}}

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

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

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

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

  .logo:hover {
    color: var(--brand-contrast);
  }

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

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

  .burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--neutral-800);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }

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

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

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

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

  .nav-link {
    text-decoration: none;
    color: var(--neutral-600);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-md);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }

  .nav-link:hover {
    background: var(--btn-ghost-bg-hover);
    color: var(--neutral-900);
  }

  .nav-link.active {
    background: var(--bg-primary);
    color: var(--fg-on-primary);
    font-weight: 600;
    box-shadow: 0 0 0 2px var(--ring);
  }

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

  .cta-secondary:hover {
    background: var(--bg-accent-hover);
    transform: translateY(-1px);
  }

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

    .nav {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--surface-1);
      border-bottom: 1px solid var(--border-on-surface);
      box-shadow: var(--shadow-md);
      padding: 0 var(--space-x) var(--space-y);
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--anim-duration) var(--anim-ease), padding var(--anim-duration) var(--anim-ease);
    }

    .nav.open {
      max-height: 400px;
      padding-bottom: var(--space-y);
    }

    .nav-list {
      flex-direction: column;
      align-items: stretch;
      gap: 0.25rem;
    }

    .nav-link {
      display: block;
      padding: 0.75rem 1rem;
      text-align: center;
    }

    .cta-secondary {
      display: none;
    }
  }

  @media (min-width: 768px) {
    .cta-secondary {
      display: inline-flex;
    }
  }

footer {
      background-color: #1a1a2e;
      color: #e0e0e0;
      padding: 2rem 1rem;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }
    .footer-container {
      max-width: 1200px;
      margin: 0 auto;
    }
    .footer-row {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 1.5rem;
      margin-bottom: 1.5rem;
    }
    .footer-brand {
      flex: 1 1 200px;
    }
    .logo {
      font-size: 1.8rem;
      font-weight: 700;
      color: #f0a500;
      text-decoration: none;
    }
    .footer-nav ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
    }
    .footer-nav a {
      color: #e0e0e0;
      text-decoration: none;
      transition: color 0.3s;
    }
    .footer-nav a:hover {
      color: #f0a500;
    }
    .footer-policy {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }
    .footer-policy a {
      color: #e0e0e0;
      text-decoration: none;
      transition: color 0.3s;
    }
    .footer-policy a:hover {
      color: #f0a500;
    }
    .footer-contacts {
      flex: 1 1 250px;
    }
    .footer-contacts p {
      margin: 0.3rem 0;
    }
    .footer-contacts a {
      color: #e0e0e0;
      text-decoration: none;
    }
    .footer-contacts a:hover {
      color: #f0a500;
    }
    .footer-disclaimer {
      border-top: 1px solid #333;
      padding-top: 1rem;
      margin-top: 1rem;
      font-size: 0.85rem;
      text-align: center;
      color: #aaa;
    }
    .footer-copyright {
      text-align: center;
      font-size: 0.85rem;
      margin-top: 0.5rem;
      color: #aaa;
    }
    @media (max-width: 768px) {
      .footer-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }
      .footer-nav ul {
        justify-content: center;
      }
      .footer-policy {
        align-items: center;
      }
    }

.cookie-cv9 {
        position: fixed;
        inset: 0;
        z-index: 1200;
        display: grid;
        place-items: end;
    }

    .cookie-cv9__overlay {
        position: absolute;
        inset: 0;
        background: var(--overlay);
    }

    .cookie-cv9__dialog {
        position: relative;
        width: min(520px, calc(100vw - (var(--space-x) * 2)));
        border-radius: var(--radius-xl);
        padding: 18px;
        background: linear-gradient(135deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv9__dialog h3 {
        margin: 0 0 8px;
    }

    .cookie-cv9__dialog p {
        margin: 0;
        opacity: .94;
    }

    .cookie-cv9__actions {
        margin-top: 12px;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-cv9__actions button {
        border: 0;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        background: rgba(255, 255, 255, 0.18);
        color: inherit;
        cursor: pointer;
    }

    .cookie-cv9__actions button[data-choice='accept'] {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
    }

body{margin:0;padding:0;font-family:var(--font-family);font-size:var(--font-size-base);line-height:var(--line-height-base);box-sizing:border-box;background:var(--bg-page);color:var(--fg-on-page)}
*{box-sizing:border-box;}
.pol-lx8{padding:calc(var(--space-y)*2.95) var(--space-x);background:var(--bg-alt)}
.pol-lx8 .pol-wrap{max-width:var(--max-w);margin:0 auto}
.pol-lx8 h2{margin:0 0 .85rem;font-size:clamp(1.76rem,3.1vw,2.45rem)}
.pol-lx8 .pol-cols{display:grid;grid-template-columns:.95fr 1.05fr;gap:var(--gap)}
.pol-lx8 .pol-left{padding:1rem;border-radius:var(--radius-lg);border:1px solid var(--border-on-surface);background:var(--surface-1)}
.pol-lx8 .pol-left h3{margin:0 0 .32rem}
.pol-lx8 .pol-left p{margin:0;color:var(--fg-on-surface-light)}
.pol-lx8 .pol-right{list-style:none;margin:0;padding:0;display:grid;gap:.5rem}
.pol-lx8 .pol-right li{padding:.8rem;border-radius:var(--radius-md);background:var(--surface-1);border:1px solid var(--border-on-surface)}
.pol-lx8 .pol-right h4{margin:0 0 .2rem;font-size:1rem}
.pol-lx8 .pol-right p{margin:0;color:var(--fg-on-surface-light)}
.pol-lx8 .pol-note{display:flex;gap:.7rem;margin-top:.75rem;padding:.8rem;border-radius:var(--radius-md);background:var(--surface-2)}
@media (max-width:860px){.pol-lx8 .pol-cols{grid-template-columns:1fr}.pol-lx8 .pol-note{display:grid}}

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

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

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

  .logo:hover {
    color: var(--brand-contrast);
  }

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

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

  .burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--neutral-800);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }

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

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

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

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

  .nav-link {
    text-decoration: none;
    color: var(--neutral-600);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-md);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }

  .nav-link:hover {
    background: var(--btn-ghost-bg-hover);
    color: var(--neutral-900);
  }

  .nav-link.active {
    background: var(--bg-primary);
    color: var(--fg-on-primary);
    font-weight: 600;
    box-shadow: 0 0 0 2px var(--ring);
  }

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

  .cta-secondary:hover {
    background: var(--bg-accent-hover);
    transform: translateY(-1px);
  }

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

    .nav {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--surface-1);
      border-bottom: 1px solid var(--border-on-surface);
      box-shadow: var(--shadow-md);
      padding: 0 var(--space-x) var(--space-y);
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--anim-duration) var(--anim-ease), padding var(--anim-duration) var(--anim-ease);
    }

    .nav.open {
      max-height: 400px;
      padding-bottom: var(--space-y);
    }

    .nav-list {
      flex-direction: column;
      align-items: stretch;
      gap: 0.25rem;
    }

    .nav-link {
      display: block;
      padding: 0.75rem 1rem;
      text-align: center;
    }

    .cta-secondary {
      display: none;
    }
  }

  @media (min-width: 768px) {
    .cta-secondary {
      display: inline-flex;
    }
  }

footer {
      background-color: #1a1a2e;
      color: #e0e0e0;
      padding: 2rem 1rem;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }
    .footer-container {
      max-width: 1200px;
      margin: 0 auto;
    }
    .footer-row {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 1.5rem;
      margin-bottom: 1.5rem;
    }
    .footer-brand {
      flex: 1 1 200px;
    }
    .logo {
      font-size: 1.8rem;
      font-weight: 700;
      color: #f0a500;
      text-decoration: none;
    }
    .footer-nav ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
    }
    .footer-nav a {
      color: #e0e0e0;
      text-decoration: none;
      transition: color 0.3s;
    }
    .footer-nav a:hover {
      color: #f0a500;
    }
    .footer-policy {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }
    .footer-policy a {
      color: #e0e0e0;
      text-decoration: none;
      transition: color 0.3s;
    }
    .footer-policy a:hover {
      color: #f0a500;
    }
    .footer-contacts {
      flex: 1 1 250px;
    }
    .footer-contacts p {
      margin: 0.3rem 0;
    }
    .footer-contacts a {
      color: #e0e0e0;
      text-decoration: none;
    }
    .footer-contacts a:hover {
      color: #f0a500;
    }
    .footer-disclaimer {
      border-top: 1px solid #333;
      padding-top: 1rem;
      margin-top: 1rem;
      font-size: 0.85rem;
      text-align: center;
      color: #aaa;
    }
    .footer-copyright {
      text-align: center;
      font-size: 0.85rem;
      margin-top: 0.5rem;
      color: #aaa;
    }
    @media (max-width: 768px) {
      .footer-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }
      .footer-nav ul {
        justify-content: center;
      }
      .footer-policy {
        align-items: center;
      }
    }

.cookie-cv9 {
        position: fixed;
        inset: 0;
        z-index: 1200;
        display: grid;
        place-items: end;
    }

    .cookie-cv9__overlay {
        position: absolute;
        inset: 0;
        background: var(--overlay);
    }

    .cookie-cv9__dialog {
        position: relative;
        width: min(520px, calc(100vw - (var(--space-x) * 2)));
        border-radius: var(--radius-xl);
        padding: 18px;
        background: linear-gradient(135deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv9__dialog h3 {
        margin: 0 0 8px;
    }

    .cookie-cv9__dialog p {
        margin: 0;
        opacity: .94;
    }

    .cookie-cv9__actions {
        margin-top: 12px;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-cv9__actions button {
        border: 0;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        background: rgba(255, 255, 255, 0.18);
        color: inherit;
        cursor: pointer;
    }

    .cookie-cv9__actions button[data-choice='accept'] {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
    }

.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: sticky;
    top: 0;
    z-index: 100;
    padding: 0 var(--space-x);
  }

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

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

  .logo:hover {
    color: var(--brand-contrast);
  }

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

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

  .burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--neutral-800);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }

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

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

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

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

  .nav-link {
    text-decoration: none;
    color: var(--neutral-600);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-md);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }

  .nav-link:hover {
    background: var(--btn-ghost-bg-hover);
    color: var(--neutral-900);
  }

  .nav-link.active {
    background: var(--bg-primary);
    color: var(--fg-on-primary);
    font-weight: 600;
    box-shadow: 0 0 0 2px var(--ring);
  }

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

  .cta-secondary:hover {
    background: var(--bg-accent-hover);
    transform: translateY(-1px);
  }

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

    .nav {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--surface-1);
      border-bottom: 1px solid var(--border-on-surface);
      box-shadow: var(--shadow-md);
      padding: 0 var(--space-x) var(--space-y);
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--anim-duration) var(--anim-ease), padding var(--anim-duration) var(--anim-ease);
    }

    .nav.open {
      max-height: 400px;
      padding-bottom: var(--space-y);
    }

    .nav-list {
      flex-direction: column;
      align-items: stretch;
      gap: 0.25rem;
    }

    .nav-link {
      display: block;
      padding: 0.75rem 1rem;
      text-align: center;
    }

    .cta-secondary {
      display: none;
    }
  }

  @media (min-width: 768px) {
    .cta-secondary {
      display: inline-flex;
    }
  }

footer {
      background-color: #1a1a2e;
      color: #e0e0e0;
      padding: 2rem 1rem;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }
    .footer-container {
      max-width: 1200px;
      margin: 0 auto;
    }
    .footer-row {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 1.5rem;
      margin-bottom: 1.5rem;
    }
    .footer-brand {
      flex: 1 1 200px;
    }
    .logo {
      font-size: 1.8rem;
      font-weight: 700;
      color: #f0a500;
      text-decoration: none;
    }
    .footer-nav ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
    }
    .footer-nav a {
      color: #e0e0e0;
      text-decoration: none;
      transition: color 0.3s;
    }
    .footer-nav a:hover {
      color: #f0a500;
    }
    .footer-policy {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }
    .footer-policy a {
      color: #e0e0e0;
      text-decoration: none;
      transition: color 0.3s;
    }
    .footer-policy a:hover {
      color: #f0a500;
    }
    .footer-contacts {
      flex: 1 1 250px;
    }
    .footer-contacts p {
      margin: 0.3rem 0;
    }
    .footer-contacts a {
      color: #e0e0e0;
      text-decoration: none;
    }
    .footer-contacts a:hover {
      color: #f0a500;
    }
    .footer-disclaimer {
      border-top: 1px solid #333;
      padding-top: 1rem;
      margin-top: 1rem;
      font-size: 0.85rem;
      text-align: center;
      color: #aaa;
    }
    .footer-copyright {
      text-align: center;
      font-size: 0.85rem;
      margin-top: 0.5rem;
      color: #aaa;
    }
    @media (max-width: 768px) {
      .footer-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }
      .footer-nav ul {
        justify-content: center;
      }
      .footer-policy {
        align-items: center;
      }
    }

.cookie-cv9 {
        position: fixed;
        inset: 0;
        z-index: 1200;
        display: grid;
        place-items: end;
    }

    .cookie-cv9__overlay {
        position: absolute;
        inset: 0;
        background: var(--overlay);
    }

    .cookie-cv9__dialog {
        position: relative;
        width: min(520px, calc(100vw - (var(--space-x) * 2)));
        border-radius: var(--radius-xl);
        padding: 18px;
        background: linear-gradient(135deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv9__dialog h3 {
        margin: 0 0 8px;
    }

    .cookie-cv9__dialog p {
        margin: 0;
        opacity: .94;
    }

    .cookie-cv9__actions {
        margin-top: 12px;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-cv9__actions button {
        border: 0;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        background: rgba(255, 255, 255, 0.18);
        color: inherit;
        cursor: pointer;
    }

    .cookie-cv9__actions button[data-choice='accept'] {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
    }

body{margin:0;padding:0;font-family:var(--font-family);font-size:var(--font-size-base);line-height:var(--line-height-base);box-sizing:border-box;background:var(--bg-page);color:var(--fg-on-page)}
*{box-sizing:border-box;}
.thx-lx10{padding:calc(var(--space-y)*2.7) var(--space-x)}
.thx-lx10 .thx-wrap{max-width:820px;margin:0 auto;display:grid;gap:.58rem}
.thx-lx10 .thx-note{padding:1rem;border-radius:var(--radius-xl);background:linear-gradient(180deg,var(--surface-1),var(--surface-2));border:1px solid var(--border-on-surface);text-align:center}
.thx-lx10 h2{margin:0;font-size:clamp(1.72rem,3vw,2.4rem)}
.thx-lx10 .thx-note p{margin:.38rem 0 0;color:var(--fg-on-surface-light)}
.thx-lx10 .thx-inline{margin:0;padding:.72rem .8rem;border-radius:var(--radius-md);background:var(--surface-1);border:1px solid var(--border-on-surface)}

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

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

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

  .logo:hover {
    color: var(--brand-contrast);
  }

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

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

  .burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--neutral-800);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }

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

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

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

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

  .nav-link {
    text-decoration: none;
    color: var(--neutral-600);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-md);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }

  .nav-link:hover {
    background: var(--btn-ghost-bg-hover);
    color: var(--neutral-900);
  }

  .nav-link.active {
    background: var(--bg-primary);
    color: var(--fg-on-primary);
    font-weight: 600;
    box-shadow: 0 0 0 2px var(--ring);
  }

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

  .cta-secondary:hover {
    background: var(--bg-accent-hover);
    transform: translateY(-1px);
  }

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

    .nav {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--surface-1);
      border-bottom: 1px solid var(--border-on-surface);
      box-shadow: var(--shadow-md);
      padding: 0 var(--space-x) var(--space-y);
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--anim-duration) var(--anim-ease), padding var(--anim-duration) var(--anim-ease);
    }

    .nav.open {
      max-height: 400px;
      padding-bottom: var(--space-y);
    }

    .nav-list {
      flex-direction: column;
      align-items: stretch;
      gap: 0.25rem;
    }

    .nav-link {
      display: block;
      padding: 0.75rem 1rem;
      text-align: center;
    }

    .cta-secondary {
      display: none;
    }
  }

  @media (min-width: 768px) {
    .cta-secondary {
      display: inline-flex;
    }
  }

footer {
      background-color: #1a1a2e;
      color: #e0e0e0;
      padding: 2rem 1rem;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }
    .footer-container {
      max-width: 1200px;
      margin: 0 auto;
    }
    .footer-row {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 1.5rem;
      margin-bottom: 1.5rem;
    }
    .footer-brand {
      flex: 1 1 200px;
    }
    .logo {
      font-size: 1.8rem;
      font-weight: 700;
      color: #f0a500;
      text-decoration: none;
    }
    .footer-nav ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
    }
    .footer-nav a {
      color: #e0e0e0;
      text-decoration: none;
      transition: color 0.3s;
    }
    .footer-nav a:hover {
      color: #f0a500;
    }
    .footer-policy {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }
    .footer-policy a {
      color: #e0e0e0;
      text-decoration: none;
      transition: color 0.3s;
    }
    .footer-policy a:hover {
      color: #f0a500;
    }
    .footer-contacts {
      flex: 1 1 250px;
    }
    .footer-contacts p {
      margin: 0.3rem 0;
    }
    .footer-contacts a {
      color: #e0e0e0;
      text-decoration: none;
    }
    .footer-contacts a:hover {
      color: #f0a500;
    }
    .footer-disclaimer {
      border-top: 1px solid #333;
      padding-top: 1rem;
      margin-top: 1rem;
      font-size: 0.85rem;
      text-align: center;
      color: #aaa;
    }
    .footer-copyright {
      text-align: center;
      font-size: 0.85rem;
      margin-top: 0.5rem;
      color: #aaa;
    }
    @media (max-width: 768px) {
      .footer-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }
      .footer-nav ul {
        justify-content: center;
      }
      .footer-policy {
        align-items: center;
      }
    }

.cookie-cv9 {
        position: fixed;
        inset: 0;
        z-index: 1200;
        display: grid;
        place-items: end;
    }

    .cookie-cv9__overlay {
        position: absolute;
        inset: 0;
        background: var(--overlay);
    }

    .cookie-cv9__dialog {
        position: relative;
        width: min(520px, calc(100vw - (var(--space-x) * 2)));
        border-radius: var(--radius-xl);
        padding: 18px;
        background: linear-gradient(135deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv9__dialog h3 {
        margin: 0 0 8px;
    }

    .cookie-cv9__dialog p {
        margin: 0;
        opacity: .94;
    }

    .cookie-cv9__actions {
        margin-top: 12px;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-cv9__actions button {
        border: 0;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        background: rgba(255, 255, 255, 0.18);
        color: inherit;
        cursor: pointer;
    }

    .cookie-cv9__actions button[data-choice='accept'] {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
    }

.nf404-v8 {
        padding: clamp(56px, 10vw, 112px) 20px;
        background: var(--bg-alt);
        color: var(--fg-on-page);
    }

    .nf404-v8__box {
        max-width: 760px;
        margin: 0 auto;
        text-align: center;
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-xl);
        background: var(--surface-1);
        padding: clamp(28px, 4vw, 46px);
        box-shadow: var(--shadow-md);
    }

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

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

    .nf404-v8 a {
        display: inline-block;
        margin-top: 18px;
        padding: 10px 16px;
        border-radius: var(--radius-sm);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        text-decoration: none;
    }