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

  --max-w: 1000px;
  --space-x: 0.68rem;
  --space-y: 0.81rem;
  --gap: 0.42rem;

  --radius-xl: 0.82rem;
  --radius-lg: 0.47rem;
  --radius-md: 0.39rem;
  --radius-sm: 0.18rem;

  --shadow-sm: 0 0px 3px rgba(0,0,0,0.07);
  --shadow-md: 0 4px 14px rgba(0,0,0,0.09);
  --shadow-lg: 0 8px 28px rgba(0,0,0,0.11);

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

  --brand: #1a1a2e;
  --brand-contrast: #e0e0e0;
  --accent: #e63946;
  --accent-contrast: #ffffff;

  --neutral-0: #ffffff;
  --neutral-100: #f5f5f5;
  --neutral-300: #b0b0b0;
  --neutral-600: #6c6c6c;
  --neutral-800: #2d2d2d;
  --neutral-900: #121212;

  --bg-page: #121212;
  --fg-on-page: #e0e0e0;

  --bg-alt: #1e1e1e;
  --fg-on-alt: #cfcfcf;

  --surface-1: #1a1a2e;
  --surface-2: #16213e;
  --fg-on-surface: #e0e0e0;
  --border-on-surface: #2a2a4a;

  --surface-light: #2d2d2d;
  --fg-on-surface-light: #e0e0e0;
  --border-on-surface-light: #3a3a3a;

  --bg-primary: #e63946;
  --fg-on-primary: #ffffff;
  --bg-primary-hover: #c1121f;
  --ring: #e63946;

  --bg-accent: #e63946;
  --fg-on-accent: #ffffff;
  --bg-accent-hover: #c1121f;

  --link: #e63946;
  --link-hover: #ff6b6b;

  --gradient-hero: linear-gradient(135deg, #121212 0%, #1a1a2e 50%, #16213e 100%);
  --gradient-accent: linear-gradient(135deg, #e63946 0%, #c1121f 100%);

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

.header {
    position: sticky;
    top: 1rem;
    z-index: 100;
    padding: 0 var(--space-x);
  }

  .header__container {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--surface-1);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    padding: 0.75rem 1.5rem;
    gap: var(--gap);
  }

  .header__logo {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
  }

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

  .header__burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 2.5rem;
    height: 2.5rem;
    background: var(--btn-ghost-bg);
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    gap: 5px;
    padding: 0.5rem;
    transition: background var(--anim-duration) var(--anim-ease);
  }

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

  .header__burger-line {
    display: block;
    width: 1.25rem;
    height: 2px;
    background: var(--fg-on-surface);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }

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

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

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

  .header__nav {
    display: flex;
    align-items: center;
    gap: var(--gap);
    flex-grow: 1;
    justify-content: flex-end;
  }

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

  .header__menu-link {
    text-decoration: none;
    color: var(--fg-on-surface);
    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;
  }

  .header__menu-link:hover {
    background: var(--btn-ghost-bg-hover);
    color: var(--brand);
  }

  .header__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.625rem 1.5rem;
    background: var(--bg-primary);
    color: var(--fg-on-primary);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    font-weight: 600;
    border-radius: var(--radius-lg);
    text-decoration: none;
    white-space: nowrap;
    transition: background var(--anim-duration) var(--anim-ease), transform var(--anim-duration) var(--anim-ease);
    box-shadow: var(--shadow-sm);
  }

  .header__cta:hover {
    background: var(--bg-primary-hover);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
  }

  @media (max-width: 767px) {
    .header {
      padding: 0 var(--space-x);
      top: 0.5rem;
    }

    .header__container {
      padding: 0.5rem 1rem;
      border-radius: var(--radius-lg);
    }

    .header__burger {
      display: flex;
    }

    .header__nav {
      display: none;
      position: absolute;
      top: calc(100% + 0.5rem);
      left: 0;
      right: 0;
      background: var(--surface-1);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-lg);
      padding: 1rem;
      flex-direction: column;
      align-items: stretch;
      gap: 0.75rem;
      z-index: 99;
    }

    .header__nav.open {
      display: flex;
    }

    .header__menu {
      flex-direction: column;
      gap: 0.25rem;
      width: 100%;
    }

    .header__menu-link {
      display: block;
      padding: 0.75rem 1rem;
      text-align: center;
      border-radius: var(--radius-md);
    }

    .header__cta {
      width: 100%;
      text-align: center;
      padding: 0.75rem 1rem;
    }
  }

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

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

    .nfcookie-v9__stack {
        max-width: 860px;
        margin: 0 auto;
        background: linear-gradient(145deg, var(--bg-primary), var(--neutral-900));
        color: var(--fg-on-primary);
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-lg);
    }

    .nfcookie-v9__stack strong {display: block; margin-bottom: 6px;}
    .nfcookie-v9__stack p {margin: 0; opacity: .9;}

    .nfcookie-v9__actions {margin-top: 12px; display: flex; flex-wrap: wrap; gap: 10px;}

    .nfcookie-v9__actions button {
        border: 1px solid rgba(255, 255, 255, .4);
        background: transparent;
        color: var(--fg-on-primary);
        border-radius: 999px;
        padding: 7px 12px;
        cursor: pointer;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .next-strip-l2 {
        padding: clamp(3rem, 7vw, 5.6rem) var(--space-x);
        background: var(--neutral-100);
        color: var(--neutral-900);
    }

    .next-strip-l2__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        gap: 1rem;
        align-items: end;
        flex-wrap: wrap;
    }

    .next-strip-l2__wrap p {
        margin: 0;
        color: var(--neutral-600);
    }

    .next-strip-l2__wrap h2 {
        margin: .5rem 0 0;
        font-size: clamp(2rem, 4vw, 3rem);
    }

    .next-strip-l2__wrap a {
        display: inline-flex;
        min-height: 2.8rem;
        align-items: center;
        justify-content: center;
        padding: 0 1rem;
        border-radius: var(--radius-md);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        text-decoration: none;
    }

    .next-strip-l2__actions {
        max-width: var(--max-w);
        margin: 1rem auto 0;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
        gap: .75rem;
    }

    .next-strip-l2__actions a {
        display: block;
        padding: .95rem;
        border-radius: var(--radius-lg);
        background: var(--neutral-100);
        border: 1px solid var(--neutral-300);
        text-decoration: none;
        color: var(--neutral-900);
        box-shadow: var(--shadow-sm);
    }

    .next-strip-l2__actions span {
        display: block;
        margin-top: .35rem;
        color: var(--neutral-600);
    }

    .next-strip-l2 {
        overflow: hidden;
    }

    .next-strip-l2__wrap {
        background-image: linear-gradient(rgba(255, 255, 255, .86), rgba(255, 255, 255, .86)), url('https://images.pexels.com/photos/1592384/pexels-photo-1592384.jpeg?auto=compress&cs=tinysrgb&w=800');
        color: var(--neutral-900);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        border-radius: var(--radius-xl);
        overflow: hidden;
        padding: var(--gap);
        box-shadow: var(--shadow-sm)
    }

