:root {
  --font-family: "Roboto", sans-serif;
  --font-size-base: 15.3px;
  --line-height-base: 1.44;

  --max-w: 1220px;
  --space-x: 0.88rem;
  --space-y: 1.5rem;
  --gap: 0.98rem;

  --radius-xl: 0.86rem;
  --radius-lg: 0.65rem;
  --radius-md: 0.36rem;
  --radius-sm: 0.22rem;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.12);
  --shadow-md: 0 8px 14px rgba(0,0,0,0.15);
  --shadow-lg: 0 12px 26px rgba(0,0,0,0.19);

  --overlay: rgba(0,0,0,0.5);
  --anim-duration: 220ms;
  --anim-ease: cubic-bezier(0.22,1,0.36,1);
  --random-number: 1;

  --brand: #1E3A5F;
  --brand-contrast: #FFFFFF;
  --accent: #D97706;
  --accent-contrast: #FFFFFF;

  --neutral-0: #FFFFFF;
  --neutral-100: #F3F4F6;
  --neutral-300: #D1D5DB;
  --neutral-600: #6B7280;
  --neutral-800: #1F2937;
  --neutral-900: #111827;

  --bg-page: #FFFFFF;
  --fg-on-page: #1F2937;

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

  --surface-1: #FFFFFF;
  --surface-2: #F3F4F6;
  --fg-on-surface: #1F2937;
  --border-on-surface: #E5E7EB;

  --surface-light: #F9FAFB;
  --fg-on-surface-light: #4B5563;
  --border-on-surface-light: #E5E7EB;

  --bg-primary: #2563EB;
  --fg-on-primary: #FFFFFF;
  --bg-primary-hover: #1D4ED8;
  --ring: #2563EB;

  --bg-accent: #FEF3C7;
  --fg-on-accent: #1E3A5F;
  --bg-accent-hover: #B45309;

  --link: #2563EB;
  --link-hover: #1D4ED8;

  --gradient-hero: linear-gradient(135deg, #1E3A5F 0%, #2563EB 100%);
  --gradient-accent: linear-gradient(135deg, #D97706 0%, #F59E0B 100%);

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

header {
        background: var(--surface-1);
        border-bottom: 1px solid var(--border-on-surface);
        padding: var(--space-y) var(--space-x);
        position: sticky;
        top: 0;
        z-index: 100;
    }
    .header-container {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
    }
    .logo {
        font-size: calc(var(--font-size-base) * 1.3);
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        white-space: nowrap;
    }
    .nav-menu ul {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        gap: calc(var(--gap) * 1.5);
    }
    .nav-menu a {
        text-decoration: none;
        color: var(--fg-on-surface);
        font-size: var(--font-size-base);
        line-height: var(--line-height-base);
        transition: color var(--anim-duration) var(--anim-ease);
    }
    .nav-menu a:hover {
        color: var(--brand);
    }
    .cta-button {
        background: var(--brand);
        color: var(--brand-contrast);
        padding: 0.5rem 1.25rem;
        border-radius: var(--radius-md);
        text-decoration: none;
        font-weight: 600;
        font-size: var(--font-size-base);
        line-height: var(--line-height-base);
        transition: background var(--anim-duration) var(--anim-ease);
        white-space: nowrap;
    }
    .cta-button:hover {
        background: var(--bg-primary-hover);
    }
    .burger {
        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 2.5rem;
        height: 2.5rem;
        background: transparent;
        border: none;
        cursor: pointer;
        gap: 5px;
        padding: 0;
    }
    .burger span {
        display: block;
        width: 24px;
        height: 2px;
        background: var(--fg-on-surface);
        border-radius: 2px;
        transition: all var(--anim-duration) var(--anim-ease);
    }
    .burger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .burger.active span:nth-child(2) {
        opacity: 0;
    }
    .burger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    @media (max-width: 767px) {
        .nav-menu {
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: var(--surface-1);
            border-bottom: 1px solid var(--border-on-surface);
            padding: var(--space-y) var(--space-x);
            display: none;
            box-shadow: var(--shadow-md);
        }
        .nav-menu.open {
            display: block;
        }
        .nav-menu ul {
            flex-direction: column;
            gap: var(--gap);
        }
        .cta-button {
            display: none;
        }
        .burger {
            display: flex;
        }
    }

footer {
      background-color: #2c3e50;
      color: #ecf0f1;
      padding: 2rem 1rem;
      font-family: Arial, sans-serif;
      line-height: 1.6;
    }
    .footer-container {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 1.5rem;
    }
    .footer-logo a {
      font-size: 1.5rem;
      font-weight: bold;
      color: #ecf0f1;
      text-decoration: none;
    }
    .footer-logo a:hover {
      color: #3498db;
    }
    .footer-nav ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 1rem;
    }
    .footer-nav a {
      color: #ecf0f1;
      text-decoration: none;
      padding: 0.25rem 0.5rem;
      transition: color 0.3s;
    }
    .footer-nav a:hover {
      color: #3498db;
    }
    .footer-contacts {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 1rem;
      font-size: 0.95rem;
    }
    .footer-contacts a {
      color: #3498db;
      text-decoration: none;
    }
    .footer-contacts a:hover {
      text-decoration: underline;
    }
    .footer-legal {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 1rem;
    }
    .footer-legal a {
      color: #ecf0f1;
      text-decoration: none;
      font-size: 0.9rem;
    }
    .footer-legal a:hover {
      color: #3498db;
    }
    .footer-disclaimer p {
      font-size: 0.85rem;
      color: #bdc3c7;
      max-width: 800px;
      margin: 0 auto;
    }
    .footer-copyright p {
      font-size: 0.85rem;
      color: #95a5a6;
      margin: 0;
    }
    @media (max-width: 600px) {
      .footer-nav ul {
        flex-direction: column;
        align-items: center;
      }
      .footer-contacts {
        flex-direction: column;
        align-items: center;
      }
    }

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

    .nfcookie-v11__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, .45), rgba(17, 24, 39, .95));
        color: var(--neutral-100);
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, .35);
    }

    .nfcookie-v11__top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .nfcookie-v11__top strong {font-size: 16px;}

    .nfcookie-v11__top button {
        border: 0;
        background: transparent;
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
        cursor: pointer;
    }

    .nfcookie-v11 p {margin: 10px 0 0; color: #d1d5db;}

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

    .nfcookie-v11__actions button {
        flex: 1;
        border-radius: var(--radius-sm);
        border: 1px solid rgba(148, 163, 184, .45);
        padding: 9px 12px;
        color: #e5e7eb;
        background: rgba(51, 65, 85, .65);
        cursor: pointer;
    }

    .nfcookie-v11__actions button[data-choice='accept'] {
        background: #22c55e;
        border-color: transparent;
        color: #06290e;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .nfcookie-v11__card {max-width: none;}
    }

.wp-lang-switcher-v5 {
        position: fixed;
        right: clamp(16px, 2vw, var(--space-x, 24px));
        bottom: clamp(16px, 2vw, var(--space-y, 20px));
        z-index: 99999;

        --local-random: var(--random-number, 1);
    }

    .wp-lang-switcher-v5__btn {
        background: var(--surface-1, #fff);
        color: var(--fg-on-surface, #111827);
        padding: calc(8px + var(--local-random) * 1px) calc(12px + var(--local-random) * 2px);
        border: 1px solid var(--border-on-surface, #e5e7eb);
        border-radius: calc(var(--radius-md, 12px) - var(--local-random) * 1px);
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: 8px;
        box-shadow: var(--shadow-sm, 0 2px 4px rgba(0, 0, 0, 0.05));
        transition: all var(--anim-duration, 0.3s) var(--anim-ease, ease-in-out);

        font-size: 14px;
        font-weight: 500;
    }

    .wp-lang-switcher-v5__btn:hover {
        background: var(--bg-alt, #f9fafb);
        border-color: var(--neutral-300, #d1d5db);
        box-shadow: var(--shadow-md, 0 4px 12px rgba(0, 0, 0, 0.08));
    }

    .wp-lang-switcher-v5__current {
        color: var(--fg-on-surface, #111827);
        font-weight: 600;
        letter-spacing: calc(0.3px + var(--local-random) * 0.1px);
    }

    .wp-lang-switcher-v5__arrow {
        transition: transform var(--anim-duration, 0.3s) var(--anim-ease, ease-in-out);
        color: var(--neutral-600, #4b5563);
    }

    .wp-lang-switcher-v5__panel.open ~ .wp-lang-switcher-v5__btn .wp-lang-switcher-v5__arrow,
    .wp-lang-switcher-v5__btn:has(~ .wp-lang-switcher-v5__panel.open) .wp-lang-switcher-v5__arrow {
        transform: rotate(180deg);
    }

    .wp-lang-switcher-v5__panel {
        display: none;
        position: absolute;
        right: 0;
        bottom: calc(100% + 6px);
        background: var(--surface-1, #fff);
        border: 1px solid var(--border-on-surface, #e5e7eb);
        border-radius: calc(var(--radius-md, 12px) + var(--local-random) * 1px);
        box-shadow: var(--shadow-lg, 0 8px 24px rgba(0, 0, 0, 0.12));
        min-width: calc(160px + var(--local-random) * 10px);
        overflow: hidden;

        transform: translateY(4px);
        transition: all var(--anim-duration, 0.3s) var(--anim-ease, ease-in-out);
    }

    .wp-lang-switcher-v5__panel.open {
        display: block;
        opacity: 1;
        transform: translateY(0);
    }

    .wp-lang-switcher-v5__panel button,
    .wp-lang-switcher-v5__panel a {
        width: 100%;
        text-align: left;
        padding: calc(10px + var(--local-random) * 1px) calc(14px + var(--local-random) * 2px);
        border: 0;
        background: var(--surface-1, #fff);
        color: var(--fg-on-surface, #111827);
        cursor: pointer;

        font-size: 14px;
        transition: background var(--anim-duration, 0.3s) var(--anim-ease, ease-in-out);
        border-bottom: 1px solid var(--neutral-100, #f9fafb);
        text-decoration: none;
        display: block;
    }

    .wp-lang-switcher-v5__panel button:last-child,
    .wp-lang-switcher-v5__panel a:last-child {
        border-bottom: none;
    }

    .wp-lang-switcher-v5__panel button:hover,
    .wp-lang-switcher-v5__panel a:hover {
        background: var(--bg-alt, #f9fafb);
        color: var(--bg-primary, #3b82f6);
    }

.hero {
        position: relative;
        min-height: 70vh;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        color: var(--fg-on-primary);
        overflow: hidden;
    }

    .hero__bg {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: -2;
    }

    .hero__overlay {
        position: absolute;
        inset: 0;
        background: var(--gradient-hero);
        opacity: 0.7;
        z-index: -1;
    }

    .hero__content {
        max-width: 900px;
        padding: clamp(16px, 3vw, 32px);
        z-index: 1;
    }

    .hero h1 {
        font-size: clamp(28px, 5vw, 48px);
        font-weight: 700;
        margin-bottom: var(--space-y);
        text-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
    }

    .hero p {
        font-size: clamp(16px, 2.5vw, 20px);
        font-weight: 400;
        margin: 0 auto calc(var(--space-y) * 1.5);
        max-width: 700px;
    }

    .hero__actions {
        display: flex;
        gap: var(--gap);
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero__btn {
        display: inline-block;
        padding: 12px 30px;
        border-radius: var(--radius-md);
        font-weight: 500;
        text-align: center;
        transition: all var(--anim-duration) var(--anim-ease);
        cursor: pointer;
        border: 1px solid transparent;
        font-size: 1rem;
    }

    .hero__btn--primary {
        background-color: var(--bg-primary);
        color: var(--fg-on-primary);
        border-color: var(--bg-primary);
    }

    .hero__btn--primary:hover {
        background-color: var(--bg-primary-hover);
        border-color: var(--bg-primary-hover);
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
    }

    .hero__btn--outline {
        background-color: transparent;
        color: var(--fg-on-primary);
        border-color: var(--fg-on-primary);
    }

    .hero__btn--outline:hover {
        background-color: var(--btn-ghost-bg-hover);
    }

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

    .next-ux25 {
        padding: calc(var(--space-y) * 1.9) var(--space-x);
        background: var(--neutral-100);
        color: var(--neutral-900)
    }

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

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

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

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

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

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

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

    .next-ux25 .actions a, .next-ux25 .center a, .next-ux25 .banner > a, .next-ux25 .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-ux25 .banner {
        display: grid;
        gap: .6rem
    }

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

    .next-ux25 .numbers div {
        padding: .6rem;
        border-radius: var(--radius-md);
        background: var(--neutral-100);
        border: 1px solid var(--neutral-300)
    }

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

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

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

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

    .next-ux25 .chips span {
        padding: .28rem .5rem;
        border-radius: var(--radius-sm);
        background: var(--neutral-100);
        border: 1px solid var(--neutral-300)
    }

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

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

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

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

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

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

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

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

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

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

    .education-struct-v2 .grid a, .education-struct-v2 .tiers a, .education-struct-v2 .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-v2 .path {
        display: grid;
        gap: .65rem
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .nfsocial-v8__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .nfsocial-v8__head {
        margin-bottom: 14px;
    }

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

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

    .nfsocial-v8__quotes {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 12px;
    }

    .nfsocial-v8__quotes article {
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-on-surface);
        background: var(--surface-1);
        padding: 14px;
    }

    .nfsocial-v8__quotes p {
        margin: 0;
        color: var(--fg-on-page);
    }

    .nfsocial-v8__quotes strong {
        display: block;
        margin-top: 10px;
        color: var(--neutral-900);
    }

    .nfsocial-v8__quotes span {
        display: block;
        margin-top: 4px;
        color: var(--neutral-600);
    }

header {
        background: var(--surface-1);
        border-bottom: 1px solid var(--border-on-surface);
        padding: var(--space-y) var(--space-x);
        position: sticky;
        top: 0;
        z-index: 100;
    }
    .header-container {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
    }
    .logo {
        font-size: calc(var(--font-size-base) * 1.3);
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        white-space: nowrap;
    }
    .nav-menu ul {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        gap: calc(var(--gap) * 1.5);
    }
    .nav-menu a {
        text-decoration: none;
        color: var(--fg-on-surface);
        font-size: var(--font-size-base);
        line-height: var(--line-height-base);
        transition: color var(--anim-duration) var(--anim-ease);
    }
    .nav-menu a:hover {
        color: var(--brand);
    }
    .cta-button {
        background: var(--brand);
        color: var(--brand-contrast);
        padding: 0.5rem 1.25rem;
        border-radius: var(--radius-md);
        text-decoration: none;
        font-weight: 600;
        font-size: var(--font-size-base);
        line-height: var(--line-height-base);
        transition: background var(--anim-duration) var(--anim-ease);
        white-space: nowrap;
    }
    .cta-button:hover {
        background: var(--bg-primary-hover);
    }
    .burger {
        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 2.5rem;
        height: 2.5rem;
        background: transparent;
        border: none;
        cursor: pointer;
        gap: 5px;
        padding: 0;
    }
    .burger span {
        display: block;
        width: 24px;
        height: 2px;
        background: var(--fg-on-surface);
        border-radius: 2px;
        transition: all var(--anim-duration) var(--anim-ease);
    }
    .burger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .burger.active span:nth-child(2) {
        opacity: 0;
    }
    .burger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    @media (max-width: 767px) {
        .nav-menu {
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: var(--surface-1);
            border-bottom: 1px solid var(--border-on-surface);
            padding: var(--space-y) var(--space-x);
            display: none;
            box-shadow: var(--shadow-md);
        }
        .nav-menu.open {
            display: block;
        }
        .nav-menu ul {
            flex-direction: column;
            gap: var(--gap);
        }
        .cta-button {
            display: none;
        }
        .burger {
            display: flex;
        }
    }

footer {
      background-color: #2c3e50;
      color: #ecf0f1;
      padding: 2rem 1rem;
      font-family: Arial, sans-serif;
      line-height: 1.6;
    }
    .footer-container {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 1.5rem;
    }
    .footer-logo a {
      font-size: 1.5rem;
      font-weight: bold;
      color: #ecf0f1;
      text-decoration: none;
    }
    .footer-logo a:hover {
      color: #3498db;
    }
    .footer-nav ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 1rem;
    }
    .footer-nav a {
      color: #ecf0f1;
      text-decoration: none;
      padding: 0.25rem 0.5rem;
      transition: color 0.3s;
    }
    .footer-nav a:hover {
      color: #3498db;
    }
    .footer-contacts {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 1rem;
      font-size: 0.95rem;
    }
    .footer-contacts a {
      color: #3498db;
      text-decoration: none;
    }
    .footer-contacts a:hover {
      text-decoration: underline;
    }
    .footer-legal {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 1rem;
    }
    .footer-legal a {
      color: #ecf0f1;
      text-decoration: none;
      font-size: 0.9rem;
    }
    .footer-legal a:hover {
      color: #3498db;
    }
    .footer-disclaimer p {
      font-size: 0.85rem;
      color: #bdc3c7;
      max-width: 800px;
      margin: 0 auto;
    }
    .footer-copyright p {
      font-size: 0.85rem;
      color: #95a5a6;
      margin: 0;
    }
    @media (max-width: 600px) {
      .footer-nav ul {
        flex-direction: column;
        align-items: center;
      }
      .footer-contacts {
        flex-direction: column;
        align-items: center;
      }
    }

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

    .nfcookie-v11__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, .45), rgba(17, 24, 39, .95));
        color: var(--neutral-100);
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, .35);
    }

    .nfcookie-v11__top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .nfcookie-v11__top strong {font-size: 16px;}

    .nfcookie-v11__top button {
        border: 0;
        background: transparent;
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
        cursor: pointer;
    }

    .nfcookie-v11 p {margin: 10px 0 0; color: #d1d5db;}

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

    .nfcookie-v11__actions button {
        flex: 1;
        border-radius: var(--radius-sm);
        border: 1px solid rgba(148, 163, 184, .45);
        padding: 9px 12px;
        color: #e5e7eb;
        background: rgba(51, 65, 85, .65);
        cursor: pointer;
    }

    .nfcookie-v11__actions button[data-choice='accept'] {
        background: #22c55e;
        border-color: transparent;
        color: #06290e;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .nfcookie-v11__card {max-width: none;}
    }

.about-timeline {

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

    .about-timeline__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .about-timeline .about-timeline__zig {
        display: grid;
        gap: 16px;
    }

    .about-timeline .about-timeline__zig .item {
        list-style: none;
        background: #fff;
        color: var(--fg-on-page);
        border-radius: var(--radius-lg);
        padding: clamp(12px, 2vw, 20px);
        box-shadow: var(--shadow-sm);
    }

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

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

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

    .identity-ux22__head {
        margin-bottom: 16px;
    }

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

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

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

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

    .identity-ux22__grid article {
        border: 1px solid var(--neutral-300);
        border-radius: var(--radius-lg);
        background: var(--neutral-100);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-sm);
    }

    .identity-ux22__grid i {
        display: inline-block;
        font-style: normal;
        color: var(--link);
        margin-bottom: 6px;
    }

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

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

    .identity-ux22__grid small {
        color: var(--neutral-800);
        font-weight: 600;
    }

.mission--colored-v5 {

    padding: 64px 20px;
    background: radial-gradient(circle at top left, rgba(16,185,129,0.35), transparent),
                radial-gradient(circle at bottom right, rgba(59,130,246,0.4), transparent),
                var(--neutral-900);
    color: var(--neutral-0);
}

.mission__inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.1fr);
    gap: 24px;
    align-items: start;
}

.mission__eyebrow {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: rgba(209,250,229,0.9);
    margin: 0 0 0.5rem;
}

.mission__title {
    margin: 0 0 8px;
    font-size: clamp(24px,4vw,32px);
    color: var(--brand-contrast);
}

.mission__text {
    margin: 0;
    color: var(--neutral-200);
    font-size: 0.95rem;
    line-height: 1.7;
}

.mission__pillars {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

.mission__pillar {
    border-radius: var(--radius-lg);
    padding: 10px 12px;
    border: 1px solid rgba(148,163,184,0.6);
    background: rgba(15,23,42,0.96);
}

.mission__pillar--impact {
    border-color: var(--accent);
}

.mission__pillar--safety {
    border-color: var(--accent);
}

.mission__pillar--focus {
    border-color: var(--bg-primary);
}

.mission__pillar h3 {
    margin: 0 0 4px;
    font-size: 0.95rem;
    color: var(--brand-contrast);
}

.mission__pillar p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--neutral-200);
}

@media (max-width: 768px) {
    .mission__inner {
        grid-template-columns: minmax(0, 1fr);
    }
}

header {
        background: var(--surface-1);
        border-bottom: 1px solid var(--border-on-surface);
        padding: var(--space-y) var(--space-x);
        position: sticky;
        top: 0;
        z-index: 100;
    }
    .header-container {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
    }
    .logo {
        font-size: calc(var(--font-size-base) * 1.3);
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        white-space: nowrap;
    }
    .nav-menu ul {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        gap: calc(var(--gap) * 1.5);
    }
    .nav-menu a {
        text-decoration: none;
        color: var(--fg-on-surface);
        font-size: var(--font-size-base);
        line-height: var(--line-height-base);
        transition: color var(--anim-duration) var(--anim-ease);
    }
    .nav-menu a:hover {
        color: var(--brand);
    }
    .cta-button {
        background: var(--brand);
        color: var(--brand-contrast);
        padding: 0.5rem 1.25rem;
        border-radius: var(--radius-md);
        text-decoration: none;
        font-weight: 600;
        font-size: var(--font-size-base);
        line-height: var(--line-height-base);
        transition: background var(--anim-duration) var(--anim-ease);
        white-space: nowrap;
    }
    .cta-button:hover {
        background: var(--bg-primary-hover);
    }
    .burger {
        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 2.5rem;
        height: 2.5rem;
        background: transparent;
        border: none;
        cursor: pointer;
        gap: 5px;
        padding: 0;
    }
    .burger span {
        display: block;
        width: 24px;
        height: 2px;
        background: var(--fg-on-surface);
        border-radius: 2px;
        transition: all var(--anim-duration) var(--anim-ease);
    }
    .burger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .burger.active span:nth-child(2) {
        opacity: 0;
    }
    .burger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    @media (max-width: 767px) {
        .nav-menu {
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: var(--surface-1);
            border-bottom: 1px solid var(--border-on-surface);
            padding: var(--space-y) var(--space-x);
            display: none;
            box-shadow: var(--shadow-md);
        }
        .nav-menu.open {
            display: block;
        }
        .nav-menu ul {
            flex-direction: column;
            gap: var(--gap);
        }
        .cta-button {
            display: none;
        }
        .burger {
            display: flex;
        }
    }

footer {
      background-color: #2c3e50;
      color: #ecf0f1;
      padding: 2rem 1rem;
      font-family: Arial, sans-serif;
      line-height: 1.6;
    }
    .footer-container {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 1.5rem;
    }
    .footer-logo a {
      font-size: 1.5rem;
      font-weight: bold;
      color: #ecf0f1;
      text-decoration: none;
    }
    .footer-logo a:hover {
      color: #3498db;
    }
    .footer-nav ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 1rem;
    }
    .footer-nav a {
      color: #ecf0f1;
      text-decoration: none;
      padding: 0.25rem 0.5rem;
      transition: color 0.3s;
    }
    .footer-nav a:hover {
      color: #3498db;
    }
    .footer-contacts {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 1rem;
      font-size: 0.95rem;
    }
    .footer-contacts a {
      color: #3498db;
      text-decoration: none;
    }
    .footer-contacts a:hover {
      text-decoration: underline;
    }
    .footer-legal {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 1rem;
    }
    .footer-legal a {
      color: #ecf0f1;
      text-decoration: none;
      font-size: 0.9rem;
    }
    .footer-legal a:hover {
      color: #3498db;
    }
    .footer-disclaimer p {
      font-size: 0.85rem;
      color: #bdc3c7;
      max-width: 800px;
      margin: 0 auto;
    }
    .footer-copyright p {
      font-size: 0.85rem;
      color: #95a5a6;
      margin: 0;
    }
    @media (max-width: 600px) {
      .footer-nav ul {
        flex-direction: column;
        align-items: center;
      }
      .footer-contacts {
        flex-direction: column;
        align-items: center;
      }
    }

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

    .nfcookie-v11__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, .45), rgba(17, 24, 39, .95));
        color: var(--neutral-100);
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, .35);
    }

    .nfcookie-v11__top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .nfcookie-v11__top strong {font-size: 16px;}

    .nfcookie-v11__top button {
        border: 0;
        background: transparent;
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
        cursor: pointer;
    }

    .nfcookie-v11 p {margin: 10px 0 0; color: #d1d5db;}

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

    .nfcookie-v11__actions button {
        flex: 1;
        border-radius: var(--radius-sm);
        border: 1px solid rgba(148, 163, 184, .45);
        padding: 9px 12px;
        color: #e5e7eb;
        background: rgba(51, 65, 85, .65);
        cursor: pointer;
    }

    .nfcookie-v11__actions button[data-choice='accept'] {
        background: #22c55e;
        border-color: transparent;
        color: #06290e;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .nfcookie-v11__card {max-width: none;}
    }

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

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

    .plans-lv4__wrap {
        max-width: 920px;
        margin: 0 auto;
    }

    .plans-lv4__head {
        text-align: center;
        margin-bottom: 14px;
    }

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

    .plans-lv4__head p {
        margin: 8px 0 0;
        color: var(--neutral-600);
    }

    .plans-lv4__stack {
        display: grid;
        gap: 10px;
    }

    .plans-lv4__stack article {
        border: 1px solid var(--neutral-300);
        border-radius: var(--radius-md);
        background: var(--neutral-100);
        padding: 12px;
    }

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

    .plans-lv4__line h3 {
        margin: 0;
    }

    .plans-lv4__line p {
        margin: 0;
        color: var(--brand);
        font-weight: 700;
    }

    .plans-lv4__chips {
        margin-top: 8px;
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
    }

    .plans-lv4__chips span {
        border: 1px solid var(--neutral-300);
        border-radius: 999px;
        background: var(--neutral-100);
        padding: 5px 9px;
        font-size: .88rem;
    }

    .plans-lv4__stack button {
        margin-top: 10px;
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-sm);
        background: var(--neutral-100);
        color: var(--neutral-900);
        padding: 8px 11px;
    }

.about-struct-v6 {
        padding: calc(var(--space-y) * 2) var(--space-x);
        background: var(--neutral-900);
        color: var(--neutral-0)
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .about-struct-v6 .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-v6 .split, .about-struct-v6 .duo, .about-struct-v6 .cards, .about-struct-v6 .gallery {
            grid-template-columns:1fr 1fr
        }
    }

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

.features {
    padding: clamp(48px, 8vw, 80px) 0;
    background-color: var(--bg-page);
    color: var(--fg-on-page);
}

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

.features__title {
    text-align: left;
    margin-bottom: calc(var(--space-y) * 2);
    font-size: clamp(28px, 4vw, 40px);
}

.features__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
    gap: calc(var(--gap) * 1.5);
}

.features__card {
    background-color: var(--surface-2);
    padding: clamp(16px, 3vw, 32px);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--anim-duration) var(--anim-ease);
    text-align: left;
    border: 1px solid var(--border-on-surface);
}

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

.features__icon {
    font-size: 2.2rem;
    color: var(--brand);
    margin-bottom: var(--space-y);
}

.features__icon--chip {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--bg-accent);
    color: var(--fg-on-accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.features__card h3 {
    margin-bottom: var(--space-y);
    color: var(--fg-on-surface);
}

.features__card p {
    color: var(--fg-on-surface-light);
    margin: 0 auto;
}

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

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

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

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

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

    .hiw-ux9__head p {
        margin: .55rem 0 0;

    }

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

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

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

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

    .hiw-ux9__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-ux9__grid h3 {
        margin: .75rem 0 .35rem;
    }

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

header {
        background: var(--surface-1);
        border-bottom: 1px solid var(--border-on-surface);
        padding: var(--space-y) var(--space-x);
        position: sticky;
        top: 0;
        z-index: 100;
    }
    .header-container {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
    }
    .logo {
        font-size: calc(var(--font-size-base) * 1.3);
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        white-space: nowrap;
    }
    .nav-menu ul {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        gap: calc(var(--gap) * 1.5);
    }
    .nav-menu a {
        text-decoration: none;
        color: var(--fg-on-surface);
        font-size: var(--font-size-base);
        line-height: var(--line-height-base);
        transition: color var(--anim-duration) var(--anim-ease);
    }
    .nav-menu a:hover {
        color: var(--brand);
    }
    .cta-button {
        background: var(--brand);
        color: var(--brand-contrast);
        padding: 0.5rem 1.25rem;
        border-radius: var(--radius-md);
        text-decoration: none;
        font-weight: 600;
        font-size: var(--font-size-base);
        line-height: var(--line-height-base);
        transition: background var(--anim-duration) var(--anim-ease);
        white-space: nowrap;
    }
    .cta-button:hover {
        background: var(--bg-primary-hover);
    }
    .burger {
        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 2.5rem;
        height: 2.5rem;
        background: transparent;
        border: none;
        cursor: pointer;
        gap: 5px;
        padding: 0;
    }
    .burger span {
        display: block;
        width: 24px;
        height: 2px;
        background: var(--fg-on-surface);
        border-radius: 2px;
        transition: all var(--anim-duration) var(--anim-ease);
    }
    .burger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .burger.active span:nth-child(2) {
        opacity: 0;
    }
    .burger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    @media (max-width: 767px) {
        .nav-menu {
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: var(--surface-1);
            border-bottom: 1px solid var(--border-on-surface);
            padding: var(--space-y) var(--space-x);
            display: none;
            box-shadow: var(--shadow-md);
        }
        .nav-menu.open {
            display: block;
        }
        .nav-menu ul {
            flex-direction: column;
            gap: var(--gap);
        }
        .cta-button {
            display: none;
        }
        .burger {
            display: flex;
        }
    }

footer {
      background-color: #2c3e50;
      color: #ecf0f1;
      padding: 2rem 1rem;
      font-family: Arial, sans-serif;
      line-height: 1.6;
    }
    .footer-container {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 1.5rem;
    }
    .footer-logo a {
      font-size: 1.5rem;
      font-weight: bold;
      color: #ecf0f1;
      text-decoration: none;
    }
    .footer-logo a:hover {
      color: #3498db;
    }
    .footer-nav ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 1rem;
    }
    .footer-nav a {
      color: #ecf0f1;
      text-decoration: none;
      padding: 0.25rem 0.5rem;
      transition: color 0.3s;
    }
    .footer-nav a:hover {
      color: #3498db;
    }
    .footer-contacts {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 1rem;
      font-size: 0.95rem;
    }
    .footer-contacts a {
      color: #3498db;
      text-decoration: none;
    }
    .footer-contacts a:hover {
      text-decoration: underline;
    }
    .footer-legal {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 1rem;
    }
    .footer-legal a {
      color: #ecf0f1;
      text-decoration: none;
      font-size: 0.9rem;
    }
    .footer-legal a:hover {
      color: #3498db;
    }
    .footer-disclaimer p {
      font-size: 0.85rem;
      color: #bdc3c7;
      max-width: 800px;
      margin: 0 auto;
    }
    .footer-copyright p {
      font-size: 0.85rem;
      color: #95a5a6;
      margin: 0;
    }
    @media (max-width: 600px) {
      .footer-nav ul {
        flex-direction: column;
        align-items: center;
      }
      .footer-contacts {
        flex-direction: column;
        align-items: center;
      }
    }

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

    .nfcookie-v11__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, .45), rgba(17, 24, 39, .95));
        color: var(--neutral-100);
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, .35);
    }

    .nfcookie-v11__top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .nfcookie-v11__top strong {font-size: 16px;}

    .nfcookie-v11__top button {
        border: 0;
        background: transparent;
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
        cursor: pointer;
    }

    .nfcookie-v11 p {margin: 10px 0 0; color: #d1d5db;}

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

    .nfcookie-v11__actions button {
        flex: 1;
        border-radius: var(--radius-sm);
        border: 1px solid rgba(148, 163, 184, .45);
        padding: 9px 12px;
        color: #e5e7eb;
        background: rgba(51, 65, 85, .65);
        cursor: pointer;
    }

    .nfcookie-v11__actions button[data-choice='accept'] {
        background: #22c55e;
        border-color: transparent;
        color: #06290e;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .nfcookie-v11__card {max-width: none;}
    }

body{margin:0;padding:0;font-family:var(--font-family);box-sizing: border-box;}
    *{box-sizing:border-box;}.clar-ux6{padding:clamp(20px,3vw,44px);background:var(--brand);color:var(--brand-contrast)}.clar-ux6__wrap{max-width:var(--max-w);margin:0 auto}.clar-ux6 h2{margin:0 0 12px}.clar-ux6 ul{list-style:none;margin:0;padding:0;display:grid;gap:10px}.clar-ux6 li{display:grid;grid-template-columns:110px 1fr;gap:12px;border:1px solid rgba(255,255,255,.28);border-radius:var(--radius-md);background:rgba(255,255,255,.12);padding:12px}.clar-ux6 b{align-self:start}.clar-ux6 h3{margin:0 0 6px}.clar-ux6 p{margin:0;opacity:.93}@media(max-width:640px){.clar-ux6 li{grid-template-columns:1fr}}

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

.contact-layout-a {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 36px);
        background: var(--gradient-accent);
        color: var(--accent-contrast);
    }

    .contact-layout-a .wrap {
        max-width: 900px;
        margin: 0 auto;
    }

    .contact-layout-a .section-head {
        margin-bottom: 18px;
        text-align: center;
    }

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

    .contact-layout-a .section-head p {
        margin: 10px auto 0;
        max-width: 70ch;
        opacity: .92;
    }

    .contact-layout-a .panel {
        background: rgba(255, 255, 255, .12);
        border: 1px solid rgba(255, 255, 255, .3);
        border-radius: var(--radius-lg);
        padding: 18px;
        backdrop-filter: blur(6px);
    }

    .contact-layout-a h3 {
        margin: 0 0 12px;
    }

    .contact-layout-a .list p {
        margin: 0 0 10px;
        display: grid;
        gap: 2px;
    }

    .contact-layout-a .list span {
        opacity: .94;
    }

    .contact-layout-a .social-row {
        margin-top: 14px;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        align-items: center;
    }

    .contact-layout-a .social-row a {
        width: 34px;
        height: 34px;
        border-radius: 50%;
        display: grid;
        place-items: center;
        text-decoration: none;
        color: var(--fg-on-primary);
        border: 1px solid rgba(255, 255, 255, .4);
    }

    .contact-layout-a .social-row a:hover {
        background: rgba(255, 255, 255, .15);
    }

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

    .form-layout-d .wrap {
        max-width: 760px;
        margin: 0 auto;
    }

    .form-layout-d .section-head {
        margin-bottom: 18px;
    }

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

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

    .form-layout-d .line-form {
        border-top: 2px solid var(--brand);
        padding-top: 12px;
    }

    .form-layout-d label {
        display: grid;
        gap: 8px;
        margin-bottom: 12px;
        font-weight: 600;
        color: var(--brand);
    }

    .form-layout-d input, .form-layout-d textarea {
        border: 0;
        border-bottom: 1px solid var(--neutral-300);
        padding: 8px 2px;
        font: inherit;
        background: transparent;
    }

    .form-layout-d input:focus, .form-layout-d textarea:focus {
        outline: none;
        border-color: var(--ring);
    }

    .form-layout-d button {
        border: 1px solid var(--brand);
        color: var(--brand);
        background: transparent;
        border-radius: 999px;
        padding: 9px 16px;
    }

