:root {
  --font-family: "Open Sans", sans-serif;
  --font-size-base: 15.5px;
  --line-height-base: 1.87;

  --max-w: 1100px;
  --space-x: 1.44rem;
  --space-y: 1.5rem;
  --gap: 1.19rem;

  --radius-xl: 1.25rem;
  --radius-lg: 1rem;
  --radius-md: 0.62rem;
  --radius-sm: 0.34rem;

  --shadow-sm: 0 0px 5px rgba(0,0,0,0.04);
  --shadow-md: 0 2px 14px rgba(0,0,0,0.05);
  --shadow-lg: 0 14px 22px rgba(0,0,0,0.07);

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

  --brand: #8B5E3C;
  --brand-contrast: #FFFFFF;
  --accent: #C76B3A;
  --accent-contrast: #FFFFFF;

  --neutral-0: #FFFFFF;
  --neutral-100: #F5F2ED;
  --neutral-300: #D6CFC5;
  --neutral-600: #7A7167;
  --neutral-800: #3D3833;
  --neutral-900: #1E1B18;

  --bg-page: #FCFAF7;
  --fg-on-page: #3D3833;

  --bg-alt: #F0EBE4;
  --fg-on-alt: #3D3833;

  --surface-1: #FFFFFF;
  --surface-2: #F8F5F0;
  --fg-on-surface: #3D3833;
  --border-on-surface: #E2DCD3;

  --surface-light: #FDFCFA;
  --fg-on-surface-light: #3D3833;
  --border-on-surface-light: #E8E2D9;

  --bg-primary: #C76B3A;
  --fg-on-primary: #FFFFFF;
  --bg-primary-hover: #A8552E;
  --ring: #C76B3A;

  --bg-accent: #C76B3A;
  --fg-on-accent: #FFFFFF;
  --bg-accent-hover: #A8552E;

  --link: #8B5E3C;
  --link-hover: #6B4730;

  --gradient-hero: linear-gradient(135deg, #F5F2ED 0%, #E8E2D9 100%);
  --gradient-accent: linear-gradient(135deg, #C76B3A 0%, #A8552E 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;}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--surface-1, #ffffff);
    box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.1));
    padding: var(--space-y, 0.75rem) var(--space-x, 1.5rem);
  }

  .header-container {
    max-width: var(--max-w, 1200px);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .logo {
    font-size: calc(var(--font-size-base, 1rem) * 1.5);
    font-weight: 700;
    color: var(--brand, #2a7de1);
    text-decoration: none;
    letter-spacing: -0.02em;
    line-height: 1.2;
  }

  .logo:hover {
    color: var(--brand-contrast, #1a5bbf);
  }

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

  .burger-btn:hover {
    background: var(--btn-ghost-bg-hover, rgba(0,0,0,0.05));
  }

  .burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--fg-on-page, #1a1a2e);
    border-radius: 2px;
    transition: all var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .burger-btn[aria-expanded="true"] .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .burger-btn[aria-expanded="true"] .burger-line:nth-child(2) {
    opacity: 0;
  }

  .burger-btn[aria-expanded="true"] .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .nav-menu {
    display: flex;
    align-items: center;
  }

  .nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap, 1.5rem);
  }

  .nav-link {
    text-decoration: none;
    color: var(--neutral-800, #2d3748);
    font-size: var(--font-size-base, 1rem);
    line-height: var(--line-height-base, 1.5);
    padding: 0.5rem 0;
    position: relative;
    transition: color var(--anim-duration, 0.3s) var(--anim-ease, ease);
    font-weight: 500;
  }

  .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--brand, #2a7de1);
    transition: width var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .nav-link:hover {
    color: var(--brand, #2a7de1);
  }

  .nav-link:hover::after {
    width: 100%;
  }

  /* Offcanvas overlay */
  .nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay, rgba(0,0,0,0.5));
    z-index: 999;
    opacity: 0;
    transition: opacity var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .nav-overlay.active {
    display: block;
    opacity: 1;
  }

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

    .nav-menu {
      position: fixed;
      top: 0;
      right: -280px;
      width: 280px;
      height: 100vh;
      background: var(--surface-1, #ffffff);
      box-shadow: var(--shadow-lg, 0 10px 30px rgba(0,0,0,0.15));
      flex-direction: column;
      align-items: flex-start;
      justify-content: flex-start;
      padding: 5rem 2rem 2rem;
      transition: right var(--anim-duration, 0.3s) var(--anim-ease, ease);
      z-index: 1001;
    }

    .nav-menu.open {
      right: 0;
    }

    .nav-list {
      flex-direction: column;
      gap: 1rem;
      width: 100%;
    }

    .nav-link {
      font-size: 1.125rem;
      padding: 0.75rem 0;
      display: block;
      width: 100%;
      border-bottom: 1px solid var(--border-on-surface, #e2e8f0);
    }

    .nav-link::after {
      display: none;
    }

    .nav-link:hover {
      color: var(--brand, #2a7de1);
      background: var(--btn-ghost-bg-hover, rgba(0,0,0,0.03));
      padding-left: 0.5rem;
    }
  }

  @media (min-width: 768px) {
    .nav-menu {
      display: flex !important;
      position: static;
      width: auto;
      height: auto;
      background: transparent;
      box-shadow: none;
      padding: 0;
      flex-direction: row;
    }

    .nav-list {
      flex-direction: row;
      gap: var(--gap, 1.5rem);
    }

    .nav-link {
      border-bottom: none;
      padding: 0.5rem 0;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 40px 20px 20px;
    font-family: Arial, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 30px;
  }
  .footer-brand .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #f0a500;
    text-decoration: none;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #f0a500;
  }
  .footer-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .footer-links a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-links a:hover {
    color: #f0a500;
  }
  .footer-contacts p {
    margin: 5px 0;
  }
  .footer-contacts a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-contacts a:hover {
    color: #f0a500;
  }
  .footer-disclaimer {
    border-top: 1px solid #333;
    padding-top: 15px;
    font-size: 0.85rem;
    text-align: center;
    color: #aaa;
  }
  .footer-disclaimer a {
    color: #f0a500;
    text-decoration: none;
  }
  .footer-disclaimer a:hover {
    text-decoration: underline;
  }
  @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;
    }
  }

.cookie-lv4 {
        position: fixed;
        inset: 0 0 auto 0;
        z-index: 1200;
        background: var(--surface-2);
        border-bottom: 1px solid var(--border-on-surface-light);
        color: var(--fg-on-page);
    }

    .cookie-lv4__inner {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 10px var(--space-x);
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
        flex-wrap: wrap;
    }

    .cookie-lv4__inner span {
        color: var(--neutral-600);
        margin-left: 6px;
    }

    .cookie-lv4__actions {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-lv4__actions a {
        text-decoration: none;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 999px;
        background: var(--surface-1);
        color: var(--link);
        padding: 6px 10px;
    }

    .cookie-lv4__actions a[data-choice='accept'] {
        background: var(--bg-primary);
        border-color: var(--bg-primary);
        color: var(--fg-on-primary);
    }

.nfintro-v10 {
        padding: calc(var(--space-y) * 2.6) var(--space-x) 0;
        background: var(--bg-page);
        color: var(--fg-on-page);
    }

    .nfintro-v10__shell {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        gap: var(--gap);
    }

    .nfintro-v10 h1 {
        margin: 0;
        font-size: clamp(2rem, 4.2vw, 3.4rem);
        line-height: 1.08;
        max-width: 18ch;
    }

    .nfintro-v10__subtitle {
        margin: 0;
        max-width: 58ch;
        color: var(--fg-on-surface-light);
    }

    .nfintro-v10__split {
        display: grid;
        grid-template-columns: 1.1fr .9fr;
        gap: calc(var(--gap) * 1.4);
        align-items: start;
    }

    .nfintro-v10__desc {margin: 0; max-width: 60ch;}

    .nfintro-v10__actions {
        display: grid;
        gap: .7rem;
        justify-items: start;
    }

    .nfintro-v10__actions a {
        display: inline-flex;
        padding: .66rem 1.1rem;
        border-radius: var(--radius-lg);
        text-decoration: none;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        font-weight: 700;
    }

    .nfintro-v10__media {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-xl);
        padding: var(--gap);
        background: var(--surface-2);
        box-shadow: var(--shadow-sm);
    }

    .nfintro-v10__media img {
        width: 100%;
        display: block;
        border-radius: var(--radius-lg);
        aspect-ratio: 16/9;
        object-fit: cover;
    }

    .nfintro-v10__rail {
        margin-top: calc(var(--space-y) * 1.4);
        background: var(--surface-2);
        border-top: 1px solid var(--border-on-surface);
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 1px;
    }

    .nfintro-v10__rail div {
        padding: 1rem var(--space-x);
        background: var(--surface-1);
        display: grid;
        gap: .3rem;
    }

    .nfintro-v10__rail em {
        font-style: normal;
        color: var(--fg-on-surface-light);
        font-size: .88rem;
    }

    .nfintro-v10__rail strong {font-size: 1.05rem;}

    @media (max-width: 900px) {
        .nfintro-v10__split {grid-template-columns: 1fr;}
        .nfintro-v10__rail {grid-template-columns: repeat(2, minmax(0, 1fr));}
    }

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

    .next-signal-c7 {
        padding: clamp(3.7rem, 8vw, 6.3rem) var(--space-x);
        background: linear-gradient(145deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
    }

    .next-signal-c7__wrap {
        max-width: 60rem;
        margin: 0 auto;
        display: grid;
        grid-template-columns: .95fr 1.05fr;
        gap: 1rem;
        align-items: center;
    }

    .next-signal-c7__copy p {
        margin: 0;
        color: rgba(255, 255, 255, .78);
    }

    .next-signal-c7__copy h2 {
        margin: .5rem 0 0;
        font-size: clamp(2rem, 4vw, 3.1rem);
    }

    .next-signal-c7__copy span {
        display: block;
        margin-top: .85rem;

    }

    .next-signal-c7__stack {
        display: grid;
        gap: .7rem;
    }

    .next-signal-c7__stack a {
        display: flex;
        justify-content: space-between;
        gap: .75rem;
        align-items: center;
        padding: .9rem 1rem;
        border-radius: var(--radius-lg);
        text-decoration: none;
        color: var(--fg-on-primary);
        background: rgba(255, 255, 255, .12);
        border: 1px solid rgba(255, 255, 255, .18);
    }

    .next-signal-c7__stack span {
        color: rgba(255, 255, 255, .8);
    }

    .next-signal-c7__button {
        display: inline-flex;
        margin-top: 1rem;
        min-height: 2.85rem;
        align-items: center;
        justify-content: center;
        padding: 0 1rem;
        border-radius: var(--radius-md);
        background: var(--surface-1);
        color: var(--fg-on-page);
        text-decoration: none;
    }

    @media (max-width: 820px) {
        .next-signal-c7__wrap {
            grid-template-columns: 1fr;
        }
    }

.recommendations-split-light {
    background: var(--neutral-100);
    color: var(--neutral-900);
    padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 40px);
}

.recommendations-split-light__c {
    max-width: var(--max-w);
    margin: 0 auto;
}

.recommendations-split-light__h {
    text-align: center;
    margin-bottom: clamp(24px, 6vw, 52px);
    transform: translateY(-18px);
}

.recommendations-split-light__h h2 {
    margin: 0 0 10px;
    font-size: clamp(28px, 4.6vw, 48px);
    letter-spacing: -0.02em;
    color: var(--neutral-900);
}

.recommendations-split-light__h p {
    margin: 0;
    color: var(--neutral-600);
}

.recommendations-split-light__grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: clamp(14px, 2.6vw, 22px);
}

.recommendations-split-light__card {
    grid-column: span 6;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    background: var(--neutral-0);
    border: 1px solid var(--neutral-300);
    display: grid;
    grid-template-rows: 170px 1fr;
    transform: translateY(26px);
}

.recommendations-split-light__card:nth-child(1) {
    grid-column: span 12;
    grid-template-columns: 1.2fr 1fr;
    grid-template-rows: 1fr;
    min-height: 320px;
}

.recommendations-split-light__media {
    position: relative;
    background-size: cover;
    background-position: center;
    background-color: rgba(17, 24, 39, 0.06);
}

.recommendations-split-light__card:nth-child(1) .recommendations-split-light__media {
    border-right: 1px solid var(--neutral-300);
}

.recommendations-split-light__media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(17, 24, 39, 0.5), rgba(17, 24, 39, 0));
    pointer-events: none;
}