.education-struct-v5 {
        padding: calc(var(--space-y) * 2) var(--space-x);
        background: var(--gradient-accent);
        color: var(--accent-contrast)
    }

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

    .education-struct-v5 h2, .education-struct-v5 h3, .education-struct-v5 p {
        margin: 0
    }

    .education-struct-v5 a {
        text-decoration: none
    }

    .education-struct-v5 article, .education-struct-v5 .row, .education-struct-v5 details, .education-struct-v5 .program {
        background: var(--chip-bg);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        padding: .85rem
    }

    .education-struct-v5 .grid, .education-struct-v5 .tiers {
        display: grid;
        grid-template-columns:repeat(3, minmax(0, 1fr));
        gap: var(--gap)
    }

    .education-struct-v5 .grid a, .education-struct-v5 .tiers a, .education-struct-v5 .cta a {
        display: inline-flex;
        min-height: 2.3rem;
        padding: 0 .8rem;
        align-items: center;
        border-radius: var(--radius-sm);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border: 1px solid var(--ring)
    }

    .education-struct-v5 .path {
        display: grid;
        gap: .65rem
    }

    .education-struct-v5 .path article {
        position: relative;
        padding-left: 1.25rem
    }

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

    .education-struct-v5 .table {
        display: grid;
        gap: .45rem
    }

    .education-struct-v5 .row {
        display: grid;
        grid-template-columns:1fr 1fr 1fr;
        gap: .6rem
    }

    .education-struct-v5 .combo {
        display: grid;
        grid-template-columns:1fr 1fr;
        gap: var(--gap)
    }

    .education-struct-v5 .mentors {
        display: grid;
        gap: .6rem
    }

    .education-struct-v5 .mentors article {
        display: grid;
        grid-template-columns:3rem 1fr;
        gap: .6rem;
        align-items: center
    }

    .education-struct-v5 .mentors img {
        display: block;
        width: 3rem;
        height: 3rem;
        border-radius: 50%;
        object-fit: cover
    }

    .education-struct-v5 .program {
        display: grid;
        gap: .45rem
    }

    .education-struct-v5 .modules {
        display: grid;
        gap: .6rem
    }

    .education-struct-v5 .cta {
        display: flex
    }

    @media (max-width: 900px) {
        .education-struct-v5 .grid, .education-struct-v5 .tiers, .education-struct-v5 .combo {
            grid-template-columns:1fr 1fr
        }
    }

    @media (max-width: 680px) {
        .education-struct-v5 .grid, .education-struct-v5 .tiers, .education-struct-v5 .combo, .education-struct-v5 .row {
            grid-template-columns:1fr
        }
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.header {
    position: sticky;
    top: 1rem;
    z-index: 100;
    padding: 0 var(--space-x);
  }

  .header__container {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--surface-1);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    padding: 0.75rem 1.5rem;
    gap: var(--gap);
  }

  .header__logo {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
  }

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

  .header__burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 2.5rem;
    height: 2.5rem;
    background: var(--btn-ghost-bg);
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    gap: 5px;
    padding: 0.5rem;
    transition: background var(--anim-duration) var(--anim-ease);
  }

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

  .header__burger-line {
    display: block;
    width: 1.25rem;
    height: 2px;
    background: var(--fg-on-surface);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }

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

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

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

  .header__nav {
    display: flex;
    align-items: center;
    gap: var(--gap);
    flex-grow: 1;
    justify-content: flex-end;
  }

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

  .header__menu-link {
    text-decoration: none;
    color: var(--fg-on-surface);
    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;
  }

  .header__menu-link:hover {
    background: var(--btn-ghost-bg-hover);
    color: var(--brand);
  }

  .header__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.625rem 1.5rem;
    background: var(--bg-primary);
    color: var(--fg-on-primary);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    font-weight: 600;
    border-radius: var(--radius-lg);
    text-decoration: none;
    white-space: nowrap;
    transition: background var(--anim-duration) var(--anim-ease), transform var(--anim-duration) var(--anim-ease);
    box-shadow: var(--shadow-sm);
  }

  .header__cta:hover {
    background: var(--bg-primary-hover);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
  }

  @media (max-width: 767px) {
    .header {
      padding: 0 var(--space-x);
      top: 0.5rem;
    }

    .header__container {
      padding: 0.5rem 1rem;
      border-radius: var(--radius-lg);
    }

    .header__burger {
      display: flex;
    }

    .header__nav {
      display: none;
      position: absolute;
      top: calc(100% + 0.5rem);
      left: 0;
      right: 0;
      background: var(--surface-1);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-lg);
      padding: 1rem;
      flex-direction: column;
      align-items: stretch;
      gap: 0.75rem;
      z-index: 99;
    }

    .header__nav.open {
      display: flex;
    }

    .header__menu {
      flex-direction: column;
      gap: 0.25rem;
      width: 100%;
    }

    .header__menu-link {
      display: block;
      padding: 0.75rem 1rem;
      text-align: center;
      border-radius: var(--radius-md);
    }

    .header__cta {
      width: 100%;
      text-align: center;
      padding: 0.75rem 1rem;
    }
  }

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

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

    .nfcookie-v9__stack {
        max-width: 860px;
        margin: 0 auto;
        background: linear-gradient(145deg, var(--bg-primary), var(--neutral-900));
        color: var(--fg-on-primary);
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-lg);
    }

    .nfcookie-v9__stack strong {display: block; margin-bottom: 6px;}
    .nfcookie-v9__stack p {margin: 0; opacity: .9;}

    .nfcookie-v9__actions {margin-top: 12px; display: flex; flex-wrap: wrap; gap: 10px;}

    .nfcookie-v9__actions button {
        border: 1px solid rgba(255, 255, 255, .4);
        background: transparent;
        color: var(--fg-on-primary);
        border-radius: 999px;
        padding: 7px 12px;
        cursor: pointer;
    }

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

