:root {
  --font-family: "Noto Sans", sans-serif;
  --font-size-base: 16.6px;
  --line-height-base: 1.72;

  --max-w: 900px;
  --space-x: 1.16rem;
  --space-y: 1.5rem;
  --gap: 0.75rem;

  --radius-xl: 0.66rem;
  --radius-lg: 0.42rem;
  --radius-md: 0.34rem;
  --radius-sm: 0.25rem;

  --shadow-sm: 0 0px 3px rgba(0,0,0,0.04);
  --shadow-md: 0 3px 16px rgba(0,0,0,0.05);
  --shadow-lg: 0 12px 26px rgba(0,0,0,0.07);

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

  --brand: #1a3a5c;
  --brand-contrast: #ffffff;
  --accent: #e85d3a;
  --accent-contrast: #ffffff;

  --neutral-0: #ffffff;
  --neutral-100: #f5f7fa;
  --neutral-300: #d1d5db;
  --neutral-600: #6b7280;
  --neutral-800: #1f2937;
  --neutral-900: #111827;

  --bg-page: #f5f7fa;
  --fg-on-page: #1f2937;

  --bg-alt: #e8edf2;
  --fg-on-alt: #1f2937;

  --surface-1: #ffffff;
  --surface-2: #f9fafb;
  --fg-on-surface: #1f2937;
  --border-on-surface: #e5e7eb;

  --surface-light: #ffffff;
  --fg-on-surface-light: #374151;
  --border-on-surface-light: #e5e7eb;

  --bg-primary: #1a3a5c;
  --fg-on-primary: #ffffff;
  --bg-primary-hover: #142c47;
  --ring: #e85d3a;

  --bg-accent: #e85d3a;
  --fg-on-accent: #ffffff;
  --bg-accent-hover: #d04a2a;

  --link: #1a3a5c;
  --link-hover: #e85d3a;

  --gradient-hero: linear-gradient(135deg, #1a3a5c 0%, #2a5a7c 100%);
  --gradient-accent: linear-gradient(135deg, #e85d3a 0%, #f07a5a 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: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  transition: background var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
  padding: var(--space-y) 0;
}

.site-header.scrolled {
  background: var(--surface-1);
  box-shadow: var(--shadow-md);
  padding: calc(var(--space-y) * 0.5) 0;
}

.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--space-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  line-height: 1.2;
  white-space: nowrap;
}

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

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

.nav-list a {
  text-decoration: none;
  color: var(--neutral-800);
  font-size: var(--font-size-base);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: color var(--anim-duration) var(--anim-ease), background var(--anim-duration) var(--anim-ease);
  white-space: nowrap;
}

.nav-list a:hover,
.nav-list a:focus-visible {
  color: var(--brand);
  background: var(--btn-ghost-bg-hover);
}

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

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

.burger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--neutral-900);
  border-radius: 2px;
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

.burger-line + .burger-line {
  margin-top: 5px;
}

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

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

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

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

  .nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--surface-1);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
    z-index: 999;
  }

  .nav.open {
    opacity: 1;
    visibility: visible;
  }

  .nav-list {
    flex-direction: column;
    align-items: center;
    gap: var(--space-y);
  }

  .nav-list a {
    font-size: calc(var(--font-size-base) * 1.25);
    padding: 0.75rem 1.5rem;
  }

  .site-header.scrolled .nav {
    background: var(--surface-1);
  }
}

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2.5rem 1.5rem 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
  }
  .footer-col {
    flex: 1 1 250px;
    min-width: 200px;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f0a500;
    margin-bottom: 0.5rem;
  }
  .footer-offer {
    font-size: 0.95rem;
    color: #b0b0c0;
    margin-top: 0.3rem;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
  }
  .footer-nav ul li {
    margin-bottom: 0.5rem;
  }
  .footer-nav ul li a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-nav ul li a:hover {
    color: #f0a500;
  }
  .footer-legal {
    display: flex;
    gap: 1.5rem;
    margin-top: 0.8rem;
  }
  .footer-legal a {
    color: #b0b0c0;
    text-decoration: none;
    font-size: 0.9rem;
  }
  .footer-legal a:hover {
    color: #f0a500;
  }
  .contact-block p {
    margin: 0.3rem 0;
  }
  .contact-block a {
    color: #e0e0e0;
    text-decoration: none;
  }
  .contact-block a:hover {
    color: #f0a500;
    text-decoration: underline;
  }
  .footer-disclaimer {
    font-size: 0.8rem;
    color: #888;
    margin-top: 1rem;
    line-height: 1.4;
  }
  .footer-bottom {
    text-align: center;
    border-top: 1px solid #333;
    padding-top: 1rem;
    margin-top: 2rem;
    font-size: 0.85rem;
    color: #888;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-col {
      flex: 1 1 auto;
      width: 100%;
    }
    .footer-legal {
      justify-content: center;
    }
    .contact-block {
      text-align: center;
    }
  }

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

    .cookie-cv15__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, 0.45), rgba(17, 24, 39, 0.95));
        color: #f3f4f6;
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, 0.35);
    }

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

    .cookie-cv15__top strong {
        font-size: 16px;
    }

    .cookie-cv15__top a {
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
    }

    .cookie-cv15 p {
        margin: 10px 0 0;
        color: #d1d5db;
    }

    .cookie-cv15__actions {
        margin-top: 14px;
        display: flex;
        gap: 8px;
    }

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

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

    @media (max-width: 760px) {
        .cookie-cv15__card {
            max-width: none;
        }
    }