header {
        background: var(--surface-1);
        border-bottom: 1px solid var(--border-on-surface);
        padding: var(--space-y) var(--space-x);
        position: sticky;
        top: 0;
        z-index: 100;
    }
    .header-container {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
    }
    .logo {
        font-size: calc(var(--font-size-base) * 1.3);
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        white-space: nowrap;
    }
    .nav-menu ul {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        gap: calc(var(--gap) * 1.5);
    }
    .nav-menu a {
        text-decoration: none;
        color: var(--fg-on-surface);
        font-size: var(--font-size-base);
        line-height: var(--line-height-base);
        transition: color var(--anim-duration) var(--anim-ease);
    }
    .nav-menu a:hover {
        color: var(--brand);
    }
    .cta-button {
        background: var(--brand);
        color: var(--brand-contrast);
        padding: 0.5rem 1.25rem;
        border-radius: var(--radius-md);
        text-decoration: none;
        font-weight: 600;
        font-size: var(--font-size-base);
        line-height: var(--line-height-base);
        transition: background var(--anim-duration) var(--anim-ease);
        white-space: nowrap;
    }
    .cta-button:hover {
        background: var(--bg-primary-hover);
    }
    .burger {
        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 2.5rem;
        height: 2.5rem;
        background: transparent;
        border: none;
        cursor: pointer;
        gap: 5px;
        padding: 0;
    }
    .burger span {
        display: block;
        width: 24px;
        height: 2px;
        background: var(--fg-on-surface);
        border-radius: 2px;
        transition: all var(--anim-duration) var(--anim-ease);
    }
    .burger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .burger.active span:nth-child(2) {
        opacity: 0;
    }
    .burger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    @media (max-width: 767px) {
        .nav-menu {
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: var(--surface-1);
            border-bottom: 1px solid var(--border-on-surface);
            padding: var(--space-y) var(--space-x);
            display: none;
            box-shadow: var(--shadow-md);
        }
        .nav-menu.open {
            display: block;
        }
        .nav-menu ul {
            flex-direction: column;
            gap: var(--gap);
        }
        .cta-button {
            display: none;
        }
        .burger {
            display: flex;
        }
    }

