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

  --max-w: 1160px;
  --space-x: 1.34rem;
  --space-y: 1.5rem;
  --gap: 1.11rem;

  --radius-xl: 1.14rem;
  --radius-lg: 1rem;
  --radius-md: 0.52rem;
  --radius-sm: 0.36rem;

  --shadow-sm: 0 3px 6px rgba(0,0,0,0.18);
  --shadow-md: 0 10px 30px rgba(0,0,0,0.23);
  --shadow-lg: 0 24px 48px rgba(0,0,0,0.29);

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

  --brand: #1A3A5C;
  --brand-contrast: #FFFFFF;
  --accent: #D4A843;
  --accent-contrast: #1A1A1A;

  --neutral-0: #FFFFFF;
  --neutral-100: #F5F5F5;
  --neutral-300: #D1D1D1;
  --neutral-600: #6B6B6B;
  --neutral-800: #2C2C2C;
  --neutral-900: #121212;

  --bg-page: #F9F9F9;
  --fg-on-page: #1A1A1A;

  --bg-alt: #1A3A5C;
  --fg-on-alt: #FFFFFF;

  --surface-1: #FFFFFF;
  --surface-2: #F0F4F8;
  --fg-on-surface: #1A1A1A;
  --border-on-surface: #D1D9E6;

  --surface-light: #FFFFFF;
  --fg-on-surface-light: #1A1A1A;
  --border-on-surface-light: #E0E0E0;

  --bg-primary: #1A3A5C;
  --fg-on-primary: #FFFFFF;
  --bg-primary-hover: #15304D;
  --ring: #D4A843;

  --bg-accent: #D4A843;
  --fg-on-accent: #1A1A1A;
  --bg-accent-hover: #C49A3A;

  --link: #1A3A5C;
  --link-hover: #D4A843;

  --gradient-hero: linear-gradient(135deg, #1A3A5C 0%, #2A5A7C 100%);
  --gradient-accent: linear-gradient(135deg, #D4A843 0%, #E8C35A 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: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: var(--space-y) var(--space-x);
    background: transparent;
  }

  .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;
    backdrop-filter: blur(4px);
  }

  .header__logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.02em;
    line-height: 1.2;
  }

  .header__nav {
    display: flex;
    align-items: center;
  }

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

  .header__menu-item {
    margin: 0;
  }

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

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

  .header__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-accent);
    color: var(--fg-on-accent);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    font-weight: 600;
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-lg);
    text-decoration: none;
    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-accent-hover);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
  }

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

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

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

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

  @media (max-width: 767px) {
    .header__container {
      padding: 0.5rem 1rem;
    }

    .header__nav {
      position: absolute;
      top: 100%;
      left: var(--space-x);
      right: var(--space-x);
      background: var(--surface-1);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-lg);
      padding: 1rem;
      display: none;
      margin-top: 0.5rem;
    }

    .header__nav.open {
      display: block;
    }

    .header__menu {
      flex-direction: column;
      gap: 0.5rem;
    }

    .header__menu-link {
      display: block;
      padding: 0.75rem 1rem;
    }

    .header__cta {
      display: none;
    }

    .header__burger {
      display: flex;
    }
  }

  @media (min-width: 768px) {
    .header__burger {
      display: none;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 40px 20px 20px;
    font-family: Arial, 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;
    align-items: flex-start;
    margin-bottom: 20px;
  }
  .footer-brand {
    flex: 1 1 200px;
    margin-bottom: 15px;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #f0a500;
    text-decoration: none;
  }
  .footer-logo:hover {
    color: #ffc107;
  }
  .footer-nav {
    flex: 2 1 300px;
  }
  .footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  .footer-menu li a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  .footer-menu li a:hover {
    color: #f0a500;
  }
  .footer-contacts {
    width: 100%;
  }
  .footer-contacts ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  .footer-contacts ul li {
    font-size: 0.95rem;
  }
  .footer-contacts a {
    color: #e0e0e0;
    text-decoration: none;
  }
  .footer-contacts a:hover {
    color: #f0a500;
    text-decoration: underline;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-top: 1px solid #333;
    padding-top: 20px;
    margin-bottom: 0;
  }
  .footer-copyright {
    margin: 5px 0;
    font-size: 0.9rem;
  }
  .footer-links {
    margin: 5px 0;
    font-size: 0.9rem;
  }
  .footer-links a {
    color: #e0e0e0;
    text-decoration: none;
    margin: 0 5px;
  }
  .footer-links a:hover {
    color: #f0a500;
    text-decoration: underline;
  }
  .footer-disclaimer {
    margin: 10px 0 0;
    font-size: 0.85rem;
    color: #aaa;
    max-width: 800px;
  }
  @media (max-width: 768px) {
    .footer-row {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-menu {
      justify-content: center;
    }
    .footer-contacts ul {
      justify-content: center;
    }
  }

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

    .cookie-cv13__stack {
        max-width: 860px;
        margin: 0 auto;
        background: linear-gradient(145deg, #0f172a, #1e293b);
        color: #e2e8f0;
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv13__stack strong {
        display: block;
        margin-bottom: 6px;
        color: #f8fafc;
    }

    .cookie-cv13__stack p {
        margin: 0;
        color: #cbd5e1;
    }

    .cookie-cv13__actions {
        margin-top: 12px;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .cookie-cv13__actions a {
        text-decoration: none;
        color: #e2e8f0;
        border: 1px solid rgba(148, 163, 184, 0.5);
        border-radius: 999px;
        padding: 7px 12px;
        transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }

    .cookie-cv13__actions a[data-choice='accept'] {
        background: #38bdf8;
        border-color: transparent;
        color: #0f172a;
        font-weight: 700;
    }

    .cookie-cv13__actions a:hover {
        background: rgba(148, 163, 184, 0.2);
    }

    .cookie-cv13__actions a[data-choice='accept']:hover {
        background: #67d3fb;
    }

.hero-arc-v3 {
        padding: calc(var(--space-y) * 2.8) var(--space-x);
        background: var(--bg-alt);
        color: var(--fg-on-alt);
    }

    .hero-arc-v3 .shell {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        grid-template-columns:minmax(0, .82fr) minmax(0, 1.18fr);
        gap: calc(var(--gap) * 2);
        align-items: stretch;
    }

    .hero-arc-v3 .media {
        padding: var(--gap);
        background: var(--surface-1);
        border-radius: var(--radius-xl);
        border: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-md);
    }

    .hero-arc-v3 img {
        width: 100%;
        height: 100%;
        min-height: 320px;
        object-fit: cover;
        border-radius: var(--radius-lg);
    }

    .hero-arc-v3 .copy {
        display: grid;
        gap: var(--gap);
        align-content: start;
    }

    .hero-arc-v3 h1 {
        margin: .2rem 0;
        font-size: clamp(2rem, 4vw, 3.2rem);
        line-height: 1.1;
    }

    .hero-arc-v3 .subtitle {
        margin: 0;
        color: var(--fg-on-surface-light);
    }

    .hero-arc-v3 .stats {
        display: grid;
        grid-template-columns:repeat(2, minmax(0, 1fr));
        gap: var(--gap);
    }

    .hero-arc-v3 .stats article {
        padding: 1rem;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-md);
    }

    .hero-arc-v3 .stats p {
        margin: .3rem 0 0;
        color: var(--fg-on-surface-light);
        font-size: .92rem;
    }

    .hero-arc-v3 .actions {
        display: flex;
        flex-wrap: wrap;
        gap: var(--gap);
    }

    .hero-arc-v3 .actions a {
        text-decoration: none;
        padding: .7rem 1rem;
        border-radius: var(--radius-md);
        border: 1px solid var(--border-on-surface);
        color: var(--fg-on-surface);
        background: var(--surface-1);
    }

    .hero-arc-v3 .actions a:first-child {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border-color: var(--bg-primary);
    }

    @media (max-width: 940px) {
        .hero-arc-v3 .shell {
            grid-template-columns:1fr;
        }

        .hero-arc-v3 .stats {
            grid-template-columns:1fr;
        }
    }

.next-ux19 {
        padding: calc(var(--space-y) * 1.9) var(--space-x);
        background: var(--gradient-hero);
        color: var(--brand-contrast)
    }

    .next-ux19 .shell {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        gap: var(--gap)
    }

    .next-ux19 h2, .next-ux19 h3, .next-ux19 p {
        margin: 0
    }

    .next-ux19 a {
        text-decoration: none
    }

    .next-ux19 .center, .next-ux19 .banner, .next-ux19 .stack, .next-ux19 .bar, .next-ux19 .split, .next-ux19 .duo article {
        padding: .9rem;
        border-radius: var(--radius-xl);
        background: var(--chip-bg);
        border: 1px solid var(--border-on-surface)
    }

    .next-ux19 .center {
        display: grid;
        gap: .5rem;
        justify-items: center;
        text-align: center
    }

    .next-ux19 .split {
        display: grid;
        grid-template-columns:1fr auto;
        gap: var(--gap);
        align-items: center
    }

    .next-ux19 .actions {
        display: flex;
        gap: .45rem;
        flex-wrap: wrap
    }

    .next-ux19 .actions a, .next-ux19 .center a, .next-ux19 .banner > a, .next-ux19 .duo a {
        display: inline-flex;
        min-height: 2.35rem;
        padding: 0 .85rem;
        align-items: center;
        border-radius: var(--radius-sm);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border: 1px solid var(--ring)
    }

    .next-ux19 .banner {
        display: grid;
        gap: .6rem
    }

    .next-ux19 .numbers {
        display: grid;
        grid-template-columns:repeat(3, minmax(0, 1fr));
        gap: .5rem
    }

    .next-ux19 .numbers div {
        padding: .6rem;
        border-radius: var(--radius-md);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface-light)
    }

    .next-ux19 .duo {
        display: grid;
        grid-template-columns:1fr 1fr;
        gap: var(--gap)
    }

    .next-ux19 .duo article {
        display: grid;
        gap: .45rem
    }

    .next-ux19 .stack {
        display: grid;
        gap: .6rem;
        justify-items: start
    }

    .next-ux19 .chips {
        display: flex;
        gap: .35rem;
        flex-wrap: wrap
    }

    .next-ux19 .chips span {
        padding: .28rem .5rem;
        border-radius: var(--radius-sm);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface-light)
    }

    .next-ux19 .bar {
        display: grid;
        grid-template-columns:1fr auto;
        gap: var(--gap);
        align-items: center
    }

    @media (max-width: 820px) {
        .next-ux19 .split, .next-ux19 .bar, .next-ux19 .duo {
            grid-template-columns:1fr
        }

        .next-ux19 .numbers {
            grid-template-columns:1fr 1fr
        }
    }

    @media (max-width: 620px) {
        .next-ux19 .numbers {
            grid-template-columns:1fr
        }
    }

.rec-lx10{padding:calc(var(--space-y)*2.7) var(--space-x)}
.rec-lx10 .rec-wrap{max-width:var(--max-w);margin:0 auto;display:grid;gap:.72rem}
.rec-lx10 .rec-banner{padding:.95rem;border-radius:var(--radius-xl);background:var(--surface-1);border:1px solid var(--border-on-surface)}
.rec-lx10 h2{margin:0;font-size:clamp(1.74rem,3vw,2.43rem)}
.rec-lx10 .rec-banner p{margin:.4rem 0 0;color:var(--fg-on-surface-light)}
.rec-lx10 .rec-scroller{display:grid;grid-auto-flow:column;grid-auto-columns:minmax(260px,1fr);overflow:auto;gap:.6rem;padding-bottom:.3rem}
.rec-lx10 .rec-scroller article{padding:.9rem;border:1px solid var(--border-on-surface);border-radius:var(--radius-md);background:var(--surface-1)}
.rec-lx10 h3{margin:0 0 .25rem;font-size:1rem}
.rec-lx10 article p{margin:0 0 .52rem;color:var(--fg-on-surface-light)}
.rec-lx10 a{text-decoration:none;color:var(--link);font-weight:700}

.why-choose-alt {

        background: var(--gradient-accent);
        color: var(--fg-on-primary);
        padding: clamp(40px, 6vw, 80px) clamp(16px, 3vw, 40px);
        position: relative;
        overflow: hidden;
    }

    .why-choose-alt::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);

        animation: backgroundPulse 4s ease-in-out infinite;
    }

    @keyframes backgroundPulse {
        0%, 100% {

            transform: scale(1);
        }
        50% {
            opacity: 1;
            transform: scale(1.1);
        }
    }

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

    .why-choose-alt .why-choose-alt__h {
        color: var(--fg-on-surface-light);
        text-align: center;
        margin-bottom: clamp(32px, 5vw, 64px);

    }

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

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

    .why-choose-alt .why-choose-alt__list {
        display: flex;
        flex-direction: column;
        gap: clamp(16px, 2vw, 24px);
    }

    .why-choose-alt .why-choose-alt__item {
        display: flex;
        gap: clamp(16px, 2vw, 24px);
        background: var(--surface-light);
        padding: clamp(20px, 3vw, 32px);
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-on-surface-light);
        align-items: flex-start;

        position: relative;
        overflow: hidden;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .why-choose-alt .why-choose-alt__item::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: left 0.6s ease;
    }

    .why-choose-alt .why-choose-alt__item:hover {
        transform: translateX(8px);
        box-shadow: -8px 8px 24px rgba(0, 0, 0, 0.15);
    }

    .why-choose-alt .why-choose-alt__item:hover::before {
        left: 100%;
    }

    .why-choose-alt .why-choose-alt__number {
        flex-shrink: 0;
        width: 56px;
        height: 56px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-radius: var(--radius-md);
        font-size: clamp(20px, 2.5vw, 28px);
        font-weight: 700;
        position: relative;
        transition: transform var(--anim-duration) var(--anim-ease);
    }

    .why-choose-alt .why-choose-alt__item:hover .why-choose-alt__number {
        transform: rotate(360deg) scale(1.1);
    }

    .why-choose-alt .why-choose-alt__number::after {
        content: '';
        position: absolute;
        top: -3px;
        left: -3px;
        right: -3px;
        bottom: -3px;
        border-radius: var(--radius-md);
        border: 2px solid var(--bg-accent);

        animation: numberPulse 2s ease-in-out infinite;
    }

    @keyframes numberPulse {
        0%, 100% {

            transform: scale(1);
        }
        50% {
            opacity: 0.6;
            transform: scale(1.2);
        }
    }

    .why-choose-alt .why-choose-alt__content {
        flex: 1;
    }

    .why-choose-alt .why-choose-alt__item h3 {
        font-size: clamp(18px, 2.2vw, 24px);
        margin: 0 0 0.75rem;
        color: var(--fg-on-surface-light);
        transition: color var(--anim-duration) var(--anim-ease);
    }

    .why-choose-alt .why-choose-alt__item:hover h3 {
        color: var(--bg-accent);
    }

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

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: var(--space-y) var(--space-x);
    background: transparent;
  }

  .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;
    backdrop-filter: blur(4px);
  }

  .header__logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.02em;
    line-height: 1.2;
  }

  .header__nav {
    display: flex;
    align-items: center;
  }

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

  .header__menu-item {
    margin: 0;
  }

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

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

  .header__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-accent);
    color: var(--fg-on-accent);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    font-weight: 600;
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-lg);
    text-decoration: none;
    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-accent-hover);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
  }

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

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

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

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

  @media (max-width: 767px) {
    .header__container {
      padding: 0.5rem 1rem;
    }

    .header__nav {
      position: absolute;
      top: 100%;
      left: var(--space-x);
      right: var(--space-x);
      background: var(--surface-1);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-lg);
      padding: 1rem;
      display: none;
      margin-top: 0.5rem;
    }

    .header__nav.open {
      display: block;
    }

    .header__menu {
      flex-direction: column;
      gap: 0.5rem;
    }

    .header__menu-link {
      display: block;
      padding: 0.75rem 1rem;
    }

    .header__cta {
      display: none;
    }

    .header__burger {
      display: flex;
    }
  }

  @media (min-width: 768px) {
    .header__burger {
      display: none;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 40px 20px 20px;
    font-family: Arial, 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;
    align-items: flex-start;
    margin-bottom: 20px;
  }
  .footer-brand {
    flex: 1 1 200px;
    margin-bottom: 15px;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #f0a500;
    text-decoration: none;
  }
  .footer-logo:hover {
    color: #ffc107;
  }
  .footer-nav {
    flex: 2 1 300px;
  }
  .footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  .footer-menu li a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  .footer-menu li a:hover {
    color: #f0a500;
  }
  .footer-contacts {
    width: 100%;
  }
  .footer-contacts ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  .footer-contacts ul li {
    font-size: 0.95rem;
  }
  .footer-contacts a {
    color: #e0e0e0;
    text-decoration: none;
  }
  .footer-contacts a:hover {
    color: #f0a500;
    text-decoration: underline;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-top: 1px solid #333;
    padding-top: 20px;
    margin-bottom: 0;
  }
  .footer-copyright {
    margin: 5px 0;
    font-size: 0.9rem;
  }
  .footer-links {
    margin: 5px 0;
    font-size: 0.9rem;
  }
  .footer-links a {
    color: #e0e0e0;
    text-decoration: none;
    margin: 0 5px;
  }
  .footer-links a:hover {
    color: #f0a500;
    text-decoration: underline;
  }
  .footer-disclaimer {
    margin: 10px 0 0;
    font-size: 0.85rem;
    color: #aaa;
    max-width: 800px;
  }
  @media (max-width: 768px) {
    .footer-row {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-menu {
      justify-content: center;
    }
    .footer-contacts ul {
      justify-content: center;
    }
  }

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

    .cookie-cv13__stack {
        max-width: 860px;
        margin: 0 auto;
        background: linear-gradient(145deg, #0f172a, #1e293b);
        color: #e2e8f0;
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv13__stack strong {
        display: block;
        margin-bottom: 6px;
        color: #f8fafc;
    }

    .cookie-cv13__stack p {
        margin: 0;
        color: #cbd5e1;
    }

    .cookie-cv13__actions {
        margin-top: 12px;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .cookie-cv13__actions a {
        text-decoration: none;
        color: #e2e8f0;
        border: 1px solid rgba(148, 163, 184, 0.5);
        border-radius: 999px;
        padding: 7px 12px;
        transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }

    .cookie-cv13__actions a[data-choice='accept'] {
        background: #38bdf8;
        border-color: transparent;
        color: #0f172a;
        font-weight: 700;
    }

    .cookie-cv13__actions a:hover {
        background: rgba(148, 163, 184, 0.2);
    }

    .cookie-cv13__actions a[data-choice='accept']:hover {
        background: #67d3fb;
    }

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

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

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

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: var(--space-y) var(--space-x);
    background: transparent;
  }

  .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;
    backdrop-filter: blur(4px);
  }

  .header__logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.02em;
    line-height: 1.2;
  }

  .header__nav {
    display: flex;
    align-items: center;
  }

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

  .header__menu-item {
    margin: 0;
  }

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

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

  .header__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-accent);
    color: var(--fg-on-accent);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    font-weight: 600;
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-lg);
    text-decoration: none;
    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-accent-hover);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
  }

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

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

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

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

  @media (max-width: 767px) {
    .header__container {
      padding: 0.5rem 1rem;
    }

    .header__nav {
      position: absolute;
      top: 100%;
      left: var(--space-x);
      right: var(--space-x);
      background: var(--surface-1);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-lg);
      padding: 1rem;
      display: none;
      margin-top: 0.5rem;
    }

    .header__nav.open {
      display: block;
    }

    .header__menu {
      flex-direction: column;
      gap: 0.5rem;
    }

    .header__menu-link {
      display: block;
      padding: 0.75rem 1rem;
    }

    .header__cta {
      display: none;
    }

    .header__burger {
      display: flex;
    }
  }

  @media (min-width: 768px) {
    .header__burger {
      display: none;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 40px 20px 20px;
    font-family: Arial, 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;
    align-items: flex-start;
    margin-bottom: 20px;
  }
  .footer-brand {
    flex: 1 1 200px;
    margin-bottom: 15px;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #f0a500;
    text-decoration: none;
  }
  .footer-logo:hover {
    color: #ffc107;
  }
  .footer-nav {
    flex: 2 1 300px;
  }
  .footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  .footer-menu li a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  .footer-menu li a:hover {
    color: #f0a500;
  }
  .footer-contacts {
    width: 100%;
  }
  .footer-contacts ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  .footer-contacts ul li {
    font-size: 0.95rem;
  }
  .footer-contacts a {
    color: #e0e0e0;
    text-decoration: none;
  }
  .footer-contacts a:hover {
    color: #f0a500;
    text-decoration: underline;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-top: 1px solid #333;
    padding-top: 20px;
    margin-bottom: 0;
  }
  .footer-copyright {
    margin: 5px 0;
    font-size: 0.9rem;
  }
  .footer-links {
    margin: 5px 0;
    font-size: 0.9rem;
  }
  .footer-links a {
    color: #e0e0e0;
    text-decoration: none;
    margin: 0 5px;
  }
  .footer-links a:hover {
    color: #f0a500;
    text-decoration: underline;
  }
  .footer-disclaimer {
    margin: 10px 0 0;
    font-size: 0.85rem;
    color: #aaa;
    max-width: 800px;
  }
  @media (max-width: 768px) {
    .footer-row {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-menu {
      justify-content: center;
    }
    .footer-contacts ul {
      justify-content: center;
    }
  }

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

    .cookie-cv13__stack {
        max-width: 860px;
        margin: 0 auto;
        background: linear-gradient(145deg, #0f172a, #1e293b);
        color: #e2e8f0;
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv13__stack strong {
        display: block;
        margin-bottom: 6px;
        color: #f8fafc;
    }

    .cookie-cv13__stack p {
        margin: 0;
        color: #cbd5e1;
    }

    .cookie-cv13__actions {
        margin-top: 12px;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .cookie-cv13__actions a {
        text-decoration: none;
        color: #e2e8f0;
        border: 1px solid rgba(148, 163, 184, 0.5);
        border-radius: 999px;
        padding: 7px 12px;
        transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }

    .cookie-cv13__actions a[data-choice='accept'] {
        background: #38bdf8;
        border-color: transparent;
        color: #0f172a;
        font-weight: 700;
    }

    .cookie-cv13__actions a:hover {
        background: rgba(148, 163, 184, 0.2);
    }

    .cookie-cv13__actions a[data-choice='accept']:hover {
        background: #67d3fb;
    }

.cap-lx3{padding:calc(var(--space-y)*3) var(--space-x)}
.cap-lx3 .cap-shell{max-width:var(--max-w);margin:0 auto}
.cap-lx3 h2{margin:0;font-size:clamp(1.9rem,3.7vw,2.8rem)}
.cap-lx3 .cap-sub{margin:.4rem 0 1rem;color:var(--fg-on-surface-light);max-width:60ch}
.cap-lx3 .cap-track{display:grid;grid-auto-flow:column;grid-auto-columns:minmax(220px,1fr);gap:.75rem;overflow:auto;padding-bottom:.4rem;scroll-snap-type:x mandatory}
.cap-lx3 article{scroll-snap-align:start;padding:1rem;border-radius:var(--radius-lg);border:1px solid var(--border-on-surface);background:var(--surface-1);min-height:180px;display:grid;align-content:start}
.cap-lx3 article:nth-child(odd){background:color-mix(in srgb,var(--surface-1) 86%, var(--bg-accent) 14%)}
.cap-lx3 h3{margin:0 0 .4rem}
.cap-lx3 article p{margin:0 0 .6rem;color:var(--fg-on-surface-light)}
.cap-lx3 article small{font-weight:700;color:var(--link)}

.hiw-zigzag-c3 {
        padding: clamp(3.6rem, 8vw, 6.1rem) var(--space-x);
        background: var(--gradient-accent);
        color: var(--accent-contrast);
    }

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

    .hiw-zigzag-c3__head {
        max-width: 42rem;
        margin: 0 auto 1.25rem;
        text-align: center;
    }

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

    .hiw-zigzag-c3__head p {
        margin: .55rem 0 0;

    }

    .hiw-zigzag-c3__grid {
        display: grid;
        gap: var(--gap);
    }

    .hiw-zigzag-c3__grid article {
        width: min(40rem, 60%);
        padding: 1rem;
        border-radius: var(--radius-xl);
        background: rgba(255, 255, 255, .2);
        backdrop-filter: blur(8px);
    }

    .hiw-zigzag-c3__grid article:nth-child(odd) {
        margin-right: auto;
    }

    .hiw-zigzag-c3__grid article:nth-child(even) {
        margin-left: auto;
    }

    .hiw-zigzag-c3__num {
        display: inline-flex;
        min-width: 2.6rem;
        height: 2.6rem;
        align-items: center;
        justify-content: center;
        border-radius: 999px;
        background: var(--surface-1);
        color: var(--fg-on-page);
        font-weight: 700;
    }

    .hiw-zigzag-c3__grid h3 {
        margin: .75rem 0 .35rem;
    }

    .hiw-zigzag-c3__grid p {
        margin: 0;
        color: rgba(255, 255, 255, .9);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: var(--space-y) var(--space-x);
    background: transparent;
  }

  .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;
    backdrop-filter: blur(4px);
  }

  .header__logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.02em;
    line-height: 1.2;
  }

  .header__nav {
    display: flex;
    align-items: center;
  }

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

  .header__menu-item {
    margin: 0;
  }

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

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

  .header__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-accent);
    color: var(--fg-on-accent);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    font-weight: 600;
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-lg);
    text-decoration: none;
    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-accent-hover);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
  }

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

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

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

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

  @media (max-width: 767px) {
    .header__container {
      padding: 0.5rem 1rem;
    }

    .header__nav {
      position: absolute;
      top: 100%;
      left: var(--space-x);
      right: var(--space-x);
      background: var(--surface-1);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-lg);
      padding: 1rem;
      display: none;
      margin-top: 0.5rem;
    }

    .header__nav.open {
      display: block;
    }

    .header__menu {
      flex-direction: column;
      gap: 0.5rem;
    }

    .header__menu-link {
      display: block;
      padding: 0.75rem 1rem;
    }

    .header__cta {
      display: none;
    }

    .header__burger {
      display: flex;
    }
  }

  @media (min-width: 768px) {
    .header__burger {
      display: none;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 40px 20px 20px;
    font-family: Arial, 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;
    align-items: flex-start;
    margin-bottom: 20px;
  }
  .footer-brand {
    flex: 1 1 200px;
    margin-bottom: 15px;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #f0a500;
    text-decoration: none;
  }
  .footer-logo:hover {
    color: #ffc107;
  }
  .footer-nav {
    flex: 2 1 300px;
  }
  .footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  .footer-menu li a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  .footer-menu li a:hover {
    color: #f0a500;
  }
  .footer-contacts {
    width: 100%;
  }
  .footer-contacts ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  .footer-contacts ul li {
    font-size: 0.95rem;
  }
  .footer-contacts a {
    color: #e0e0e0;
    text-decoration: none;
  }
  .footer-contacts a:hover {
    color: #f0a500;
    text-decoration: underline;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-top: 1px solid #333;
    padding-top: 20px;
    margin-bottom: 0;
  }
  .footer-copyright {
    margin: 5px 0;
    font-size: 0.9rem;
  }
  .footer-links {
    margin: 5px 0;
    font-size: 0.9rem;
  }
  .footer-links a {
    color: #e0e0e0;
    text-decoration: none;
    margin: 0 5px;
  }
  .footer-links a:hover {
    color: #f0a500;
    text-decoration: underline;
  }
  .footer-disclaimer {
    margin: 10px 0 0;
    font-size: 0.85rem;
    color: #aaa;
    max-width: 800px;
  }
  @media (max-width: 768px) {
    .footer-row {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-menu {
      justify-content: center;
    }
    .footer-contacts ul {
      justify-content: center;
    }
  }

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

    .cookie-cv13__stack {
        max-width: 860px;
        margin: 0 auto;
        background: linear-gradient(145deg, #0f172a, #1e293b);
        color: #e2e8f0;
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv13__stack strong {
        display: block;
        margin-bottom: 6px;
        color: #f8fafc;
    }

    .cookie-cv13__stack p {
        margin: 0;
        color: #cbd5e1;
    }

    .cookie-cv13__actions {
        margin-top: 12px;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .cookie-cv13__actions a {
        text-decoration: none;
        color: #e2e8f0;
        border: 1px solid rgba(148, 163, 184, 0.5);
        border-radius: 999px;
        padding: 7px 12px;
        transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }

    .cookie-cv13__actions a[data-choice='accept'] {
        background: #38bdf8;
        border-color: transparent;
        color: #0f172a;
        font-weight: 700;
    }

    .cookie-cv13__actions a:hover {
        background: rgba(148, 163, 184, 0.2);
    }

    .cookie-cv13__actions a[data-choice='accept']:hover {
        background: #67d3fb;
    }

.contacts-u7{padding:calc(var(--space-y)*2.9) var(--space-x);background:var(--gradient-accent);color:var(--brand-contrast)} .contacts-u7 .shell{max-width:var(--max-w);margin:0 auto;display:grid;gap:var(--gap)} .contacts-u7 h2{margin:0;font-size:clamp(1.85rem,3.6vw,2.8rem);line-height:1.1} .contacts-u7 .sub{margin:.35rem 0 0;opacity:.9;} .contacts-u7 article,.contacts-u7 li{padding:.85rem;border-radius:var(--radius-sm);background:var(--chip-bg);border:1px solid var(--btn-ghost-bg-hover);list-style:none} .contacts-u7 p{margin:0} .contacts-u7 a{text-decoration:none;color:inherit;font-weight:700} .contacts-u7 .pulse{margin-top:.8rem;padding:1rem;border-radius:var(--radius-lg);background:var(--chip-bg);border:1px solid var(--btn-ghost-bg-hover);animation:contacts-u7Pulse 2.8s ease-in-out infinite} @keyframes contacts-u7Pulse{0%,100%{transform:scale(1)}50%{transform:scale(1.01)}} .contacts-u7 article{transition:transform var(--anim-duration) var(--anim-ease),box-shadow var(--anim-duration) var(--anim-ease)} .contacts-u7 article:hover{transform:translateY(-4px);box-shadow:var(--shadow-md)} @media (max-width:860px){.contacts-u7 .split,.contacts-u7 .media,.contacts-u7 .grid,.contacts-u7 .cards,.contacts-u7 .bento,.contacts-u7 .foot{grid-template-columns:1fr}}

.frm-lx4{padding:calc(var(--space-y)*2.7) var(--space-x);background:var(--bg-alt)}
.frm-lx4 .frm-wrap{max-width:860px;margin:0 auto;padding:1.1rem;border-radius:var(--radius-xl);background:var(--surface-1);border:1px solid var(--border-on-surface)}
.frm-lx4 h2{margin:0;font-size:clamp(1.75rem,3.1vw,2.45rem)}
.frm-lx4 p{margin:.45rem 0 .95rem;color:var(--fg-on-surface-light)}
.frm-lx4 .frm-rows{display:grid;gap:.58rem}
.frm-lx4 .frm-row{display:grid;grid-template-columns:160px 1fr;gap:.75rem;align-items:center;padding:.62rem;border-radius:var(--radius-md);background:var(--surface-2)}
.frm-lx4 .frm-row span{font-size:.85rem;font-weight:700}
.frm-lx4 input,.frm-lx4 textarea{width:100%;border:1px solid var(--border-on-surface-light);border-radius:var(--radius-sm);padding:.72rem .75rem;font:inherit;background:var(--surface-1);color:var(--fg-on-surface)}
.frm-lx4 .frm-row--message{align-items:start}
.frm-lx4 textarea{min-height:132px;resize:vertical}
.frm-lx4 button{margin-top:.25rem;padding:.84rem 1.2rem;border:1px solid var(--bg-primary);border-radius:var(--radius-md);background:var(--bg-primary);color:var(--fg-on-primary);font-weight:700;cursor:pointer}
.frm-lx4 button:hover{background:var(--bg-primary-hover)}
@media (max-width:720px){.frm-lx4 .frm-row{grid-template-columns:1fr}}

.connect {
        color: var(--accent-contrast);
        background: var(--accent);
        padding: clamp(32px, 5vw, 64px) clamp(16px, 4vw, 40px);
    }

    .connect .connect__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .connect .connect__header {
        text-align: center;
        margin-bottom: clamp(40px, 6vw, 56px);
    }

    .connect .connect__header h2 {
        font-size: clamp(28px, 5vw, 48px);
        margin: 0 0 0.5rem;
    }

    .connect .connect__header p {
        font-size: clamp(16px, 2vw, 18px);
        margin: 0;
    }

    .connect .connect__grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
        gap: clamp(20px, 3vw, 28px);
    }

    .connect .connect__item {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: clamp(12px, 2vw, 16px);
        padding: clamp(24px, 4vw, 32px);
        background: var(--bg-page);
        border-radius: var(--radius-lg);
        text-decoration: none;
        color: inherit;
        transition: transform 0.3s, box-shadow 0.3s;
    }

    .connect .connect__item:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-md);
    }

    .connect .connect__name {
        font-size: clamp(16px, 2.5vw, 18px);
        font-weight: 600;
        color: var(--fg-on-page);
    }

.map-split-l1 {
        padding: clamp(3.2rem, 7vw, 5.8rem) var(--space-x);
        background: var(--surface-1);
        color: var(--fg-on-page);
    }

    .map-split-l1__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        grid-template-columns: .85fr 1.15fr;
        gap: 1rem;
    }

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

    .map-split-l1__side p {
        margin: .6rem 0 0;
        color: var(--neutral-600);
    }

    .map-split-l1__list {
        margin-top: 1rem;
        display: grid;
        gap: .7rem;
    }

    .map-split-l1__list div {
        padding: .9rem;
        border-radius: var(--radius-md);
        background: var(--bg-alt);
        border: 1px solid var(--border-on-surface-light);
    }

    .map-split-l1__list span {
        display: block;
        margin-top: .3rem;
        color: var(--neutral-600);
    }

    .map-split-l1__embed {
        overflow: hidden;
        border-radius: var(--radius-xl);
        border: 1px solid var(--border-on-surface-light);
        box-shadow: var(--shadow-sm);
    }

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

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

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: var(--space-y) var(--space-x);
    background: transparent;
  }

  .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;
    backdrop-filter: blur(4px);
  }

  .header__logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.02em;
    line-height: 1.2;
  }

  .header__nav {
    display: flex;
    align-items: center;
  }

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

  .header__menu-item {
    margin: 0;
  }

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

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

  .header__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-accent);
    color: var(--fg-on-accent);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    font-weight: 600;
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-lg);
    text-decoration: none;
    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-accent-hover);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
  }

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

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

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

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

  @media (max-width: 767px) {
    .header__container {
      padding: 0.5rem 1rem;
    }

    .header__nav {
      position: absolute;
      top: 100%;
      left: var(--space-x);
      right: var(--space-x);
      background: var(--surface-1);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-lg);
      padding: 1rem;
      display: none;
      margin-top: 0.5rem;
    }

    .header__nav.open {
      display: block;
    }

    .header__menu {
      flex-direction: column;
      gap: 0.5rem;
    }

    .header__menu-link {
      display: block;
      padding: 0.75rem 1rem;
    }

    .header__cta {
      display: none;
    }

    .header__burger {
      display: flex;
    }
  }

  @media (min-width: 768px) {
    .header__burger {
      display: none;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 40px 20px 20px;
    font-family: Arial, 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;
    align-items: flex-start;
    margin-bottom: 20px;
  }
  .footer-brand {
    flex: 1 1 200px;
    margin-bottom: 15px;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #f0a500;
    text-decoration: none;
  }
  .footer-logo:hover {
    color: #ffc107;
  }
  .footer-nav {
    flex: 2 1 300px;
  }
  .footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  .footer-menu li a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  .footer-menu li a:hover {
    color: #f0a500;
  }
  .footer-contacts {
    width: 100%;
  }
  .footer-contacts ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  .footer-contacts ul li {
    font-size: 0.95rem;
  }
  .footer-contacts a {
    color: #e0e0e0;
    text-decoration: none;
  }
  .footer-contacts a:hover {
    color: #f0a500;
    text-decoration: underline;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-top: 1px solid #333;
    padding-top: 20px;
    margin-bottom: 0;
  }
  .footer-copyright {
    margin: 5px 0;
    font-size: 0.9rem;
  }
  .footer-links {
    margin: 5px 0;
    font-size: 0.9rem;
  }
  .footer-links a {
    color: #e0e0e0;
    text-decoration: none;
    margin: 0 5px;
  }
  .footer-links a:hover {
    color: #f0a500;
    text-decoration: underline;
  }
  .footer-disclaimer {
    margin: 10px 0 0;
    font-size: 0.85rem;
    color: #aaa;
    max-width: 800px;
  }
  @media (max-width: 768px) {
    .footer-row {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-menu {
      justify-content: center;
    }
    .footer-contacts ul {
      justify-content: center;
    }
  }

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

    .cookie-cv13__stack {
        max-width: 860px;
        margin: 0 auto;
        background: linear-gradient(145deg, #0f172a, #1e293b);
        color: #e2e8f0;
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv13__stack strong {
        display: block;
        margin-bottom: 6px;
        color: #f8fafc;
    }

    .cookie-cv13__stack p {
        margin: 0;
        color: #cbd5e1;
    }

    .cookie-cv13__actions {
        margin-top: 12px;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .cookie-cv13__actions a {
        text-decoration: none;
        color: #e2e8f0;
        border: 1px solid rgba(148, 163, 184, 0.5);
        border-radius: 999px;
        padding: 7px 12px;
        transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }

    .cookie-cv13__actions a[data-choice='accept'] {
        background: #38bdf8;
        border-color: transparent;
        color: #0f172a;
        font-weight: 700;
    }

    .cookie-cv13__actions a:hover {
        background: rgba(148, 163, 184, 0.2);
    }

    .cookie-cv13__actions a[data-choice='accept']:hover {
        background: #67d3fb;
    }

.pol-lx4{padding:calc(var(--space-y)*3) var(--space-x);background:var(--bg-alt)}
.pol-lx4 .pol-max{max-width:var(--max-w);margin:0 auto;display:grid;gap:.82rem}
.pol-lx4 h2{margin:0;font-size:clamp(1.72rem,3.1vw,2.42rem)}
.pol-lx4 .pol-head p{margin:.38rem 0 0;color:var(--fg-on-surface-light)}
.pol-lx4 .pol-stream{display:grid;gap:.54rem}
.pol-lx4 article{padding:.85rem .9rem;border-inline-start:4px solid var(--bg-primary);border-radius:var(--radius-sm);background:var(--surface-1);border:1px solid var(--border-on-surface)}
.pol-lx4 h3{margin:0 0 .24rem;font-size:1rem}
.pol-lx4 article p{margin:0;color:var(--fg-on-surface-light)}
.pol-lx4 .pol-contact{margin:0;padding:.85rem;border-radius:var(--radius-md);background:var(--surface-1);border:1px dashed var(--border-on-surface-light)}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: var(--space-y) var(--space-x);
    background: transparent;
  }

  .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;
    backdrop-filter: blur(4px);
  }

  .header__logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.02em;
    line-height: 1.2;
  }

  .header__nav {
    display: flex;
    align-items: center;
  }

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

  .header__menu-item {
    margin: 0;
  }

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

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

  .header__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-accent);
    color: var(--fg-on-accent);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    font-weight: 600;
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-lg);
    text-decoration: none;
    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-accent-hover);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
  }

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

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

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

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

  @media (max-width: 767px) {
    .header__container {
      padding: 0.5rem 1rem;
    }

    .header__nav {
      position: absolute;
      top: 100%;
      left: var(--space-x);
      right: var(--space-x);
      background: var(--surface-1);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-lg);
      padding: 1rem;
      display: none;
      margin-top: 0.5rem;
    }

    .header__nav.open {
      display: block;
    }

    .header__menu {
      flex-direction: column;
      gap: 0.5rem;
    }

    .header__menu-link {
      display: block;
      padding: 0.75rem 1rem;
    }

    .header__cta {
      display: none;
    }

    .header__burger {
      display: flex;
    }
  }

  @media (min-width: 768px) {
    .header__burger {
      display: none;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 40px 20px 20px;
    font-family: Arial, 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;
    align-items: flex-start;
    margin-bottom: 20px;
  }
  .footer-brand {
    flex: 1 1 200px;
    margin-bottom: 15px;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #f0a500;
    text-decoration: none;
  }
  .footer-logo:hover {
    color: #ffc107;
  }
  .footer-nav {
    flex: 2 1 300px;
  }
  .footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  .footer-menu li a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  .footer-menu li a:hover {
    color: #f0a500;
  }
  .footer-contacts {
    width: 100%;
  }
  .footer-contacts ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  .footer-contacts ul li {
    font-size: 0.95rem;
  }
  .footer-contacts a {
    color: #e0e0e0;
    text-decoration: none;
  }
  .footer-contacts a:hover {
    color: #f0a500;
    text-decoration: underline;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-top: 1px solid #333;
    padding-top: 20px;
    margin-bottom: 0;
  }
  .footer-copyright {
    margin: 5px 0;
    font-size: 0.9rem;
  }
  .footer-links {
    margin: 5px 0;
    font-size: 0.9rem;
  }
  .footer-links a {
    color: #e0e0e0;
    text-decoration: none;
    margin: 0 5px;
  }
  .footer-links a:hover {
    color: #f0a500;
    text-decoration: underline;
  }
  .footer-disclaimer {
    margin: 10px 0 0;
    font-size: 0.85rem;
    color: #aaa;
    max-width: 800px;
  }
  @media (max-width: 768px) {
    .footer-row {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-menu {
      justify-content: center;
    }
    .footer-contacts ul {
      justify-content: center;
    }
  }

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

    .cookie-cv13__stack {
        max-width: 860px;
        margin: 0 auto;
        background: linear-gradient(145deg, #0f172a, #1e293b);
        color: #e2e8f0;
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv13__stack strong {
        display: block;
        margin-bottom: 6px;
        color: #f8fafc;
    }

    .cookie-cv13__stack p {
        margin: 0;
        color: #cbd5e1;
    }

    .cookie-cv13__actions {
        margin-top: 12px;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .cookie-cv13__actions a {
        text-decoration: none;
        color: #e2e8f0;
        border: 1px solid rgba(148, 163, 184, 0.5);
        border-radius: 999px;
        padding: 7px 12px;
        transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }

    .cookie-cv13__actions a[data-choice='accept'] {
        background: #38bdf8;
        border-color: transparent;
        color: #0f172a;
        font-weight: 700;
    }

    .cookie-cv13__actions a:hover {
        background: rgba(148, 163, 184, 0.2);
    }

    .cookie-cv13__actions a[data-choice='accept']:hover {
        background: #67d3fb;
    }

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

    .terms-layout-e .wrap {
        max-width: 900px;
        margin: 0 auto;
    }

    .terms-layout-e .section-head {
        margin-bottom: 14px;
        text-align: center;
    }

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

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

    .terms-layout-e .rows {
        display: grid;
        gap: 10px;
    }

    .terms-layout-e article {
        border-left: 4px solid var(--brand);
        background: var(--surface-1);
        border-radius: var(--radius-sm);
        padding: 12px 12px 12px 14px;
        box-shadow: var(--shadow-sm);
    }

    .terms-layout-e .head h3 {
        margin: 0 0 8px;
    }

    .terms-layout-e h4 {
        margin: 10px 0 6px;
    }

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

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: var(--space-y) var(--space-x);
    background: transparent;
  }

  .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;
    backdrop-filter: blur(4px);
  }

  .header__logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.02em;
    line-height: 1.2;
  }

  .header__nav {
    display: flex;
    align-items: center;
  }

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

  .header__menu-item {
    margin: 0;
  }

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

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

  .header__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-accent);
    color: var(--fg-on-accent);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    font-weight: 600;
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-lg);
    text-decoration: none;
    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-accent-hover);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
  }

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

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

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

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

  @media (max-width: 767px) {
    .header__container {
      padding: 0.5rem 1rem;
    }

    .header__nav {
      position: absolute;
      top: 100%;
      left: var(--space-x);
      right: var(--space-x);
      background: var(--surface-1);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-lg);
      padding: 1rem;
      display: none;
      margin-top: 0.5rem;
    }

    .header__nav.open {
      display: block;
    }

    .header__menu {
      flex-direction: column;
      gap: 0.5rem;
    }

    .header__menu-link {
      display: block;
      padding: 0.75rem 1rem;
    }

    .header__cta {
      display: none;
    }

    .header__burger {
      display: flex;
    }
  }

  @media (min-width: 768px) {
    .header__burger {
      display: none;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 40px 20px 20px;
    font-family: Arial, 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;
    align-items: flex-start;
    margin-bottom: 20px;
  }
  .footer-brand {
    flex: 1 1 200px;
    margin-bottom: 15px;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #f0a500;
    text-decoration: none;
  }
  .footer-logo:hover {
    color: #ffc107;
  }
  .footer-nav {
    flex: 2 1 300px;
  }
  .footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  .footer-menu li a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  .footer-menu li a:hover {
    color: #f0a500;
  }
  .footer-contacts {
    width: 100%;
  }
  .footer-contacts ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  .footer-contacts ul li {
    font-size: 0.95rem;
  }
  .footer-contacts a {
    color: #e0e0e0;
    text-decoration: none;
  }
  .footer-contacts a:hover {
    color: #f0a500;
    text-decoration: underline;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-top: 1px solid #333;
    padding-top: 20px;
    margin-bottom: 0;
  }
  .footer-copyright {
    margin: 5px 0;
    font-size: 0.9rem;
  }
  .footer-links {
    margin: 5px 0;
    font-size: 0.9rem;
  }
  .footer-links a {
    color: #e0e0e0;
    text-decoration: none;
    margin: 0 5px;
  }
  .footer-links a:hover {
    color: #f0a500;
    text-decoration: underline;
  }
  .footer-disclaimer {
    margin: 10px 0 0;
    font-size: 0.85rem;
    color: #aaa;
    max-width: 800px;
  }
  @media (max-width: 768px) {
    .footer-row {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-menu {
      justify-content: center;
    }
    .footer-contacts ul {
      justify-content: center;
    }
  }

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

    .cookie-cv13__stack {
        max-width: 860px;
        margin: 0 auto;
        background: linear-gradient(145deg, #0f172a, #1e293b);
        color: #e2e8f0;
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv13__stack strong {
        display: block;
        margin-bottom: 6px;
        color: #f8fafc;
    }

    .cookie-cv13__stack p {
        margin: 0;
        color: #cbd5e1;
    }

    .cookie-cv13__actions {
        margin-top: 12px;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .cookie-cv13__actions a {
        text-decoration: none;
        color: #e2e8f0;
        border: 1px solid rgba(148, 163, 184, 0.5);
        border-radius: 999px;
        padding: 7px 12px;
        transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }

    .cookie-cv13__actions a[data-choice='accept'] {
        background: #38bdf8;
        border-color: transparent;
        color: #0f172a;
        font-weight: 700;
    }

    .cookie-cv13__actions a:hover {
        background: rgba(148, 163, 184, 0.2);
    }

    .cookie-cv13__actions a[data-choice='accept']:hover {
        background: #67d3fb;
    }

.thank-u1{padding:calc(var(--space-y)*2.9) var(--space-x);background:var(--gradient-hero);color:var(--brand-contrast)} .thank-u1 .shell{max-width:var(--max-w);margin:0 auto;display:grid;gap:var(--gap)} .thank-u1 h2{margin:0;font-size:clamp(1.85rem,3.6vw,2.8rem);line-height:1.1} .thank-u1 .sub{margin:.35rem 0 0;opacity:.9;} .thank-u1 article,.thank-u1 li{padding:.85rem;border-radius:var(--radius-sm);background:var(--chip-bg);border:1px solid var(--btn-ghost-bg-hover);list-style:none} .thank-u1 p{margin:0} .thank-u1 a{text-decoration:none;color:inherit;font-weight:700} .thank-u1 .pulse{margin-top:.8rem;padding:1rem;border-radius:var(--radius-lg);background:var(--chip-bg);border:1px solid var(--btn-ghost-bg-hover);animation:thank-u1Pulse 2.8s ease-in-out infinite} @keyframes thank-u1Pulse{0%,100%{transform:scale(1)}50%{transform:scale(1.01)}} @media (max-width:860px){.thank-u1 .split,.thank-u1 .media,.thank-u1 .grid,.thank-u1 .cards,.thank-u1 .bento,.thank-u1 .foot{grid-template-columns:1fr}}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: var(--space-y) var(--space-x);
    background: transparent;
  }

  .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;
    backdrop-filter: blur(4px);
  }

  .header__logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.02em;
    line-height: 1.2;
  }

  .header__nav {
    display: flex;
    align-items: center;
  }

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

  .header__menu-item {
    margin: 0;
  }

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

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

  .header__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-accent);
    color: var(--fg-on-accent);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    font-weight: 600;
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-lg);
    text-decoration: none;
    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-accent-hover);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
  }

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

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

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

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

  @media (max-width: 767px) {
    .header__container {
      padding: 0.5rem 1rem;
    }

    .header__nav {
      position: absolute;
      top: 100%;
      left: var(--space-x);
      right: var(--space-x);
      background: var(--surface-1);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-lg);
      padding: 1rem;
      display: none;
      margin-top: 0.5rem;
    }

    .header__nav.open {
      display: block;
    }

    .header__menu {
      flex-direction: column;
      gap: 0.5rem;
    }

    .header__menu-link {
      display: block;
      padding: 0.75rem 1rem;
    }

    .header__cta {
      display: none;
    }

    .header__burger {
      display: flex;
    }
  }

  @media (min-width: 768px) {
    .header__burger {
      display: none;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 40px 20px 20px;
    font-family: Arial, 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;
    align-items: flex-start;
    margin-bottom: 20px;
  }
  .footer-brand {
    flex: 1 1 200px;
    margin-bottom: 15px;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #f0a500;
    text-decoration: none;
  }
  .footer-logo:hover {
    color: #ffc107;
  }
  .footer-nav {
    flex: 2 1 300px;
  }
  .footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  .footer-menu li a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  .footer-menu li a:hover {
    color: #f0a500;
  }
  .footer-contacts {
    width: 100%;
  }
  .footer-contacts ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  .footer-contacts ul li {
    font-size: 0.95rem;
  }
  .footer-contacts a {
    color: #e0e0e0;
    text-decoration: none;
  }
  .footer-contacts a:hover {
    color: #f0a500;
    text-decoration: underline;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-top: 1px solid #333;
    padding-top: 20px;
    margin-bottom: 0;
  }
  .footer-copyright {
    margin: 5px 0;
    font-size: 0.9rem;
  }
  .footer-links {
    margin: 5px 0;
    font-size: 0.9rem;
  }
  .footer-links a {
    color: #e0e0e0;
    text-decoration: none;
    margin: 0 5px;
  }
  .footer-links a:hover {
    color: #f0a500;
    text-decoration: underline;
  }
  .footer-disclaimer {
    margin: 10px 0 0;
    font-size: 0.85rem;
    color: #aaa;
    max-width: 800px;
  }
  @media (max-width: 768px) {
    .footer-row {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-menu {
      justify-content: center;
    }
    .footer-contacts ul {
      justify-content: center;
    }
  }

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

    .cookie-cv13__stack {
        max-width: 860px;
        margin: 0 auto;
        background: linear-gradient(145deg, #0f172a, #1e293b);
        color: #e2e8f0;
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv13__stack strong {
        display: block;
        margin-bottom: 6px;
        color: #f8fafc;
    }

    .cookie-cv13__stack p {
        margin: 0;
        color: #cbd5e1;
    }

    .cookie-cv13__actions {
        margin-top: 12px;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .cookie-cv13__actions a {
        text-decoration: none;
        color: #e2e8f0;
        border: 1px solid rgba(148, 163, 184, 0.5);
        border-radius: 999px;
        padding: 7px 12px;
        transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }

    .cookie-cv13__actions a[data-choice='accept'] {
        background: #38bdf8;
        border-color: transparent;
        color: #0f172a;
        font-weight: 700;
    }

    .cookie-cv13__actions a:hover {
        background: rgba(148, 163, 184, 0.2);
    }

    .cookie-cv13__actions a[data-choice='accept']:hover {
        background: #67d3fb;
    }

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

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

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

.err-slab-b p {
    margin: 10px 0 0;
    color: var(--neutral-600);
}

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