.story-banner-c1 {
        padding: clamp(3.6rem, 8vw, 6rem) var(--space-x);
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
    }

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

    .story-banner-c1__copy, .story-banner-c1__media {
        flex: 1 1 20rem;
    }

    .story-banner-c1__copy p:first-child {
        margin: 0;
        color: rgba(255, 255, 255, .76);
        text-transform: uppercase;
        letter-spacing: .1em;
        font-size: .82rem;
    }

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

    .story-banner-c1__copy strong {
        display: block;
        margin-top: .75rem;
    }

    .story-banner-c1__copy p {
        color: rgba(255, 255, 255, .84);
    }

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

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

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

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

    .identity-nv12__head {
        text-align: center;
        margin-bottom: 16px;
    }

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

    .identity-nv12__head h2 {
        margin: 7px 0;
        font-size: clamp(28px, 4vw, 44px);
        color: var(--neutral-900);
    }

    .identity-nv12__head span {
        color: var(--neutral-600);
    }

    .identity-nv12__grid {
        display: grid;
        gap: var(--gap);
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .identity-nv12__grid article {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        background: var(--neutral-100);
        padding: var(--space-y) var(--space-x);
    }

    .identity-nv12__meta {
        display: flex;
        align-items: center;
        gap: 8px;
        margin-bottom: 8px;
    }

    .identity-nv12__meta i {
        font-style: normal;
        font-size: 1.2rem;
    }

    .identity-nv12__meta strong {
        color: var(--brand);
    }

    .identity-nv12__grid h3 {
        margin: 0;
        color: var(--neutral-900);
    }

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

    .identity-nv12__grid blockquote {
        margin: 0;
        padding: 8px 10px;
        border-left: 3px solid var(--brand);
        background: var(--neutral-100);
        color: var(--neutral-800);
    }

.testimonials-struct-v3 {
        padding: calc(var(--space-y) * 2) var(--space-x);
        background: var(--gradient-hero);
        color: var(--brand-contrast)
    }

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

    .testimonials-struct-v3 h2, .testimonials-struct-v3 h3, .testimonials-struct-v3 p {
        margin: 0
    }

    .testimonials-struct-v3 article, .testimonials-struct-v3 blockquote, .testimonials-struct-v3 figure, .testimonials-struct-v3 .spotlight, .testimonials-struct-v3 .row {
        background: var(--chip-bg);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        padding: .85rem
    }

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

    .testimonials-struct-v3 .rail {
        display: grid;
        grid-template-columns:1fr 1fr;
        gap: .6rem
    }

    .testimonials-struct-v3 .stack {
        display: grid;
        gap: .65rem
    }

    .testimonials-struct-v3 .stack article {
        display: grid;
        grid-template-columns:3rem 1fr;
        gap: .6rem;
        align-items: center
    }

    .testimonials-struct-v3 img {
        display: block;
        width: 3rem;
        height: 3rem;
        border-radius: 50%;
        object-fit: cover
    }

    .testimonials-struct-v3 .table {
        display: grid;
        gap: .45rem
    }

    .testimonials-struct-v3 .row {
        display: grid;
        grid-template-columns:12rem 1fr;
        gap: .6rem
    }

    .testimonials-struct-v3 .wall {
        columns: 3;
        column-gap: var(--gap)
    }

    .testimonials-struct-v3 blockquote {
        break-inside: avoid;
        margin: 0 0 var(--gap) 0;
        display: grid;
        gap: .4rem
    }

    .testimonials-struct-v3 .slider {
        display: grid;
        grid-template-columns:repeat(2, minmax(0, 1fr));
        gap: var(--gap)
    }

    .testimonials-struct-v3 .dots {
        display: flex;
        justify-content: center;
        gap: .4rem
    }

    .testimonials-struct-v3 .dots span {
        padding: .25rem .45rem;
        border-radius: var(--radius-sm);
        background: var(--chip-bg);
        border: 1px solid var(--border-on-surface)
    }

    @media (max-width: 900px) {
        .testimonials-struct-v3 .grid, .testimonials-struct-v3 .rail, .testimonials-struct-v3 .slider {
            grid-template-columns:1fr 1fr
        }

        .testimonials-struct-v3 .wall {
            columns: 2
        }
    }

    @media (max-width: 680px) {
        .testimonials-struct-v3 .grid, .testimonials-struct-v3 .rail, .testimonials-struct-v3 .slider, .testimonials-struct-v3 .row {
            grid-template-columns:1fr
        }

        .testimonials-struct-v3 .wall {
            columns: 1
        }
    }

.header {
    position: sticky;
    top: 1rem;
    z-index: 100;
    padding: 0 var(--space-x);
  }

  .header__container {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--surface-1);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    padding: 0.75rem 1.5rem;
    gap: var(--gap);
  }

  .header__logo {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
  }

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

  .header__burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 2.5rem;
    height: 2.5rem;
    background: var(--btn-ghost-bg);
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    gap: 5px;
    padding: 0.5rem;
    transition: background var(--anim-duration) var(--anim-ease);
  }

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

  .header__burger-line {
    display: block;
    width: 1.25rem;
    height: 2px;
    background: var(--fg-on-surface);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }

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

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

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

  .header__nav {
    display: flex;
    align-items: center;
    gap: var(--gap);
    flex-grow: 1;
    justify-content: flex-end;
  }

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

  .header__menu-link {
    text-decoration: none;
    color: var(--fg-on-surface);
    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;
  }

  .header__menu-link:hover {
    background: var(--btn-ghost-bg-hover);
    color: var(--brand);
  }

  .header__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.625rem 1.5rem;
    background: var(--bg-primary);
    color: var(--fg-on-primary);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    font-weight: 600;
    border-radius: var(--radius-lg);
    text-decoration: none;
    white-space: nowrap;
    transition: background var(--anim-duration) var(--anim-ease), transform var(--anim-duration) var(--anim-ease);
    box-shadow: var(--shadow-sm);
  }

  .header__cta:hover {
    background: var(--bg-primary-hover);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
  }

  @media (max-width: 767px) {
    .header {
      padding: 0 var(--space-x);
      top: 0.5rem;
    }

    .header__container {
      padding: 0.5rem 1rem;
      border-radius: var(--radius-lg);
    }

    .header__burger {
      display: flex;
    }

    .header__nav {
      display: none;
      position: absolute;
      top: calc(100% + 0.5rem);
      left: 0;
      right: 0;
      background: var(--surface-1);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-lg);
      padding: 1rem;
      flex-direction: column;
      align-items: stretch;
      gap: 0.75rem;
      z-index: 99;
    }

    .header__nav.open {
      display: flex;
    }

    .header__menu {
      flex-direction: column;
      gap: 0.25rem;
      width: 100%;
    }

    .header__menu-link {
      display: block;
      padding: 0.75rem 1rem;
      text-align: center;
      border-radius: var(--radius-md);
    }

    .header__cta {
      width: 100%;
      text-align: center;
      padding: 0.75rem 1rem;
    }
  }

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

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

    .nfcookie-v9__stack {
        max-width: 860px;
        margin: 0 auto;
        background: linear-gradient(145deg, var(--bg-primary), var(--neutral-900));
        color: var(--fg-on-primary);
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-lg);
    }

    .nfcookie-v9__stack strong {display: block; margin-bottom: 6px;}
    .nfcookie-v9__stack p {margin: 0; opacity: .9;}

    .nfcookie-v9__actions {margin-top: 12px; display: flex; flex-wrap: wrap; gap: 10px;}

    .nfcookie-v9__actions button {
        border: 1px solid rgba(255, 255, 255, .4);
        background: transparent;
        color: var(--fg-on-primary);
        border-radius: 999px;
        padding: 7px 12px;
        cursor: pointer;
    }

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