.nflang-v11 {
        position: fixed;
        right: clamp(14px, 2vw, 24px);
        bottom: clamp(14px, 2vw, 24px);
        z-index: 99999;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-lg);
        padding: 8px;
        min-width: 84px;
    }

    .nflang-v11__head {
        width: 100%;
        border: 0;
        border-radius: var(--radius-md);
        background: var(--surface-2);
        color: var(--fg-on-surface);
        padding: 8px 10px;
        cursor: pointer;
        font-size: 12px;
        font-weight: 700;
    }

    .nflang-v11__head-value {
        display: inline-flex;
        justify-content: center;
        min-width: 36px;
    }

    .nflang-v11__items {
        margin-top: 8px;
        display: grid;
        gap: 6px;
        opacity: 0;
        pointer-events: none;
        transition: opacity var(--anim-duration) var(--anim-ease);
        height: 0;
    }

    .nflang-v11__items.open {opacity: 1; pointer-events: auto; height: auto}

    .nflang-v11__items button,
    .nflang-v11__items a {
        border: 1px solid var(--border-on-surface);
        background: var(--surface-1);
        border-radius: var(--radius-sm);
        color: var(--fg-on-surface);
        text-decoration: none;
        padding: 7px 10px;
        font-size: 12px;
        font-weight: 600;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .nflang-v11__items button:hover,
    .nflang-v11__items a:hover {
        background: var(--accent);
        border-color: transparent;
        color: var(--accent-contrast);
    }

.intro-flag-c11 {
        padding: clamp(3.8rem, 8vw, 6.8rem) var(--space-x);
        background: linear-gradient(160deg, var(--bg-primary), var(--bg-primary-hover));
        color: var(--fg-on-primary);
    }

    .intro-flag-c11__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1.2fr .8fr;
        gap: 1rem;
    }

    .intro-flag-c11__left, .intro-flag-c11__right {
        padding: 1.1rem;
        border-radius: var(--radius-xl);
        background: rgba(255, 255, 255, .12);
        border: 1px solid rgba(255, 255, 255, .18);
    }

    .intro-flag-c11__tag {
        display: inline-flex;
        padding: .4rem .75rem;
        border-radius: 999px;
        background: var(--chip-bg);
    }

    .intro-flag-c11__left h1 {
        margin: .8rem 0 0;
        font-size: clamp(2.5rem, 5vw, 4.6rem);
        line-height: 1;
    }

    .intro-flag-c11__left p {
        margin: .9rem 0 0;

    }

    .intro-flag-c11__right {
        display: grid;
        align-content: center;
        gap: .65rem;
    }

    .intro-flag-c11__right div {
        font-size: clamp(2.8rem, 5vw, 4rem);
        font-weight: 700;
    }

    .intro-flag-c11__right span {
        color: rgba(255, 255, 255, .82);
    }

    @media (max-width: 860px) {
        .intro-flag-c11__wrap {
            grid-template-columns: 1fr;
        }
    }

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

    .next-ux23 {
        padding: clamp(3.1rem, 7vw, 5.6rem) var(--space-x);
        background: var(--neutral-100);
        color: var(--neutral-900);
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .next-ux23__wrap {
        max-width: 56rem;
        margin: 0 auto;
    }

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

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

    .next-ux23__line {
        margin-top: 1rem;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr));
        gap: .7rem;
    }

    .next-ux23__line a {
        display: flex;
        gap: .6rem;
        align-items: center;
        padding: .9rem;
        border-radius: var(--radius-md);
        background: var(--neutral-100);
        border: 1px solid var(--neutral-300);
        text-decoration: none;
        color: var(--neutral-900);
    }

    .next-ux23__line i {
        font-style: normal;
    }

    .next-ux23__copy {
        margin: 1rem 0 0;
        color: var(--neutral-600);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .visual-ledger-l2__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .visual-ledger-l2__head {
        margin-bottom: 1rem;
        text-align: center;
    }

    .visual-ledger-l2__head p {
        margin: 0;
        color: var(--neutral-600);
        font-size: .82rem;
        text-transform: uppercase;
        letter-spacing: .1em;
    }

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

    .visual-ledger-l2__deck {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
        gap: var(--gap);
    }

    .visual-ledger-l2__deck figure {
        margin: 0;
        overflow: hidden;
        border-radius: var(--radius-xl);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface-light);
    }

    .visual-ledger-l2__deck img {
        display: block;
        width: 100%;
        height: 14rem;
        object-fit: cover;
    }

    .visual-ledger-l2__deck figcaption {
        padding: 1rem;
    }

    .visual-ledger-l2__deck strong {
        color: var(--brand);
    }

    .visual-ledger-l2__deck h3 {
        margin: .5rem 0 .35rem;
    }

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

.nftouch-v11 {
        padding: clamp(56px, 8vw, 96px) 16px;
        background: linear-gradient(145deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
    }

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

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

    .nftouch-v11__lead {
        margin: 10px 0 14px;
        opacity: .92;
    }

    .nftouch-v11__lane {
        display: flex;
        gap: 10px;
        overflow-x: auto;
        padding-bottom: 6px;
    }

    .nftouch-v11__lane article {
        min-width: 250px;
        border: 1px solid rgba(255, 255, 255, .28);
        border-radius: var(--radius-lg);
        background: rgba(255, 255, 255, .1);
        padding: 12px;
    }

    .nftouch-v11__lane h3 {
        margin: 0 0 8px;
    }

    .nftouch-v11__lane p {
        margin: 0 0 8px;
    }

    .nftouch-v11__lane a {
        color: var(--fg-on-primary);
        text-decoration: underline;
    }

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  transition: background var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
  padding: var(--space-y) 0;
}

