:root {
  --font-family: "Archivo", sans-serif;
  --font-size-base: 16.9px;
  --line-height-base: 1.62;

  --max-w: 1400px;
  --space-x: 2.32rem;
  --space-y: 1.5rem;
  --gap: 1.62rem;

  --radius-xl: 1.25rem;
  --radius-lg: 0.74rem;
  --radius-md: 0.47rem;
  --radius-sm: 0.32rem;

  --shadow-sm: 0 1px 7px rgba(0,0,0,0.13);
  --shadow-md: 0 8px 26px rgba(0,0,0,0.17);
  --shadow-lg: 0 20px 36px rgba(0,0,0,0.21);

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

  --brand: #1a1a2e;
  --brand-contrast: #e0e0e0;
  --accent: #d4a373;
  --accent-contrast: #1a1a2e;

  --neutral-0: #ffffff;
  --neutral-100: #f5f5f5;
  --neutral-300: #bdbdbd;
  --neutral-600: #757575;
  --neutral-800: #424242;
  --neutral-900: #212121;

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

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

  --surface-1: #2a2a2a;
  --surface-2: #333333;
  --fg-on-surface: #e0e0e0;
  --border-on-surface: #444444;

  --surface-light: #fafafa;
  --fg-on-surface-light: #212121;
  --border-on-surface-light: #e0e0e0;

  --bg-primary: #d4a373;
  --fg-on-primary: #1a1a2e;
  --bg-primary-hover: #c48b5a;
  --ring: #d4a373;

  --bg-accent: #d4a373;
  --fg-on-accent: #1a1a2e;
  --bg-accent-hover: #c48b5a;

  --link: #d4a373;
  --link-hover: #e6b88a;

  --gradient-hero: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  --gradient-accent: linear-gradient(135deg, #d4a373 0%, #c48b5a 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, #ffffff);
    border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
    box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.08));
    position: relative;
    z-index: 100;
  }
  .header-inner {
    max-width: var(--max-w, 1200px);
    margin: 0 auto;
    padding: var(--space-y, 0.75rem) var(--space-x, 1.5rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap, 1rem);
  }
  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand, #1a73e8);
    text-decoration: none;
    white-space: nowrap;
    letter-spacing: -0.02em;
  }
  .logo:hover {
    color: var(--brand-contrast, #1557b0);
  }
  .nav-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap, 1.5rem);
  }
  .nav-menu a {
    text-decoration: none;
    color: var(--neutral-800, #333);
    font-size: var(--font-size-base, 1rem);
    line-height: var(--line-height-base, 1.5);
    padding: 0.25rem 0;
    transition: color var(--anim-duration, 0.2s) var(--anim-ease, ease);
    position: relative;
  }
  .nav-menu a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: var(--brand, #1a73e8);
    transition: width var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }
  .nav-menu a:hover {
    color: var(--brand, #1a73e8);
  }
  .nav-menu a:hover::after {
    width: 100%;
  }
  .header-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  .search-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--neutral-600, #666);
    border-radius: var(--radius-sm, 4px);
    transition: background var(--anim-duration, 0.2s) var(--anim-ease, ease), color var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }
  .search-toggle:hover {
    background: var(--btn-ghost-bg-hover, #f0f0f0);
    color: var(--brand, #1a73e8);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius-sm, 4px);
    transition: background var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }
  .burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--neutral-800, #333);
    border-radius: 2px;
    transition: transform var(--anim-duration, 0.3s) var(--anim-ease, ease), opacity var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }
  .burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
  }
  .burger.active span:nth-child(2) {
    opacity: 0;
  }
  .burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px);
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover, #f0f0f0);
  }
  .search-bar {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--anim-duration, 0.3s) var(--anim-ease, ease);
    background: var(--surface-1, #ffffff);
    border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
    display: flex;
    align-items: center;
    padding: 0 var(--space-x, 1.5rem);
  }
  .search-bar.open {
    max-height: 60px;
  }
  .search-bar input {
    flex: 1;
    border: none;
    padding: 0.75rem 0;
    font-size: var(--font-size-base, 1rem);
    background: transparent;
    color: var(--neutral-900, #111);
    outline: none;
  }
  .search-bar input::placeholder {
    color: var(--input-placeholder, #999);
  }
  .search-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--neutral-600, #666);
    transition: color var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }
  .search-close:hover {
    color: var(--brand, #1a73e8);
  }

  @media (max-width: 767px) {
    .burger {
      display: flex;
    }
    .nav-menu {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--surface-1, #ffffff);
      border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
      box-shadow: var(--shadow-md, 0 4px 6px rgba(0,0,0,0.1));
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--anim-duration, 0.3s) var(--anim-ease, ease);
    }
    .nav-menu.open {
      max-height: 300px;
    }
    .nav-menu ul {
      flex-direction: column;
      padding: var(--space-y, 0.75rem) var(--space-x, 1.5rem);
      gap: 0.5rem;
    }
    .nav-menu a {
      display: block;
      padding: 0.5rem 0;
    }
    .nav-menu a::after {
      display: none;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 40px 20px 20px;
    font-family: Arial, sans-serif;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
  }
  .footer-brand {
    flex: 1 1 200px;
  }
  .footer-logo {
    font-size: 1.8em;
    font-weight: bold;
    color: #f0a500;
    text-decoration: none;
  }
  .footer-nav {
    flex: 2 1 300px;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1em;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #f0a500;
  }
  .footer-links {
    flex: 1 1 200px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .footer-links a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 0.95em;
    transition: color 0.3s;
  }
  .footer-links a:hover {
    color: #f0a500;
  }
  .footer-contacts {
    flex: 1 1 250px;
    background: transparent;
    padding: 0;
    margin: 0;
  }
  .footer-contacts p {
    margin: 8px 0;
    font-size: 0.95em;
    line-height: 1.5;
  }
  .footer-contacts a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-contacts a:hover {
    color: #f0a500;
  }
  .footer-disclaimer {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #333;
    font-size: 0.85em;
    line-height: 1.5;
    text-align: center;
    color: #aaa;
  }
  .footer-copyright {
    margin-top: 15px;
    text-align: center;
    font-size: 0.9em;
    color: #888;
  }
  @media (max-width: 768px) {
    .footer-row {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-links {
      align-items: center;
    }
    .footer-contacts {
      text-align: center;
    }
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .cta-struct-v5 .center {
        display: grid;
        gap: .5rem;
        justify-items: center;
        text-align: center
    }

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

    .cta-struct-v5 .actions {
        display: flex;
        gap: .45rem;
        flex-wrap: wrap
    }

    .cta-struct-v5 .actions a, .cta-struct-v5 .center a, .cta-struct-v5 .banner > a, .cta-struct-v5 .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)
    }

    .cta-struct-v5 .banner {
        display: grid;
        gap: .6rem
    }

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

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

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

    .cta-struct-v5 .duo article {
        display: grid;
        gap: .45rem
    }

    .cta-struct-v5 .stack {
        display: grid;
        gap: .6rem;
        justify-items: start
    }

    .cta-struct-v5 .chips {
        display: flex;
        gap: .35rem;
        flex-wrap: wrap
    }

    .cta-struct-v5 .chips span {
        padding: .28rem .5rem;
        border-radius: var(--radius-sm);
        background: var(--surface-1);
        color: var(--neutral-900);
        border: 1px solid var(--border-on-surface-light)
    }

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

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

        .cta-struct-v5 .numbers {
            grid-template-columns:1fr 1fr
        }
    }

    @media (max-width: 620px) {
        .cta-struct-v5 .numbers {
            grid-template-columns:1fr
        }
    }

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

.education-struct-light-v14__shell {
    max-width: var(--max-w);
    margin: 0 auto;
}

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

.education-struct-light-v14 article {
    display: grid;
    gap: .55rem;
    background: var(--neutral-100);
    border: 1px solid var(--neutral-300);
    border-radius: var(--radius-lg);
    padding: .9rem;
}

.education-struct-light-v14 h3,
.education-struct-light-v14 p {
    margin: 0;
}

.education-struct-light-v14 p {
    color: var(--neutral-800);
}

.education-struct-light-v14 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);
    text-decoration: none;
    width: fit-content;
}