.features-struct-v3 {
        padding: calc(var(--space-y) * 2) var(--space-x);
        background: var(--gradient-hero);
        color: var(--brand-contrast)
    }

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

    .features-struct-v3 h2, .features-struct-v3 h3, .features-struct-v3 p {
        margin: 0
    }

    .features-struct-v3 .head {
        display: grid;
        gap: calc(var(--gap) * .35)
    }

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

    .features-struct-v3 article {
        background: var(--chip-bg);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        padding: .9rem;
        display: grid;
        gap: .5rem
    }

    .features-struct-v3 .icon {
        min-height: 2rem;
        min-width: 2rem;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: var(--surface-1);
        border-radius: var(--radius-sm)
    }

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

    .features-struct-v3 .layout {
        display: grid;
        grid-template-columns:.9fr 1.1fr;
        gap: var(--gap)
    }

    .features-struct-v3 .chips {
        display: flex;
        flex-wrap: wrap;
        gap: .4rem
    }

    .features-struct-v3 .chips span {
        padding: .3rem .55rem;
        border-radius: var(--radius-sm);
        background: var(--chip-bg);
        border: 1px solid var(--border-on-surface)
    }

    .features-struct-v3 .list {
        display: grid;
        gap: .6rem
    }

    .features-struct-v3 .list div {
        padding: .75rem;
        border-radius: var(--radius-md);
        background: var(--chip-bg);
        border: 1px solid var(--border-on-surface)
    }

    .features-struct-v3 .timeline {
        display: grid;
        gap: .7rem
    }

    .features-struct-v3 .timeline article {
        position: relative;
        padding-left: 1.2rem
    }

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

    .features-struct-v3 .side img, .features-struct-v3 .media img {
        display: block;
        width: 100%;
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-md)
    }

    .features-struct-v3 .table {
        display: grid;
        gap: .45rem
    }

    .features-struct-v3 .row {
        display: grid;
        grid-template-columns:1fr 1fr 1fr;
        gap: .5rem;
        padding: .65rem;
        border-radius: var(--radius-md);
        background: var(--chip-bg);
        border: 1px solid var(--border-on-surface)
    }

    .features-struct-v3 .cards {
        display: grid;
        grid-template-columns:1fr 1fr;
        gap: var(--gap)
    }

    .features-struct-v3 .cta {
        display: flex;
        justify-content: flex-start
    }

    .features-struct-v3 .split {
        display: grid;
        grid-template-columns:1fr 1fr;
        gap: var(--gap)
    }

    .features-struct-v3 details {
        padding: .75rem;
        border-radius: var(--radius-md);
        background: var(--chip-bg);
        border: 1px solid var(--border-on-surface)
    }

    @media (max-width: 900px) {
        .features-struct-v3 .grid, .features-struct-v3 .cards {
            grid-template-columns:1fr 1fr
        }

        .features-struct-v3 .layout, .features-struct-v3 .split {
            grid-template-columns:1fr
        }
    }

    @media (max-width: 680px) {
        .features-struct-v3 .grid, .features-struct-v3 .cards, .features-struct-v3 .row {
            grid-template-columns:1fr
        }
    }