.site-header.scrolled {
  background: var(--surface-1);
  box-shadow: var(--shadow-md);
  padding: calc(var(--space-y) * 0.5) 0;
}

.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--space-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  line-height: 1.2;
  white-space: nowrap;
}

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

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

.nav-list a {
  text-decoration: none;
  color: var(--neutral-800);
  font-size: var(--font-size-base);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: color var(--anim-duration) var(--anim-ease), background var(--anim-duration) var(--anim-ease);
  white-space: nowrap;
}

.nav-list a:hover,
.nav-list a:focus-visible {
  color: var(--brand);
  background: var(--btn-ghost-bg-hover);
}

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

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

.burger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--neutral-900);
  border-radius: 2px;
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

.burger-line + .burger-line {
  margin-top: 5px;
}

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

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

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

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

  .nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--surface-1);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
    z-index: 999;
  }

  .nav.open {
    opacity: 1;
    visibility: visible;
  }

  .nav-list {
    flex-direction: column;
    align-items: center;
    gap: var(--space-y);
  }

  .nav-list a {
    font-size: calc(var(--font-size-base) * 1.25);
    padding: 0.75rem 1.5rem;
  }

  .site-header.scrolled .nav {
    background: var(--surface-1);
  }
}

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2.5rem 1.5rem 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
  }
  .footer-col {
    flex: 1 1 250px;
    min-width: 200px;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f0a500;
    margin-bottom: 0.5rem;
  }
  .footer-offer {
    font-size: 0.95rem;
    color: #b0b0c0;
    margin-top: 0.3rem;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
  }
  .footer-nav ul li {
    margin-bottom: 0.5rem;
  }
  .footer-nav ul li a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-nav ul li a:hover {
    color: #f0a500;
  }
  .footer-legal {
    display: flex;
    gap: 1.5rem;
    margin-top: 0.8rem;
  }
  .footer-legal a {
    color: #b0b0c0;
    text-decoration: none;
    font-size: 0.9rem;
  }
  .footer-legal a:hover {
    color: #f0a500;
  }
  .contact-block p {
    margin: 0.3rem 0;
  }
  .contact-block a {
    color: #e0e0e0;
    text-decoration: none;
  }
  .contact-block a:hover {
    color: #f0a500;
    text-decoration: underline;
  }
  .footer-disclaimer {
    font-size: 0.8rem;
    color: #888;
    margin-top: 1rem;
    line-height: 1.4;
  }
  .footer-bottom {
    text-align: center;
    border-top: 1px solid #333;
    padding-top: 1rem;
    margin-top: 2rem;
    font-size: 0.85rem;
    color: #888;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-col {
      flex: 1 1 auto;
      width: 100%;
    }
    .footer-legal {
      justify-content: center;
    }
    .contact-block {
      text-align: center;
    }
  }

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

    .cookie-cv15__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, 0.45), rgba(17, 24, 39, 0.95));
        color: #f3f4f6;
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, 0.35);
    }

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

    .cookie-cv15__top strong {
        font-size: 16px;
    }

    .cookie-cv15__top a {
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
    }

    .cookie-cv15 p {
        margin: 10px 0 0;
        color: #d1d5db;
    }

    .cookie-cv15__actions {
        margin-top: 14px;
        display: flex;
        gap: 8px;
    }

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

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

    @media (max-width: 760px) {
        .cookie-cv15__card {
            max-width: none;
        }
    }

.story-column-l4 {
        padding: clamp(3.2rem, 7vw, 5.7rem) var(--space-x);
        background: var(--surface-1);
        color: var(--fg-on-page);
    }

    .story-column-l4__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1.2fr .8fr;
        gap: 1rem;
    }

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

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

    .story-column-l4__copy strong {
        display: block;
        margin-top: .8rem;
    }

    .story-column-l4__copy p {
        color: var(--neutral-600);
    }

    .story-column-l4__stats {
        display: grid;
        gap: .75rem;
    }

    .story-column-l4__stats div {
        padding: .9rem;
        border-radius: var(--radius-lg);
        background: var(--bg-alt);
        border: 1px solid var(--border-on-surface-light);
    }

    .story-column-l4__stats span {
        display: block;
        margin-top: .25rem;
        color: var(--neutral-600);
    }

    @media (max-width: 820px) {
        .story-column-l4__wrap {
            grid-template-columns: 1fr;
        }
    }

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

    .faq-layout-e .wrap {
        max-width: 860px;
        margin: 0 auto;
    }

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

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

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

    .faq-layout-e .accordion {
        border-top: 1px solid var(--border-on-surface-light);
    }

    .faq-layout-e .entry {
        border-bottom: 1px solid var(--border-on-surface-light);
    }

    .faq-layout-e .question {
        width: 100%;
        text-align: left;
        border: 0;
        background: transparent;
        padding: 12px 0;
        font: inherit;
        font-weight: 600;
        color: var(--brand);
        cursor: pointer;
    }

    .faq-layout-e .answer {
        margin: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--anim-duration) var(--anim-ease), padding var(--anim-duration) var(--anim-ease);
        color: var(--neutral-600);
        padding: 0;
    }

    .faq-layout-e .entry.open .answer {
        max-height: 220px;
        padding-bottom: 12px;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .identity-ux15 {
        padding: clamp(56px, 8vw, 104px) clamp(16px, 4vw, 40px);
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
    }

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

    .identity-ux15__head {
        text-align: center;
        margin-bottom: 18px;
    }

    .identity-ux15__head p {
        margin: 0;
        opacity: .9;
        letter-spacing: .08em;
        text-transform: uppercase;
    }

    .identity-ux15__head h2 {
        margin: 8px 0;
        font-size: clamp(30px, 5vw, 50px);
    }

    .identity-ux15__head span {
        display: block;
        margin: 0 auto;
        max-width: 72ch;
        opacity: .92;
    }

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

    .identity-ux15__grid article {
        border: 1px solid rgba(255, 255, 255, 0.3);
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        background: rgba(255, 255, 255, 0.12);
        box-shadow: var(--shadow-sm);
    }

    .identity-ux15__grid h3 {
        margin: 0;
    }

    .identity-ux15__grid p {
        margin: 7px 0;
        opacity: .94;
    }

    .identity-ux15__grid small {
        opacity: .9;
    }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  transition: background var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
  padding: var(--space-y) 0;
}