.recommendations-split-light__body {
    padding: 18px 18px 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.recommendations-split-light__body h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 900;
    letter-spacing: -0.01em;
    color: var(--neutral-900);
}

.recommendations-split-light__body p {
    margin: 0;
    color: var(--neutral-800);
    font-size: 14px;
    line-height: 1.65;
}

.recommendations-split-light__link {
    margin-top: auto;
    color: var(--link);
    text-decoration: none;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-size: 11px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.recommendations-split-light__link::after {
    content: '->';
}

.recommendations-split-light__link:hover {
    color: var(--link-hover);
}

@media (max-width: 900px) {
    .recommendations-split-light__grid {
        grid-template-columns: repeat(6, 1fr);
    }

    .recommendations-split-light__card {
        grid-column: span 6;
    }

    .recommendations-split-light__card:nth-child(1) {
        grid-template-columns: 1fr;
        grid-template-rows: 200px 1fr;
        min-height: 0;
    }

    .recommendations-split-light__card:nth-child(1) .recommendations-split-light__media {
        border-right: 0;
        border-bottom: 1px solid var(--neutral-300);
    }
}

.social-c2 {

        padding: clamp(18px, 3vw, 44px);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        position: relative;
        overflow: hidden;
    }

    .social-c2::before {
        content: '';
        position: absolute;
        inset: -30%;
        background: radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.14), transparent 55%),
        radial-gradient(circle at 80% 55%, rgba(255, 107, 53, 0.18), transparent 55%);
        filter: blur(18px);
        animation: socialC2Bg 7s var(--anim-ease) infinite;
        pointer-events: none;
    }

    @keyframes socialC2Bg {
        0%, 100% {
            transform: translate3d(-1%, 0, 0) scale(1)
        }
        50% {
            transform: translate3d(1.5%, -1%, 0) scale(1.04)
        }
    }

    .social-c2__c {
        max-width: var(--max-w);
        margin: 0 auto;
        position: relative;
    }

    .social-c2__h {
        margin-bottom: clamp(14px, 2.2vw, 22px);
    }

    .social-c2__title {
        margin: 0;
        font-size: clamp(24px, 4.6vw, 44px);
        letter-spacing: -.02em;
        line-height: 1.1;
    }

    .social-c2__sub {
        margin: 10px 0 0;
        max-width: 70ch;
        color: rgba(255, 255, 255, .82);
    }

    .social-c2__grid {
        display: grid;
        grid-template-columns: 1.2fr 0.8fr;
        gap: 14px;
        align-items: stretch;
    }

    .social-c2__quotes {
        position: relative;
        border-radius: var(--radius-xl);
        background: rgba(255, 255, 255, 0.10);
        border: 1px solid rgba(255, 255, 255, 0.16);
        box-shadow: var(--shadow-lg);
        overflow: hidden;
    }

    .social-c2__quote {
        display: none;
        padding: 18px 18px 16px;
    }

    .social-c2__quote.is-on {
        display: block;
    }

    .social-c2__qText {
        font-size: clamp(16px, 2.2vw, 20px);
        line-height: 1.7;
        color: rgba(255, 255, 255, .92);
    }

    .social-c2__qMeta {
        margin-top: 14px;
        display: flex;
        gap: 10px;
        align-items: baseline;
        flex-wrap: wrap;

    }

    .social-c2__qName {
        font-weight: 900;
    }

    .social-c2__qRole {
        opacity: .85;
    }

    .social-c2__metrics {
        display: grid;
        gap: 12px;
    }

    .social-c2__metric {
        border-radius: var(--radius-xl);
        background: rgba(0, 0, 0, 0.14);
        border: 1px solid rgba(255, 255, 255, 0.14);
        box-shadow: var(--shadow-md);
        padding: 16px;
    }

    .social-c2__mVal {
        font-weight: 900;
        font-size: clamp(22px, 3vw, 32px);
        letter-spacing: -.01em;
    }

    .social-c2__mLbl {
        margin-top: 6px;
        color: rgba(255, 255, 255, .82);
    }

    @media (max-width: 980px) {
        .social-c2__grid {
            grid-template-columns:1fr;
        }
    }

    @media (prefers-reduced-motion: reduce) {
        .social-c2::before {
            animation: none;
        }
    }

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

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

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

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

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

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

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

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

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

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--surface-1, #ffffff);
    box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.1));
    padding: var(--space-y, 0.75rem) var(--space-x, 1.5rem);
  }

  .header-container {
    max-width: var(--max-w, 1200px);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .logo {
    font-size: calc(var(--font-size-base, 1rem) * 1.5);
    font-weight: 700;
    color: var(--brand, #2a7de1);
    text-decoration: none;
    letter-spacing: -0.02em;
    line-height: 1.2;
  }

  .logo:hover {
    color: var(--brand-contrast, #1a5bbf);
  }

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

  .burger-btn:hover {
    background: var(--btn-ghost-bg-hover, rgba(0,0,0,0.05));
  }

  .burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--fg-on-page, #1a1a2e);
    border-radius: 2px;
    transition: all var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .burger-btn[aria-expanded="true"] .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .burger-btn[aria-expanded="true"] .burger-line:nth-child(2) {
    opacity: 0;
  }

  .burger-btn[aria-expanded="true"] .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .nav-menu {
    display: flex;
    align-items: center;
  }

  .nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap, 1.5rem);
  }

  .nav-link {
    text-decoration: none;
    color: var(--neutral-800, #2d3748);
    font-size: var(--font-size-base, 1rem);
    line-height: var(--line-height-base, 1.5);
    padding: 0.5rem 0;
    position: relative;
    transition: color var(--anim-duration, 0.3s) var(--anim-ease, ease);
    font-weight: 500;
  }

  .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--brand, #2a7de1);
    transition: width var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .nav-link:hover {
    color: var(--brand, #2a7de1);
  }

  .nav-link:hover::after {
    width: 100%;
  }

  /* Offcanvas overlay */
  .nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay, rgba(0,0,0,0.5));
    z-index: 999;
    opacity: 0;
    transition: opacity var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .nav-overlay.active {
    display: block;
    opacity: 1;
  }

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

    .nav-menu {
      position: fixed;
      top: 0;
      right: -280px;
      width: 280px;
      height: 100vh;
      background: var(--surface-1, #ffffff);
      box-shadow: var(--shadow-lg, 0 10px 30px rgba(0,0,0,0.15));
      flex-direction: column;
      align-items: flex-start;
      justify-content: flex-start;
      padding: 5rem 2rem 2rem;
      transition: right var(--anim-duration, 0.3s) var(--anim-ease, ease);
      z-index: 1001;
    }

    .nav-menu.open {
      right: 0;
    }

    .nav-list {
      flex-direction: column;
      gap: 1rem;
      width: 100%;
    }

    .nav-link {
      font-size: 1.125rem;
      padding: 0.75rem 0;
      display: block;
      width: 100%;
      border-bottom: 1px solid var(--border-on-surface, #e2e8f0);
    }

    .nav-link::after {
      display: none;
    }

    .nav-link:hover {
      color: var(--brand, #2a7de1);
      background: var(--btn-ghost-bg-hover, rgba(0,0,0,0.03));
      padding-left: 0.5rem;
    }
  }

  @media (min-width: 768px) {
    .nav-menu {
      display: flex !important;
      position: static;
      width: auto;
      height: auto;
      background: transparent;
      box-shadow: none;
      padding: 0;
      flex-direction: row;
    }

    .nav-list {
      flex-direction: row;
      gap: var(--gap, 1.5rem);
    }

    .nav-link {
      border-bottom: none;
      padding: 0.5rem 0;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 40px 20px 20px;
    font-family: Arial, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 30px;
  }
  .footer-brand .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #f0a500;
    text-decoration: none;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #f0a500;
  }
  .footer-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .footer-links a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-links a:hover {
    color: #f0a500;
  }
  .footer-contacts p {
    margin: 5px 0;
  }
  .footer-contacts a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-contacts a:hover {
    color: #f0a500;
  }
  .footer-disclaimer {
    border-top: 1px solid #333;
    padding-top: 15px;
    font-size: 0.85rem;
    text-align: center;
    color: #aaa;
  }
  .footer-disclaimer a {
    color: #f0a500;
    text-decoration: none;
  }
  .footer-disclaimer a:hover {
    text-decoration: underline;
  }
  @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;
    }
  }

.cookie-lv4 {
        position: fixed;
        inset: 0 0 auto 0;
        z-index: 1200;
        background: var(--surface-2);
        border-bottom: 1px solid var(--border-on-surface-light);
        color: var(--fg-on-page);
    }

    .cookie-lv4__inner {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 10px var(--space-x);
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
        flex-wrap: wrap;
    }

    .cookie-lv4__inner span {
        color: var(--neutral-600);
        margin-left: 6px;
    }

    .cookie-lv4__actions {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-lv4__actions a {
        text-decoration: none;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 999px;
        background: var(--surface-1);
        color: var(--link);
        padding: 6px 10px;
    }

    .cookie-lv4__actions a[data-choice='accept'] {
        background: var(--bg-primary);
        border-color: var(--bg-primary);
        color: var(--fg-on-primary);
    }

.partners {

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

    .partners .partners__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .partners .partners__title {
        font-size: clamp(28px, 5vw, 48px);
        text-align: center;
        margin: 0 0 clamp(48px, 7vw, 72px);
        color: var(--fg-on-page);
    }

    .partners .partners__grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
        gap: clamp(32px, 5vw, 48px);
    }

    .partners .partners__content {
        padding: clamp(32px, 5vw, 40px);
    }

    .partners .partners__card {
        background: var(--surface-1);
        border-radius: var(--radius-xl);
        border: 1px solid var(--border-on-surface);
        text-align: center;
    }

    .partners .partners__logo {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 300px;

    }

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

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

.team-fresh-v2 {
        padding: calc(var(--space-y) * 2.4) var(--space-x);
        background: var(--bg-alt);
        color: var(--fg-on-alt);
    }

    .team-fresh-v2 .shell {
        max-width: 920px;
        margin: 0 auto;
        display: grid;
        gap: var(--gap);
    }

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

    .team-fresh-v2 .list {
        display: grid;
        gap: .75rem;
    }

    .team-fresh-v2 article {
        display: grid;
        grid-template-columns:92px 1fr;
        gap: var(--gap);
        align-items: center;
        padding: .8rem;
        border-radius: var(--radius-md);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
    }

    .team-fresh-v2 img {
        width: 92px;
        height: 92px;
        object-fit: cover;
        border-radius: 50%;
    }

    .team-fresh-v2 h3 {
        margin: 0 0 .2rem;
    }

    .team-fresh-v2 .role {
        margin: 0;
        font-weight: 700;
        color: var(--link);
    }

    .team-fresh-v2 .bio {
        margin: .3rem 0 0;
        color: var(--fg-on-surface-light);
    }

    @media (max-width: 620px) {
        .team-fresh-v2 article {
            grid-template-columns:1fr;
        }

        .team-fresh-v2 img {
            border-radius: var(--radius-md);
            width: 100%;
            height: auto;
            aspect-ratio: 4/3;
        }
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .identity-ux21__media img {
        width: 100%;
        height: auto;
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-on-surface);
        display: block;
        background: var(--neutral-100);
    }

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

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

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

    .identity-ux21__body span {
        display: block;
        margin: 0 0 8px;
        color: var(--neutral-600);
    }

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

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--surface-1, #ffffff);
    box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.1));
    padding: var(--space-y, 0.75rem) var(--space-x, 1.5rem);
  }

  .header-container {
    max-width: var(--max-w, 1200px);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .logo {
    font-size: calc(var(--font-size-base, 1rem) * 1.5);
    font-weight: 700;
    color: var(--brand, #2a7de1);
    text-decoration: none;
    letter-spacing: -0.02em;
    line-height: 1.2;
  }

  .logo:hover {
    color: var(--brand-contrast, #1a5bbf);
  }

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

  .burger-btn:hover {
    background: var(--btn-ghost-bg-hover, rgba(0,0,0,0.05));
  }

  .burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--fg-on-page, #1a1a2e);
    border-radius: 2px;
    transition: all var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .burger-btn[aria-expanded="true"] .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .burger-btn[aria-expanded="true"] .burger-line:nth-child(2) {
    opacity: 0;
  }

  .burger-btn[aria-expanded="true"] .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .nav-menu {
    display: flex;
    align-items: center;
  }

  .nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap, 1.5rem);
  }

  .nav-link {
    text-decoration: none;
    color: var(--neutral-800, #2d3748);
    font-size: var(--font-size-base, 1rem);
    line-height: var(--line-height-base, 1.5);
    padding: 0.5rem 0;
    position: relative;
    transition: color var(--anim-duration, 0.3s) var(--anim-ease, ease);
    font-weight: 500;
  }

  .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--brand, #2a7de1);
    transition: width var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .nav-link:hover {
    color: var(--brand, #2a7de1);
  }

  .nav-link:hover::after {
    width: 100%;
  }

  /* Offcanvas overlay */
  .nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay, rgba(0,0,0,0.5));
    z-index: 999;
    opacity: 0;
    transition: opacity var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .nav-overlay.active {
    display: block;
    opacity: 1;
  }

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

    .nav-menu {
      position: fixed;
      top: 0;
      right: -280px;
      width: 280px;
      height: 100vh;
      background: var(--surface-1, #ffffff);
      box-shadow: var(--shadow-lg, 0 10px 30px rgba(0,0,0,0.15));
      flex-direction: column;
      align-items: flex-start;
      justify-content: flex-start;
      padding: 5rem 2rem 2rem;
      transition: right var(--anim-duration, 0.3s) var(--anim-ease, ease);
      z-index: 1001;
    }

    .nav-menu.open {
      right: 0;
    }

    .nav-list {
      flex-direction: column;
      gap: 1rem;
      width: 100%;
    }

    .nav-link {
      font-size: 1.125rem;
      padding: 0.75rem 0;
      display: block;
      width: 100%;
      border-bottom: 1px solid var(--border-on-surface, #e2e8f0);
    }

    .nav-link::after {
      display: none;
    }

    .nav-link:hover {
      color: var(--brand, #2a7de1);
      background: var(--btn-ghost-bg-hover, rgba(0,0,0,0.03));
      padding-left: 0.5rem;
    }
  }

  @media (min-width: 768px) {
    .nav-menu {
      display: flex !important;
      position: static;
      width: auto;
      height: auto;
      background: transparent;
      box-shadow: none;
      padding: 0;
      flex-direction: row;
    }

    .nav-list {
      flex-direction: row;
      gap: var(--gap, 1.5rem);
    }

    .nav-link {
      border-bottom: none;
      padding: 0.5rem 0;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 40px 20px 20px;
    font-family: Arial, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 30px;
  }
  .footer-brand .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #f0a500;
    text-decoration: none;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #f0a500;
  }
  .footer-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .footer-links a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-links a:hover {
    color: #f0a500;
  }
  .footer-contacts p {
    margin: 5px 0;
  }
  .footer-contacts a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-contacts a:hover {
    color: #f0a500;
  }
  .footer-disclaimer {
    border-top: 1px solid #333;
    padding-top: 15px;
    font-size: 0.85rem;
    text-align: center;
    color: #aaa;
  }
  .footer-disclaimer a {
    color: #f0a500;
    text-decoration: none;
  }
  .footer-disclaimer a:hover {
    text-decoration: underline;
  }
  @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;
    }
  }

.cookie-lv4 {
        position: fixed;
        inset: 0 0 auto 0;
        z-index: 1200;
        background: var(--surface-2);
        border-bottom: 1px solid var(--border-on-surface-light);
        color: var(--fg-on-page);
    }

    .cookie-lv4__inner {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 10px var(--space-x);
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
        flex-wrap: wrap;
    }

    .cookie-lv4__inner span {
        color: var(--neutral-600);
        margin-left: 6px;
    }

    .cookie-lv4__actions {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-lv4__actions a {
        text-decoration: none;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 999px;
        background: var(--surface-1);
        color: var(--link);
        padding: 6px 10px;
    }

    .cookie-lv4__actions a[data-choice='accept'] {
        background: var(--bg-primary);
        border-color: var(--bg-primary);
        color: var(--fg-on-primary);
    }

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

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

    .plans-cv2__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .plans-cv2__head {
        margin-bottom: 16px;
    }

    .plans-cv2__head h2 {
        margin: 0;
        font-size: clamp(30px, 5vw, 48px);
    }

    .plans-cv2__head p {
        margin: 8px 0 0;
        opacity: .92;
    }

    .plans-cv2__grid {
        display: grid;
        gap: var(--gap);
        grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    }

    .plans-cv2__card {
        border-radius: var(--radius-lg);
        border: 1px solid rgba(255, 255, 255, 0.28);
        background: rgba(255, 255, 255, 0.12);
        padding: var(--space-y) var(--space-x);
        transition: transform var(--anim-duration) var(--anim-ease), border-color var(--anim-duration) var(--anim-ease);
    }

    .plans-cv2__card.is-active {
        transform: translateY(-4px);
        border-color: var(--bg-accent);
    }

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

    .plans-cv2__line h3 {
        margin: 0;
    }

    .plans-cv2__line span {
        font-size: .82rem;
        padding: 4px 8px;
        border-radius: 999px;
        background: var(--chip-bg);
    }

    .plans-cv2__list p {
        margin: 10px 0 6px;
        opacity: .92;
    }

    .plans-cv2__card button {
        width: 100%;
        margin-top: 8px;
        border: 0;
        border-radius: var(--radius-sm);
        padding: 9px 12px;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
    }

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

    .feedback-ux8 {
        background: var(--neutral-100);
        color: var(--neutral-900);
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 40px);
    }

    .feedback-ux8__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .feedback-ux8__h {
        text-align: center;
        margin-bottom: clamp(22px, 5vw, 44px);

        transform: translateY(-18px);
    }

    .feedback-ux8__eyebrow {
        margin: 0 0 10px;
        text-transform: uppercase;
        letter-spacing: 0.22em;
        font-size: 12px;
        color: var(--neutral-600);
    }

    .feedback-ux8__h h2 {
        margin: 0;
        font-size: clamp(26px, 4.4vw, 44px);
        letter-spacing: -0.02em;
        color: var(--neutral-900);
    }

    .feedback-ux8__list {
        display: grid;
        gap: 12px;
    }

    .feedback-ux8__row {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        background: var(--neutral-100);
        box-shadow: var(--shadow-sm);
        overflow: hidden;

        transform: translateY(24px);
    }

    .feedback-ux8__q {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        cursor: pointer;
        padding: 14px 16px;
        border: 0;
        background: transparent;
        color: var(--neutral-900);
        font: inherit;
        text-align: left;
    }

    .feedback-ux8__who {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        min-width: 0;
    }

    .feedback-ux8__avatar {
        width: 36px;
        height: 36px;
        border-radius: 12px;
        background: var(--bg-accent);
        border: 1px solid var(--border-on-surface);
        display: flex;
        align-items: center;
        justify-content: center;
        flex: 0 0 auto;
    }

    .feedback-ux8__name {
        font-weight: 800;
        font-size: 14px;
        color: var(--neutral-900);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 18ch;
    }

    .feedback-ux8__meta {
        font-size: 12px;
        color: var(--neutral-600);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 24ch;
    }

    .feedback-ux8__rating {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        flex: 0 0 auto;
        padding: 6px 10px;
        border-radius: 999px;
        background: var(--neutral-100);
        border: 1px solid var(--border-on-surface);
    }

    .feedback-ux8__stars {
        color: var(--accent);
        letter-spacing: 0.08em;
        font-size: 13px;
        line-height: 1;
    }

    .feedback-ux8__score {
        font-weight: 800;
        font-size: 12px;
        color: var(--neutral-900);
    }

    .feedback-ux8__a {
        display: none;
        padding: 0 16px 14px;
        color: var(--neutral-800);
        overflow: hidden;
    }

    .feedback-ux8__a p {
        margin: 0;
        font-size: 14px;
        line-height: 1.65;
        color: var(--neutral-800);
    }

    .feedback-ux8__chip {
        display: inline-flex;
        margin-top: 10px;
        padding: 6px 10px;
        border-radius: 999px;
        background: var(--bg-primary);
        border: 1px solid var(--ring);
        color: var(--fg-on-primary);
        letter-spacing: 0.14em;
        text-transform: uppercase;
        font-size: 10px;
    }

    @media (max-width: 560px) {
        .feedback-ux8__q {
            align-items: flex-start;
        }

        .feedback-ux8__rating {
            margin-top: 2px;
        }

        .feedback-ux8__meta {
            display: none;
        }
    }

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

    .hiw-ux8 {
        padding: clamp(3.5rem, 7vw, 6rem) var(--space-x);
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
    }

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

    .hiw-ux8__head {
        margin-bottom: 1.25rem;
    }

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

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

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

    .hiw-ux8__track article {
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: var(--fg-on-primary);
        color:  var(--bg-primary);
        border: 1px solid rgba(255, 255, 255, .18);
        box-shadow: var(--shadow-md);
        position: relative;
    }

    .hiw-ux8__track article::after {
        content: '';
        position: absolute;
        inset: auto 1rem 0.7rem 1rem;
        height: 2px;
        background: linear-gradient(90deg, rgba(255, 255, 255, .45), transparent);
    }

    .hiw-ux8__track span {
        display: inline-flex;
        width: 2.4rem;
        height: 2.4rem;
        align-items: center;
        justify-content: center;
        border-radius: 999px;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        font-weight: 700;
    }

    .hiw-ux8__track h3 {
        margin: .8rem 0 .35rem;
    }

    .hiw-ux8__track p {
        margin: 0;
    }

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--surface-1, #ffffff);
    box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.1));
    padding: var(--space-y, 0.75rem) var(--space-x, 1.5rem);
  }

  .header-container {
    max-width: var(--max-w, 1200px);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .logo {
    font-size: calc(var(--font-size-base, 1rem) * 1.5);
    font-weight: 700;
    color: var(--brand, #2a7de1);
    text-decoration: none;
    letter-spacing: -0.02em;
    line-height: 1.2;
  }

  .logo:hover {
    color: var(--brand-contrast, #1a5bbf);
  }

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

  .burger-btn:hover {
    background: var(--btn-ghost-bg-hover, rgba(0,0,0,0.05));
  }

  .burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--fg-on-page, #1a1a2e);
    border-radius: 2px;
    transition: all var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .burger-btn[aria-expanded="true"] .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .burger-btn[aria-expanded="true"] .burger-line:nth-child(2) {
    opacity: 0;
  }

  .burger-btn[aria-expanded="true"] .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .nav-menu {
    display: flex;
    align-items: center;
  }

  .nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap, 1.5rem);
  }

  .nav-link {
    text-decoration: none;
    color: var(--neutral-800, #2d3748);
    font-size: var(--font-size-base, 1rem);
    line-height: var(--line-height-base, 1.5);
    padding: 0.5rem 0;
    position: relative;
    transition: color var(--anim-duration, 0.3s) var(--anim-ease, ease);
    font-weight: 500;
  }

  .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--brand, #2a7de1);
    transition: width var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .nav-link:hover {
    color: var(--brand, #2a7de1);
  }

  .nav-link:hover::after {
    width: 100%;
  }

  /* Offcanvas overlay */
  .nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay, rgba(0,0,0,0.5));
    z-index: 999;
    opacity: 0;
    transition: opacity var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .nav-overlay.active {
    display: block;
    opacity: 1;
  }

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

    .nav-menu {
      position: fixed;
      top: 0;
      right: -280px;
      width: 280px;
      height: 100vh;
      background: var(--surface-1, #ffffff);
      box-shadow: var(--shadow-lg, 0 10px 30px rgba(0,0,0,0.15));
      flex-direction: column;
      align-items: flex-start;
      justify-content: flex-start;
      padding: 5rem 2rem 2rem;
      transition: right var(--anim-duration, 0.3s) var(--anim-ease, ease);
      z-index: 1001;
    }

    .nav-menu.open {
      right: 0;
    }

    .nav-list {
      flex-direction: column;
      gap: 1rem;
      width: 100%;
    }

    .nav-link {
      font-size: 1.125rem;
      padding: 0.75rem 0;
      display: block;
      width: 100%;
      border-bottom: 1px solid var(--border-on-surface, #e2e8f0);
    }

    .nav-link::after {
      display: none;
    }

    .nav-link:hover {
      color: var(--brand, #2a7de1);
      background: var(--btn-ghost-bg-hover, rgba(0,0,0,0.03));
      padding-left: 0.5rem;
    }
  }

  @media (min-width: 768px) {
    .nav-menu {
      display: flex !important;
      position: static;
      width: auto;
      height: auto;
      background: transparent;
      box-shadow: none;
      padding: 0;
      flex-direction: row;
    }

    .nav-list {
      flex-direction: row;
      gap: var(--gap, 1.5rem);
    }

    .nav-link {
      border-bottom: none;
      padding: 0.5rem 0;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 40px 20px 20px;
    font-family: Arial, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 30px;
  }
  .footer-brand .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #f0a500;
    text-decoration: none;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #f0a500;
  }
  .footer-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .footer-links a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-links a:hover {
    color: #f0a500;
  }
  .footer-contacts p {
    margin: 5px 0;
  }
  .footer-contacts a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-contacts a:hover {
    color: #f0a500;
  }
  .footer-disclaimer {
    border-top: 1px solid #333;
    padding-top: 15px;
    font-size: 0.85rem;
    text-align: center;
    color: #aaa;
  }
  .footer-disclaimer a {
    color: #f0a500;
    text-decoration: none;
  }
  .footer-disclaimer a:hover {
    text-decoration: underline;
  }
  @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;
    }
  }

.cookie-lv4 {
        position: fixed;
        inset: 0 0 auto 0;
        z-index: 1200;
        background: var(--surface-2);
        border-bottom: 1px solid var(--border-on-surface-light);
        color: var(--fg-on-page);
    }

    .cookie-lv4__inner {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 10px var(--space-x);
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
        flex-wrap: wrap;
    }

    .cookie-lv4__inner span {
        color: var(--neutral-600);
        margin-left: 6px;
    }

    .cookie-lv4__actions {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-lv4__actions a {
        text-decoration: none;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 999px;
        background: var(--surface-1);
        color: var(--link);
        padding: 6px 10px;
    }

    .cookie-lv4__actions a[data-choice='accept'] {
        background: var(--bg-primary);
        border-color: var(--bg-primary);
        color: var(--fg-on-primary);
    }

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

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

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

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

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

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

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

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

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

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

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

    .nfcontacts-v7__wrap {
        max-width: 920px;
        margin: 0 auto;
    }

    .nfcontacts-v7__head {
        margin-bottom: 16px;
        text-align: center;
    }

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

    .nfcontacts-v7__head p {
        margin: 10px auto 0;
        max-width: 70ch;
        opacity: .92;
    }

    .nfcontacts-v7__panel {
        border: 1px solid rgba(255, 255, 255, .26);
        border-radius: var(--radius-lg);
        background: rgba(255, 255, 255, .1);
        padding: 16px;
    }

    .nfcontacts-v7__panel h3 {
        margin: 0 0 12px;
    }

    .nfcontacts-v7__list p {
        margin: 0 0 10px;
        display: grid;
        gap: 3px;
    }

    .nfcontacts-v7__social {
        margin-top: 14px;
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        align-items: center;
    }

    .nfcontacts-v7__social a {
        text-decoration: none;
        color: var(--fg-on-primary);
        border: 1px solid rgba(255, 255, 255, .35);
        border-radius: 999px;
        padding: 6px 10px;
    }

.form-fresh-v1 {
        padding: calc(var(--space-y) * 2.8) var(--space-x);
        background: var(--bg-page);
        color: var(--fg-on-page);
    }

    .form-fresh-v1 .shell {
        max-width: 1000px;
        margin: 0 auto;
        display: grid;
        grid-template-columns:.9fr 1.1fr;
        gap: calc(var(--gap) * 1.4);
    }

    .form-fresh-v1 .intro h2 {
        margin: .3rem 0;
        font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    }

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

    .form-fresh-v1 .form {
        display: grid;
        gap: .75rem;
        padding: 1.1rem;
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        background: var(--surface-1);
    }

    .form-fresh-v1 label {
        display: grid;
        gap: .3rem;
    }

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

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

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

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

.connect--colored-v5 {
        padding: 64px 20px;
        background: radial-gradient(circle at top left, rgba(59, 130, 246, 0.35), transparent),
        radial-gradient(circle at bottom right, rgba(139, 92, 246, 0.45), transparent),
        var(--neutral-900);
        color: var(--neutral-0);
    }

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

    .connect__header {
        text-align: center;
        margin-bottom: 32px;
    }

    .connect__eyebrow {
        font-size: 0.8rem;
        text-transform: uppercase;
        letter-spacing: 0.16em;
        color: rgba(191, 219, 254, 0.9);
        margin: 0 0 0.5rem;
    }

    .connect__header h2 {
        margin: 0 0 0.5rem;
        font-size: clamp(24px, 4vw, 32px);
        color: var(--brand-contrast);
    }

    .connect__text {
        margin: 0;
        color: var(--neutral-300);
    }

    .connect__channels {
        margin-top: 24px;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 18px;
    }

    .connect__channel {
        background: rgba(15, 23, 42, 0.95);
        border-radius: var(--radius-xl);
        padding: 16px 18px;
        border: 1px solid rgba(148, 163, 184, 0.7);
        display: grid;
        gap: 8px;
        box-shadow: var(--shadow-md);
    }

    .connect__icon {
        width: 36px;
        height: 36px;
        border-radius: 12px;
        background: rgba(17, 24, 39, 0.96);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .connect__channel-title {
        margin: 0;
        font-size: 1rem;
        color: var(--brand-contrast);
    }

    .connect__channel-text {
        margin: 0;
        font-size: 0.9rem;
        color: rgba(226, 232, 240, 0.9);
    }

    .connect__channel-link {
        margin-top: 4px;
        font-size: 0.88rem;
        color: var(--bg-accent);
        text-decoration: none;
    }

    .connect__channel-link:hover {
        text-decoration: underline;
    }

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--surface-1, #ffffff);
    box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.1));
    padding: var(--space-y, 0.75rem) var(--space-x, 1.5rem);
  }

  .header-container {
    max-width: var(--max-w, 1200px);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .logo {
    font-size: calc(var(--font-size-base, 1rem) * 1.5);
    font-weight: 700;
    color: var(--brand, #2a7de1);
    text-decoration: none;
    letter-spacing: -0.02em;
    line-height: 1.2;
  }

  .logo:hover {
    color: var(--brand-contrast, #1a5bbf);
  }

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

  .burger-btn:hover {
    background: var(--btn-ghost-bg-hover, rgba(0,0,0,0.05));
  }

  .burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--fg-on-page, #1a1a2e);
    border-radius: 2px;
    transition: all var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .burger-btn[aria-expanded="true"] .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .burger-btn[aria-expanded="true"] .burger-line:nth-child(2) {
    opacity: 0;
  }

  .burger-btn[aria-expanded="true"] .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .nav-menu {
    display: flex;
    align-items: center;
  }

  .nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap, 1.5rem);
  }

  .nav-link {
    text-decoration: none;
    color: var(--neutral-800, #2d3748);
    font-size: var(--font-size-base, 1rem);
    line-height: var(--line-height-base, 1.5);
    padding: 0.5rem 0;
    position: relative;
    transition: color var(--anim-duration, 0.3s) var(--anim-ease, ease);
    font-weight: 500;
  }

  .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--brand, #2a7de1);
    transition: width var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .nav-link:hover {
    color: var(--brand, #2a7de1);
  }

  .nav-link:hover::after {
    width: 100%;
  }

  /* Offcanvas overlay */
  .nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay, rgba(0,0,0,0.5));
    z-index: 999;
    opacity: 0;
    transition: opacity var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .nav-overlay.active {
    display: block;
    opacity: 1;
  }

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

    .nav-menu {
      position: fixed;
      top: 0;
      right: -280px;
      width: 280px;
      height: 100vh;
      background: var(--surface-1, #ffffff);
      box-shadow: var(--shadow-lg, 0 10px 30px rgba(0,0,0,0.15));
      flex-direction: column;
      align-items: flex-start;
      justify-content: flex-start;
      padding: 5rem 2rem 2rem;
      transition: right var(--anim-duration, 0.3s) var(--anim-ease, ease);
      z-index: 1001;
    }

    .nav-menu.open {
      right: 0;
    }

    .nav-list {
      flex-direction: column;
      gap: 1rem;
      width: 100%;
    }

    .nav-link {
      font-size: 1.125rem;
      padding: 0.75rem 0;
      display: block;
      width: 100%;
      border-bottom: 1px solid var(--border-on-surface, #e2e8f0);
    }

    .nav-link::after {
      display: none;
    }

    .nav-link:hover {
      color: var(--brand, #2a7de1);
      background: var(--btn-ghost-bg-hover, rgba(0,0,0,0.03));
      padding-left: 0.5rem;
    }
  }

  @media (min-width: 768px) {
    .nav-menu {
      display: flex !important;
      position: static;
      width: auto;
      height: auto;
      background: transparent;
      box-shadow: none;
      padding: 0;
      flex-direction: row;
    }

    .nav-list {
      flex-direction: row;
      gap: var(--gap, 1.5rem);
    }

    .nav-link {
      border-bottom: none;
      padding: 0.5rem 0;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 40px 20px 20px;
    font-family: Arial, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 30px;
  }
  .footer-brand .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #f0a500;
    text-decoration: none;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #f0a500;
  }
  .footer-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .footer-links a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-links a:hover {
    color: #f0a500;
  }
  .footer-contacts p {
    margin: 5px 0;
  }
  .footer-contacts a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-contacts a:hover {
    color: #f0a500;
  }
  .footer-disclaimer {
    border-top: 1px solid #333;
    padding-top: 15px;
    font-size: 0.85rem;
    text-align: center;
    color: #aaa;
  }
  .footer-disclaimer a {
    color: #f0a500;
    text-decoration: none;
  }
  .footer-disclaimer a:hover {
    text-decoration: underline;
  }
  @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;
    }
  }

.cookie-lv4 {
        position: fixed;
        inset: 0 0 auto 0;
        z-index: 1200;
        background: var(--surface-2);
        border-bottom: 1px solid var(--border-on-surface-light);
        color: var(--fg-on-page);
    }

    .cookie-lv4__inner {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 10px var(--space-x);
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
        flex-wrap: wrap;
    }

    .cookie-lv4__inner span {
        color: var(--neutral-600);
        margin-left: 6px;
    }

    .cookie-lv4__actions {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-lv4__actions a {
        text-decoration: none;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 999px;
        background: var(--surface-1);
        color: var(--link);
        padding: 6px 10px;
    }

    .cookie-lv4__actions a[data-choice='accept'] {
        background: var(--bg-primary);
        border-color: var(--bg-primary);
        color: var(--fg-on-primary);
    }

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

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

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

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

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

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

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

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

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

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--surface-1, #ffffff);
    box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.1));
    padding: var(--space-y, 0.75rem) var(--space-x, 1.5rem);
  }

  .header-container {
    max-width: var(--max-w, 1200px);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .logo {
    font-size: calc(var(--font-size-base, 1rem) * 1.5);
    font-weight: 700;
    color: var(--brand, #2a7de1);
    text-decoration: none;
    letter-spacing: -0.02em;
    line-height: 1.2;
  }

  .logo:hover {
    color: var(--brand-contrast, #1a5bbf);
  }

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

  .burger-btn:hover {
    background: var(--btn-ghost-bg-hover, rgba(0,0,0,0.05));
  }

  .burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--fg-on-page, #1a1a2e);
    border-radius: 2px;
    transition: all var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .burger-btn[aria-expanded="true"] .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .burger-btn[aria-expanded="true"] .burger-line:nth-child(2) {
    opacity: 0;
  }

  .burger-btn[aria-expanded="true"] .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .nav-menu {
    display: flex;
    align-items: center;
  }

  .nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap, 1.5rem);
  }

  .nav-link {
    text-decoration: none;
    color: var(--neutral-800, #2d3748);
    font-size: var(--font-size-base, 1rem);
    line-height: var(--line-height-base, 1.5);
    padding: 0.5rem 0;
    position: relative;
    transition: color var(--anim-duration, 0.3s) var(--anim-ease, ease);
    font-weight: 500;
  }

  .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--brand, #2a7de1);
    transition: width var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .nav-link:hover {
    color: var(--brand, #2a7de1);
  }

  .nav-link:hover::after {
    width: 100%;
  }

  /* Offcanvas overlay */
  .nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay, rgba(0,0,0,0.5));
    z-index: 999;
    opacity: 0;
    transition: opacity var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .nav-overlay.active {
    display: block;
    opacity: 1;
  }

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

    .nav-menu {
      position: fixed;
      top: 0;
      right: -280px;
      width: 280px;
      height: 100vh;
      background: var(--surface-1, #ffffff);
      box-shadow: var(--shadow-lg, 0 10px 30px rgba(0,0,0,0.15));
      flex-direction: column;
      align-items: flex-start;
      justify-content: flex-start;
      padding: 5rem 2rem 2rem;
      transition: right var(--anim-duration, 0.3s) var(--anim-ease, ease);
      z-index: 1001;
    }

    .nav-menu.open {
      right: 0;
    }

    .nav-list {
      flex-direction: column;
      gap: 1rem;
      width: 100%;
    }

    .nav-link {
      font-size: 1.125rem;
      padding: 0.75rem 0;
      display: block;
      width: 100%;
      border-bottom: 1px solid var(--border-on-surface, #e2e8f0);
    }

    .nav-link::after {
      display: none;
    }

    .nav-link:hover {
      color: var(--brand, #2a7de1);
      background: var(--btn-ghost-bg-hover, rgba(0,0,0,0.03));
      padding-left: 0.5rem;
    }
  }

  @media (min-width: 768px) {
    .nav-menu {
      display: flex !important;
      position: static;
      width: auto;
      height: auto;
      background: transparent;
      box-shadow: none;
      padding: 0;
      flex-direction: row;
    }

    .nav-list {
      flex-direction: row;
      gap: var(--gap, 1.5rem);
    }

    .nav-link {
      border-bottom: none;
      padding: 0.5rem 0;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 40px 20px 20px;
    font-family: Arial, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 30px;
  }
  .footer-brand .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #f0a500;
    text-decoration: none;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #f0a500;
  }
  .footer-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .footer-links a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-links a:hover {
    color: #f0a500;
  }
  .footer-contacts p {
    margin: 5px 0;
  }
  .footer-contacts a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-contacts a:hover {
    color: #f0a500;
  }
  .footer-disclaimer {
    border-top: 1px solid #333;
    padding-top: 15px;
    font-size: 0.85rem;
    text-align: center;
    color: #aaa;
  }
  .footer-disclaimer a {
    color: #f0a500;
    text-decoration: none;
  }
  .footer-disclaimer a:hover {
    text-decoration: underline;
  }
  @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;
    }
  }

.cookie-lv4 {
        position: fixed;
        inset: 0 0 auto 0;
        z-index: 1200;
        background: var(--surface-2);
        border-bottom: 1px solid var(--border-on-surface-light);
        color: var(--fg-on-page);
    }

    .cookie-lv4__inner {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 10px var(--space-x);
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
        flex-wrap: wrap;
    }

    .cookie-lv4__inner span {
        color: var(--neutral-600);
        margin-left: 6px;
    }

    .cookie-lv4__actions {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-lv4__actions a {
        text-decoration: none;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 999px;
        background: var(--surface-1);
        color: var(--link);
        padding: 6px 10px;
    }

    .cookie-lv4__actions a[data-choice='accept'] {
        background: var(--bg-primary);
        border-color: var(--bg-primary);
        color: var(--fg-on-primary);
    }

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

    .terms-layout-f .wrap {
        max-width: 980px;
        margin: 0 auto;
    }

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

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

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

    .terms-layout-f .list {
        display: grid;
        gap: 14px;
    }

    .terms-layout-f article {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        background: linear-gradient(180deg, var(--surface-1), var(--surface-2));
        padding: var(--space-y) var(--space-x);
    }

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

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

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--surface-1, #ffffff);
    box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.1));
    padding: var(--space-y, 0.75rem) var(--space-x, 1.5rem);
  }

  .header-container {
    max-width: var(--max-w, 1200px);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .logo {
    font-size: calc(var(--font-size-base, 1rem) * 1.5);
    font-weight: 700;
    color: var(--brand, #2a7de1);
    text-decoration: none;
    letter-spacing: -0.02em;
    line-height: 1.2;
  }

  .logo:hover {
    color: var(--brand-contrast, #1a5bbf);
  }

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

  .burger-btn:hover {
    background: var(--btn-ghost-bg-hover, rgba(0,0,0,0.05));
  }

  .burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--fg-on-page, #1a1a2e);
    border-radius: 2px;
    transition: all var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .burger-btn[aria-expanded="true"] .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .burger-btn[aria-expanded="true"] .burger-line:nth-child(2) {
    opacity: 0;
  }

  .burger-btn[aria-expanded="true"] .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .nav-menu {
    display: flex;
    align-items: center;
  }

  .nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap, 1.5rem);
  }

  .nav-link {
    text-decoration: none;
    color: var(--neutral-800, #2d3748);
    font-size: var(--font-size-base, 1rem);
    line-height: var(--line-height-base, 1.5);
    padding: 0.5rem 0;
    position: relative;
    transition: color var(--anim-duration, 0.3s) var(--anim-ease, ease);
    font-weight: 500;
  }

  .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--brand, #2a7de1);
    transition: width var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .nav-link:hover {
    color: var(--brand, #2a7de1);
  }

  .nav-link:hover::after {
    width: 100%;
  }

  /* Offcanvas overlay */
  .nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay, rgba(0,0,0,0.5));
    z-index: 999;
    opacity: 0;
    transition: opacity var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .nav-overlay.active {
    display: block;
    opacity: 1;
  }

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

    .nav-menu {
      position: fixed;
      top: 0;
      right: -280px;
      width: 280px;
      height: 100vh;
      background: var(--surface-1, #ffffff);
      box-shadow: var(--shadow-lg, 0 10px 30px rgba(0,0,0,0.15));
      flex-direction: column;
      align-items: flex-start;
      justify-content: flex-start;
      padding: 5rem 2rem 2rem;
      transition: right var(--anim-duration, 0.3s) var(--anim-ease, ease);
      z-index: 1001;
    }

    .nav-menu.open {
      right: 0;
    }

    .nav-list {
      flex-direction: column;
      gap: 1rem;
      width: 100%;
    }

    .nav-link {
      font-size: 1.125rem;
      padding: 0.75rem 0;
      display: block;
      width: 100%;
      border-bottom: 1px solid var(--border-on-surface, #e2e8f0);
    }

    .nav-link::after {
      display: none;
    }

    .nav-link:hover {
      color: var(--brand, #2a7de1);
      background: var(--btn-ghost-bg-hover, rgba(0,0,0,0.03));
      padding-left: 0.5rem;
    }
  }

  @media (min-width: 768px) {
    .nav-menu {
      display: flex !important;
      position: static;
      width: auto;
      height: auto;
      background: transparent;
      box-shadow: none;
      padding: 0;
      flex-direction: row;
    }

    .nav-list {
      flex-direction: row;
      gap: var(--gap, 1.5rem);
    }

    .nav-link {
      border-bottom: none;
      padding: 0.5rem 0;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 40px 20px 20px;
    font-family: Arial, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 30px;
  }
  .footer-brand .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #f0a500;
    text-decoration: none;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #f0a500;
  }
  .footer-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .footer-links a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-links a:hover {
    color: #f0a500;
  }
  .footer-contacts p {
    margin: 5px 0;
  }
  .footer-contacts a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-contacts a:hover {
    color: #f0a500;
  }
  .footer-disclaimer {
    border-top: 1px solid #333;
    padding-top: 15px;
    font-size: 0.85rem;
    text-align: center;
    color: #aaa;
  }
  .footer-disclaimer a {
    color: #f0a500;
    text-decoration: none;
  }
  .footer-disclaimer a:hover {
    text-decoration: underline;
  }
  @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;
    }
  }

.cookie-lv4 {
        position: fixed;
        inset: 0 0 auto 0;
        z-index: 1200;
        background: var(--surface-2);
        border-bottom: 1px solid var(--border-on-surface-light);
        color: var(--fg-on-page);
    }

    .cookie-lv4__inner {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 10px var(--space-x);
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
        flex-wrap: wrap;
    }

    .cookie-lv4__inner span {
        color: var(--neutral-600);
        margin-left: 6px;
    }

    .cookie-lv4__actions {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-lv4__actions a {
        text-decoration: none;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 999px;
        background: var(--surface-1);
        color: var(--link);
        padding: 6px 10px;
    }

    .cookie-lv4__actions a[data-choice='accept'] {
        background: var(--bg-primary);
        border-color: var(--bg-primary);
        color: var(--fg-on-primary);
    }

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

    .nfthank-v9__panel {
        max-width: 760px;
        margin: 0 auto;
        text-align: center;
        border: 1px solid rgba(255, 255, 255, .24);
        border-radius: var(--radius-lg);
        padding: clamp(30px, 4vw, 44px);
        background: rgba(255, 255, 255, .06);
    }

    .nfthank-v9 h1 {
        margin: 0;
        font-size: clamp(32px, 5vw, 54px);
    }

    .nfthank-v9 p {
        margin: 12px 0 0;
        opacity: .92;
    }

    .nfthank-v9 a {
        display: inline-block;
        margin-top: 17px;
        color: var(--accent-contrast);
        text-decoration: none;
        border-bottom: 2px solid var(--accent-contrast);
        padding-bottom: 2px;
    }

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--surface-1, #ffffff);
    box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.1));
    padding: var(--space-y, 0.75rem) var(--space-x, 1.5rem);
  }

  .header-container {
    max-width: var(--max-w, 1200px);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .logo {
    font-size: calc(var(--font-size-base, 1rem) * 1.5);
    font-weight: 700;
    color: var(--brand, #2a7de1);
    text-decoration: none;
    letter-spacing: -0.02em;
    line-height: 1.2;
  }

  .logo:hover {
    color: var(--brand-contrast, #1a5bbf);
  }

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

  .burger-btn:hover {
    background: var(--btn-ghost-bg-hover, rgba(0,0,0,0.05));
  }

  .burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--fg-on-page, #1a1a2e);
    border-radius: 2px;
    transition: all var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .burger-btn[aria-expanded="true"] .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .burger-btn[aria-expanded="true"] .burger-line:nth-child(2) {
    opacity: 0;
  }

  .burger-btn[aria-expanded="true"] .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .nav-menu {
    display: flex;
    align-items: center;
  }

  .nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap, 1.5rem);
  }

  .nav-link {
    text-decoration: none;
    color: var(--neutral-800, #2d3748);
    font-size: var(--font-size-base, 1rem);
    line-height: var(--line-height-base, 1.5);
    padding: 0.5rem 0;
    position: relative;
    transition: color var(--anim-duration, 0.3s) var(--anim-ease, ease);
    font-weight: 500;
  }

  .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--brand, #2a7de1);
    transition: width var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .nav-link:hover {
    color: var(--brand, #2a7de1);
  }

  .nav-link:hover::after {
    width: 100%;
  }

  /* Offcanvas overlay */
  .nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay, rgba(0,0,0,0.5));
    z-index: 999;
    opacity: 0;
    transition: opacity var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .nav-overlay.active {
    display: block;
    opacity: 1;
  }

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

    .nav-menu {
      position: fixed;
      top: 0;
      right: -280px;
      width: 280px;
      height: 100vh;
      background: var(--surface-1, #ffffff);
      box-shadow: var(--shadow-lg, 0 10px 30px rgba(0,0,0,0.15));
      flex-direction: column;
      align-items: flex-start;
      justify-content: flex-start;
      padding: 5rem 2rem 2rem;
      transition: right var(--anim-duration, 0.3s) var(--anim-ease, ease);
      z-index: 1001;
    }

    .nav-menu.open {
      right: 0;
    }

    .nav-list {
      flex-direction: column;
      gap: 1rem;
      width: 100%;
    }

    .nav-link {
      font-size: 1.125rem;
      padding: 0.75rem 0;
      display: block;
      width: 100%;
      border-bottom: 1px solid var(--border-on-surface, #e2e8f0);
    }

    .nav-link::after {
      display: none;
    }

    .nav-link:hover {
      color: var(--brand, #2a7de1);
      background: var(--btn-ghost-bg-hover, rgba(0,0,0,0.03));
      padding-left: 0.5rem;
    }
  }

  @media (min-width: 768px) {
    .nav-menu {
      display: flex !important;
      position: static;
      width: auto;
      height: auto;
      background: transparent;
      box-shadow: none;
      padding: 0;
      flex-direction: row;
    }

    .nav-list {
      flex-direction: row;
      gap: var(--gap, 1.5rem);
    }

    .nav-link {
      border-bottom: none;
      padding: 0.5rem 0;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 40px 20px 20px;
    font-family: Arial, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 30px;
  }
  .footer-brand .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #f0a500;
    text-decoration: none;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #f0a500;
  }
  .footer-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .footer-links a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-links a:hover {
    color: #f0a500;
  }
  .footer-contacts p {
    margin: 5px 0;
  }
  .footer-contacts a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-contacts a:hover {
    color: #f0a500;
  }
  .footer-disclaimer {
    border-top: 1px solid #333;
    padding-top: 15px;
    font-size: 0.85rem;
    text-align: center;
    color: #aaa;
  }
  .footer-disclaimer a {
    color: #f0a500;
    text-decoration: none;
  }
  .footer-disclaimer a:hover {
    text-decoration: underline;
  }
  @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;
    }
  }

.cookie-lv4 {
        position: fixed;
        inset: 0 0 auto 0;
        z-index: 1200;
        background: var(--surface-2);
        border-bottom: 1px solid var(--border-on-surface-light);
        color: var(--fg-on-page);
    }

    .cookie-lv4__inner {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 10px var(--space-x);
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
        flex-wrap: wrap;
    }

    .cookie-lv4__inner span {
        color: var(--neutral-600);
        margin-left: 6px;
    }

    .cookie-lv4__actions {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-lv4__actions a {
        text-decoration: none;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 999px;
        background: var(--surface-1);
        color: var(--link);
        padding: 6px 10px;
    }

    .cookie-lv4__actions a[data-choice='accept'] {
        background: var(--bg-primary);
        border-color: var(--bg-primary);
        color: var(--fg-on-primary);
    }

.nf404-v7 {
        padding: clamp(56px, 10vw, 112px) 20px;
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
    }

    .nf404-v7__box {
        max-width: 760px;
        margin: 0 auto;
        text-align: center;
    }

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

    .nf404-v7 p {
        margin: 12px 0 0;
        opacity: .92;
    }

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