.about-struct-v2 {
        padding: calc(var(--space-y) * 2) var(--space-x);
        background: var(--bg-alt);
        color: var(--fg-on-alt)
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .hiw-orbit-c7 {
        padding: clamp(3.6rem, 8vw, 6.2rem) var(--space-x);
        background: var(--gradient-hero);
        color: var(--gradient-accent);
    }

    .hiw-orbit-c7__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .hiw-orbit-c7__head {
        text-align: center;
        margin-bottom: 1.25rem;
    }

    .hiw-orbit-c7__head p {
        margin: 0;
    }

    .hiw-orbit-c7__head h2 {
        margin: .5rem 0 0;
        font-size: clamp(2rem, 4vw, 3rem);
    }

    .hiw-orbit-c7__ring {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
        gap: var(--gap);
    }

    .hiw-orbit-c7__ring article {
        padding: 1rem;
        background: rgba(255, 255, 255, .52);
        border: 1px solid rgba(255, 255, 255, .2);
        text-align: center;
    }

    .hiw-orbit-c7__ring span {
        display: inline-flex;
        min-width: 2.6rem;
        height: 2.6rem;
        align-items: center;
        justify-content: center;
        border-radius: 999px;
        background: var(--chip-bg);
    }

    .hiw-orbit-c7__ring h3 {
        margin: .75rem 0 .35rem;
    }

    .hiw-orbit-c7__ring p {
        margin: 0;
    }

body{margin:0;padding:0;font-family:var(--font-family);box-sizing: border-box;}
    *{box-sizing:border-box;}.plans-ux10{padding:clamp(50px,7vw,92px) clamp(16px,4vw,36px);background:var(--neutral-100);color:var(--neutral-900)}.plans-ux10__wrap{max-width:var(--max-w);margin:0 auto}.plans-ux10__top p{margin:8px 0 12px;color:var(--neutral-600)}.plans-ux10__matrix{display:grid;grid-template-columns:repeat(12,1fr);gap:10px}.plans-ux10__matrix article{grid-column:span 4;border:1px solid var(--neutral-300);border-radius:var(--radius-md);background:var(--neutral-0);padding:12px}.plans-ux10__matrix article:nth-child(1){grid-column:span 6}.plans-ux10__matrix article:nth-child(2){grid-column:span 6}.plans-ux10 h3{margin:0}.plans-ux10 p{margin:7px 0;color:var(--neutral-800)}.plans-ux10 span{display:inline-flex;margin:0 6px 6px 0;padding:4px 8px;border-radius:999px;border:1px solid var(--neutral-300);background:var(--neutral-100)}.plans-ux10 button{width:100%;margin-top:8px;border:1px solid var(--neutral-300);border-radius:var(--radius-sm);padding:8px 10px;background:var(--neutral-100);color:var(--neutral-900)}@media(max-width:900px){.plans-ux10__matrix article{grid-column:span 6}}@media(max-width:640px){.plans-ux10__matrix article{grid-column:span 12}}

.header {
    position: sticky;
    top: 1rem;
    z-index: 100;
    padding: 0 var(--space-x);
  }

  .header__container {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--surface-1);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    padding: 0.75rem 1.5rem;
    gap: var(--gap);
  }

  .header__logo {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
  }

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

  .header__burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 2.5rem;
    height: 2.5rem;
    background: var(--btn-ghost-bg);
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    gap: 5px;
    padding: 0.5rem;
    transition: background var(--anim-duration) var(--anim-ease);
  }

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

  .header__burger-line {
    display: block;
    width: 1.25rem;
    height: 2px;
    background: var(--fg-on-surface);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }

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

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

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

  .header__nav {
    display: flex;
    align-items: center;
    gap: var(--gap);
    flex-grow: 1;
    justify-content: flex-end;
  }

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

  .header__menu-link {
    text-decoration: none;
    color: var(--fg-on-surface);
    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;
  }

  .header__menu-link:hover {
    background: var(--btn-ghost-bg-hover);
    color: var(--brand);
  }

  .header__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.625rem 1.5rem;
    background: var(--bg-primary);
    color: var(--fg-on-primary);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    font-weight: 600;
    border-radius: var(--radius-lg);
    text-decoration: none;
    white-space: nowrap;
    transition: background var(--anim-duration) var(--anim-ease), transform var(--anim-duration) var(--anim-ease);
    box-shadow: var(--shadow-sm);
  }

  .header__cta:hover {
    background: var(--bg-primary-hover);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
  }

  @media (max-width: 767px) {
    .header {
      padding: 0 var(--space-x);
      top: 0.5rem;
    }

    .header__container {
      padding: 0.5rem 1rem;
      border-radius: var(--radius-lg);
    }

    .header__burger {
      display: flex;
    }

    .header__nav {
      display: none;
      position: absolute;
      top: calc(100% + 0.5rem);
      left: 0;
      right: 0;
      background: var(--surface-1);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-lg);
      padding: 1rem;
      flex-direction: column;
      align-items: stretch;
      gap: 0.75rem;
      z-index: 99;
    }

    .header__nav.open {
      display: flex;
    }

    .header__menu {
      flex-direction: column;
      gap: 0.25rem;
      width: 100%;
    }

    .header__menu-link {
      display: block;
      padding: 0.75rem 1rem;
      text-align: center;
      border-radius: var(--radius-md);
    }

    .header__cta {
      width: 100%;
      text-align: center;
      padding: 0.75rem 1rem;
    }
  }

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

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

    .nfcookie-v9__stack {
        max-width: 860px;
        margin: 0 auto;
        background: linear-gradient(145deg, var(--bg-primary), var(--neutral-900));
        color: var(--fg-on-primary);
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-lg);
    }

    .nfcookie-v9__stack strong {display: block; margin-bottom: 6px;}
    .nfcookie-v9__stack p {margin: 0; opacity: .9;}

    .nfcookie-v9__actions {margin-top: 12px; display: flex; flex-wrap: wrap; gap: 10px;}

    .nfcookie-v9__actions button {
        border: 1px solid rgba(255, 255, 255, .4);
        background: transparent;
        color: var(--fg-on-primary);
        border-radius: 999px;
        padding: 7px 12px;
        cursor: pointer;
    }

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