.site-header.scrolled {
  background: var(--surface-1);
  box-shadow: var(--shadow-md);
  padding: calc(var(--space-y) * 0.5) 0;
}

.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--space-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  line-height: 1.2;
  white-space: nowrap;
}

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

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

.nav-list a {
  text-decoration: none;
  color: var(--neutral-800);
  font-size: var(--font-size-base);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: color var(--anim-duration) var(--anim-ease), background var(--anim-duration) var(--anim-ease);
  white-space: nowrap;
}

.nav-list a:hover,
.nav-list a:focus-visible {
  color: var(--brand);
  background: var(--btn-ghost-bg-hover);
}

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

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

.burger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--neutral-900);
  border-radius: 2px;
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

.burger-line + .burger-line {
  margin-top: 5px;
}

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

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

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

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

  .nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--surface-1);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
    z-index: 999;
  }

  .nav.open {
    opacity: 1;
    visibility: visible;
  }

  .nav-list {
    flex-direction: column;
    align-items: center;
    gap: var(--space-y);
  }

  .nav-list a {
    font-size: calc(var(--font-size-base) * 1.25);
    padding: 0.75rem 1.5rem;
  }

  .site-header.scrolled .nav {
    background: var(--surface-1);
  }
}

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2.5rem 1.5rem 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
  }
  .footer-col {
    flex: 1 1 250px;
    min-width: 200px;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f0a500;
    margin-bottom: 0.5rem;
  }
  .footer-offer {
    font-size: 0.95rem;
    color: #b0b0c0;
    margin-top: 0.3rem;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
  }
  .footer-nav ul li {
    margin-bottom: 0.5rem;
  }
  .footer-nav ul li a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-nav ul li a:hover {
    color: #f0a500;
  }
  .footer-legal {
    display: flex;
    gap: 1.5rem;
    margin-top: 0.8rem;
  }
  .footer-legal a {
    color: #b0b0c0;
    text-decoration: none;
    font-size: 0.9rem;
  }
  .footer-legal a:hover {
    color: #f0a500;
  }
  .contact-block p {
    margin: 0.3rem 0;
  }
  .contact-block a {
    color: #e0e0e0;
    text-decoration: none;
  }
  .contact-block a:hover {
    color: #f0a500;
    text-decoration: underline;
  }
  .footer-disclaimer {
    font-size: 0.8rem;
    color: #888;
    margin-top: 1rem;
    line-height: 1.4;
  }
  .footer-bottom {
    text-align: center;
    border-top: 1px solid #333;
    padding-top: 1rem;
    margin-top: 2rem;
    font-size: 0.85rem;
    color: #888;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-col {
      flex: 1 1 auto;
      width: 100%;
    }
    .footer-legal {
      justify-content: center;
    }
    .contact-block {
      text-align: center;
    }
  }

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

    .cookie-cv15__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, 0.45), rgba(17, 24, 39, 0.95));
        color: #f3f4f6;
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, 0.35);
    }

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

    .cookie-cv15__top strong {
        font-size: 16px;
    }

    .cookie-cv15__top a {
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
    }

    .cookie-cv15 p {
        margin: 10px 0 0;
        color: #d1d5db;
    }

    .cookie-cv15__actions {
        margin-top: 14px;
        display: flex;
        gap: 8px;
    }

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

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

    @media (max-width: 760px) {
        .cookie-cv15__card {
            max-width: none;
        }
    }

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

    .hiw-ledger-l2 {
        padding: clamp(3.2rem, 7vw, 5.8rem) var(--space-x);
        background: var(--neutral-100);
        color: var(--neutral-900);
    }

    .hiw-ledger-l2__wrap {
        max-width: 60rem;
        margin: 0 auto;
    }

    .hiw-ledger-l2__head {
        text-align: center;
        margin-bottom: 1.2rem;
    }

    .hiw-ledger-l2__head p {
        margin: 0;
        color: var(--neutral-600);
    }

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

    .hiw-ledger-l2__rows {
        display: grid;
        gap: .8rem;
    }

    .hiw-ledger-l2__rows article {
        display: grid;
        grid-template-columns: 3rem 1fr;
        gap: .9rem;
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: var(--neutral-100);
        border: 1px solid var(--neutral-300);
    }

    .hiw-ledger-l2__rows strong {
        display: grid;
        place-items: center;
        width: 3rem;
        height: 3rem;
        border-radius: var(--radius-md);
        background: var(--neutral-100);
        color: var(--brand);
        box-shadow: var(--shadow-sm);
    }

    .hiw-ledger-l2__rows h3 {
        margin: 0;
    }

    .hiw-ledger-l2__rows p {
        margin: .35rem 0 0;
        color: var(--neutral-600);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  transition: background var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
  padding: var(--space-y) 0;
}