@media (max-width: 900px) {
    .education-struct-light-v14__tiers {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 680px) {
    .education-struct-light-v14__tiers {
        grid-template-columns: 1fr;
    }
}

.why-choose {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        padding: clamp(40px, 6vw, 80px) clamp(16px, 3vw, 40px);
    }

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

    .why-choose .why-choose__h {
        text-align: center;
        margin-bottom: clamp(32px, 5vw, 64px);

        transform: translateY(20px);
    }

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

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

    .why-choose .why-choose__grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: var(--gap);
    }

    .why-choose .why-choose__item {
        background: var(--fg-on-primary);
        padding: clamp(20px, 3vw, 32px);
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-on-surface-light);
        transition: transform var(--anim-duration) var(--anim-ease);

        transform: translateY(30px);
    }

    .why-choose .why-choose__item:hover {
        transform: translateY(-4px);
    }

    .why-choose .why-choose__number {
        width: 48px;
        height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-radius: var(--radius-md);
        margin-bottom: 1rem;
        font-size: 24px;
    }

    .why-choose .why-choose__item h3 {
        font-size: clamp(18px, 2.2vw, 22px);
        margin: 0 0 0.75rem;
        color: var(--fg-on-surface-light);
    }

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

header {
    background: var(--surface-1, #ffffff);
    border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
    box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.08));
    position: relative;
    z-index: 100;
  }
  .header-inner {
    max-width: var(--max-w, 1200px);
    margin: 0 auto;
    padding: var(--space-y, 0.75rem) var(--space-x, 1.5rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap, 1rem);
  }
  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand, #1a73e8);
    text-decoration: none;
    white-space: nowrap;
    letter-spacing: -0.02em;
  }
  .logo:hover {
    color: var(--brand-contrast, #1557b0);
  }
  .nav-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap, 1.5rem);
  }
  .nav-menu a {
    text-decoration: none;
    color: var(--neutral-800, #333);
    font-size: var(--font-size-base, 1rem);
    line-height: var(--line-height-base, 1.5);
    padding: 0.25rem 0;
    transition: color var(--anim-duration, 0.2s) var(--anim-ease, ease);
    position: relative;
  }
  .nav-menu a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: var(--brand, #1a73e8);
    transition: width var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }
  .nav-menu a:hover {
    color: var(--brand, #1a73e8);
  }
  .nav-menu a:hover::after {
    width: 100%;
  }
  .header-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  .search-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--neutral-600, #666);
    border-radius: var(--radius-sm, 4px);
    transition: background var(--anim-duration, 0.2s) var(--anim-ease, ease), color var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }
  .search-toggle:hover {
    background: var(--btn-ghost-bg-hover, #f0f0f0);
    color: var(--brand, #1a73e8);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius-sm, 4px);
    transition: background var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }
  .burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--neutral-800, #333);
    border-radius: 2px;
    transition: transform var(--anim-duration, 0.3s) var(--anim-ease, ease), opacity var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }
  .burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
  }
  .burger.active span:nth-child(2) {
    opacity: 0;
  }
  .burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px);
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover, #f0f0f0);
  }
  .search-bar {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--anim-duration, 0.3s) var(--anim-ease, ease);
    background: var(--surface-1, #ffffff);
    border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
    display: flex;
    align-items: center;
    padding: 0 var(--space-x, 1.5rem);
  }
  .search-bar.open {
    max-height: 60px;
  }
  .search-bar input {
    flex: 1;
    border: none;
    padding: 0.75rem 0;
    font-size: var(--font-size-base, 1rem);
    background: transparent;
    color: var(--neutral-900, #111);
    outline: none;
  }
  .search-bar input::placeholder {
    color: var(--input-placeholder, #999);
  }
  .search-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--neutral-600, #666);
    transition: color var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }
  .search-close:hover {
    color: var(--brand, #1a73e8);
  }

  @media (max-width: 767px) {
    .burger {
      display: flex;
    }
    .nav-menu {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--surface-1, #ffffff);
      border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
      box-shadow: var(--shadow-md, 0 4px 6px rgba(0,0,0,0.1));
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--anim-duration, 0.3s) var(--anim-ease, ease);
    }
    .nav-menu.open {
      max-height: 300px;
    }
    .nav-menu ul {
      flex-direction: column;
      padding: var(--space-y, 0.75rem) var(--space-x, 1.5rem);
      gap: 0.5rem;
    }
    .nav-menu a {
      display: block;
      padding: 0.5rem 0;
    }
    .nav-menu a::after {
      display: none;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 40px 20px 20px;
    font-family: Arial, sans-serif;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
  }
  .footer-brand {
    flex: 1 1 200px;
  }
  .footer-logo {
    font-size: 1.8em;
    font-weight: bold;
    color: #f0a500;
    text-decoration: none;
  }
  .footer-nav {
    flex: 2 1 300px;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1em;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #f0a500;
  }
  .footer-links {
    flex: 1 1 200px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .footer-links a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 0.95em;
    transition: color 0.3s;
  }
  .footer-links a:hover {
    color: #f0a500;
  }
  .footer-contacts {
    flex: 1 1 250px;
    background: transparent;
    padding: 0;
    margin: 0;
  }
  .footer-contacts p {
    margin: 8px 0;
    font-size: 0.95em;
    line-height: 1.5;
  }
  .footer-contacts a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-contacts a:hover {
    color: #f0a500;
  }
  .footer-disclaimer {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #333;
    font-size: 0.85em;
    line-height: 1.5;
    text-align: center;
    color: #aaa;
  }
  .footer-copyright {
    margin-top: 15px;
    text-align: center;
    font-size: 0.9em;
    color: #888;
  }
  @media (max-width: 768px) {
    .footer-row {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-links {
      align-items: center;
    }
    .footer-contacts {
      text-align: center;
    }
  }

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

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

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

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

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

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

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

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

.about-mission {

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

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

    .about-mission .about-mission__grid {
        display: grid;
        gap: var(--space-x);
        grid-template-columns: 1fr 1fr;
    }

    .about-mission p {
        color: var(--neutral-600);
    }

    @media (max-width: 767px) {
        .about-mission .about-mission__grid {
            grid-template-columns: 1fr;
        }
    }

.faq-fresh-v5 {
        padding: calc(var(--space-y) * 2.4) var(--space-x);
        background: var(--neutral-900);
        color: var(--neutral-0);
    }

    .faq-fresh-v5 .shell {
        max-width: 840px;
        margin: 0 auto;
        display: grid;
        gap: var(--gap);
    }

    .faq-fresh-v5 h2 {
        margin: 0;
        font-size: clamp(1.7rem, 3.1vw, 2.4rem);
    }

    .faq-fresh-v5 .stack {
        display: grid;
        gap: .75rem;
    }

    .faq-fresh-v5 article {
        padding: 1rem;
        border-radius: var(--radius-md);
        background: var(--chip-bg);
        border: 1px solid var(--btn-ghost-bg-hover);
    }

    .faq-fresh-v5 h3 {
        margin: 0 0 .5rem;
        font-size: 1rem;
    }

    .faq-fresh-v5 p {
        margin: 0;
        opacity: .88;
    }

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

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

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

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

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

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

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

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

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

.team-radiance {
        background: radial-gradient(circle at top right, rgba(255, 183, 96, 0.75), rgba(255, 183, 96, 0)), var(--bg-primary);
        color: var(--fg-on-primary);
        padding: clamp(60px, 8vw, 110px) clamp(16px, 4vw, 48px);
    }

    .team-radiance__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .team-radiance__h {
        text-align: center;
        margin-bottom: clamp(40px, 5vw, 72px);

        transform: translateY(-20px);
    }

    .team-radiance__h span {
        display: inline-flex;
        padding: 0.35rem 1rem;
        border-radius: 999px;
        background: rgba(255, 206, 182, 0.2);
        border: 1px solid rgba(255, 206, 182, 0.4);
        text-transform: uppercase;
        letter-spacing: 0.2em;
        font-size: 0.8rem;
    }

    .team-radiance__h h2 {
        margin: 0.75rem 0 0;
        font-size: clamp(34px, 4.8vw, 56px);
    }

    .team-radiance__list {
        display: flex;
        flex-direction: column;
        gap: clamp(20px, 3vw, 32px);
    }

    .team-radiance__item {
        background: rgba(255, 206, 182, 0.2);
        border-radius: var(--radius-lg);
        border: 1px solid rgba(255, 255, 255, 0.15);
        padding: clamp(20px, 3vw, 32px);
        box-shadow: 0 25px 45px rgba(6, 3, 19, 0.4);

        transform: translateY(26px);
    }

    .team-radiance__header {
        display: grid;
        grid-template-columns: auto 1fr auto;
        gap: 1rem;
        align-items: center;
        margin-bottom: 1rem;
    }

    .team-radiance__photo {
        width: 72px;
        height: 72px;
        border-radius: var(--radius-sm);
        overflow: hidden;
        border: 2px solid rgba(255, 255, 255, 0.4);
    }

    .team-radiance__photo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .team-radiance__header h3 {
        margin: 0;
        font-size: 1.35rem;
    }

    .team-radiance__header p {
        margin: 0.15rem 0 0;

    }

    .team-radiance__badge {
        padding: 0.5rem 0.85rem;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.15);
        font-weight: 700;
        text-align: center;
    }

    .team-radiance__bio {
        margin: 0 0 0.75rem;
        color: rgba(255, 255, 255, 0.78);
    }

    .team-radiance__impact {
        font-weight: 600;
        color: #FFD1C0;
    }

header {
    background: var(--surface-1, #ffffff);
    border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
    box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.08));
    position: relative;
    z-index: 100;
  }
  .header-inner {
    max-width: var(--max-w, 1200px);
    margin: 0 auto;
    padding: var(--space-y, 0.75rem) var(--space-x, 1.5rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap, 1rem);
  }
  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand, #1a73e8);
    text-decoration: none;
    white-space: nowrap;
    letter-spacing: -0.02em;
  }
  .logo:hover {
    color: var(--brand-contrast, #1557b0);
  }
  .nav-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap, 1.5rem);
  }
  .nav-menu a {
    text-decoration: none;
    color: var(--neutral-800, #333);
    font-size: var(--font-size-base, 1rem);
    line-height: var(--line-height-base, 1.5);
    padding: 0.25rem 0;
    transition: color var(--anim-duration, 0.2s) var(--anim-ease, ease);
    position: relative;
  }
  .nav-menu a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: var(--brand, #1a73e8);
    transition: width var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }
  .nav-menu a:hover {
    color: var(--brand, #1a73e8);
  }
  .nav-menu a:hover::after {
    width: 100%;
  }
  .header-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  .search-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--neutral-600, #666);
    border-radius: var(--radius-sm, 4px);
    transition: background var(--anim-duration, 0.2s) var(--anim-ease, ease), color var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }
  .search-toggle:hover {
    background: var(--btn-ghost-bg-hover, #f0f0f0);
    color: var(--brand, #1a73e8);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius-sm, 4px);
    transition: background var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }
  .burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--neutral-800, #333);
    border-radius: 2px;
    transition: transform var(--anim-duration, 0.3s) var(--anim-ease, ease), opacity var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }
  .burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
  }
  .burger.active span:nth-child(2) {
    opacity: 0;
  }
  .burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px);
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover, #f0f0f0);
  }
  .search-bar {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--anim-duration, 0.3s) var(--anim-ease, ease);
    background: var(--surface-1, #ffffff);
    border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
    display: flex;
    align-items: center;
    padding: 0 var(--space-x, 1.5rem);
  }
  .search-bar.open {
    max-height: 60px;
  }
  .search-bar input {
    flex: 1;
    border: none;
    padding: 0.75rem 0;
    font-size: var(--font-size-base, 1rem);
    background: transparent;
    color: var(--neutral-900, #111);
    outline: none;
  }
  .search-bar input::placeholder {
    color: var(--input-placeholder, #999);
  }
  .search-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--neutral-600, #666);
    transition: color var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }
  .search-close:hover {
    color: var(--brand, #1a73e8);
  }

  @media (max-width: 767px) {
    .burger {
      display: flex;
    }
    .nav-menu {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--surface-1, #ffffff);
      border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
      box-shadow: var(--shadow-md, 0 4px 6px rgba(0,0,0,0.1));
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--anim-duration, 0.3s) var(--anim-ease, ease);
    }
    .nav-menu.open {
      max-height: 300px;
    }
    .nav-menu ul {
      flex-direction: column;
      padding: var(--space-y, 0.75rem) var(--space-x, 1.5rem);
      gap: 0.5rem;
    }
    .nav-menu a {
      display: block;
      padding: 0.5rem 0;
    }
    .nav-menu a::after {
      display: none;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 40px 20px 20px;
    font-family: Arial, sans-serif;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
  }
  .footer-brand {
    flex: 1 1 200px;
  }
  .footer-logo {
    font-size: 1.8em;
    font-weight: bold;
    color: #f0a500;
    text-decoration: none;
  }
  .footer-nav {
    flex: 2 1 300px;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1em;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #f0a500;
  }
  .footer-links {
    flex: 1 1 200px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .footer-links a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 0.95em;
    transition: color 0.3s;
  }
  .footer-links a:hover {
    color: #f0a500;
  }
  .footer-contacts {
    flex: 1 1 250px;
    background: transparent;
    padding: 0;
    margin: 0;
  }
  .footer-contacts p {
    margin: 8px 0;
    font-size: 0.95em;
    line-height: 1.5;
  }
  .footer-contacts a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-contacts a:hover {
    color: #f0a500;
  }
  .footer-disclaimer {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #333;
    font-size: 0.85em;
    line-height: 1.5;
    text-align: center;
    color: #aaa;
  }
  .footer-copyright {
    margin-top: 15px;
    text-align: center;
    font-size: 0.9em;
    color: #888;
  }
  @media (max-width: 768px) {
    .footer-row {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-links {
      align-items: center;
    }
    .footer-contacts {
      text-align: center;
    }
  }

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

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

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

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

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

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

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

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

.capabilities-light-alt {

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

    .capabilities-light-alt .capabilities-light-alt__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .capabilities-light-alt .capabilities-light-alt__h {
        text-align: center;
        margin-bottom: clamp(40px, 6vw, 72px);

    }

    .capabilities-light-alt h2 {
        font-size: clamp(32px, 5vw, 48px);
        font-weight: 800;
        margin: 0 0 1rem;
    }

    .capabilities-light-alt .capabilities-light-alt__subtitle {
        font-size: clamp(16px, 2vw, 20px);
        margin: 0;
        color: var(--neutral-600);
    }

    .capabilities-light-alt .capabilities-light-alt__steps {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
        gap: clamp(24px, 4vw, 48px);
        position: relative;
    }

    .capabilities-light-alt .capabilities-light-alt__step {
        position: relative;

        transform: translateY(30px);
    }

    .capabilities-light-alt .capabilities-light-alt__number {
        width: 56px;
        height: 56px;
        background: var(--brand);
        color: var(--fg-on-primary);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        font-weight: 900;
        margin: 0 auto 1.5rem;
        box-shadow: var(--shadow-md);
        position: relative;
        z-index: 2;
    }

    .capabilities-light-alt .capabilities-light-alt__number::before {
        content: '';
        position: absolute;
        inset: -6px;
        border-radius: 50%;
        background: var(--brand);
        opacity: 0.2;
        animation: ripple 2s ease-out infinite;
    }

    @keyframes ripple {
        0% {
            transform: scale(1);
            opacity: 0.2;
        }
        100% {
            transform: scale(1.5);

        }
    }

    .capabilities-light-alt .capabilities-light-alt__box {
        background: var(--surface-1);
        border: 2px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        padding: clamp(24px, 3vw, 32px);
        text-align: center;
        position: relative;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .capabilities-light-alt .capabilities-light-alt__step:hover .capabilities-light-alt__box {
        border-color: var(--brand);
        transform: translateY(-4px);
        box-shadow: var(--shadow-lg);
    }

    .capabilities-light-alt .capabilities-light-alt__box h3 {
        font-size: clamp(20px, 2.5vw, 24px);
        font-weight: 700;
        margin: 0 0 1rem;
        color: var(--fg-on-surface);
    }

    .capabilities-light-alt .capabilities-light-alt__box p {
        margin: 0;
        color: var(--neutral-600);
        line-height: var(--line-height-base);
    }

    .capabilities-light-alt .capabilities-light-alt__arrow {
        position: absolute;
        bottom: -32px;
        left: 50%;
        transform: translateX(-50%) rotate(90deg);
        font-size: 32px;
        color: var(--brand);
        opacity: 0.5;
    }

    .capabilities-light-alt .capabilities-light-alt__step:last-child .capabilities-light-alt__arrow {
        display: none;
    }

    @media (min-width: 768px) {
        .capabilities-light-alt .capabilities-light-alt__arrow {
            bottom: auto;
            top: 50%;
            left: auto;
            right: -40px;
            transform: translateY(-50%) rotate(0deg);
        }
    }

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

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

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

    .hiw-split-c6__media {
        flex: 1 1 18rem;
        order: var(--random-number);
    }

    .hiw-split-c6__content {
        flex: 1 1 22rem;
        order: calc(3 - var(--random-number));
    }

    .hiw-split-c6__media img {
        display: block;
        width: 100%;
        border-radius: var(--radius-xl);
        border: 1px solid rgba(255, 255, 255, .18);
        box-shadow: var(--shadow-lg);
    }

    .hiw-split-c6__content p:first-child {
        margin: 0;
        color: rgba(255, 255, 255, .78);
        text-transform: uppercase;
        letter-spacing: .12em;
        font-size: .82rem;
    }

    .hiw-split-c6__content h2 {
        margin: .55rem 0 0;
        font-size: clamp(2rem, 4vw, 3.1rem);
    }

    .hiw-split-c6__content strong {
        display: block;
        margin-top: .8rem;
        color: var(--bg-accent);
    }

    .hiw-split-c6__copy {
        margin: .75rem 0 0;
        color: rgba(255, 255, 255, .85);
    }

    .hiw-split-c6__content ul {
        margin: 1rem 0 0;
        padding: 0;
        list-style: none;
        display: grid;
        gap: .65rem;
    }

    .hiw-split-c6__content li {
        padding: .8rem .9rem;
        border-radius: var(--radius-md);
        background: rgba(255, 255, 255, .12);
        border: 1px solid rgba(255, 255, 255, .16);
    }

.values-ladder-l4 {
        padding: clamp(3.1rem, 7vw, 5.7rem) var(--space-x);
        background: var(--bg-alt);
        color: var(--fg-on-page);
    }

    .values-ladder-l4__wrap {
        max-width: 56rem;
        margin: 0 auto;
    }

    .values-ladder-l4__head {
        text-align: center;
        margin-bottom: 1.1rem;
    }

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

    .values-ladder-l4__head p {
        margin: .65rem auto 0;
        max-width: 40rem;
        color: var(--neutral-600);
    }

    .values-ladder-l4__rows {
        display: grid;
        gap: .8rem;
    }

    .values-ladder-l4__rows article {
        display: grid;
        grid-template-columns: 3rem 1fr;
        gap: .85rem;
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface-light);
    }

    .values-ladder-l4__step {
        display: grid;
        place-items: center;
        width: 3rem;
        height: 3rem;
        border-radius: var(--radius-md);
        background: var(--surface-2);
        color: var(--brand);
    }

    .values-ladder-l4__rows h3 {
        margin: 0;
    }

    .values-ladder-l4__rows p {
        margin: .35rem 0 0;
        color: var(--neutral-600);
    }

    .values-ladder-l4__rows span {
        display: block;
        margin-top: .55rem;
        color: var(--neutral-800);
    }

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

header {
    background: var(--surface-1, #ffffff);
    border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
    box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.08));
    position: relative;
    z-index: 100;
  }
  .header-inner {
    max-width: var(--max-w, 1200px);
    margin: 0 auto;
    padding: var(--space-y, 0.75rem) var(--space-x, 1.5rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap, 1rem);
  }
  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand, #1a73e8);
    text-decoration: none;
    white-space: nowrap;
    letter-spacing: -0.02em;
  }
  .logo:hover {
    color: var(--brand-contrast, #1557b0);
  }
  .nav-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap, 1.5rem);
  }
  .nav-menu a {
    text-decoration: none;
    color: var(--neutral-800, #333);
    font-size: var(--font-size-base, 1rem);
    line-height: var(--line-height-base, 1.5);
    padding: 0.25rem 0;
    transition: color var(--anim-duration, 0.2s) var(--anim-ease, ease);
    position: relative;
  }
  .nav-menu a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: var(--brand, #1a73e8);
    transition: width var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }
  .nav-menu a:hover {
    color: var(--brand, #1a73e8);
  }
  .nav-menu a:hover::after {
    width: 100%;
  }
  .header-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  .search-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--neutral-600, #666);
    border-radius: var(--radius-sm, 4px);
    transition: background var(--anim-duration, 0.2s) var(--anim-ease, ease), color var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }
  .search-toggle:hover {
    background: var(--btn-ghost-bg-hover, #f0f0f0);
    color: var(--brand, #1a73e8);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius-sm, 4px);
    transition: background var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }
  .burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--neutral-800, #333);
    border-radius: 2px;
    transition: transform var(--anim-duration, 0.3s) var(--anim-ease, ease), opacity var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }
  .burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
  }
  .burger.active span:nth-child(2) {
    opacity: 0;
  }
  .burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px);
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover, #f0f0f0);
  }
  .search-bar {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--anim-duration, 0.3s) var(--anim-ease, ease);
    background: var(--surface-1, #ffffff);
    border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
    display: flex;
    align-items: center;
    padding: 0 var(--space-x, 1.5rem);
  }
  .search-bar.open {
    max-height: 60px;
  }
  .search-bar input {
    flex: 1;
    border: none;
    padding: 0.75rem 0;
    font-size: var(--font-size-base, 1rem);
    background: transparent;
    color: var(--neutral-900, #111);
    outline: none;
  }
  .search-bar input::placeholder {
    color: var(--input-placeholder, #999);
  }
  .search-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--neutral-600, #666);
    transition: color var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }
  .search-close:hover {
    color: var(--brand, #1a73e8);
  }

  @media (max-width: 767px) {
    .burger {
      display: flex;
    }
    .nav-menu {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--surface-1, #ffffff);
      border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
      box-shadow: var(--shadow-md, 0 4px 6px rgba(0,0,0,0.1));
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--anim-duration, 0.3s) var(--anim-ease, ease);
    }
    .nav-menu.open {
      max-height: 300px;
    }
    .nav-menu ul {
      flex-direction: column;
      padding: var(--space-y, 0.75rem) var(--space-x, 1.5rem);
      gap: 0.5rem;
    }
    .nav-menu a {
      display: block;
      padding: 0.5rem 0;
    }
    .nav-menu a::after {
      display: none;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 40px 20px 20px;
    font-family: Arial, sans-serif;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
  }
  .footer-brand {
    flex: 1 1 200px;
  }
  .footer-logo {
    font-size: 1.8em;
    font-weight: bold;
    color: #f0a500;
    text-decoration: none;
  }
  .footer-nav {
    flex: 2 1 300px;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1em;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #f0a500;
  }
  .footer-links {
    flex: 1 1 200px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .footer-links a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 0.95em;
    transition: color 0.3s;
  }
  .footer-links a:hover {
    color: #f0a500;
  }
  .footer-contacts {
    flex: 1 1 250px;
    background: transparent;
    padding: 0;
    margin: 0;
  }
  .footer-contacts p {
    margin: 8px 0;
    font-size: 0.95em;
    line-height: 1.5;
  }
  .footer-contacts a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-contacts a:hover {
    color: #f0a500;
  }
  .footer-disclaimer {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #333;
    font-size: 0.85em;
    line-height: 1.5;
    text-align: center;
    color: #aaa;
  }
  .footer-copyright {
    margin-top: 15px;
    text-align: center;
    font-size: 0.9em;
    color: #888;
  }
  @media (max-width: 768px) {
    .footer-row {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-links {
      align-items: center;
    }
    .footer-contacts {
      text-align: center;
    }
  }

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

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

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

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

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

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

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

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

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

    .nftouch-v10__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .nftouch-v10__head {
        margin-bottom: 14px;
    }

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

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

    .nftouch-v10__cols {
        display: grid;
        grid-template-columns: 1.2fr .8fr;
        gap: 12px;
    }

    .nftouch-v10__left,
    .nftouch-v10__right {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        padding: 12px;
    }

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

    .nftouch-v10__left article {
        padding: 8px 0;
        border-bottom: 1px solid var(--border-on-surface-light);
        display: grid;
        gap: 6px;
    }

    .nftouch-v10__left article:last-child {
        border-bottom: 0;
    }

    .nftouch-v10__left h3 {
        margin: 0;
    }

    .nftouch-v10__left span {
        color: var(--neutral-600);
    }

    .nftouch-v10__left a {
        color: var(--link);
        text-decoration: none;
    }

    .nftouch-v10__right img {
        width: 100%;
        border-radius: var(--radius-md);
        border: 1px solid var(--border-on-surface-light);
    }

    .nftouch-v10__right a {
        display: inline-block;
        margin-top: 10px;
        text-decoration: none;
        padding: 10px 14px;
        border-radius: var(--radius-md);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
    }

    @media (max-width: 860px) {
        .nftouch-v10__cols {
            grid-template-columns: 1fr;
        }
    }

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

    .map-shell-c4__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .map-shell-c4__band {
        margin-bottom: 1rem;
        display: flex;
        justify-content: space-between;
        align-items: end;
        gap: 1rem;
        flex-wrap: wrap;
    }

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

    .map-shell-c4__band p {
        margin: 0;
        color: rgba(255, 255, 255, .82);
    }

    .map-shell-c4__shell {
        display: grid;
        grid-template-columns: 1.2fr .8fr;
        gap: 1rem;
    }

    .map-shell-c4__shell iframe {
        display: block;
        width: 100%;
        min-height: 24rem;
        border-radius: var(--radius-xl);
        border: 1px solid rgba(255, 255, 255, .18);
    }

    .map-shell-c4__cards {
        display: grid;
        gap: .75rem;
    }

    .map-shell-c4__cards article {
        padding: .95rem;
        border-radius: var(--radius-md);
        background: rgba(255, 255, 255, .12);
        border: 1px solid rgba(255, 255, 255, .18);
    }

    .map-shell-c4__cards p {
        margin: .35rem 0 0;
        color: rgba(255, 255, 255, .84);
    }

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

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

    .contact-layout-e .wrap {
        max-width: 980px;
        margin: 0 auto;
    }

    .contact-layout-e .section-head {
        margin-bottom: 16px;
    }

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

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

    .contact-layout-e .rail {
        display: grid;
        grid-template-columns: 260px 1fr;
        gap: 16px;
    }

    .contact-layout-e aside {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border-radius: var(--radius-lg);
        padding: 16px;
    }

    .contact-layout-e aside h3 {
        margin: 0 0 10px;
    }

    .contact-layout-e aside p {
        margin: 0 0 10px;
        opacity: .9;
    }

    .contact-layout-e .social {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }

    .contact-layout-e .social a {
        text-decoration: none;
        color: var(--fg-on-primary);
        background: rgba(255, 255, 255, .16);
        padding: 6px 10px;
        border-radius: var(--radius-sm);
    }

    .contact-layout-e .content {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        display: grid;
        gap: 10px;
    }

    .contact-layout-e .row {
        display: grid;
        gap: 3px;
        padding-bottom: 10px;
        border-bottom: 1px dashed var(--neutral-300);
    }

    .contact-layout-e .row:last-child {
        border-bottom: 0;
        padding-bottom: 0;
    }

    @media (max-width: 760px) {
        .contact-layout-e .rail {
            grid-template-columns: 1fr;
        }
    }

.nfform-v7 {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 36px);
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
    }

    .nfform-v7__form {
        max-width: 760px;
        margin: 0 auto;
        border: 1px solid rgba(255, 255, 255, .26);
        border-radius: var(--radius-lg);
        background: rgba(255, 255, 255, .1);
        padding: 16px;
        display: grid;
        gap: 10px;
    }

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

    .nfform-v7 p {
        margin: 0 0 2px;
        opacity: .92;
    }

    .nfform-v7 label {
        display: grid;
        gap: 6px;
    }

    .nfform-v7 input:not([type='checkbox']),
    .nfform-v7 textarea {
        width: 100%;
        border: 1px solid rgba(255, 255, 255, .35);
        border-radius: var(--radius-sm);
        background: rgba(255, 255, 255, .14);
        color: var(--fg-on-primary);
        padding: 9px;
        font: inherit;
    }

    .nfform-v7__agree {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .nfform-v7 button {
        border: 0;
        border-radius: var(--radius-sm);
        padding: 10px 14px;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        font-weight: 700;
    }

header {
    background: var(--surface-1, #ffffff);
    border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
    box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.08));
    position: relative;
    z-index: 100;
  }
  .header-inner {
    max-width: var(--max-w, 1200px);
    margin: 0 auto;
    padding: var(--space-y, 0.75rem) var(--space-x, 1.5rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap, 1rem);
  }
  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand, #1a73e8);
    text-decoration: none;
    white-space: nowrap;
    letter-spacing: -0.02em;
  }
  .logo:hover {
    color: var(--brand-contrast, #1557b0);
  }
  .nav-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap, 1.5rem);
  }
  .nav-menu a {
    text-decoration: none;
    color: var(--neutral-800, #333);
    font-size: var(--font-size-base, 1rem);
    line-height: var(--line-height-base, 1.5);
    padding: 0.25rem 0;
    transition: color var(--anim-duration, 0.2s) var(--anim-ease, ease);
    position: relative;
  }
  .nav-menu a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: var(--brand, #1a73e8);
    transition: width var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }
  .nav-menu a:hover {
    color: var(--brand, #1a73e8);
  }
  .nav-menu a:hover::after {
    width: 100%;
  }
  .header-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  .search-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--neutral-600, #666);
    border-radius: var(--radius-sm, 4px);
    transition: background var(--anim-duration, 0.2s) var(--anim-ease, ease), color var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }
  .search-toggle:hover {
    background: var(--btn-ghost-bg-hover, #f0f0f0);
    color: var(--brand, #1a73e8);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius-sm, 4px);
    transition: background var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }
  .burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--neutral-800, #333);
    border-radius: 2px;
    transition: transform var(--anim-duration, 0.3s) var(--anim-ease, ease), opacity var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }
  .burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
  }
  .burger.active span:nth-child(2) {
    opacity: 0;
  }
  .burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px);
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover, #f0f0f0);
  }
  .search-bar {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--anim-duration, 0.3s) var(--anim-ease, ease);
    background: var(--surface-1, #ffffff);
    border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
    display: flex;
    align-items: center;
    padding: 0 var(--space-x, 1.5rem);
  }
  .search-bar.open {
    max-height: 60px;
  }
  .search-bar input {
    flex: 1;
    border: none;
    padding: 0.75rem 0;
    font-size: var(--font-size-base, 1rem);
    background: transparent;
    color: var(--neutral-900, #111);
    outline: none;
  }
  .search-bar input::placeholder {
    color: var(--input-placeholder, #999);
  }
  .search-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--neutral-600, #666);
    transition: color var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }
  .search-close:hover {
    color: var(--brand, #1a73e8);
  }

  @media (max-width: 767px) {
    .burger {
      display: flex;
    }
    .nav-menu {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--surface-1, #ffffff);
      border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
      box-shadow: var(--shadow-md, 0 4px 6px rgba(0,0,0,0.1));
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--anim-duration, 0.3s) var(--anim-ease, ease);
    }
    .nav-menu.open {
      max-height: 300px;
    }
    .nav-menu ul {
      flex-direction: column;
      padding: var(--space-y, 0.75rem) var(--space-x, 1.5rem);
      gap: 0.5rem;
    }
    .nav-menu a {
      display: block;
      padding: 0.5rem 0;
    }
    .nav-menu a::after {
      display: none;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 40px 20px 20px;
    font-family: Arial, sans-serif;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
  }
  .footer-brand {
    flex: 1 1 200px;
  }
  .footer-logo {
    font-size: 1.8em;
    font-weight: bold;
    color: #f0a500;
    text-decoration: none;
  }
  .footer-nav {
    flex: 2 1 300px;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1em;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #f0a500;
  }
  .footer-links {
    flex: 1 1 200px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .footer-links a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 0.95em;
    transition: color 0.3s;
  }
  .footer-links a:hover {
    color: #f0a500;
  }
  .footer-contacts {
    flex: 1 1 250px;
    background: transparent;
    padding: 0;
    margin: 0;
  }
  .footer-contacts p {
    margin: 8px 0;
    font-size: 0.95em;
    line-height: 1.5;
  }
  .footer-contacts a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-contacts a:hover {
    color: #f0a500;
  }
  .footer-disclaimer {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #333;
    font-size: 0.85em;
    line-height: 1.5;
    text-align: center;
    color: #aaa;
  }
  .footer-copyright {
    margin-top: 15px;
    text-align: center;
    font-size: 0.9em;
    color: #888;
  }
  @media (max-width: 768px) {
    .footer-row {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-links {
      align-items: center;
    }
    .footer-contacts {
      text-align: center;
    }
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

    .policy-layout-e .columns {
        columns: 2 260px;
        column-gap: 14px;
    }

    .policy-layout-e article {
        break-inside: avoid;
        margin-bottom: 12px;
        border-radius: var(--radius-md);
        border: 1px solid rgba(255, 255, 255, .22);
        padding: 12px;
        background: rgba(255, 255, 255, .05);
    }

    .policy-layout-e h3 {
        margin: 0;
    }

    .policy-layout-e .meta {
        margin: 7px 0 0;
        color: var(--neutral-100);
    }

    .policy-layout-e article p:last-child {
        margin: 7px 0 0;
        color: var(--neutral-100);
    }

header {
    background: var(--surface-1, #ffffff);
    border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
    box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.08));
    position: relative;
    z-index: 100;
  }
  .header-inner {
    max-width: var(--max-w, 1200px);
    margin: 0 auto;
    padding: var(--space-y, 0.75rem) var(--space-x, 1.5rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap, 1rem);
  }
  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand, #1a73e8);
    text-decoration: none;
    white-space: nowrap;
    letter-spacing: -0.02em;
  }
  .logo:hover {
    color: var(--brand-contrast, #1557b0);
  }
  .nav-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap, 1.5rem);
  }
  .nav-menu a {
    text-decoration: none;
    color: var(--neutral-800, #333);
    font-size: var(--font-size-base, 1rem);
    line-height: var(--line-height-base, 1.5);
    padding: 0.25rem 0;
    transition: color var(--anim-duration, 0.2s) var(--anim-ease, ease);
    position: relative;
  }
  .nav-menu a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: var(--brand, #1a73e8);
    transition: width var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }
  .nav-menu a:hover {
    color: var(--brand, #1a73e8);
  }
  .nav-menu a:hover::after {
    width: 100%;
  }
  .header-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  .search-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--neutral-600, #666);
    border-radius: var(--radius-sm, 4px);
    transition: background var(--anim-duration, 0.2s) var(--anim-ease, ease), color var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }
  .search-toggle:hover {
    background: var(--btn-ghost-bg-hover, #f0f0f0);
    color: var(--brand, #1a73e8);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius-sm, 4px);
    transition: background var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }
  .burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--neutral-800, #333);
    border-radius: 2px;
    transition: transform var(--anim-duration, 0.3s) var(--anim-ease, ease), opacity var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }
  .burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
  }
  .burger.active span:nth-child(2) {
    opacity: 0;
  }
  .burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px);
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover, #f0f0f0);
  }
  .search-bar {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--anim-duration, 0.3s) var(--anim-ease, ease);
    background: var(--surface-1, #ffffff);
    border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
    display: flex;
    align-items: center;
    padding: 0 var(--space-x, 1.5rem);
  }
  .search-bar.open {
    max-height: 60px;
  }
  .search-bar input {
    flex: 1;
    border: none;
    padding: 0.75rem 0;
    font-size: var(--font-size-base, 1rem);
    background: transparent;
    color: var(--neutral-900, #111);
    outline: none;
  }
  .search-bar input::placeholder {
    color: var(--input-placeholder, #999);
  }
  .search-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--neutral-600, #666);
    transition: color var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }
  .search-close:hover {
    color: var(--brand, #1a73e8);
  }

  @media (max-width: 767px) {
    .burger {
      display: flex;
    }
    .nav-menu {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--surface-1, #ffffff);
      border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
      box-shadow: var(--shadow-md, 0 4px 6px rgba(0,0,0,0.1));
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--anim-duration, 0.3s) var(--anim-ease, ease);
    }
    .nav-menu.open {
      max-height: 300px;
    }
    .nav-menu ul {
      flex-direction: column;
      padding: var(--space-y, 0.75rem) var(--space-x, 1.5rem);
      gap: 0.5rem;
    }
    .nav-menu a {
      display: block;
      padding: 0.5rem 0;
    }
    .nav-menu a::after {
      display: none;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 40px 20px 20px;
    font-family: Arial, sans-serif;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
  }
  .footer-brand {
    flex: 1 1 200px;
  }
  .footer-logo {
    font-size: 1.8em;
    font-weight: bold;
    color: #f0a500;
    text-decoration: none;
  }
  .footer-nav {
    flex: 2 1 300px;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1em;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #f0a500;
  }
  .footer-links {
    flex: 1 1 200px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .footer-links a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 0.95em;
    transition: color 0.3s;
  }
  .footer-links a:hover {
    color: #f0a500;
  }
  .footer-contacts {
    flex: 1 1 250px;
    background: transparent;
    padding: 0;
    margin: 0;
  }
  .footer-contacts p {
    margin: 8px 0;
    font-size: 0.95em;
    line-height: 1.5;
  }
  .footer-contacts a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-contacts a:hover {
    color: #f0a500;
  }
  .footer-disclaimer {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #333;
    font-size: 0.85em;
    line-height: 1.5;
    text-align: center;
    color: #aaa;
  }
  .footer-copyright {
    margin-top: 15px;
    text-align: center;
    font-size: 0.9em;
    color: #888;
  }
  @media (max-width: 768px) {
    .footer-row {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-links {
      align-items: center;
    }
    .footer-contacts {
      text-align: center;
    }
  }

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

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

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

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

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

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

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

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

.terms-layout-c {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 36px);
        background: linear-gradient(180deg, var(--bg-accent), var(--surface-1));
        color: var(--fg-on-page);
    }

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

    .terms-layout-c .section-head {
        margin-bottom: 14px;
    }

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

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

    .terms-layout-c details {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-md);
        background: var(--surface-1);
        padding: 10px 12px;
        margin-bottom: 10px;
    }

    .terms-layout-c summary {
        cursor: pointer;
        color: var(--brand);
        font-weight: 700;
    }

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

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

header {
    background: var(--surface-1, #ffffff);
    border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
    box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.08));
    position: relative;
    z-index: 100;
  }
  .header-inner {
    max-width: var(--max-w, 1200px);
    margin: 0 auto;
    padding: var(--space-y, 0.75rem) var(--space-x, 1.5rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap, 1rem);
  }
  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand, #1a73e8);
    text-decoration: none;
    white-space: nowrap;
    letter-spacing: -0.02em;
  }
  .logo:hover {
    color: var(--brand-contrast, #1557b0);
  }
  .nav-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap, 1.5rem);
  }
  .nav-menu a {
    text-decoration: none;
    color: var(--neutral-800, #333);
    font-size: var(--font-size-base, 1rem);
    line-height: var(--line-height-base, 1.5);
    padding: 0.25rem 0;
    transition: color var(--anim-duration, 0.2s) var(--anim-ease, ease);
    position: relative;
  }
  .nav-menu a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: var(--brand, #1a73e8);
    transition: width var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }
  .nav-menu a:hover {
    color: var(--brand, #1a73e8);
  }
  .nav-menu a:hover::after {
    width: 100%;
  }
  .header-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  .search-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--neutral-600, #666);
    border-radius: var(--radius-sm, 4px);
    transition: background var(--anim-duration, 0.2s) var(--anim-ease, ease), color var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }
  .search-toggle:hover {
    background: var(--btn-ghost-bg-hover, #f0f0f0);
    color: var(--brand, #1a73e8);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius-sm, 4px);
    transition: background var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }
  .burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--neutral-800, #333);
    border-radius: 2px;
    transition: transform var(--anim-duration, 0.3s) var(--anim-ease, ease), opacity var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }
  .burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
  }
  .burger.active span:nth-child(2) {
    opacity: 0;
  }
  .burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px);
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover, #f0f0f0);
  }
  .search-bar {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--anim-duration, 0.3s) var(--anim-ease, ease);
    background: var(--surface-1, #ffffff);
    border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
    display: flex;
    align-items: center;
    padding: 0 var(--space-x, 1.5rem);
  }
  .search-bar.open {
    max-height: 60px;
  }
  .search-bar input {
    flex: 1;
    border: none;
    padding: 0.75rem 0;
    font-size: var(--font-size-base, 1rem);
    background: transparent;
    color: var(--neutral-900, #111);
    outline: none;
  }
  .search-bar input::placeholder {
    color: var(--input-placeholder, #999);
  }
  .search-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--neutral-600, #666);
    transition: color var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }
  .search-close:hover {
    color: var(--brand, #1a73e8);
  }

  @media (max-width: 767px) {
    .burger {
      display: flex;
    }
    .nav-menu {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--surface-1, #ffffff);
      border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
      box-shadow: var(--shadow-md, 0 4px 6px rgba(0,0,0,0.1));
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--anim-duration, 0.3s) var(--anim-ease, ease);
    }
    .nav-menu.open {
      max-height: 300px;
    }
    .nav-menu ul {
      flex-direction: column;
      padding: var(--space-y, 0.75rem) var(--space-x, 1.5rem);
      gap: 0.5rem;
    }
    .nav-menu a {
      display: block;
      padding: 0.5rem 0;
    }
    .nav-menu a::after {
      display: none;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 40px 20px 20px;
    font-family: Arial, sans-serif;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
  }
  .footer-brand {
    flex: 1 1 200px;
  }
  .footer-logo {
    font-size: 1.8em;
    font-weight: bold;
    color: #f0a500;
    text-decoration: none;
  }
  .footer-nav {
    flex: 2 1 300px;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1em;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #f0a500;
  }
  .footer-links {
    flex: 1 1 200px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .footer-links a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 0.95em;
    transition: color 0.3s;
  }
  .footer-links a:hover {
    color: #f0a500;
  }
  .footer-contacts {
    flex: 1 1 250px;
    background: transparent;
    padding: 0;
    margin: 0;
  }
  .footer-contacts p {
    margin: 8px 0;
    font-size: 0.95em;
    line-height: 1.5;
  }
  .footer-contacts a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-contacts a:hover {
    color: #f0a500;
  }
  .footer-disclaimer {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #333;
    font-size: 0.85em;
    line-height: 1.5;
    text-align: center;
    color: #aaa;
  }
  .footer-copyright {
    margin-top: 15px;
    text-align: center;
    font-size: 0.9em;
    color: #888;
  }
  @media (max-width: 768px) {
    .footer-row {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-links {
      align-items: center;
    }
    .footer-contacts {
      text-align: center;
    }
  }

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

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

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

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

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

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

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

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

.thank-mode-e {
        padding: clamp(58px, 10vw, 114px) 18px;
        background: repeating-linear-gradient(135deg, var(--bg-alt), var(--bg-alt) 16px, var(--neutral-0) 16px, var(--neutral-0) 32px);
        color: var(--fg-on-page);
    }

    .thank-mode-e .wrap {
        max-width: 720px;
        margin: 0 auto;
        text-align: center;
        padding: clamp(28px, 4vw, 42px);
        background: var(--surface-1);
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-md);
    }

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

    .thank-mode-e p {
        margin: 10px 0 0;
        color: var(--neutral-600);
    }

    .thank-mode-e a {
        display: inline-block;
        margin-top: 16px;
        padding: 9px 14px;
        border-radius: var(--radius-sm);
        text-decoration: none;
        border: 1px solid var(--border-on-surface);
        color: var(--fg-on-page);
    }

header {
    background: var(--surface-1, #ffffff);
    border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
    box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.08));
    position: relative;
    z-index: 100;
  }
  .header-inner {
    max-width: var(--max-w, 1200px);
    margin: 0 auto;
    padding: var(--space-y, 0.75rem) var(--space-x, 1.5rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap, 1rem);
  }
  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand, #1a73e8);
    text-decoration: none;
    white-space: nowrap;
    letter-spacing: -0.02em;
  }
  .logo:hover {
    color: var(--brand-contrast, #1557b0);
  }
  .nav-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap, 1.5rem);
  }
  .nav-menu a {
    text-decoration: none;
    color: var(--neutral-800, #333);
    font-size: var(--font-size-base, 1rem);
    line-height: var(--line-height-base, 1.5);
    padding: 0.25rem 0;
    transition: color var(--anim-duration, 0.2s) var(--anim-ease, ease);
    position: relative;
  }
  .nav-menu a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: var(--brand, #1a73e8);
    transition: width var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }
  .nav-menu a:hover {
    color: var(--brand, #1a73e8);
  }
  .nav-menu a:hover::after {
    width: 100%;
  }
  .header-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  .search-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--neutral-600, #666);
    border-radius: var(--radius-sm, 4px);
    transition: background var(--anim-duration, 0.2s) var(--anim-ease, ease), color var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }
  .search-toggle:hover {
    background: var(--btn-ghost-bg-hover, #f0f0f0);
    color: var(--brand, #1a73e8);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius-sm, 4px);
    transition: background var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }
  .burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--neutral-800, #333);
    border-radius: 2px;
    transition: transform var(--anim-duration, 0.3s) var(--anim-ease, ease), opacity var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }
  .burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
  }
  .burger.active span:nth-child(2) {
    opacity: 0;
  }
  .burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px);
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover, #f0f0f0);
  }
  .search-bar {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--anim-duration, 0.3s) var(--anim-ease, ease);
    background: var(--surface-1, #ffffff);
    border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
    display: flex;
    align-items: center;
    padding: 0 var(--space-x, 1.5rem);
  }
  .search-bar.open {
    max-height: 60px;
  }
  .search-bar input {
    flex: 1;
    border: none;
    padding: 0.75rem 0;
    font-size: var(--font-size-base, 1rem);
    background: transparent;
    color: var(--neutral-900, #111);
    outline: none;
  }
  .search-bar input::placeholder {
    color: var(--input-placeholder, #999);
  }
  .search-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--neutral-600, #666);
    transition: color var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }
  .search-close:hover {
    color: var(--brand, #1a73e8);
  }

  @media (max-width: 767px) {
    .burger {
      display: flex;
    }
    .nav-menu {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--surface-1, #ffffff);
      border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
      box-shadow: var(--shadow-md, 0 4px 6px rgba(0,0,0,0.1));
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--anim-duration, 0.3s) var(--anim-ease, ease);
    }
    .nav-menu.open {
      max-height: 300px;
    }
    .nav-menu ul {
      flex-direction: column;
      padding: var(--space-y, 0.75rem) var(--space-x, 1.5rem);
      gap: 0.5rem;
    }
    .nav-menu a {
      display: block;
      padding: 0.5rem 0;
    }
    .nav-menu a::after {
      display: none;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 40px 20px 20px;
    font-family: Arial, sans-serif;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
  }
  .footer-brand {
    flex: 1 1 200px;
  }
  .footer-logo {
    font-size: 1.8em;
    font-weight: bold;
    color: #f0a500;
    text-decoration: none;
  }
  .footer-nav {
    flex: 2 1 300px;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1em;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #f0a500;
  }
  .footer-links {
    flex: 1 1 200px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .footer-links a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 0.95em;
    transition: color 0.3s;
  }
  .footer-links a:hover {
    color: #f0a500;
  }
  .footer-contacts {
    flex: 1 1 250px;
    background: transparent;
    padding: 0;
    margin: 0;
  }
  .footer-contacts p {
    margin: 8px 0;
    font-size: 0.95em;
    line-height: 1.5;
  }
  .footer-contacts a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-contacts a:hover {
    color: #f0a500;
  }
  .footer-disclaimer {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #333;
    font-size: 0.85em;
    line-height: 1.5;
    text-align: center;
    color: #aaa;
  }
  .footer-copyright {
    margin-top: 15px;
    text-align: center;
    font-size: 0.9em;
    color: #888;
  }
  @media (max-width: 768px) {
    .footer-row {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-links {
      align-items: center;
    }
    .footer-contacts {
      text-align: center;
    }
  }

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

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

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

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

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

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

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

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

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

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

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

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

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