.form-fresh-v3 {
        padding: calc(var(--space-y) * 2.6) var(--space-x);
        background: var(--surface-1);
        color: var(--fg-on-surface);
    }

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

    .form-fresh-v3 .band {
        padding: 1rem;
        border-radius: var(--radius-md);
        background: var(--surface-2);
        border: 1px solid var(--border-on-surface);
    }

    .form-fresh-v3 .band h2 {
        margin: 0 0 .35rem;
    }

    .form-fresh-v3 .band p {
        margin: 0;
        color: var(--fg-on-surface-light);
    }

    .form-fresh-v3 .row {
        display: flex;
        flex-wrap: wrap;
        gap: .7rem;
    }

    .form-fresh-v3 label {
        display: grid;
        gap: .3rem;
        min-width: 190px;
        flex: 1 1 220px;
    }

    .form-fresh-v3 span {
        font-size: .84rem;
        color: var(--fg-on-surface-light);
    }

    .form-fresh-v3 input {
        padding: .65rem .75rem;
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-sm);
        font: inherit;
    }

    .form-fresh-v3 button {
        padding: .7rem 1rem;
        border: 0;
        border-radius: var(--radius-sm);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        font-weight: 700;
        cursor: pointer;
        align-self: end;
    }

body{margin:0;padding:0;font-family:var(--font-family);box-sizing: border-box;}
    *{box-sizing:border-box;}.clar-ux5{padding:clamp(20px,3vw,44px);background:var(--gradient-accent);color:var(--accent-contrast)}.clar-ux5__wrap{max-width:var(--max-w);margin:0 auto}.clar-ux5__head{margin-bottom:12px}.clar-ux5__head h2{margin:0}.clar-ux5__head p{margin:8px 0 0;color:rgba(255,255,255,.88)}.clar-ux5__grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:10px}.clar-ux5__grid article{border:1px solid rgba(255,255,255,.3);background:rgba(255,255,255,.1);border-radius:var(--radius-md);padding:12px}.clar-ux5__grid span,.clar-ux5__grid small{display:inline-flex;font-size:.82rem;opacity:.9}.clar-ux5__grid h3{margin:6px 0}.clar-ux5__grid p{margin:0;opacity:.93}

.contacts-fresh-v3 {
        padding: calc(var(--space-y) * 3) var(--space-x);
        background: var(--surface-1);
        color: var(--fg-on-surface);
    }

    .contacts-fresh-v3 .shell {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        grid-template-columns:.9fr 1.1fr;
        gap: calc(var(--gap) * 2);
    }

    .contacts-fresh-v3 .left h2 {
        margin: .3rem 0;
        font-size: clamp(1.9rem, 3.8vw, 2.9rem);
    }

    .contacts-fresh-v3 .left p {
        max-width: 46ch;
        color: var(--fg-on-surface-light);
    }

    .contacts-fresh-v3 .right {
        display: grid;
        gap: var(--gap);
    }

    .contacts-fresh-v3 .row {
        padding: 1rem 1.1rem;
        border-left: 4px solid var(--bg-primary);
        background: var(--surface-2);
        border-radius: var(--radius-sm);
    }

    .contacts-fresh-v3 h3 {
        margin: 0 0 .3rem;
    }

    .contacts-fresh-v3 p {
        margin: 0;
        font-weight: 700;
    }

    .contacts-fresh-v3 small {
        color: var(--fg-on-surface-light);
    }

    @media (max-width: 900px) {
        .contacts-fresh-v3 .shell {
            grid-template-columns:1fr;
        }
    }

.header {
    position: sticky;
    top: 1rem;
    z-index: 100;
    padding: 0 var(--space-x);
  }

  .header__container {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--surface-1);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    padding: 0.75rem 1.5rem;
    gap: var(--gap);
  }

  .header__logo {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
  }

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

  .header__burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 2.5rem;
    height: 2.5rem;
    background: var(--btn-ghost-bg);
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    gap: 5px;
    padding: 0.5rem;
    transition: background var(--anim-duration) var(--anim-ease);
  }

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

  .header__burger-line {
    display: block;
    width: 1.25rem;
    height: 2px;
    background: var(--fg-on-surface);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }

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

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

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

  .header__nav {
    display: flex;
    align-items: center;
    gap: var(--gap);
    flex-grow: 1;
    justify-content: flex-end;
  }

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

  .header__menu-link {
    text-decoration: none;
    color: var(--fg-on-surface);
    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;
  }

  .header__menu-link:hover {
    background: var(--btn-ghost-bg-hover);
    color: var(--brand);
  }

  .header__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.625rem 1.5rem;
    background: var(--bg-primary);
    color: var(--fg-on-primary);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    font-weight: 600;
    border-radius: var(--radius-lg);
    text-decoration: none;
    white-space: nowrap;
    transition: background var(--anim-duration) var(--anim-ease), transform var(--anim-duration) var(--anim-ease);
    box-shadow: var(--shadow-sm);
  }

  .header__cta:hover {
    background: var(--bg-primary-hover);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
  }

  @media (max-width: 767px) {
    .header {
      padding: 0 var(--space-x);
      top: 0.5rem;
    }

    .header__container {
      padding: 0.5rem 1rem;
      border-radius: var(--radius-lg);
    }

    .header__burger {
      display: flex;
    }

    .header__nav {
      display: none;
      position: absolute;
      top: calc(100% + 0.5rem);
      left: 0;
      right: 0;
      background: var(--surface-1);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-lg);
      padding: 1rem;
      flex-direction: column;
      align-items: stretch;
      gap: 0.75rem;
      z-index: 99;
    }

    .header__nav.open {
      display: flex;
    }

    .header__menu {
      flex-direction: column;
      gap: 0.25rem;
      width: 100%;
    }

    .header__menu-link {
      display: block;
      padding: 0.75rem 1rem;
      text-align: center;
      border-radius: var(--radius-md);
    }

    .header__cta {
      width: 100%;
      text-align: center;
      padding: 0.75rem 1rem;
    }
  }

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

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

    .nfcookie-v9__stack {
        max-width: 860px;
        margin: 0 auto;
        background: linear-gradient(145deg, var(--bg-primary), var(--neutral-900));
        color: var(--fg-on-primary);
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-lg);
    }

    .nfcookie-v9__stack strong {display: block; margin-bottom: 6px;}
    .nfcookie-v9__stack p {margin: 0; opacity: .9;}

    .nfcookie-v9__actions {margin-top: 12px; display: flex; flex-wrap: wrap; gap: 10px;}

    .nfcookie-v9__actions button {
        border: 1px solid rgba(255, 255, 255, .4);
        background: transparent;
        color: var(--fg-on-primary);
        border-radius: 999px;
        padding: 7px 12px;
        cursor: pointer;
    }

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