.site-header.scrolled {
  background: var(--surface-1);
  box-shadow: var(--shadow-md);
  padding: calc(var(--space-y) * 0.5) 0;
}

.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--space-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  line-height: 1.2;
  white-space: nowrap;
}

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

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

.nav-list a {
  text-decoration: none;
  color: var(--neutral-800);
  font-size: var(--font-size-base);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: color var(--anim-duration) var(--anim-ease), background var(--anim-duration) var(--anim-ease);
  white-space: nowrap;
}

.nav-list a:hover,
.nav-list a:focus-visible {
  color: var(--brand);
  background: var(--btn-ghost-bg-hover);
}

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

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

.burger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--neutral-900);
  border-radius: 2px;
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

.burger-line + .burger-line {
  margin-top: 5px;
}

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

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

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

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

  .nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--surface-1);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
    z-index: 999;
  }

  .nav.open {
    opacity: 1;
    visibility: visible;
  }

  .nav-list {
    flex-direction: column;
    align-items: center;
    gap: var(--space-y);
  }

  .nav-list a {
    font-size: calc(var(--font-size-base) * 1.25);
    padding: 0.75rem 1.5rem;
  }

  .site-header.scrolled .nav {
    background: var(--surface-1);
  }
}

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2.5rem 1.5rem 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
  }
  .footer-col {
    flex: 1 1 250px;
    min-width: 200px;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f0a500;
    margin-bottom: 0.5rem;
  }
  .footer-offer {
    font-size: 0.95rem;
    color: #b0b0c0;
    margin-top: 0.3rem;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
  }
  .footer-nav ul li {
    margin-bottom: 0.5rem;
  }
  .footer-nav ul li a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-nav ul li a:hover {
    color: #f0a500;
  }
  .footer-legal {
    display: flex;
    gap: 1.5rem;
    margin-top: 0.8rem;
  }
  .footer-legal a {
    color: #b0b0c0;
    text-decoration: none;
    font-size: 0.9rem;
  }
  .footer-legal a:hover {
    color: #f0a500;
  }
  .contact-block p {
    margin: 0.3rem 0;
  }
  .contact-block a {
    color: #e0e0e0;
    text-decoration: none;
  }
  .contact-block a:hover {
    color: #f0a500;
    text-decoration: underline;
  }
  .footer-disclaimer {
    font-size: 0.8rem;
    color: #888;
    margin-top: 1rem;
    line-height: 1.4;
  }
  .footer-bottom {
    text-align: center;
    border-top: 1px solid #333;
    padding-top: 1rem;
    margin-top: 2rem;
    font-size: 0.85rem;
    color: #888;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-col {
      flex: 1 1 auto;
      width: 100%;
    }
    .footer-legal {
      justify-content: center;
    }
    .contact-block {
      text-align: center;
    }
  }

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

    .cookie-cv15__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, 0.45), rgba(17, 24, 39, 0.95));
        color: #f3f4f6;
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, 0.35);
    }

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

    .cookie-cv15__top strong {
        font-size: 16px;
    }

    .cookie-cv15__top a {
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
    }

    .cookie-cv15 p {
        margin: 10px 0 0;
        color: #d1d5db;
    }

    .cookie-cv15__actions {
        margin-top: 14px;
        display: flex;
        gap: 8px;
    }

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

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

    @media (max-width: 760px) {
        .cookie-cv15__card {
            max-width: none;
        }
    }

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

    .form-layout-b .wrap {
        max-width: 980px;
        margin: 0 auto;
    }

    .form-layout-b .section-head {
        margin-bottom: 16px;
    }

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

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

    .form-layout-b .split {
        display: grid;
        grid-template-columns: 280px 1fr;
        gap: 16px;
    }

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

    .form-layout-b aside h3 {
        margin: 0;
    }

    .form-layout-b aside p {
        margin: 10px 0 0;
        opacity: .92;
    }

    .form-layout-b form {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        padding: 16px;
        background: var(--surface-1);
    }

    .form-layout-b label {
        display: grid;
        gap: 6px;
        margin-bottom: 10px;
    }

    .form-layout-b input, .form-layout-b textarea {
        width: 100%;
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-sm);
        padding: 9px;
        font: inherit;
    }

    .form-layout-b button {
        border: 0;
        border-radius: var(--radius-sm);
        background: var(--gradient-accent);
        color: var(--accent-contrast);
        padding: 10px 14px;
    }

    @media (max-width: 760px) {
        .form-layout-b .split {
            grid-template-columns: 1fr;
        }
    }

.nfcontacts-v9 {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 36px);
        background: linear-gradient(145deg, var(--accent), var(--bg-primary));
        color: var(--fg-on-primary);
    }

    .nfcontacts-v9__wrap {
        max-width: 900px;
        margin: 0 auto;
        display: grid;
        gap: var(--gap);
    }

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

    .nfcontacts-v9__subtitle {
        margin: 0;
        opacity: .92;
    }

    .nfcontacts-v9__list {
        display: grid;
        gap: 10px;
    }

    .nfcontacts-v9__list article {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 12px;
        padding: 12px;
        border-radius: var(--radius-md);
        border: 1px solid rgba(255, 255, 255, .28);
        background: rgba(255, 255, 255, .1);
    }

    .nfcontacts-v9__label {
        margin: 0;
        opacity: .86;
    }

    .nfcontacts-v9__value {
        margin: 4px 0 0;
        font-weight: 700;
    }

    .nfcontacts-v9__list a {
        text-decoration: none;
        color: var(--fg-on-primary);
        border: 1px solid rgba(255, 255, 255, .35);
        border-radius: var(--radius-sm);
        padding: 7px 10px;
        white-space: nowrap;
    }

    @media (max-width: 700px) {
        .nfcontacts-v9__list article {
            flex-direction: column;
            align-items: flex-start;
        }
    }