footer {
      background-color: #2c3e50;
      color: #ecf0f1;
      padding: 2rem 1rem;
      font-family: Arial, sans-serif;
      line-height: 1.6;
    }
    .footer-container {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 1.5rem;
    }
    .footer-logo a {
      font-size: 1.5rem;
      font-weight: bold;
      color: #ecf0f1;
      text-decoration: none;
    }
    .footer-logo a:hover {
      color: #3498db;
    }
    .footer-nav ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 1rem;
    }
    .footer-nav a {
      color: #ecf0f1;
      text-decoration: none;
      padding: 0.25rem 0.5rem;
      transition: color 0.3s;
    }
    .footer-nav a:hover {
      color: #3498db;
    }
    .footer-contacts {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 1rem;
      font-size: 0.95rem;
    }
    .footer-contacts a {
      color: #3498db;
      text-decoration: none;
    }
    .footer-contacts a:hover {
      text-decoration: underline;
    }
    .footer-legal {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 1rem;
    }
    .footer-legal a {
      color: #ecf0f1;
      text-decoration: none;
      font-size: 0.9rem;
    }
    .footer-legal a:hover {
      color: #3498db;
    }
    .footer-disclaimer p {
      font-size: 0.85rem;
      color: #bdc3c7;
      max-width: 800px;
      margin: 0 auto;
    }
    .footer-copyright p {
      font-size: 0.85rem;
      color: #95a5a6;
      margin: 0;
    }
    @media (max-width: 600px) {
      .footer-nav ul {
        flex-direction: column;
        align-items: center;
      }
      .footer-contacts {
        flex-direction: column;
        align-items: center;
      }
    }

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

    .nfcookie-v11__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, .45), rgba(17, 24, 39, .95));
        color: var(--neutral-100);
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, .35);
    }

    .nfcookie-v11__top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .nfcookie-v11__top strong {font-size: 16px;}

    .nfcookie-v11__top button {
        border: 0;
        background: transparent;
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
        cursor: pointer;
    }

    .nfcookie-v11 p {margin: 10px 0 0; color: #d1d5db;}

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

    .nfcookie-v11__actions button {
        flex: 1;
        border-radius: var(--radius-sm);
        border: 1px solid rgba(148, 163, 184, .45);
        padding: 9px 12px;
        color: #e5e7eb;
        background: rgba(51, 65, 85, .65);
        cursor: pointer;
    }

    .nfcookie-v11__actions button[data-choice='accept'] {
        background: #22c55e;
        border-color: transparent;
        color: #06290e;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .nfcookie-v11__card {max-width: none;}
    }

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

    .terms-layout-b .wrap {
        max-width: var(--max-w);
        margin: 0 auto;
    }

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

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

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

    .terms-layout-b .grid {
        display: grid;
        gap: var(--gap);
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    }

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

    .terms-layout-b h3 {
        margin: 0 0 8px;
        color: var(--brand);
    }

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

    .terms-layout-b p, .terms-layout-b li {
        color: var(--neutral-600);
        margin-top: 0;
    }

header {
        background: var(--surface-1);
        border-bottom: 1px solid var(--border-on-surface);
        padding: var(--space-y) var(--space-x);
        position: sticky;
        top: 0;
        z-index: 100;
    }
    .header-container {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
    }
    .logo {
        font-size: calc(var(--font-size-base) * 1.3);
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        white-space: nowrap;
    }
    .nav-menu ul {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        gap: calc(var(--gap) * 1.5);
    }
    .nav-menu a {
        text-decoration: none;
        color: var(--fg-on-surface);
        font-size: var(--font-size-base);
        line-height: var(--line-height-base);
        transition: color var(--anim-duration) var(--anim-ease);
    }
    .nav-menu a:hover {
        color: var(--brand);
    }
    .cta-button {
        background: var(--brand);
        color: var(--brand-contrast);
        padding: 0.5rem 1.25rem;
        border-radius: var(--radius-md);
        text-decoration: none;
        font-weight: 600;
        font-size: var(--font-size-base);
        line-height: var(--line-height-base);
        transition: background var(--anim-duration) var(--anim-ease);
        white-space: nowrap;
    }
    .cta-button:hover {
        background: var(--bg-primary-hover);
    }
    .burger {
        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 2.5rem;
        height: 2.5rem;
        background: transparent;
        border: none;
        cursor: pointer;
        gap: 5px;
        padding: 0;
    }
    .burger span {
        display: block;
        width: 24px;
        height: 2px;
        background: var(--fg-on-surface);
        border-radius: 2px;
        transition: all var(--anim-duration) var(--anim-ease);
    }
    .burger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .burger.active span:nth-child(2) {
        opacity: 0;
    }
    .burger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    @media (max-width: 767px) {
        .nav-menu {
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: var(--surface-1);
            border-bottom: 1px solid var(--border-on-surface);
            padding: var(--space-y) var(--space-x);
            display: none;
            box-shadow: var(--shadow-md);
        }
        .nav-menu.open {
            display: block;
        }
        .nav-menu ul {
            flex-direction: column;
            gap: var(--gap);
        }
        .cta-button {
            display: none;
        }
        .burger {
            display: flex;
        }
    }

footer {
      background-color: #2c3e50;
      color: #ecf0f1;
      padding: 2rem 1rem;
      font-family: Arial, sans-serif;
      line-height: 1.6;
    }
    .footer-container {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 1.5rem;
    }
    .footer-logo a {
      font-size: 1.5rem;
      font-weight: bold;
      color: #ecf0f1;
      text-decoration: none;
    }
    .footer-logo a:hover {
      color: #3498db;
    }
    .footer-nav ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 1rem;
    }
    .footer-nav a {
      color: #ecf0f1;
      text-decoration: none;
      padding: 0.25rem 0.5rem;
      transition: color 0.3s;
    }
    .footer-nav a:hover {
      color: #3498db;
    }
    .footer-contacts {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 1rem;
      font-size: 0.95rem;
    }
    .footer-contacts a {
      color: #3498db;
      text-decoration: none;
    }
    .footer-contacts a:hover {
      text-decoration: underline;
    }
    .footer-legal {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 1rem;
    }
    .footer-legal a {
      color: #ecf0f1;
      text-decoration: none;
      font-size: 0.9rem;
    }
    .footer-legal a:hover {
      color: #3498db;
    }
    .footer-disclaimer p {
      font-size: 0.85rem;
      color: #bdc3c7;
      max-width: 800px;
      margin: 0 auto;
    }
    .footer-copyright p {
      font-size: 0.85rem;
      color: #95a5a6;
      margin: 0;
    }
    @media (max-width: 600px) {
      .footer-nav ul {
        flex-direction: column;
        align-items: center;
      }
      .footer-contacts {
        flex-direction: column;
        align-items: center;
      }
    }

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

    .nfcookie-v11__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, .45), rgba(17, 24, 39, .95));
        color: var(--neutral-100);
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, .35);
    }

    .nfcookie-v11__top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .nfcookie-v11__top strong {font-size: 16px;}

    .nfcookie-v11__top button {
        border: 0;
        background: transparent;
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
        cursor: pointer;
    }

    .nfcookie-v11 p {margin: 10px 0 0; color: #d1d5db;}

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

    .nfcookie-v11__actions button {
        flex: 1;
        border-radius: var(--radius-sm);
        border: 1px solid rgba(148, 163, 184, .45);
        padding: 9px 12px;
        color: #e5e7eb;
        background: rgba(51, 65, 85, .65);
        cursor: pointer;
    }

    .nfcookie-v11__actions button[data-choice='accept'] {
        background: #22c55e;
        border-color: transparent;
        color: #06290e;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .nfcookie-v11__card {max-width: none;}
    }

.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 {
        background: var(--surface-1);
        border-bottom: 1px solid var(--border-on-surface);
        padding: var(--space-y) var(--space-x);
        position: sticky;
        top: 0;
        z-index: 100;
    }
    .header-container {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
    }
    .logo {
        font-size: calc(var(--font-size-base) * 1.3);
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        white-space: nowrap;
    }
    .nav-menu ul {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        gap: calc(var(--gap) * 1.5);
    }
    .nav-menu a {
        text-decoration: none;
        color: var(--fg-on-surface);
        font-size: var(--font-size-base);
        line-height: var(--line-height-base);
        transition: color var(--anim-duration) var(--anim-ease);
    }
    .nav-menu a:hover {
        color: var(--brand);
    }
    .cta-button {
        background: var(--brand);
        color: var(--brand-contrast);
        padding: 0.5rem 1.25rem;
        border-radius: var(--radius-md);
        text-decoration: none;
        font-weight: 600;
        font-size: var(--font-size-base);
        line-height: var(--line-height-base);
        transition: background var(--anim-duration) var(--anim-ease);
        white-space: nowrap;
    }
    .cta-button:hover {
        background: var(--bg-primary-hover);
    }
    .burger {
        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 2.5rem;
        height: 2.5rem;
        background: transparent;
        border: none;
        cursor: pointer;
        gap: 5px;
        padding: 0;
    }
    .burger span {
        display: block;
        width: 24px;
        height: 2px;
        background: var(--fg-on-surface);
        border-radius: 2px;
        transition: all var(--anim-duration) var(--anim-ease);
    }
    .burger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .burger.active span:nth-child(2) {
        opacity: 0;
    }
    .burger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    @media (max-width: 767px) {
        .nav-menu {
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: var(--surface-1);
            border-bottom: 1px solid var(--border-on-surface);
            padding: var(--space-y) var(--space-x);
            display: none;
            box-shadow: var(--shadow-md);
        }
        .nav-menu.open {
            display: block;
        }
        .nav-menu ul {
            flex-direction: column;
            gap: var(--gap);
        }
        .cta-button {
            display: none;
        }
        .burger {
            display: flex;
        }
    }

footer {
      background-color: #2c3e50;
      color: #ecf0f1;
      padding: 2rem 1rem;
      font-family: Arial, sans-serif;
      line-height: 1.6;
    }
    .footer-container {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 1.5rem;
    }
    .footer-logo a {
      font-size: 1.5rem;
      font-weight: bold;
      color: #ecf0f1;
      text-decoration: none;
    }
    .footer-logo a:hover {
      color: #3498db;
    }
    .footer-nav ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 1rem;
    }
    .footer-nav a {
      color: #ecf0f1;
      text-decoration: none;
      padding: 0.25rem 0.5rem;
      transition: color 0.3s;
    }
    .footer-nav a:hover {
      color: #3498db;
    }
    .footer-contacts {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 1rem;
      font-size: 0.95rem;
    }
    .footer-contacts a {
      color: #3498db;
      text-decoration: none;
    }
    .footer-contacts a:hover {
      text-decoration: underline;
    }
    .footer-legal {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 1rem;
    }
    .footer-legal a {
      color: #ecf0f1;
      text-decoration: none;
      font-size: 0.9rem;
    }
    .footer-legal a:hover {
      color: #3498db;
    }
    .footer-disclaimer p {
      font-size: 0.85rem;
      color: #bdc3c7;
      max-width: 800px;
      margin: 0 auto;
    }
    .footer-copyright p {
      font-size: 0.85rem;
      color: #95a5a6;
      margin: 0;
    }
    @media (max-width: 600px) {
      .footer-nav ul {
        flex-direction: column;
        align-items: center;
      }
      .footer-contacts {
        flex-direction: column;
        align-items: center;
      }
    }

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

    .nfcookie-v11__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, .45), rgba(17, 24, 39, .95));
        color: var(--neutral-100);
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, .35);
    }

    .nfcookie-v11__top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .nfcookie-v11__top strong {font-size: 16px;}

    .nfcookie-v11__top button {
        border: 0;
        background: transparent;
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
        cursor: pointer;
    }

    .nfcookie-v11 p {margin: 10px 0 0; color: #d1d5db;}

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

    .nfcookie-v11__actions button {
        flex: 1;
        border-radius: var(--radius-sm);
        border: 1px solid rgba(148, 163, 184, .45);
        padding: 9px 12px;
        color: #e5e7eb;
        background: rgba(51, 65, 85, .65);
        cursor: pointer;
    }

    .nfcookie-v11__actions button[data-choice='accept'] {
        background: #22c55e;
        border-color: transparent;
        color: #06290e;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .nfcookie-v11__card {max-width: none;}
    }

.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 {
        background: var(--surface-1);
        border-bottom: 1px solid var(--border-on-surface);
        padding: var(--space-y) var(--space-x);
        position: sticky;
        top: 0;
        z-index: 100;
    }
    .header-container {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
    }
    .logo {
        font-size: calc(var(--font-size-base) * 1.3);
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        white-space: nowrap;
    }
    .nav-menu ul {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        gap: calc(var(--gap) * 1.5);
    }
    .nav-menu a {
        text-decoration: none;
        color: var(--fg-on-surface);
        font-size: var(--font-size-base);
        line-height: var(--line-height-base);
        transition: color var(--anim-duration) var(--anim-ease);
    }
    .nav-menu a:hover {
        color: var(--brand);
    }
    .cta-button {
        background: var(--brand);
        color: var(--brand-contrast);
        padding: 0.5rem 1.25rem;
        border-radius: var(--radius-md);
        text-decoration: none;
        font-weight: 600;
        font-size: var(--font-size-base);
        line-height: var(--line-height-base);
        transition: background var(--anim-duration) var(--anim-ease);
        white-space: nowrap;
    }
    .cta-button:hover {
        background: var(--bg-primary-hover);
    }
    .burger {
        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 2.5rem;
        height: 2.5rem;
        background: transparent;
        border: none;
        cursor: pointer;
        gap: 5px;
        padding: 0;
    }
    .burger span {
        display: block;
        width: 24px;
        height: 2px;
        background: var(--fg-on-surface);
        border-radius: 2px;
        transition: all var(--anim-duration) var(--anim-ease);
    }
    .burger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .burger.active span:nth-child(2) {
        opacity: 0;
    }
    .burger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    @media (max-width: 767px) {
        .nav-menu {
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: var(--surface-1);
            border-bottom: 1px solid var(--border-on-surface);
            padding: var(--space-y) var(--space-x);
            display: none;
            box-shadow: var(--shadow-md);
        }
        .nav-menu.open {
            display: block;
        }
        .nav-menu ul {
            flex-direction: column;
            gap: var(--gap);
        }
        .cta-button {
            display: none;
        }
        .burger {
            display: flex;
        }
    }

footer {
      background-color: #2c3e50;
      color: #ecf0f1;
      padding: 2rem 1rem;
      font-family: Arial, sans-serif;
      line-height: 1.6;
    }
    .footer-container {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 1.5rem;
    }
    .footer-logo a {
      font-size: 1.5rem;
      font-weight: bold;
      color: #ecf0f1;
      text-decoration: none;
    }
    .footer-logo a:hover {
      color: #3498db;
    }
    .footer-nav ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 1rem;
    }
    .footer-nav a {
      color: #ecf0f1;
      text-decoration: none;
      padding: 0.25rem 0.5rem;
      transition: color 0.3s;
    }
    .footer-nav a:hover {
      color: #3498db;
    }
    .footer-contacts {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 1rem;
      font-size: 0.95rem;
    }
    .footer-contacts a {
      color: #3498db;
      text-decoration: none;
    }
    .footer-contacts a:hover {
      text-decoration: underline;
    }
    .footer-legal {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 1rem;
    }
    .footer-legal a {
      color: #ecf0f1;
      text-decoration: none;
      font-size: 0.9rem;
    }
    .footer-legal a:hover {
      color: #3498db;
    }
    .footer-disclaimer p {
      font-size: 0.85rem;
      color: #bdc3c7;
      max-width: 800px;
      margin: 0 auto;
    }
    .footer-copyright p {
      font-size: 0.85rem;
      color: #95a5a6;
      margin: 0;
    }
    @media (max-width: 600px) {
      .footer-nav ul {
        flex-direction: column;
        align-items: center;
      }
      .footer-contacts {
        flex-direction: column;
        align-items: center;
      }
    }

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

    .nfcookie-v11__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, .45), rgba(17, 24, 39, .95));
        color: var(--neutral-100);
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, .35);
    }

    .nfcookie-v11__top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .nfcookie-v11__top strong {font-size: 16px;}

    .nfcookie-v11__top button {
        border: 0;
        background: transparent;
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
        cursor: pointer;
    }

    .nfcookie-v11 p {margin: 10px 0 0; color: #d1d5db;}

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

    .nfcookie-v11__actions button {
        flex: 1;
        border-radius: var(--radius-sm);
        border: 1px solid rgba(148, 163, 184, .45);
        padding: 9px 12px;
        color: #e5e7eb;
        background: rgba(51, 65, 85, .65);
        cursor: pointer;
    }

    .nfcookie-v11__actions button[data-choice='accept'] {
        background: #22c55e;
        border-color: transparent;
        color: #06290e;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .nfcookie-v11__card {max-width: none;}
    }

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

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

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

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

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