.terms-layout-d {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 36px);
        background: var(--accent);
        color: var(--neutral-0);
    }

    .terms-layout-d .wrap {
        max-width: 920px;
        margin: 0 auto;
    }

    .terms-layout-d .section-head {
        margin-bottom: 16px;
    }

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

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

    .terms-layout-d ol {
        margin: 0;
        padding-left: 20px;
        display: grid;
        gap: 10px;
    }

    .terms-layout-d li {
        border: 1px solid rgba(255, 255, 255, .2);
        border-radius: var(--radius-md);
        background: rgba(255, 255, 255, .05);
        padding: 12px;
    }

    .terms-layout-d h3, .terms-layout-d h4 {
        margin: 0 0 8px;
    }

    .terms-layout-d p, .terms-layout-d li li {
        color: var(--neutral-100);
    }

.header {
    position: sticky;
    top: 1rem;
    z-index: 100;
    padding: 0 var(--space-x);
  }

  .header__container {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--surface-1);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    padding: 0.75rem 1.5rem;
    gap: var(--gap);
  }

  .header__logo {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
  }

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

  .header__burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 2.5rem;
    height: 2.5rem;
    background: var(--btn-ghost-bg);
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    gap: 5px;
    padding: 0.5rem;
    transition: background var(--anim-duration) var(--anim-ease);
  }

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

  .header__burger-line {
    display: block;
    width: 1.25rem;
    height: 2px;
    background: var(--fg-on-surface);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }

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

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

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

  .header__nav {
    display: flex;
    align-items: center;
    gap: var(--gap);
    flex-grow: 1;
    justify-content: flex-end;
  }

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

  .header__menu-link {
    text-decoration: none;
    color: var(--fg-on-surface);
    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;
  }

  .header__menu-link:hover {
    background: var(--btn-ghost-bg-hover);
    color: var(--brand);
  }

  .header__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.625rem 1.5rem;
    background: var(--bg-primary);
    color: var(--fg-on-primary);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    font-weight: 600;
    border-radius: var(--radius-lg);
    text-decoration: none;
    white-space: nowrap;
    transition: background var(--anim-duration) var(--anim-ease), transform var(--anim-duration) var(--anim-ease);
    box-shadow: var(--shadow-sm);
  }

  .header__cta:hover {
    background: var(--bg-primary-hover);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
  }

  @media (max-width: 767px) {
    .header {
      padding: 0 var(--space-x);
      top: 0.5rem;
    }

    .header__container {
      padding: 0.5rem 1rem;
      border-radius: var(--radius-lg);
    }

    .header__burger {
      display: flex;
    }

    .header__nav {
      display: none;
      position: absolute;
      top: calc(100% + 0.5rem);
      left: 0;
      right: 0;
      background: var(--surface-1);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-lg);
      padding: 1rem;
      flex-direction: column;
      align-items: stretch;
      gap: 0.75rem;
      z-index: 99;
    }

    .header__nav.open {
      display: flex;
    }

    .header__menu {
      flex-direction: column;
      gap: 0.25rem;
      width: 100%;
    }

    .header__menu-link {
      display: block;
      padding: 0.75rem 1rem;
      text-align: center;
      border-radius: var(--radius-md);
    }

    .header__cta {
      width: 100%;
      text-align: center;
      padding: 0.75rem 1rem;
    }
  }

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

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

    .nfcookie-v9__stack {
        max-width: 860px;
        margin: 0 auto;
        background: linear-gradient(145deg, var(--bg-primary), var(--neutral-900));
        color: var(--fg-on-primary);
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-lg);
    }

    .nfcookie-v9__stack strong {display: block; margin-bottom: 6px;}
    .nfcookie-v9__stack p {margin: 0; opacity: .9;}

    .nfcookie-v9__actions {margin-top: 12px; display: flex; flex-wrap: wrap; gap: 10px;}

    .nfcookie-v9__actions button {
        border: 1px solid rgba(255, 255, 255, .4);
        background: transparent;
        color: var(--fg-on-primary);
        border-radius: 999px;
        padding: 7px 12px;
        cursor: pointer;
    }

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

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

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

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

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

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

    .policy-layout-b ol {
        margin: 0;
        padding-left: 18px;
        display: grid;
        gap: 10px;
    }

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

    .policy-layout-b h3 {
        margin: 0;
        color: var(--brand);
        font-size: 1rem;
    }

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