body{margin:0;padding:0;font-family:var(--font-family);box-sizing: border-box;}
    *{box-sizing:border-box;}.clar-ux11{padding:clamp(20px,3vw,44px);background:var(--neutral-0);color:var(--neutral-900)}.clar-ux11__wrap{max-width:var(--max-w);margin:0 auto}.clar-ux11__head p{margin:8px 0 12px;color:var(--neutral-600)}.clar-ux11 table{width:100%;border-collapse:separate;border-spacing:0 8px}.clar-ux11 td{vertical-align:top;background:var(--neutral-100);border:1px solid var(--neutral-300);padding:12px}.clar-ux11 td:first-child{width:140px;font-weight:700;color:var(--brand);border-radius:var(--radius-md) 0 0 var(--radius-md)}.clar-ux11 td:last-child{border-radius:0 var(--radius-md) var(--radius-md) 0}.clar-ux11 strong{display:block;margin:0 0 6px}.clar-ux11 p{margin:0;color:var(--neutral-800)}@media(max-width:700px){.clar-ux11 td:first-child{width:90px}}

.nftouch-v11 {
        padding: clamp(56px, 8vw, 96px) 16px;
        background: linear-gradient(145deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
    }

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

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

    .nftouch-v11__lead {
        margin: 10px 0 14px;
        opacity: .92;
    }

    .nftouch-v11__lane {
        display: flex;
        gap: 10px;
        overflow-x: auto;
        padding-bottom: 6px;
    }

    .nftouch-v11__lane article {
        min-width: 250px;
        border: 1px solid rgba(255, 255, 255, .28);
        border-radius: var(--radius-lg);
        background: rgba(255, 255, 255, .1);
        padding: 12px;
    }

    .nftouch-v11__lane h3 {
        margin: 0 0 8px;
    }

    .nftouch-v11__lane p {
        margin: 0 0 8px;
    }

    .nftouch-v11__lane a {
        color: var(--fg-on-primary);
        text-decoration: underline;
    }

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  transition: background var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
  padding: var(--space-y) 0;
}

.site-header.scrolled {
  background: var(--surface-1);
  box-shadow: var(--shadow-md);
  padding: calc(var(--space-y) * 0.5) 0;
}

.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--space-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  line-height: 1.2;
  white-space: nowrap;
}

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

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

.nav-list a {
  text-decoration: none;
  color: var(--neutral-800);
  font-size: var(--font-size-base);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: color var(--anim-duration) var(--anim-ease), background var(--anim-duration) var(--anim-ease);
  white-space: nowrap;
}

.nav-list a:hover,
.nav-list a:focus-visible {
  color: var(--brand);
  background: var(--btn-ghost-bg-hover);
}

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

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

.burger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--neutral-900);
  border-radius: 2px;
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

.burger-line + .burger-line {
  margin-top: 5px;
}

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

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

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

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

  .nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--surface-1);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
    z-index: 999;
  }

  .nav.open {
    opacity: 1;
    visibility: visible;
  }

  .nav-list {
    flex-direction: column;
    align-items: center;
    gap: var(--space-y);
  }

  .nav-list a {
    font-size: calc(var(--font-size-base) * 1.25);
    padding: 0.75rem 1.5rem;
  }

  .site-header.scrolled .nav {
    background: var(--surface-1);
  }
}

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2.5rem 1.5rem 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
  }
  .footer-col {
    flex: 1 1 250px;
    min-width: 200px;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f0a500;
    margin-bottom: 0.5rem;
  }
  .footer-offer {
    font-size: 0.95rem;
    color: #b0b0c0;
    margin-top: 0.3rem;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
  }
  .footer-nav ul li {
    margin-bottom: 0.5rem;
  }
  .footer-nav ul li a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-nav ul li a:hover {
    color: #f0a500;
  }
  .footer-legal {
    display: flex;
    gap: 1.5rem;
    margin-top: 0.8rem;
  }
  .footer-legal a {
    color: #b0b0c0;
    text-decoration: none;
    font-size: 0.9rem;
  }
  .footer-legal a:hover {
    color: #f0a500;
  }
  .contact-block p {
    margin: 0.3rem 0;
  }
  .contact-block a {
    color: #e0e0e0;
    text-decoration: none;
  }
  .contact-block a:hover {
    color: #f0a500;
    text-decoration: underline;
  }
  .footer-disclaimer {
    font-size: 0.8rem;
    color: #888;
    margin-top: 1rem;
    line-height: 1.4;
  }
  .footer-bottom {
    text-align: center;
    border-top: 1px solid #333;
    padding-top: 1rem;
    margin-top: 2rem;
    font-size: 0.85rem;
    color: #888;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-col {
      flex: 1 1 auto;
      width: 100%;
    }
    .footer-legal {
      justify-content: center;
    }
    .contact-block {
      text-align: center;
    }
  }

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

    .cookie-cv15__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, 0.45), rgba(17, 24, 39, 0.95));
        color: #f3f4f6;
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, 0.35);
    }

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

    .cookie-cv15__top strong {
        font-size: 16px;
    }

    .cookie-cv15__top a {
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
    }

    .cookie-cv15 p {
        margin: 10px 0 0;
        color: #d1d5db;
    }

    .cookie-cv15__actions {
        margin-top: 14px;
        display: flex;
        gap: 8px;
    }

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

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

    @media (max-width: 760px) {
        .cookie-cv15__card {
            max-width: none;
        }
    }

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

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

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

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

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

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

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

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  transition: background var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
  padding: var(--space-y) 0;
}

.site-header.scrolled {
  background: var(--surface-1);
  box-shadow: var(--shadow-md);
  padding: calc(var(--space-y) * 0.5) 0;
}

.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--space-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  line-height: 1.2;
  white-space: nowrap;
}

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

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

.nav-list a {
  text-decoration: none;
  color: var(--neutral-800);
  font-size: var(--font-size-base);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: color var(--anim-duration) var(--anim-ease), background var(--anim-duration) var(--anim-ease);
  white-space: nowrap;
}

.nav-list a:hover,
.nav-list a:focus-visible {
  color: var(--brand);
  background: var(--btn-ghost-bg-hover);
}

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

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

.burger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--neutral-900);
  border-radius: 2px;
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

.burger-line + .burger-line {
  margin-top: 5px;
}

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

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

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

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

  .nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--surface-1);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
    z-index: 999;
  }

  .nav.open {
    opacity: 1;
    visibility: visible;
  }

  .nav-list {
    flex-direction: column;
    align-items: center;
    gap: var(--space-y);
  }

  .nav-list a {
    font-size: calc(var(--font-size-base) * 1.25);
    padding: 0.75rem 1.5rem;
  }

  .site-header.scrolled .nav {
    background: var(--surface-1);
  }
}

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2.5rem 1.5rem 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
  }
  .footer-col {
    flex: 1 1 250px;
    min-width: 200px;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f0a500;
    margin-bottom: 0.5rem;
  }
  .footer-offer {
    font-size: 0.95rem;
    color: #b0b0c0;
    margin-top: 0.3rem;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
  }
  .footer-nav ul li {
    margin-bottom: 0.5rem;
  }
  .footer-nav ul li a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-nav ul li a:hover {
    color: #f0a500;
  }
  .footer-legal {
    display: flex;
    gap: 1.5rem;
    margin-top: 0.8rem;
  }
  .footer-legal a {
    color: #b0b0c0;
    text-decoration: none;
    font-size: 0.9rem;
  }
  .footer-legal a:hover {
    color: #f0a500;
  }
  .contact-block p {
    margin: 0.3rem 0;
  }
  .contact-block a {
    color: #e0e0e0;
    text-decoration: none;
  }
  .contact-block a:hover {
    color: #f0a500;
    text-decoration: underline;
  }
  .footer-disclaimer {
    font-size: 0.8rem;
    color: #888;
    margin-top: 1rem;
    line-height: 1.4;
  }
  .footer-bottom {
    text-align: center;
    border-top: 1px solid #333;
    padding-top: 1rem;
    margin-top: 2rem;
    font-size: 0.85rem;
    color: #888;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-col {
      flex: 1 1 auto;
      width: 100%;
    }
    .footer-legal {
      justify-content: center;
    }
    .contact-block {
      text-align: center;
    }
  }

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

    .cookie-cv15__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, 0.45), rgba(17, 24, 39, 0.95));
        color: #f3f4f6;
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, 0.35);
    }

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

    .cookie-cv15__top strong {
        font-size: 16px;
    }

    .cookie-cv15__top a {
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
    }

    .cookie-cv15 p {
        margin: 10px 0 0;
        color: #d1d5db;
    }

    .cookie-cv15__actions {
        margin-top: 14px;
        display: flex;
        gap: 8px;
    }

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

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

    @media (max-width: 760px) {
        .cookie-cv15__card {
            max-width: none;
        }
    }

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

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

    .policy-layout-d .section-head {
        margin-bottom: 14px;
    }

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

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

    .policy-layout-d .timeline {
        border-left: 3px solid var(--brand);
        padding-left: 14px;
        display: grid;
        gap: 12px;
    }

    .policy-layout-d article {
        position: relative;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-md);
        padding: 12px;
    }

    .policy-layout-d .meta {
        margin: 0;
        color: var(--brand);
        font-size: .9rem;
        font-weight: 600;
    }

    .policy-layout-d h3 {
        margin: 7px 0;
    }

    .policy-layout-d article p {
        margin: 0;
        color: var(--neutral-600);
    }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  transition: background var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
  padding: var(--space-y) 0;
}

.site-header.scrolled {
  background: var(--surface-1);
  box-shadow: var(--shadow-md);
  padding: calc(var(--space-y) * 0.5) 0;
}

.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--space-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  line-height: 1.2;
  white-space: nowrap;
}

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

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

.nav-list a {
  text-decoration: none;
  color: var(--neutral-800);
  font-size: var(--font-size-base);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: color var(--anim-duration) var(--anim-ease), background var(--anim-duration) var(--anim-ease);
  white-space: nowrap;
}

.nav-list a:hover,
.nav-list a:focus-visible {
  color: var(--brand);
  background: var(--btn-ghost-bg-hover);
}

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

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

.burger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--neutral-900);
  border-radius: 2px;
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