.header {
    position: sticky;
    top: 1rem;
    z-index: 100;
    padding: 0 var(--space-x);
  }

  .header__container {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--surface-1);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    padding: 0.75rem 1.5rem;
    gap: var(--gap);
  }

  .header__logo {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
  }

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

  .header__burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 2.5rem;
    height: 2.5rem;
    background: var(--btn-ghost-bg);
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    gap: 5px;
    padding: 0.5rem;
    transition: background var(--anim-duration) var(--anim-ease);
  }

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

  .header__burger-line {
    display: block;
    width: 1.25rem;
    height: 2px;
    background: var(--fg-on-surface);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }

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

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

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

  .header__nav {
    display: flex;
    align-items: center;
    gap: var(--gap);
    flex-grow: 1;
    justify-content: flex-end;
  }

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

  .header__menu-link {
    text-decoration: none;
    color: var(--fg-on-surface);
    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;
  }

  .header__menu-link:hover {
    background: var(--btn-ghost-bg-hover);
    color: var(--brand);
  }

  .header__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.625rem 1.5rem;
    background: var(--bg-primary);
    color: var(--fg-on-primary);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    font-weight: 600;
    border-radius: var(--radius-lg);
    text-decoration: none;
    white-space: nowrap;
    transition: background var(--anim-duration) var(--anim-ease), transform var(--anim-duration) var(--anim-ease);
    box-shadow: var(--shadow-sm);
  }

  .header__cta:hover {
    background: var(--bg-primary-hover);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
  }

  @media (max-width: 767px) {
    .header {
      padding: 0 var(--space-x);
      top: 0.5rem;
    }

    .header__container {
      padding: 0.5rem 1rem;
      border-radius: var(--radius-lg);
    }

    .header__burger {
      display: flex;
    }

    .header__nav {
      display: none;
      position: absolute;
      top: calc(100% + 0.5rem);
      left: 0;
      right: 0;
      background: var(--surface-1);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-lg);
      padding: 1rem;
      flex-direction: column;
      align-items: stretch;
      gap: 0.75rem;
      z-index: 99;
    }

    .header__nav.open {
      display: flex;
    }

    .header__menu {
      flex-direction: column;
      gap: 0.25rem;
      width: 100%;
    }

    .header__menu-link {
      display: block;
      padding: 0.75rem 1rem;
      text-align: center;
      border-radius: var(--radius-md);
    }

    .header__cta {
      width: 100%;
      text-align: center;
      padding: 0.75rem 1rem;
    }
  }

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

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

    .nfcookie-v9__stack {
        max-width: 860px;
        margin: 0 auto;
        background: linear-gradient(145deg, var(--bg-primary), var(--neutral-900));
        color: var(--fg-on-primary);
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-lg);
    }

    .nfcookie-v9__stack strong {display: block; margin-bottom: 6px;}
    .nfcookie-v9__stack p {margin: 0; opacity: .9;}

    .nfcookie-v9__actions {margin-top: 12px; display: flex; flex-wrap: wrap; gap: 10px;}

    .nfcookie-v9__actions button {
        border: 1px solid rgba(255, 255, 255, .4);
        background: transparent;
        color: var(--fg-on-primary);
        border-radius: 999px;
        padding: 7px 12px;
        cursor: pointer;
    }

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

.thank-mode-d {
        padding: clamp(56px, 10vw, 114px) 18px;
        background: var(--accent);
        color: var(--accent-contrast);
    }

    .thank-mode-d .core {
        max-width: 740px;
        margin: 0 auto;
        text-align: center;
        padding: clamp(28px, 4vw, 46px);
        border-radius: var(--radius-lg);
        border: 1px solid rgba(255, 255, 255, .24);
    }

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

    .thank-mode-d p {
        margin: 12px 0 0;
        opacity: .9;
    }

    .thank-mode-d a {
        display: inline-block;
        margin-top: 18px;
        padding: 10px 16px;
        border-radius: 999px;
        text-decoration: none;
        background: var(--accent);
        color: var(--accent-contrast);
    }

.header {
    position: sticky;
    top: 1rem;
    z-index: 100;
    padding: 0 var(--space-x);
  }

  .header__container {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--surface-1);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    padding: 0.75rem 1.5rem;
    gap: var(--gap);
  }

  .header__logo {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
  }

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

  .header__burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 2.5rem;
    height: 2.5rem;
    background: var(--btn-ghost-bg);
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    gap: 5px;
    padding: 0.5rem;
    transition: background var(--anim-duration) var(--anim-ease);
  }

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

  .header__burger-line {
    display: block;
    width: 1.25rem;
    height: 2px;
    background: var(--fg-on-surface);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }

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

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

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

  .header__nav {
    display: flex;
    align-items: center;
    gap: var(--gap);
    flex-grow: 1;
    justify-content: flex-end;
  }

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

  .header__menu-link {
    text-decoration: none;
    color: var(--fg-on-surface);
    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;
  }

  .header__menu-link:hover {
    background: var(--btn-ghost-bg-hover);
    color: var(--brand);
  }

  .header__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.625rem 1.5rem;
    background: var(--bg-primary);
    color: var(--fg-on-primary);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    font-weight: 600;
    border-radius: var(--radius-lg);
    text-decoration: none;
    white-space: nowrap;
    transition: background var(--anim-duration) var(--anim-ease), transform var(--anim-duration) var(--anim-ease);
    box-shadow: var(--shadow-sm);
  }

  .header__cta:hover {
    background: var(--bg-primary-hover);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
  }

  @media (max-width: 767px) {
    .header {
      padding: 0 var(--space-x);
      top: 0.5rem;
    }

    .header__container {
      padding: 0.5rem 1rem;
      border-radius: var(--radius-lg);
    }

    .header__burger {
      display: flex;
    }

    .header__nav {
      display: none;
      position: absolute;
      top: calc(100% + 0.5rem);
      left: 0;
      right: 0;
      background: var(--surface-1);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-lg);
      padding: 1rem;
      flex-direction: column;
      align-items: stretch;
      gap: 0.75rem;
      z-index: 99;
    }

    .header__nav.open {
      display: flex;
    }

    .header__menu {
      flex-direction: column;
      gap: 0.25rem;
      width: 100%;
    }

    .header__menu-link {
      display: block;
      padding: 0.75rem 1rem;
      text-align: center;
      border-radius: var(--radius-md);
    }

    .header__cta {
      width: 100%;
      text-align: center;
      padding: 0.75rem 1rem;
    }
  }

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

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

    .nfcookie-v9__stack {
        max-width: 860px;
        margin: 0 auto;
        background: linear-gradient(145deg, var(--bg-primary), var(--neutral-900));
        color: var(--fg-on-primary);
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-lg);
    }

    .nfcookie-v9__stack strong {display: block; margin-bottom: 6px;}
    .nfcookie-v9__stack p {margin: 0; opacity: .9;}

    .nfcookie-v9__actions {margin-top: 12px; display: flex; flex-wrap: wrap; gap: 10px;}

    .nfcookie-v9__actions button {
        border: 1px solid rgba(255, 255, 255, .4);
        background: transparent;
        color: var(--fg-on-primary);
        border-radius: 999px;
        padding: 7px 12px;
        cursor: pointer;
    }

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

.err-slab-a {
    padding: clamp(56px, 10vw, 110px) 20px;
    background: var(--gradient-hero);
    color: var(--fg-on-primary);
}

.err-slab-a .box {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

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

.err-slab-a p {
    margin: 12px 0 0;
    opacity: .92;
}

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