.burger-line + .burger-line {
  margin-top: 5px;
}

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

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

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

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

  .nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--surface-1);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
    z-index: 999;
  }

  .nav.open {
    opacity: 1;
    visibility: visible;
  }

  .nav-list {
    flex-direction: column;
    align-items: center;
    gap: var(--space-y);
  }

  .nav-list a {
    font-size: calc(var(--font-size-base) * 1.25);
    padding: 0.75rem 1.5rem;
  }

  .site-header.scrolled .nav {
    background: var(--surface-1);
  }
}

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2.5rem 1.5rem 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
  }
  .footer-col {
    flex: 1 1 250px;
    min-width: 200px;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f0a500;
    margin-bottom: 0.5rem;
  }
  .footer-offer {
    font-size: 0.95rem;
    color: #b0b0c0;
    margin-top: 0.3rem;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
  }
  .footer-nav ul li {
    margin-bottom: 0.5rem;
  }
  .footer-nav ul li a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-nav ul li a:hover {
    color: #f0a500;
  }
  .footer-legal {
    display: flex;
    gap: 1.5rem;
    margin-top: 0.8rem;
  }
  .footer-legal a {
    color: #b0b0c0;
    text-decoration: none;
    font-size: 0.9rem;
  }
  .footer-legal a:hover {
    color: #f0a500;
  }
  .contact-block p {
    margin: 0.3rem 0;
  }
  .contact-block a {
    color: #e0e0e0;
    text-decoration: none;
  }
  .contact-block a:hover {
    color: #f0a500;
    text-decoration: underline;
  }
  .footer-disclaimer {
    font-size: 0.8rem;
    color: #888;
    margin-top: 1rem;
    line-height: 1.4;
  }
  .footer-bottom {
    text-align: center;
    border-top: 1px solid #333;
    padding-top: 1rem;
    margin-top: 2rem;
    font-size: 0.85rem;
    color: #888;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-col {
      flex: 1 1 auto;
      width: 100%;
    }
    .footer-legal {
      justify-content: center;
    }
    .contact-block {
      text-align: center;
    }
  }

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

    .cookie-cv15__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, 0.45), rgba(17, 24, 39, 0.95));
        color: #f3f4f6;
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, 0.35);
    }

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

    .cookie-cv15__top strong {
        font-size: 16px;
    }

    .cookie-cv15__top a {
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
    }

    .cookie-cv15 p {
        margin: 10px 0 0;
        color: #d1d5db;
    }

    .cookie-cv15__actions {
        margin-top: 14px;
        display: flex;
        gap: 8px;
    }

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

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

    @media (max-width: 760px) {
        .cookie-cv15__card {
            max-width: none;
        }
    }

.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: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  transition: background var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
  padding: var(--space-y) 0;
}

.site-header.scrolled {
  background: var(--surface-1);
  box-shadow: var(--shadow-md);
  padding: calc(var(--space-y) * 0.5) 0;
}

.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--space-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  line-height: 1.2;
  white-space: nowrap;
}

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

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

.nav-list a {
  text-decoration: none;
  color: var(--neutral-800);
  font-size: var(--font-size-base);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: color var(--anim-duration) var(--anim-ease), background var(--anim-duration) var(--anim-ease);
  white-space: nowrap;
}

.nav-list a:hover,
.nav-list a:focus-visible {
  color: var(--brand);
  background: var(--btn-ghost-bg-hover);
}

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

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

.burger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--neutral-900);
  border-radius: 2px;
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

.burger-line + .burger-line {
  margin-top: 5px;
}

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

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

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

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

  .nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--surface-1);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
    z-index: 999;
  }

  .nav.open {
    opacity: 1;
    visibility: visible;
  }

  .nav-list {
    flex-direction: column;
    align-items: center;
    gap: var(--space-y);
  }

  .nav-list a {
    font-size: calc(var(--font-size-base) * 1.25);
    padding: 0.75rem 1.5rem;
  }

  .site-header.scrolled .nav {
    background: var(--surface-1);
  }
}

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2.5rem 1.5rem 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
  }
  .footer-col {
    flex: 1 1 250px;
    min-width: 200px;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f0a500;
    margin-bottom: 0.5rem;
  }
  .footer-offer {
    font-size: 0.95rem;
    color: #b0b0c0;
    margin-top: 0.3rem;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
  }
  .footer-nav ul li {
    margin-bottom: 0.5rem;
  }
  .footer-nav ul li a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-nav ul li a:hover {
    color: #f0a500;
  }
  .footer-legal {
    display: flex;
    gap: 1.5rem;
    margin-top: 0.8rem;
  }
  .footer-legal a {
    color: #b0b0c0;
    text-decoration: none;
    font-size: 0.9rem;
  }
  .footer-legal a:hover {
    color: #f0a500;
  }
  .contact-block p {
    margin: 0.3rem 0;
  }
  .contact-block a {
    color: #e0e0e0;
    text-decoration: none;
  }
  .contact-block a:hover {
    color: #f0a500;
    text-decoration: underline;
  }
  .footer-disclaimer {
    font-size: 0.8rem;
    color: #888;
    margin-top: 1rem;
    line-height: 1.4;
  }
  .footer-bottom {
    text-align: center;
    border-top: 1px solid #333;
    padding-top: 1rem;
    margin-top: 2rem;
    font-size: 0.85rem;
    color: #888;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-col {
      flex: 1 1 auto;
      width: 100%;
    }
    .footer-legal {
      justify-content: center;
    }
    .contact-block {
      text-align: center;
    }
  }

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

    .cookie-cv15__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, 0.45), rgba(17, 24, 39, 0.95));
        color: #f3f4f6;
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, 0.35);
    }

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

    .cookie-cv15__top strong {
        font-size: 16px;
    }

    .cookie-cv15__top a {
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
    }

    .cookie-cv15 p {
        margin: 10px 0 0;
        color: #d1d5db;
    }

    .cookie-cv15__actions {
        margin-top: 14px;
        display: flex;
        gap: 8px;
    }

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

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

    @media (max-width: 760px) {
        .cookie-cv15__card {
            max-width: none;
        }
    }

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

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

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

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

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