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

  --max-w: 1180px;
  --space-x: 0.93rem;
  --space-y: 1.14rem;
  --gap: 1.19rem;

  --radius-xl: 1.11rem;
  --radius-lg: 0.62rem;
  --radius-md: 0.41rem;
  --radius-sm: 0.27rem;

  --shadow-sm: 0 1px 5px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 18px rgba(0,0,0,0.1);
  --shadow-lg: 0 14px 24px rgba(0,0,0,0.12);

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

  --brand: #0056B3;
  --brand-contrast: #FFFFFF;
  --accent: #00A8E8;
  --accent-contrast: #FFFFFF;

  --neutral-0: #FFFFFF;
  --neutral-100: #F5F7FA;
  --neutral-300: #D1D9E6;
  --neutral-600: #6B7B95;
  --neutral-800: #2D3748;
  --neutral-900: #1A202C;

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

  --bg-alt: #F8FAFC;
  --fg-on-alt: #2D3748;

  --surface-1: #FFFFFF;
  --surface-2: #F5F7FA;
  --fg-on-surface: #1A202C;
  --border-on-surface: #E2E8F0;

  --surface-light: #FFFFFF;
  --fg-on-surface-light: #2D3748;
  --border-on-surface-light: #D1D9E6;

  --bg-primary: #0056B3;
  --fg-on-primary: #FFFFFF;
  --bg-primary-hover: #004494;
  --ring: #0056B3;

  --bg-accent: #E6F7FF;
  --fg-on-accent: #003366;
  --bg-accent-hover: #0095D1;

  --link: #0056B3;
  --link-hover: #004494;

  --gradient-hero: linear-gradient(135deg, #0056B3 0%, #003366 100%);
  --gradient-accent: linear-gradient(90deg, #00A8E8 0%, #0056B3 100%);

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

.header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}
.header__container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}
.header__logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    z-index: 1002;
}
.header__logo:hover {
    color: var(--accent);
}
.header__burger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 2rem;
    height: 1.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1002;
}
.burger__line {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
.header__nav {
    display: flex;
}
.nav__list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap);
}
.nav__link {
    color: var(--link);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}
.nav__link:hover {
    color: var(--link-hover);
    background-color: var(--btn-ghost-bg-hover);
}
.header__overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--overlay);
    z-index: 999;
    opacity: 0;
    transition: opacity var(--anim-duration) var(--anim-ease);
}
@media (max-width: 767px) {
    .header__burger {
        display: flex;
    }
    .header__nav {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        background-color: var(--surface-1);
        box-shadow: var(--shadow-lg);
        z-index: 1001;
        padding: 5rem var(--space-x) var(--space-y);
        transition: right var(--anim-duration) var(--anim-ease);
        overflow-y: auto;
    }
    .header__nav.is-open {
        right: 0;
    }
    .nav__list {
        flex-direction: column;
        gap: 0;
    }
    .nav__item {
        width: 100%;
    }
    .nav__link {
        display: block;
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-sm);
    }
    .header__overlay.is-active {
        display: block;
        opacity: 1;
    }
    .header__burger[aria-expanded="true"] .burger__line:nth-child(1) {
        transform: translateY(0.65rem) rotate(45deg);
    }
    .header__burger[aria-expanded="true"] .burger__line:nth-child(2) {
        opacity: 0;
    }
    .header__burger[aria-expanded="true"] .burger__line:nth-child(3) {
        transform: translateY(-0.65rem) rotate(-45deg);
    }
}

.site-footer {
    background-color: #f8f9fa;
    color: #333;
    border-top: 1px solid #dee2e6;
    padding: 2.5rem 1rem;
    font-family: system-ui, -apple-system, sans-serif;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    border-bottom: 1px solid #eaeaea;
  }
  .footer-row.top-row {
    align-items: flex-start;
    border-bottom: 1px solid #eaeaea;
  }
  .footer-row.middle-row {
    justify-content: flex-start;
    border-bottom: 1px solid #eaeaea;
  }
  .footer-row.bottom-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.75rem;
    border-bottom: none;
    padding-bottom: 0;
  }
  .footer-brand .logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
  }
  .footer-nav .nav-menu {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
  }
  .nav-menu a {
    color: #555;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
  }
  .nav-menu a:hover {
    color: #007bff;
  }
  .footer-contacts ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
  }
  .footer-contacts li {
    color: #666;
    font-size: 0.95rem;
  }
  .footer-copyright {
    font-size: 0.9rem;
    color: #777;
  }
  .footer-copyright a {
    color: #555;
    text-decoration: none;
    margin: 0 0.5rem;
  }
  .footer-copyright a:hover {
    text-decoration: underline;
  }
  .footer-disclaimer {
    font-size: 0.8rem;
    color: #999;
    max-width: 800px;
    line-height: 1.4;
  }
  @media (max-width: 768px) {
    .footer-row.top-row,
    .footer-row.middle-row {
      flex-direction: column;
      align-items: flex-start;
      gap: 1.5rem;
    }
    .footer-nav .nav-menu {
      gap: 1.5rem;
    }
    .footer-contacts ul {
      flex-direction: column;
      gap: 0.75rem;
    }
    .footer-row.bottom-row {
      align-items: flex-start;
      text-align: left;
    }
  }

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

    .cookie-lv12__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-md);
        padding: calc(var(--space-y) * 0.9) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 12px var(--gap);
        align-items: center;
    }

    .cookie-lv12__title {
        font-weight: 700;
        color: var(--fg-on-surface);
    }

    .cookie-lv12 p {
        margin: 0;
        grid-column: 1 / 2;
        color: var(--fg-muted);
    }

    .cookie-lv12__actions {
        grid-row: 1 / 3;
        grid-column: 2 / 3;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
        justify-content: flex-end;
    }

    .cookie-lv12__actions button {
        border: 1px solid var(--border-on-surface);
        background: var(--surface-2);
        color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .cookie-lv12__actions button[data-choice='accept'] {
        background: var(--accent);
        color: var(--accent-contrast);
        border-color: transparent;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .cookie-lv12__wrap {
            grid-template-columns: 1fr;
        }

        .cookie-lv12 p,
        .cookie-lv12__actions {
            grid-column: auto;
            grid-row: auto;
        }

        .cookie-lv12__actions {
            justify-content: flex-start;
        }
    }

.intro-band {
        padding: clamp(60px, 9vw, 120px) clamp(16px, 3vw, 40px);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
    }

    .intro-band .wrap {
        max-width: 980px;
        margin: 0 auto;
    }

    .intro-band .eyebrow {
        margin: 0 0 8px;
        opacity: 0.9;
    }

    .intro-band h1 {
        margin: 0 0 10px;
        font-size: clamp(34px, 5.6vw, 60px);
    }

    .intro-band .lead {
        margin: 0 0 16px;
        max-width: 70ch;
        opacity: 0.9;
    }

    .intro-band .row {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 10px;
    }

    .intro-band .fact {
        border: 1px solid var(--chip-bg);
        border-radius: var(--radius-md);
        background: var(--chip-bg);
        padding: 12px;
    }

    .intro-band .label {
        margin: 0;
        opacity: 0.85;
    }

    .intro-band .number {
        margin: 6px 0 0;
        font-size: clamp(24px, 4vw, 36px);
        font-weight: 600;
    }

    .intro-band .actions {
        margin-top: 16px;
    }

    .intro-band .actions a {
        text-decoration: none;
        padding: 10px 16px;
        border-radius: var(--radius-md);
        background: var(--accent);
        color: var(--accent-contrast);
    }

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

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

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

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

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

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

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

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

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

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

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

.nftouch-v7 {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 3vw, 36px);
        background: var(--gradient-accent);
        color: var(--accent-contrast);
    }

    .nftouch-v7__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        text-align: center;
    }

    .nftouch-v7__head {
        margin-bottom: 14px;
        text-align: center;
    }

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

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

    .nftouch-v7__grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 10px;
        margin-top: 20px;
    }

    .nftouch-v7__grid article {
        border: 1px solid rgba(255, 255, 255, .32);
        border-radius: var(--radius-md);
        background: rgba(255, 255, 255, .12);
        padding: 12px;
        text-align: left;
    }

    .nftouch-v7__grid h3 {
        margin: 0 0 7px;
    }

    .nftouch-v7__grid p {
        margin: 0;
    }

    .nftouch-v7__grid a {
        display: inline-block;
        margin-top: 8px;
        color: var(--accent-contrast);
        text-decoration: underline;
    }

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

.social-l1 {

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

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

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

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

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

    .social-l1__grid {
        display: grid;
        grid-template-columns:repeat(12, 1fr);
        gap: 14px;
    }

    .social-l1__card {
        grid-column: span 4;
        border-radius: var(--radius-xl);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-md);
        padding: 16px;
        position: relative;
        transform-style: preserve-3d;
        transition: transform 420ms var(--anim-ease);
        min-height: 170px;
    }

    .social-l1__card:hover {
        transform: rotateY(180deg);
    }

    .social-l1__front,
    .social-l1__back {
        position: absolute;
        inset: 0;
        padding: 16px;
        backface-visibility: hidden;
        border-radius: inherit;
    }

    .social-l1__front::before {
        content: '';
        position: absolute;
        inset: -1px;
        background: radial-gradient(260px 130px at 20% 15%, rgba(0, 86, 179, 0.12), transparent 60%),
        radial-gradient(240px 140px at 85% 35%, rgba(255, 107, 53, 0.12), transparent 62%);
        pointer-events: none;
        border-radius: inherit;
    }

    .social-l1__chip {
        display: inline-flex;
        padding: 6px 10px;
        border-radius: 999px;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border: 1px solid rgba(0, 0, 0, 0.06);
        font-weight: 900;
        position: relative;
    }

    .social-l1__big {
        margin-top: 12px;
        font-weight: 900;
        font-size: clamp(18px, 2.4vw, 28px);
        letter-spacing: -.01em;
        position: relative;
    }

    .social-l1__small {
        margin-top: 8px;
        color: var(--neutral-600);
        line-height: var(--line-height-base);
        position: relative;
    }

    .social-l1__back {
        transform: rotateY(180deg);
        background: var(--bg-alt);
        border: 1px solid var(--neutral-300);
    }

    .social-l1__backTitle {
        font-weight: 900;
        color: var(--bg-primary);
        letter-spacing: -.01em;
        margin-bottom: 8px;
    }

    .social-l1__backText {
        color: var(--neutral-600);
        line-height: var(--line-height-base);
    }

    @media (max-width: 980px) {
        .social-l1__card {
            grid-column: span 6;
        }
    }

    @media (max-width: 640px) {
        .social-l1__card {
            grid-column: span 12;
        }
    }

    @media (prefers-reduced-motion: reduce) {
        .social-l1__card {
            transition: none;
        }
    }

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

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

    .visual-wave-c5__head {
        text-align: center;
        margin-bottom: 1rem;
    }

    .visual-wave-c5__head p {
        margin: 0;
        color: rgba(255, 255, 255, .76);
    }

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

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

    .visual-wave-c5__grid figure {
        margin: 0;
        overflow: hidden;
        border-radius: var(--radius-xl);
        background: rgba(255, 255, 255, .12);
        border: 1px solid rgba(255, 255, 255, .18);
    }

    .visual-wave-c5__image {
        overflow: hidden;
    }

    .visual-wave-c5__image img {
        display: block;
        width: 100%;
        height: 14rem;
        object-fit: cover;
        transition: transform var(--anim-duration) var(--anim-ease);
    }

    .visual-wave-c5__grid figure:hover img {
        transform: scale(1.05);
    }

    .visual-wave-c5__grid figcaption {
        padding: 1rem;
    }

    .visual-wave-c5__grid small {
        color: rgba(255, 255, 255, .76);
    }

    .visual-wave-c5__grid h3 {
        margin: .45rem 0 .35rem;
    }

    .visual-wave-c5__grid p {
        margin: 0;
        color: rgba(255, 255, 255, .84);
    }

.header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}
.header__container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}
.header__logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    z-index: 1002;
}
.header__logo:hover {
    color: var(--accent);
}
.header__burger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 2rem;
    height: 1.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1002;
}
.burger__line {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
.header__nav {
    display: flex;
}
.nav__list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap);
}
.nav__link {
    color: var(--link);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}
.nav__link:hover {
    color: var(--link-hover);
    background-color: var(--btn-ghost-bg-hover);
}
.header__overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--overlay);
    z-index: 999;
    opacity: 0;
    transition: opacity var(--anim-duration) var(--anim-ease);
}
@media (max-width: 767px) {
    .header__burger {
        display: flex;
    }
    .header__nav {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        background-color: var(--surface-1);
        box-shadow: var(--shadow-lg);
        z-index: 1001;
        padding: 5rem var(--space-x) var(--space-y);
        transition: right var(--anim-duration) var(--anim-ease);
        overflow-y: auto;
    }
    .header__nav.is-open {
        right: 0;
    }
    .nav__list {
        flex-direction: column;
        gap: 0;
    }
    .nav__item {
        width: 100%;
    }
    .nav__link {
        display: block;
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-sm);
    }
    .header__overlay.is-active {
        display: block;
        opacity: 1;
    }
    .header__burger[aria-expanded="true"] .burger__line:nth-child(1) {
        transform: translateY(0.65rem) rotate(45deg);
    }
    .header__burger[aria-expanded="true"] .burger__line:nth-child(2) {
        opacity: 0;
    }
    .header__burger[aria-expanded="true"] .burger__line:nth-child(3) {
        transform: translateY(-0.65rem) rotate(-45deg);
    }
}

.site-footer {
    background-color: #f8f9fa;
    color: #333;
    border-top: 1px solid #dee2e6;
    padding: 2.5rem 1rem;
    font-family: system-ui, -apple-system, sans-serif;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    border-bottom: 1px solid #eaeaea;
  }
  .footer-row.top-row {
    align-items: flex-start;
    border-bottom: 1px solid #eaeaea;
  }
  .footer-row.middle-row {
    justify-content: flex-start;
    border-bottom: 1px solid #eaeaea;
  }
  .footer-row.bottom-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.75rem;
    border-bottom: none;
    padding-bottom: 0;
  }
  .footer-brand .logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
  }
  .footer-nav .nav-menu {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
  }
  .nav-menu a {
    color: #555;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
  }
  .nav-menu a:hover {
    color: #007bff;
  }
  .footer-contacts ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
  }
  .footer-contacts li {
    color: #666;
    font-size: 0.95rem;
  }
  .footer-copyright {
    font-size: 0.9rem;
    color: #777;
  }
  .footer-copyright a {
    color: #555;
    text-decoration: none;
    margin: 0 0.5rem;
  }
  .footer-copyright a:hover {
    text-decoration: underline;
  }
  .footer-disclaimer {
    font-size: 0.8rem;
    color: #999;
    max-width: 800px;
    line-height: 1.4;
  }
  @media (max-width: 768px) {
    .footer-row.top-row,
    .footer-row.middle-row {
      flex-direction: column;
      align-items: flex-start;
      gap: 1.5rem;
    }
    .footer-nav .nav-menu {
      gap: 1.5rem;
    }
    .footer-contacts ul {
      flex-direction: column;
      gap: 0.75rem;
    }
    .footer-row.bottom-row {
      align-items: flex-start;
      text-align: left;
    }
  }

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

    .cookie-lv12__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-md);
        padding: calc(var(--space-y) * 0.9) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 12px var(--gap);
        align-items: center;
    }

    .cookie-lv12__title {
        font-weight: 700;
        color: var(--fg-on-surface);
    }

    .cookie-lv12 p {
        margin: 0;
        grid-column: 1 / 2;
        color: var(--fg-muted);
    }

    .cookie-lv12__actions {
        grid-row: 1 / 3;
        grid-column: 2 / 3;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
        justify-content: flex-end;
    }

    .cookie-lv12__actions button {
        border: 1px solid var(--border-on-surface);
        background: var(--surface-2);
        color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .cookie-lv12__actions button[data-choice='accept'] {
        background: var(--accent);
        color: var(--accent-contrast);
        border-color: transparent;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .cookie-lv12__wrap {
            grid-template-columns: 1fr;
        }

        .cookie-lv12 p,
        .cookie-lv12__actions {
            grid-column: auto;
            grid-row: auto;
        }

        .cookie-lv12__actions {
            justify-content: flex-start;
        }
    }

.blog-list {

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

    .blog-list .blog-list__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .blog-list .blog-list__h {
        text-align: center;
        margin-bottom: var(--space-y);
        color: var(--fg-on-page);
    }

    .blog-list h1 {
        font-size: clamp(28px, 5vw, 48px);
        margin: 0 0 0.5rem;
    }

    .blog-list .blog-list__grid {
        display: grid;
        gap: var(--space-x);
    }

    @media (min-width: 768px) {
        .blog-list .blog-list__grid {
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }
    }

    @media (min-width: 1024px) {
        .blog-list .blog-list__grid {
            grid-template-columns: repeat(3, minmax(0, 1fr));
        }
    }

    .blog-list .blog-list__card {
        background: var(--surface-1);
        border-radius: var(--radius-lg);
        overflow: hidden;
        box-shadow: var(--shadow-md);
        transition: transform var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
    }

    .blog-list .blog-list__card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-lg);
    }

    .blog-list .blog-list__image img {
        width: 100%;
        height: 200px;
        object-fit: cover;
    }

    .blog-list .blog-list__content {
        padding: clamp(16px, 2vw, 24px);
        color: var(--fg-on-page);
    }

    .blog-list .blog-list__date {
        color: var(--neutral-300);
        font-size: 0.875rem;
    }

    .blog-list h3 {
        margin: 0.5rem 0;
        font-size: clamp(18px, 2.2vw, 22px);
    }

    .blog-list h3 a {
        color: var(--fg-on-page);
        text-decoration: none;
    }

    .blog-list p {
        color: var(--neutral-300);
        margin: 0.5rem 0 1rem;
    }

    .blog-list .blog-list__read-more {
        color: var(--bg-primary);
        text-decoration: none;
        font-weight: 600;
    }

    .blog-list .blog-list__read-more:hover {
        text-decoration: underline;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}
.header__container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}
.header__logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    z-index: 1002;
}
.header__logo:hover {
    color: var(--accent);
}
.header__burger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 2rem;
    height: 1.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1002;
}
.burger__line {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
.header__nav {
    display: flex;
}
.nav__list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap);
}
.nav__link {
    color: var(--link);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}
.nav__link:hover {
    color: var(--link-hover);
    background-color: var(--btn-ghost-bg-hover);
}
.header__overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--overlay);
    z-index: 999;
    opacity: 0;
    transition: opacity var(--anim-duration) var(--anim-ease);
}
@media (max-width: 767px) {
    .header__burger {
        display: flex;
    }
    .header__nav {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        background-color: var(--surface-1);
        box-shadow: var(--shadow-lg);
        z-index: 1001;
        padding: 5rem var(--space-x) var(--space-y);
        transition: right var(--anim-duration) var(--anim-ease);
        overflow-y: auto;
    }
    .header__nav.is-open {
        right: 0;
    }
    .nav__list {
        flex-direction: column;
        gap: 0;
    }
    .nav__item {
        width: 100%;
    }
    .nav__link {
        display: block;
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-sm);
    }
    .header__overlay.is-active {
        display: block;
        opacity: 1;
    }
    .header__burger[aria-expanded="true"] .burger__line:nth-child(1) {
        transform: translateY(0.65rem) rotate(45deg);
    }
    .header__burger[aria-expanded="true"] .burger__line:nth-child(2) {
        opacity: 0;
    }
    .header__burger[aria-expanded="true"] .burger__line:nth-child(3) {
        transform: translateY(-0.65rem) rotate(-45deg);
    }
}

.site-footer {
    background-color: #f8f9fa;
    color: #333;
    border-top: 1px solid #dee2e6;
    padding: 2.5rem 1rem;
    font-family: system-ui, -apple-system, sans-serif;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    border-bottom: 1px solid #eaeaea;
  }
  .footer-row.top-row {
    align-items: flex-start;
    border-bottom: 1px solid #eaeaea;
  }
  .footer-row.middle-row {
    justify-content: flex-start;
    border-bottom: 1px solid #eaeaea;
  }
  .footer-row.bottom-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.75rem;
    border-bottom: none;
    padding-bottom: 0;
  }
  .footer-brand .logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
  }
  .footer-nav .nav-menu {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
  }
  .nav-menu a {
    color: #555;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
  }
  .nav-menu a:hover {
    color: #007bff;
  }
  .footer-contacts ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
  }
  .footer-contacts li {
    color: #666;
    font-size: 0.95rem;
  }
  .footer-copyright {
    font-size: 0.9rem;
    color: #777;
  }
  .footer-copyright a {
    color: #555;
    text-decoration: none;
    margin: 0 0.5rem;
  }
  .footer-copyright a:hover {
    text-decoration: underline;
  }
  .footer-disclaimer {
    font-size: 0.8rem;
    color: #999;
    max-width: 800px;
    line-height: 1.4;
  }
  @media (max-width: 768px) {
    .footer-row.top-row,
    .footer-row.middle-row {
      flex-direction: column;
      align-items: flex-start;
      gap: 1.5rem;
    }
    .footer-nav .nav-menu {
      gap: 1.5rem;
    }
    .footer-contacts ul {
      flex-direction: column;
      gap: 0.75rem;
    }
    .footer-row.bottom-row {
      align-items: flex-start;
      text-align: left;
    }
  }

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

    .cookie-lv12__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-md);
        padding: calc(var(--space-y) * 0.9) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 12px var(--gap);
        align-items: center;
    }

    .cookie-lv12__title {
        font-weight: 700;
        color: var(--fg-on-surface);
    }

    .cookie-lv12 p {
        margin: 0;
        grid-column: 1 / 2;
        color: var(--fg-muted);
    }

    .cookie-lv12__actions {
        grid-row: 1 / 3;
        grid-column: 2 / 3;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
        justify-content: flex-end;
    }

    .cookie-lv12__actions button {
        border: 1px solid var(--border-on-surface);
        background: var(--surface-2);
        color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .cookie-lv12__actions button[data-choice='accept'] {
        background: var(--accent);
        color: var(--accent-contrast);
        border-color: transparent;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .cookie-lv12__wrap {
            grid-template-columns: 1fr;
        }

        .cookie-lv12 p,
        .cookie-lv12__actions {
            grid-column: auto;
            grid-row: auto;
        }

        .cookie-lv12__actions {
            justify-content: flex-start;
        }
    }

.blog-item--colored-v5 {

    padding: 56px 20px;
    background: var(--neutral-900);
    color: var(--neutral-0);
}

.blog-item__inner {
    max-width: 720px;
    margin: 0 auto;
}

.blog-item__cover {
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid rgba(148,163,184,0.6);
    margin-bottom: 16px;
}

.blog-item__cover img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

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

.blog-item__meta {
    margin: 0;
    font-size: 0.9rem;
    color: var(--neutral-300);
}

.author {

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

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

    .author .author__content {
        display: grid;
        grid-template-columns: auto 1fr;
        gap: clamp(32px, 5vw, 48px);
        align-items: center;
    }

    .author .author__image {
        width: clamp(150px, 22vw, 220px);
        height: clamp(150px, 22vw, 220px);
        border-radius: var(--radius-lg);
        overflow: hidden;
        flex-shrink: 0;
    }

    .author .author__image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .author .author__info h3 {
        font-size: clamp(26px, 4.5vw, 36px);
        margin: 0 0 0.75rem;
        color: var(--fg-on-surface-light);
    }

    .author .author__role {
        font-size: clamp(16px, 2.5vw, 18px);
        color: var(--bg-accent);
        margin: 0 0 1.25rem;
        font-weight: 600;
    }

    .author .author__bio {
        font-size: clamp(15px, 2.2vw, 17px);
        line-height: 1.7;
        color: var(--neutral-600);
        margin: 0;
    }

    @media (max-width: 768px) {
        .author .author__content {
            grid-template-columns: 1fr;
            text-align: center;
        }
    }

.header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}
.header__container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}
.header__logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    z-index: 1002;
}
.header__logo:hover {
    color: var(--accent);
}
.header__burger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 2rem;
    height: 1.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1002;
}
.burger__line {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
.header__nav {
    display: flex;
}
.nav__list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap);
}
.nav__link {
    color: var(--link);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}
.nav__link:hover {
    color: var(--link-hover);
    background-color: var(--btn-ghost-bg-hover);
}
.header__overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--overlay);
    z-index: 999;
    opacity: 0;
    transition: opacity var(--anim-duration) var(--anim-ease);
}
@media (max-width: 767px) {
    .header__burger {
        display: flex;
    }
    .header__nav {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        background-color: var(--surface-1);
        box-shadow: var(--shadow-lg);
        z-index: 1001;
        padding: 5rem var(--space-x) var(--space-y);
        transition: right var(--anim-duration) var(--anim-ease);
        overflow-y: auto;
    }
    .header__nav.is-open {
        right: 0;
    }
    .nav__list {
        flex-direction: column;
        gap: 0;
    }
    .nav__item {
        width: 100%;
    }
    .nav__link {
        display: block;
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-sm);
    }
    .header__overlay.is-active {
        display: block;
        opacity: 1;
    }
    .header__burger[aria-expanded="true"] .burger__line:nth-child(1) {
        transform: translateY(0.65rem) rotate(45deg);
    }
    .header__burger[aria-expanded="true"] .burger__line:nth-child(2) {
        opacity: 0;
    }
    .header__burger[aria-expanded="true"] .burger__line:nth-child(3) {
        transform: translateY(-0.65rem) rotate(-45deg);
    }
}

.site-footer {
    background-color: #f8f9fa;
    color: #333;
    border-top: 1px solid #dee2e6;
    padding: 2.5rem 1rem;
    font-family: system-ui, -apple-system, sans-serif;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    border-bottom: 1px solid #eaeaea;
  }
  .footer-row.top-row {
    align-items: flex-start;
    border-bottom: 1px solid #eaeaea;
  }
  .footer-row.middle-row {
    justify-content: flex-start;
    border-bottom: 1px solid #eaeaea;
  }
  .footer-row.bottom-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.75rem;
    border-bottom: none;
    padding-bottom: 0;
  }
  .footer-brand .logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
  }
  .footer-nav .nav-menu {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
  }
  .nav-menu a {
    color: #555;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
  }
  .nav-menu a:hover {
    color: #007bff;
  }
  .footer-contacts ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
  }
  .footer-contacts li {
    color: #666;
    font-size: 0.95rem;
  }
  .footer-copyright {
    font-size: 0.9rem;
    color: #777;
  }
  .footer-copyright a {
    color: #555;
    text-decoration: none;
    margin: 0 0.5rem;
  }
  .footer-copyright a:hover {
    text-decoration: underline;
  }
  .footer-disclaimer {
    font-size: 0.8rem;
    color: #999;
    max-width: 800px;
    line-height: 1.4;
  }
  @media (max-width: 768px) {
    .footer-row.top-row,
    .footer-row.middle-row {
      flex-direction: column;
      align-items: flex-start;
      gap: 1.5rem;
    }
    .footer-nav .nav-menu {
      gap: 1.5rem;
    }
    .footer-contacts ul {
      flex-direction: column;
      gap: 0.75rem;
    }
    .footer-row.bottom-row {
      align-items: flex-start;
      text-align: left;
    }
  }

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

    .cookie-lv12__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-md);
        padding: calc(var(--space-y) * 0.9) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 12px var(--gap);
        align-items: center;
    }

    .cookie-lv12__title {
        font-weight: 700;
        color: var(--fg-on-surface);
    }

    .cookie-lv12 p {
        margin: 0;
        grid-column: 1 / 2;
        color: var(--fg-muted);
    }

    .cookie-lv12__actions {
        grid-row: 1 / 3;
        grid-column: 2 / 3;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
        justify-content: flex-end;
    }

    .cookie-lv12__actions button {
        border: 1px solid var(--border-on-surface);
        background: var(--surface-2);
        color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .cookie-lv12__actions button[data-choice='accept'] {
        background: var(--accent);
        color: var(--accent-contrast);
        border-color: transparent;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .cookie-lv12__wrap {
            grid-template-columns: 1fr;
        }

        .cookie-lv12 p,
        .cookie-lv12__actions {
            grid-column: auto;
            grid-row: auto;
        }

        .cookie-lv12__actions {
            justify-content: flex-start;
        }
    }

.blog-item--colored-v5 {
    padding: 56px 20px;
    background: var(--neutral-900);
    color: var(--neutral-0);
}

.blog-item__inner {
    max-width: 720px;
    margin: 0 auto;
}

.blog-item__cover {
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid rgba(148,163,184,0.6);
    margin-bottom: 16px;
}

.blog-item__cover img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

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

.blog-item__meta {
    margin: 0;
    font-size: 0.9rem;
    color: var(--neutral-300);
}
.blog-item__body {
    margin-top: var(--space-y);
    line-height: var(--line-height-base);
}
.blog-item__body h2 {
    color: var(--accent-color);
    margin-top: calc(var(--space-y) * 1.5);
    margin-bottom: calc(var(--space-y) / 2);
    font-size: 1.5rem;
}
.blog-item__body p, .blog-item__body ul {
    margin-bottom: var(--space-y);
}
.blog-item__body ul {
    padding-left: 1.2rem;
}
.blog-item__body li {
    margin-bottom: calc(var(--space-y) / 3);
}
.blog-item__related {
    margin-top: calc(var(--space-y) * 1.5);
    padding-top: var(--space-y);
    border-top: 1px solid var(--neutral-600);
}
.blog-item__related h3 {
    color: var(--neutral-300);
    margin-bottom: calc(var(--space-y) / 2);
    font-size: 1.1rem;
}
.blog-item__related ul {
    list-style: none;
    padding-left: 0;
}
.blog-item__related li {
    margin-bottom: calc(var(--space-y) / 2);
}
.blog-item__related a {
    color: var(--link);
    text-decoration: none;
}
.blog-item__related a:hover {
    color: var(--link-hover);
    text-decoration: underline;
}

.header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}
.header__container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}
.header__logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    z-index: 1002;
}
.header__logo:hover {
    color: var(--accent);
}
.header__burger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 2rem;
    height: 1.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1002;
}
.burger__line {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
.header__nav {
    display: flex;
}
.nav__list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap);
}
.nav__link {
    color: var(--link);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}
.nav__link:hover {
    color: var(--link-hover);
    background-color: var(--btn-ghost-bg-hover);
}
.header__overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--overlay);
    z-index: 999;
    opacity: 0;
    transition: opacity var(--anim-duration) var(--anim-ease);
}
@media (max-width: 767px) {
    .header__burger {
        display: flex;
    }
    .header__nav {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        background-color: var(--surface-1);
        box-shadow: var(--shadow-lg);
        z-index: 1001;
        padding: 5rem var(--space-x) var(--space-y);
        transition: right var(--anim-duration) var(--anim-ease);
        overflow-y: auto;
    }
    .header__nav.is-open {
        right: 0;
    }
    .nav__list {
        flex-direction: column;
        gap: 0;
    }
    .nav__item {
        width: 100%;
    }
    .nav__link {
        display: block;
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-sm);
    }
    .header__overlay.is-active {
        display: block;
        opacity: 1;
    }
    .header__burger[aria-expanded="true"] .burger__line:nth-child(1) {
        transform: translateY(0.65rem) rotate(45deg);
    }
    .header__burger[aria-expanded="true"] .burger__line:nth-child(2) {
        opacity: 0;
    }
    .header__burger[aria-expanded="true"] .burger__line:nth-child(3) {
        transform: translateY(-0.65rem) rotate(-45deg);
    }
}

.site-footer {
    background-color: #f8f9fa;
    color: #333;
    border-top: 1px solid #dee2e6;
    padding: 2.5rem 1rem;
    font-family: system-ui, -apple-system, sans-serif;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    border-bottom: 1px solid #eaeaea;
  }
  .footer-row.top-row {
    align-items: flex-start;
    border-bottom: 1px solid #eaeaea;
  }
  .footer-row.middle-row {
    justify-content: flex-start;
    border-bottom: 1px solid #eaeaea;
  }
  .footer-row.bottom-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.75rem;
    border-bottom: none;
    padding-bottom: 0;
  }
  .footer-brand .logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
  }
  .footer-nav .nav-menu {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
  }
  .nav-menu a {
    color: #555;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
  }
  .nav-menu a:hover {
    color: #007bff;
  }
  .footer-contacts ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
  }
  .footer-contacts li {
    color: #666;
    font-size: 0.95rem;
  }
  .footer-copyright {
    font-size: 0.9rem;
    color: #777;
  }
  .footer-copyright a {
    color: #555;
    text-decoration: none;
    margin: 0 0.5rem;
  }
  .footer-copyright a:hover {
    text-decoration: underline;
  }
  .footer-disclaimer {
    font-size: 0.8rem;
    color: #999;
    max-width: 800px;
    line-height: 1.4;
  }
  @media (max-width: 768px) {
    .footer-row.top-row,
    .footer-row.middle-row {
      flex-direction: column;
      align-items: flex-start;
      gap: 1.5rem;
    }
    .footer-nav .nav-menu {
      gap: 1.5rem;
    }
    .footer-contacts ul {
      flex-direction: column;
      gap: 0.75rem;
    }
    .footer-row.bottom-row {
      align-items: flex-start;
      text-align: left;
    }
  }

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

    .cookie-lv12__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-md);
        padding: calc(var(--space-y) * 0.9) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 12px var(--gap);
        align-items: center;
    }

    .cookie-lv12__title {
        font-weight: 700;
        color: var(--fg-on-surface);
    }

    .cookie-lv12 p {
        margin: 0;
        grid-column: 1 / 2;
        color: var(--fg-muted);
    }

    .cookie-lv12__actions {
        grid-row: 1 / 3;
        grid-column: 2 / 3;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
        justify-content: flex-end;
    }

    .cookie-lv12__actions button {
        border: 1px solid var(--border-on-surface);
        background: var(--surface-2);
        color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .cookie-lv12__actions button[data-choice='accept'] {
        background: var(--accent);
        color: var(--accent-contrast);
        border-color: transparent;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .cookie-lv12__wrap {
            grid-template-columns: 1fr;
        }

        .cookie-lv12 p,
        .cookie-lv12__actions {
            grid-column: auto;
            grid-row: auto;
        }

        .cookie-lv12__actions {
            justify-content: flex-start;
        }
    }

.blog-item--colored-v5 {

    padding: 56px 20px;
    background: var(--neutral-900);
    color: var(--neutral-0);
}

.blog-item__inner {
    max-width: 720px;
    margin: 0 auto;
}

.blog-item__cover {
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid rgba(148,163,184,0.6);
    margin-bottom: 16px;
}

.blog-item__cover img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

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

.blog-item__meta {
    margin: 0;
    font-size: 0.9rem;
    color: var(--neutral-300);
}

.articles--light-v6 {
    padding: 48px 20px;
    background: var(--bg-page);
    color: var(--fg-on-page);
}

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

.articles__title {
    margin: 0 0 16px;
    font-size: clamp(24px,4vw,30px);
}

.articles__list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
}

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

.articles__item h3 {
    margin: 0 0 4px;
    font-size: 1rem;
}

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

.header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}
.header__container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}
.header__logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    z-index: 1002;
}
.header__logo:hover {
    color: var(--accent);
}
.header__burger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 2rem;
    height: 1.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1002;
}
.burger__line {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
.header__nav {
    display: flex;
}
.nav__list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap);
}
.nav__link {
    color: var(--link);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}
.nav__link:hover {
    color: var(--link-hover);
    background-color: var(--btn-ghost-bg-hover);
}
.header__overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--overlay);
    z-index: 999;
    opacity: 0;
    transition: opacity var(--anim-duration) var(--anim-ease);
}
@media (max-width: 767px) {
    .header__burger {
        display: flex;
    }
    .header__nav {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        background-color: var(--surface-1);
        box-shadow: var(--shadow-lg);
        z-index: 1001;
        padding: 5rem var(--space-x) var(--space-y);
        transition: right var(--anim-duration) var(--anim-ease);
        overflow-y: auto;
    }
    .header__nav.is-open {
        right: 0;
    }
    .nav__list {
        flex-direction: column;
        gap: 0;
    }
    .nav__item {
        width: 100%;
    }
    .nav__link {
        display: block;
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-sm);
    }
    .header__overlay.is-active {
        display: block;
        opacity: 1;
    }
    .header__burger[aria-expanded="true"] .burger__line:nth-child(1) {
        transform: translateY(0.65rem) rotate(45deg);
    }
    .header__burger[aria-expanded="true"] .burger__line:nth-child(2) {
        opacity: 0;
    }
    .header__burger[aria-expanded="true"] .burger__line:nth-child(3) {
        transform: translateY(-0.65rem) rotate(-45deg);
    }
}

.site-footer {
    background-color: #f8f9fa;
    color: #333;
    border-top: 1px solid #dee2e6;
    padding: 2.5rem 1rem;
    font-family: system-ui, -apple-system, sans-serif;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    border-bottom: 1px solid #eaeaea;
  }
  .footer-row.top-row {
    align-items: flex-start;
    border-bottom: 1px solid #eaeaea;
  }
  .footer-row.middle-row {
    justify-content: flex-start;
    border-bottom: 1px solid #eaeaea;
  }
  .footer-row.bottom-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.75rem;
    border-bottom: none;
    padding-bottom: 0;
  }
  .footer-brand .logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
  }
  .footer-nav .nav-menu {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
  }
  .nav-menu a {
    color: #555;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
  }
  .nav-menu a:hover {
    color: #007bff;
  }
  .footer-contacts ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
  }
  .footer-contacts li {
    color: #666;
    font-size: 0.95rem;
  }
  .footer-copyright {
    font-size: 0.9rem;
    color: #777;
  }
  .footer-copyright a {
    color: #555;
    text-decoration: none;
    margin: 0 0.5rem;
  }
  .footer-copyright a:hover {
    text-decoration: underline;
  }
  .footer-disclaimer {
    font-size: 0.8rem;
    color: #999;
    max-width: 800px;
    line-height: 1.4;
  }
  @media (max-width: 768px) {
    .footer-row.top-row,
    .footer-row.middle-row {
      flex-direction: column;
      align-items: flex-start;
      gap: 1.5rem;
    }
    .footer-nav .nav-menu {
      gap: 1.5rem;
    }
    .footer-contacts ul {
      flex-direction: column;
      gap: 0.75rem;
    }
    .footer-row.bottom-row {
      align-items: flex-start;
      text-align: left;
    }
  }

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

    .cookie-lv12__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-md);
        padding: calc(var(--space-y) * 0.9) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 12px var(--gap);
        align-items: center;
    }

    .cookie-lv12__title {
        font-weight: 700;
        color: var(--fg-on-surface);
    }

    .cookie-lv12 p {
        margin: 0;
        grid-column: 1 / 2;
        color: var(--fg-muted);
    }

    .cookie-lv12__actions {
        grid-row: 1 / 3;
        grid-column: 2 / 3;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
        justify-content: flex-end;
    }

    .cookie-lv12__actions button {
        border: 1px solid var(--border-on-surface);
        background: var(--surface-2);
        color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .cookie-lv12__actions button[data-choice='accept'] {
        background: var(--accent);
        color: var(--accent-contrast);
        border-color: transparent;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .cookie-lv12__wrap {
            grid-template-columns: 1fr;
        }

        .cookie-lv12 p,
        .cookie-lv12__actions {
            grid-column: auto;
            grid-row: auto;
        }

        .cookie-lv12__actions {
            justify-content: flex-start;
        }
    }

.support-lv6 {
        padding: clamp(50px, 7vw, 90px) clamp(16px, 4vw, 36px);
        background: linear-gradient(180deg, var(--surface-2), var(--surface-1));
        color: var(--fg-on-page);
    }

    .support-lv6__wrap {
        max-width: 920px;
        margin: 0 auto;
    }

    .support-lv6__head {
        margin-bottom: 14px;
    }

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

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

    .support-lv6__table {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        overflow: hidden;
    }

    .support-lv6__table article {
        display: grid;
        grid-template-columns: .8fr 1.2fr;
        gap: 12px;
        padding: 12px;
        border-bottom: 1px solid var(--border-on-surface-light);
        background: var(--surface-1);
    }

    .support-lv6__table article:last-child {
        border-bottom: 0;
    }

    .support-lv6__table h3 {
        margin: 0;
        color: var(--brand);
        font-size: 1rem;
    }

    .support-lv6__table p {
        margin: 0;
        color: var(--neutral-600);
    }

    @media (max-width: 700px) {
        .support-lv6__table article {
            grid-template-columns: 1fr;
        }
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .faq-fresh-v1 h2 {
        margin: 0;
        font-size: clamp(1.8rem, 3.4vw, 2.6rem);
    }

    .faq-fresh-v1 .items {
        display: grid;
        gap: .8rem;
    }

    .faq-fresh-v1 details {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-md);
        padding: .85rem 1rem;
        background: var(--surface-1);
    }

    .faq-fresh-v1 summary {
        cursor: pointer;
        font-weight: 700;
    }

    .faq-fresh-v1 p {
        margin: .7rem 0 0;
        color: var(--fg-on-surface-light);
    }

.header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}
.header__container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}
.header__logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    z-index: 1002;
}
.header__logo:hover {
    color: var(--accent);
}
.header__burger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 2rem;
    height: 1.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1002;
}
.burger__line {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
.header__nav {
    display: flex;
}
.nav__list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap);
}
.nav__link {
    color: var(--link);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}
.nav__link:hover {
    color: var(--link-hover);
    background-color: var(--btn-ghost-bg-hover);
}
.header__overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--overlay);
    z-index: 999;
    opacity: 0;
    transition: opacity var(--anim-duration) var(--anim-ease);
}
@media (max-width: 767px) {
    .header__burger {
        display: flex;
    }
    .header__nav {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        background-color: var(--surface-1);
        box-shadow: var(--shadow-lg);
        z-index: 1001;
        padding: 5rem var(--space-x) var(--space-y);
        transition: right var(--anim-duration) var(--anim-ease);
        overflow-y: auto;
    }
    .header__nav.is-open {
        right: 0;
    }
    .nav__list {
        flex-direction: column;
        gap: 0;
    }
    .nav__item {
        width: 100%;
    }
    .nav__link {
        display: block;
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-sm);
    }
    .header__overlay.is-active {
        display: block;
        opacity: 1;
    }
    .header__burger[aria-expanded="true"] .burger__line:nth-child(1) {
        transform: translateY(0.65rem) rotate(45deg);
    }
    .header__burger[aria-expanded="true"] .burger__line:nth-child(2) {
        opacity: 0;
    }
    .header__burger[aria-expanded="true"] .burger__line:nth-child(3) {
        transform: translateY(-0.65rem) rotate(-45deg);
    }
}

.site-footer {
    background-color: #f8f9fa;
    color: #333;
    border-top: 1px solid #dee2e6;
    padding: 2.5rem 1rem;
    font-family: system-ui, -apple-system, sans-serif;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    border-bottom: 1px solid #eaeaea;
  }
  .footer-row.top-row {
    align-items: flex-start;
    border-bottom: 1px solid #eaeaea;
  }
  .footer-row.middle-row {
    justify-content: flex-start;
    border-bottom: 1px solid #eaeaea;
  }
  .footer-row.bottom-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.75rem;
    border-bottom: none;
    padding-bottom: 0;
  }
  .footer-brand .logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
  }
  .footer-nav .nav-menu {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
  }
  .nav-menu a {
    color: #555;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
  }
  .nav-menu a:hover {
    color: #007bff;
  }
  .footer-contacts ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
  }
  .footer-contacts li {
    color: #666;
    font-size: 0.95rem;
  }
  .footer-copyright {
    font-size: 0.9rem;
    color: #777;
  }
  .footer-copyright a {
    color: #555;
    text-decoration: none;
    margin: 0 0.5rem;
  }
  .footer-copyright a:hover {
    text-decoration: underline;
  }
  .footer-disclaimer {
    font-size: 0.8rem;
    color: #999;
    max-width: 800px;
    line-height: 1.4;
  }
  @media (max-width: 768px) {
    .footer-row.top-row,
    .footer-row.middle-row {
      flex-direction: column;
      align-items: flex-start;
      gap: 1.5rem;
    }
    .footer-nav .nav-menu {
      gap: 1.5rem;
    }
    .footer-contacts ul {
      flex-direction: column;
      gap: 0.75rem;
    }
    .footer-row.bottom-row {
      align-items: flex-start;
      text-align: left;
    }
  }

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

    .cookie-lv12__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-md);
        padding: calc(var(--space-y) * 0.9) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 12px var(--gap);
        align-items: center;
    }

    .cookie-lv12__title {
        font-weight: 700;
        color: var(--fg-on-surface);
    }

    .cookie-lv12 p {
        margin: 0;
        grid-column: 1 / 2;
        color: var(--fg-muted);
    }

    .cookie-lv12__actions {
        grid-row: 1 / 3;
        grid-column: 2 / 3;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
        justify-content: flex-end;
    }

    .cookie-lv12__actions button {
        border: 1px solid var(--border-on-surface);
        background: var(--surface-2);
        color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .cookie-lv12__actions button[data-choice='accept'] {
        background: var(--accent);
        color: var(--accent-contrast);
        border-color: transparent;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .cookie-lv12__wrap {
            grid-template-columns: 1fr;
        }

        .cookie-lv12 p,
        .cookie-lv12__actions {
            grid-column: auto;
            grid-row: auto;
        }

        .cookie-lv12__actions {
            justify-content: flex-start;
        }
    }

.connect {
        color: var(--fg-on-primary);
        background: var(--gradient-hero);
        padding: clamp(32px, 5vw, 64px) clamp(16px, 4vw, 40px);
    }

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

    .connect .connect__title {
        font-size: clamp(28px, 5vw, 48px);
        text-align: center;
        margin: 0 0 clamp(48px, 7vw, 72px);
        color: var(--brand-contrast);
    }

    .connect .connect__grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: clamp(24px, 4vw, 32px);
    }

    .connect .connect__item {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: var(--gap);
        padding: var(--space-x);
        background: var(--surface-1);
        border-radius: var(--radius-xl);
        border: 1px solid var(--border-on-surface);
        text-decoration: none;
        color: var(--fg-on-surface);
        transition: transform 0.3s, border-color 0.3s;
    }

    .connect .connect__item {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-md);
        animation: section-pulse-border 3s var(--anim-ease) infinite;
    }

    @keyframes section-pulse-border {
        0%, 100% {
            border-color: var(--border-on-surface);
            box-shadow: none;
        }
        50% {
            border-color: var(--brand);
            box-shadow: 0 0 0 3px var(--accent);
        }
    }

    .connect .connect__item:hover {
        transform: translateY(-6px);
        border-color: var(--bg-accent);
        color: var(--link);
    }

    .connect .connect__item span {
        font-size: clamp(17px, 2.8vw, 20px);
        font-weight: 600;
    }

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

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

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

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

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

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

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

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

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

    .form-layout-d button {
        border: 1px solid var(--brand);
        color: var(--brand);
        background: transparent;
        border-radius: 999px;
        padding: 9px 16px;
        cursor: pointer;
        font-weight: 600;
        transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }
    .form-layout-d button:hover {
        background-color: var(--brand);
        color: var(--brand-contrast);
    }

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

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

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

    .contacts-fresh-v5 .head p {
        margin: .35rem 0 0;
        opacity: .85;
    }

    .contacts-fresh-v5 .stack {
        display: grid;
        gap: .7rem;
    }

    .contacts-fresh-v5 details {
        background: var(--chip-bg);
        border-radius: var(--radius-md);
        padding: .8rem 1rem;
    }

    .contacts-fresh-v5 summary {
        cursor: pointer;
        font-weight: 700;
    }

    .contacts-fresh-v5 .inside {
        display: grid;
        gap: .4rem;
        padding-top: .6rem;
    }

    .contacts-fresh-v5 .inside p {
        margin: 0;
    }

    .contacts-fresh-v5 a {
        color: var(--accent);
        font-weight: 700;
        text-decoration: none;
    }

.header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}
.header__container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}
.header__logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    z-index: 1002;
}
.header__logo:hover {
    color: var(--accent);
}
.header__burger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 2rem;
    height: 1.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1002;
}
.burger__line {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
.header__nav {
    display: flex;
}
.nav__list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap);
}
.nav__link {
    color: var(--link);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}
.nav__link:hover {
    color: var(--link-hover);
    background-color: var(--btn-ghost-bg-hover);
}
.header__overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--overlay);
    z-index: 999;
    opacity: 0;
    transition: opacity var(--anim-duration) var(--anim-ease);
}
@media (max-width: 767px) {
    .header__burger {
        display: flex;
    }
    .header__nav {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        background-color: var(--surface-1);
        box-shadow: var(--shadow-lg);
        z-index: 1001;
        padding: 5rem var(--space-x) var(--space-y);
        transition: right var(--anim-duration) var(--anim-ease);
        overflow-y: auto;
    }
    .header__nav.is-open {
        right: 0;
    }
    .nav__list {
        flex-direction: column;
        gap: 0;
    }
    .nav__item {
        width: 100%;
    }
    .nav__link {
        display: block;
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-sm);
    }
    .header__overlay.is-active {
        display: block;
        opacity: 1;
    }
    .header__burger[aria-expanded="true"] .burger__line:nth-child(1) {
        transform: translateY(0.65rem) rotate(45deg);
    }
    .header__burger[aria-expanded="true"] .burger__line:nth-child(2) {
        opacity: 0;
    }
    .header__burger[aria-expanded="true"] .burger__line:nth-child(3) {
        transform: translateY(-0.65rem) rotate(-45deg);
    }
}

.site-footer {
    background-color: #f8f9fa;
    color: #333;
    border-top: 1px solid #dee2e6;
    padding: 2.5rem 1rem;
    font-family: system-ui, -apple-system, sans-serif;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    border-bottom: 1px solid #eaeaea;
  }
  .footer-row.top-row {
    align-items: flex-start;
    border-bottom: 1px solid #eaeaea;
  }
  .footer-row.middle-row {
    justify-content: flex-start;
    border-bottom: 1px solid #eaeaea;
  }
  .footer-row.bottom-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.75rem;
    border-bottom: none;
    padding-bottom: 0;
  }
  .footer-brand .logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
  }
  .footer-nav .nav-menu {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
  }
  .nav-menu a {
    color: #555;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
  }
  .nav-menu a:hover {
    color: #007bff;
  }
  .footer-contacts ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
  }
  .footer-contacts li {
    color: #666;
    font-size: 0.95rem;
  }
  .footer-copyright {
    font-size: 0.9rem;
    color: #777;
  }
  .footer-copyright a {
    color: #555;
    text-decoration: none;
    margin: 0 0.5rem;
  }
  .footer-copyright a:hover {
    text-decoration: underline;
  }
  .footer-disclaimer {
    font-size: 0.8rem;
    color: #999;
    max-width: 800px;
    line-height: 1.4;
  }
  @media (max-width: 768px) {
    .footer-row.top-row,
    .footer-row.middle-row {
      flex-direction: column;
      align-items: flex-start;
      gap: 1.5rem;
    }
    .footer-nav .nav-menu {
      gap: 1.5rem;
    }
    .footer-contacts ul {
      flex-direction: column;
      gap: 0.75rem;
    }
    .footer-row.bottom-row {
      align-items: flex-start;
      text-align: left;
    }
  }

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

    .cookie-lv12__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-md);
        padding: calc(var(--space-y) * 0.9) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 12px var(--gap);
        align-items: center;
    }

    .cookie-lv12__title {
        font-weight: 700;
        color: var(--fg-on-surface);
    }

    .cookie-lv12 p {
        margin: 0;
        grid-column: 1 / 2;
        color: var(--fg-muted);
    }

    .cookie-lv12__actions {
        grid-row: 1 / 3;
        grid-column: 2 / 3;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
        justify-content: flex-end;
    }

    .cookie-lv12__actions button {
        border: 1px solid var(--border-on-surface);
        background: var(--surface-2);
        color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .cookie-lv12__actions button[data-choice='accept'] {
        background: var(--accent);
        color: var(--accent-contrast);
        border-color: transparent;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .cookie-lv12__wrap {
            grid-template-columns: 1fr;
        }

        .cookie-lv12 p,
        .cookie-lv12__actions {
            grid-column: auto;
            grid-row: auto;
        }

        .cookie-lv12__actions {
            justify-content: flex-start;
        }
    }

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

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

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

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

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

    .policy-layout-b ol {
        margin: 0;
        padding-left: 18px;
        display: grid;
        gap: 10px;
    }

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

    .policy-layout-b h3 {
        margin: 0;
        color: var(--brand);
        font-size: 1rem;
    }

    .policy-layout-b li p {
        margin: 8px 0 0;
        color: var(--neutral-600);
    }

.header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}
.header__container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}
.header__logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    z-index: 1002;
}
.header__logo:hover {
    color: var(--accent);
}
.header__burger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 2rem;
    height: 1.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1002;
}
.burger__line {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
.header__nav {
    display: flex;
}
.nav__list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap);
}
.nav__link {
    color: var(--link);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}
.nav__link:hover {
    color: var(--link-hover);
    background-color: var(--btn-ghost-bg-hover);
}
.header__overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--overlay);
    z-index: 999;
    opacity: 0;
    transition: opacity var(--anim-duration) var(--anim-ease);
}
@media (max-width: 767px) {
    .header__burger {
        display: flex;
    }
    .header__nav {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        background-color: var(--surface-1);
        box-shadow: var(--shadow-lg);
        z-index: 1001;
        padding: 5rem var(--space-x) var(--space-y);
        transition: right var(--anim-duration) var(--anim-ease);
        overflow-y: auto;
    }
    .header__nav.is-open {
        right: 0;
    }
    .nav__list {
        flex-direction: column;
        gap: 0;
    }
    .nav__item {
        width: 100%;
    }
    .nav__link {
        display: block;
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-sm);
    }
    .header__overlay.is-active {
        display: block;
        opacity: 1;
    }
    .header__burger[aria-expanded="true"] .burger__line:nth-child(1) {
        transform: translateY(0.65rem) rotate(45deg);
    }
    .header__burger[aria-expanded="true"] .burger__line:nth-child(2) {
        opacity: 0;
    }
    .header__burger[aria-expanded="true"] .burger__line:nth-child(3) {
        transform: translateY(-0.65rem) rotate(-45deg);
    }
}

.site-footer {
    background-color: #f8f9fa;
    color: #333;
    border-top: 1px solid #dee2e6;
    padding: 2.5rem 1rem;
    font-family: system-ui, -apple-system, sans-serif;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    border-bottom: 1px solid #eaeaea;
  }
  .footer-row.top-row {
    align-items: flex-start;
    border-bottom: 1px solid #eaeaea;
  }
  .footer-row.middle-row {
    justify-content: flex-start;
    border-bottom: 1px solid #eaeaea;
  }
  .footer-row.bottom-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.75rem;
    border-bottom: none;
    padding-bottom: 0;
  }
  .footer-brand .logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
  }
  .footer-nav .nav-menu {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
  }
  .nav-menu a {
    color: #555;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
  }
  .nav-menu a:hover {
    color: #007bff;
  }
  .footer-contacts ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
  }
  .footer-contacts li {
    color: #666;
    font-size: 0.95rem;
  }
  .footer-copyright {
    font-size: 0.9rem;
    color: #777;
  }
  .footer-copyright a {
    color: #555;
    text-decoration: none;
    margin: 0 0.5rem;
  }
  .footer-copyright a:hover {
    text-decoration: underline;
  }
  .footer-disclaimer {
    font-size: 0.8rem;
    color: #999;
    max-width: 800px;
    line-height: 1.4;
  }
  @media (max-width: 768px) {
    .footer-row.top-row,
    .footer-row.middle-row {
      flex-direction: column;
      align-items: flex-start;
      gap: 1.5rem;
    }
    .footer-nav .nav-menu {
      gap: 1.5rem;
    }
    .footer-contacts ul {
      flex-direction: column;
      gap: 0.75rem;
    }
    .footer-row.bottom-row {
      align-items: flex-start;
      text-align: left;
    }
  }

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

    .cookie-lv12__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-md);
        padding: calc(var(--space-y) * 0.9) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 12px var(--gap);
        align-items: center;
    }

    .cookie-lv12__title {
        font-weight: 700;
        color: var(--fg-on-surface);
    }

    .cookie-lv12 p {
        margin: 0;
        grid-column: 1 / 2;
        color: var(--fg-muted);
    }

    .cookie-lv12__actions {
        grid-row: 1 / 3;
        grid-column: 2 / 3;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
        justify-content: flex-end;
    }

    .cookie-lv12__actions button {
        border: 1px solid var(--border-on-surface);
        background: var(--surface-2);
        color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .cookie-lv12__actions button[data-choice='accept'] {
        background: var(--accent);
        color: var(--accent-contrast);
        border-color: transparent;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .cookie-lv12__wrap {
            grid-template-columns: 1fr;
        }

        .cookie-lv12 p,
        .cookie-lv12__actions {
            grid-column: auto;
            grid-row: auto;
        }

        .cookie-lv12__actions {
            justify-content: flex-start;
        }
    }

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

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

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

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

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

    .policy-layout-f .rows {
        display: grid;
        gap: 10px;
    }

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

    .policy-layout-f .head {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .policy-layout-f .head span {
        min-width: 30px;
        height: 30px;
        display: grid;
        place-items: center;
        border-radius: 50%;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        font-weight: 700;
    }

    .policy-layout-f .head h3 {
        margin: 0;
    }

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

.header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}
.header__container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}
.header__logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    z-index: 1002;
}
.header__logo:hover {
    color: var(--accent);
}
.header__burger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 2rem;
    height: 1.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1002;
}
.burger__line {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
.header__nav {
    display: flex;
}
.nav__list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap);
}
.nav__link {
    color: var(--link);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}
.nav__link:hover {
    color: var(--link-hover);
    background-color: var(--btn-ghost-bg-hover);
}
.header__overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--overlay);
    z-index: 999;
    opacity: 0;
    transition: opacity var(--anim-duration) var(--anim-ease);
}
@media (max-width: 767px) {
    .header__burger {
        display: flex;
    }
    .header__nav {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        background-color: var(--surface-1);
        box-shadow: var(--shadow-lg);
        z-index: 1001;
        padding: 5rem var(--space-x) var(--space-y);
        transition: right var(--anim-duration) var(--anim-ease);
        overflow-y: auto;
    }
    .header__nav.is-open {
        right: 0;
    }
    .nav__list {
        flex-direction: column;
        gap: 0;
    }
    .nav__item {
        width: 100%;
    }
    .nav__link {
        display: block;
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-sm);
    }
    .header__overlay.is-active {
        display: block;
        opacity: 1;
    }
    .header__burger[aria-expanded="true"] .burger__line:nth-child(1) {
        transform: translateY(0.65rem) rotate(45deg);
    }
    .header__burger[aria-expanded="true"] .burger__line:nth-child(2) {
        opacity: 0;
    }
    .header__burger[aria-expanded="true"] .burger__line:nth-child(3) {
        transform: translateY(-0.65rem) rotate(-45deg);
    }
}

.site-footer {
    background-color: #f8f9fa;
    color: #333;
    border-top: 1px solid #dee2e6;
    padding: 2.5rem 1rem;
    font-family: system-ui, -apple-system, sans-serif;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    border-bottom: 1px solid #eaeaea;
  }
  .footer-row.top-row {
    align-items: flex-start;
    border-bottom: 1px solid #eaeaea;
  }
  .footer-row.middle-row {
    justify-content: flex-start;
    border-bottom: 1px solid #eaeaea;
  }
  .footer-row.bottom-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.75rem;
    border-bottom: none;
    padding-bottom: 0;
  }
  .footer-brand .logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
  }
  .footer-nav .nav-menu {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
  }
  .nav-menu a {
    color: #555;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
  }
  .nav-menu a:hover {
    color: #007bff;
  }
  .footer-contacts ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
  }
  .footer-contacts li {
    color: #666;
    font-size: 0.95rem;
  }
  .footer-copyright {
    font-size: 0.9rem;
    color: #777;
  }
  .footer-copyright a {
    color: #555;
    text-decoration: none;
    margin: 0 0.5rem;
  }
  .footer-copyright a:hover {
    text-decoration: underline;
  }
  .footer-disclaimer {
    font-size: 0.8rem;
    color: #999;
    max-width: 800px;
    line-height: 1.4;
  }
  @media (max-width: 768px) {
    .footer-row.top-row,
    .footer-row.middle-row {
      flex-direction: column;
      align-items: flex-start;
      gap: 1.5rem;
    }
    .footer-nav .nav-menu {
      gap: 1.5rem;
    }
    .footer-contacts ul {
      flex-direction: column;
      gap: 0.75rem;
    }
    .footer-row.bottom-row {
      align-items: flex-start;
      text-align: left;
    }
  }

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

    .cookie-lv12__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-md);
        padding: calc(var(--space-y) * 0.9) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 12px var(--gap);
        align-items: center;
    }

    .cookie-lv12__title {
        font-weight: 700;
        color: var(--fg-on-surface);
    }

    .cookie-lv12 p {
        margin: 0;
        grid-column: 1 / 2;
        color: var(--fg-muted);
    }

    .cookie-lv12__actions {
        grid-row: 1 / 3;
        grid-column: 2 / 3;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
        justify-content: flex-end;
    }

    .cookie-lv12__actions button {
        border: 1px solid var(--border-on-surface);
        background: var(--surface-2);
        color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .cookie-lv12__actions button[data-choice='accept'] {
        background: var(--accent);
        color: var(--accent-contrast);
        border-color: transparent;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .cookie-lv12__wrap {
            grid-template-columns: 1fr;
        }

        .cookie-lv12 p,
        .cookie-lv12__actions {
            grid-column: auto;
            grid-row: auto;
        }

        .cookie-lv12__actions {
            justify-content: flex-start;
        }
    }

.thank-mode-f {
        padding: clamp(56px, 10vw, 112px) 18px;
        background: var(--surface-1);
        color: var(--fg-on-page);
    }

    .thank-mode-f .shell {
        max-width: 760px;
        margin: 0 auto;
        text-align: center;
        border-radius: var(--radius-xl);
        padding: clamp(30px, 4vw, 46px);
        background: linear-gradient(180deg, var(--surface-1), var(--surface-2));
        border: 1px solid var(--border-on-surface-light);
    }

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

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

    .thank-mode-f a {
        display: inline-block;
        margin-top: 18px;
        padding: 10px 16px;
        border-radius: var(--radius-md);
        text-decoration: none;
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
    }

.header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}
.header__container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}
.header__logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    z-index: 1002;
}
.header__logo:hover {
    color: var(--accent);
}
.header__burger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 2rem;
    height: 1.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1002;
}
.burger__line {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
.header__nav {
    display: flex;
}
.nav__list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap);
}
.nav__link {
    color: var(--link);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}
.nav__link:hover {
    color: var(--link-hover);
    background-color: var(--btn-ghost-bg-hover);
}
.header__overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--overlay);
    z-index: 999;
    opacity: 0;
    transition: opacity var(--anim-duration) var(--anim-ease);
}
@media (max-width: 767px) {
    .header__burger {
        display: flex;
    }
    .header__nav {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        background-color: var(--surface-1);
        box-shadow: var(--shadow-lg);
        z-index: 1001;
        padding: 5rem var(--space-x) var(--space-y);
        transition: right var(--anim-duration) var(--anim-ease);
        overflow-y: auto;
    }
    .header__nav.is-open {
        right: 0;
    }
    .nav__list {
        flex-direction: column;
        gap: 0;
    }
    .nav__item {
        width: 100%;
    }
    .nav__link {
        display: block;
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-sm);
    }
    .header__overlay.is-active {
        display: block;
        opacity: 1;
    }
    .header__burger[aria-expanded="true"] .burger__line:nth-child(1) {
        transform: translateY(0.65rem) rotate(45deg);
    }
    .header__burger[aria-expanded="true"] .burger__line:nth-child(2) {
        opacity: 0;
    }
    .header__burger[aria-expanded="true"] .burger__line:nth-child(3) {
        transform: translateY(-0.65rem) rotate(-45deg);
    }
}

.site-footer {
    background-color: #f8f9fa;
    color: #333;
    border-top: 1px solid #dee2e6;
    padding: 2.5rem 1rem;
    font-family: system-ui, -apple-system, sans-serif;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    border-bottom: 1px solid #eaeaea;
  }
  .footer-row.top-row {
    align-items: flex-start;
    border-bottom: 1px solid #eaeaea;
  }
  .footer-row.middle-row {
    justify-content: flex-start;
    border-bottom: 1px solid #eaeaea;
  }
  .footer-row.bottom-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.75rem;
    border-bottom: none;
    padding-bottom: 0;
  }
  .footer-brand .logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
  }
  .footer-nav .nav-menu {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
  }
  .nav-menu a {
    color: #555;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
  }
  .nav-menu a:hover {
    color: #007bff;
  }
  .footer-contacts ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
  }
  .footer-contacts li {
    color: #666;
    font-size: 0.95rem;
  }
  .footer-copyright {
    font-size: 0.9rem;
    color: #777;
  }
  .footer-copyright a {
    color: #555;
    text-decoration: none;
    margin: 0 0.5rem;
  }
  .footer-copyright a:hover {
    text-decoration: underline;
  }
  .footer-disclaimer {
    font-size: 0.8rem;
    color: #999;
    max-width: 800px;
    line-height: 1.4;
  }
  @media (max-width: 768px) {
    .footer-row.top-row,
    .footer-row.middle-row {
      flex-direction: column;
      align-items: flex-start;
      gap: 1.5rem;
    }
    .footer-nav .nav-menu {
      gap: 1.5rem;
    }
    .footer-contacts ul {
      flex-direction: column;
      gap: 0.75rem;
    }
    .footer-row.bottom-row {
      align-items: flex-start;
      text-align: left;
    }
  }

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

    .cookie-lv12__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-md);
        padding: calc(var(--space-y) * 0.9) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 12px var(--gap);
        align-items: center;
    }

    .cookie-lv12__title {
        font-weight: 700;
        color: var(--fg-on-surface);
    }

    .cookie-lv12 p {
        margin: 0;
        grid-column: 1 / 2;
        color: var(--fg-muted);
    }

    .cookie-lv12__actions {
        grid-row: 1 / 3;
        grid-column: 2 / 3;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
        justify-content: flex-end;
    }

    .cookie-lv12__actions button {
        border: 1px solid var(--border-on-surface);
        background: var(--surface-2);
        color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .cookie-lv12__actions button[data-choice='accept'] {
        background: var(--accent);
        color: var(--accent-contrast);
        border-color: transparent;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .cookie-lv12__wrap {
            grid-template-columns: 1fr;
        }

        .cookie-lv12 p,
        .cookie-lv12__actions {
            grid-column: auto;
            grid-row: auto;
        }

        .cookie-lv12__actions {
            justify-content: flex-start;
        }
    }

.nf404-v9 {
        padding: clamp(56px, 10vw, 112px) 20px;
        background: var(--accent);
        color: var(--accent-contrast);
    }

    .nf404-v9__card {
        max-width: 760px;
        margin: 0 auto;
        text-align: center;
        border-radius: var(--radius-xl);
        border: 1px solid rgba(255, 255, 255, .26);
        background: rgba(255, 255, 255, .08);
        padding: clamp(28px, 4vw, 46px);
    }

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

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

    .nf404-v9 a {
        display: inline-block;
        margin-top: 18px;
        padding: 10px 16px;
        border-radius: var(--radius-md);
        color: var(--accent-contrast);
        text-decoration: none;
        border: 1px solid rgba(255, 255, 255, .45);
    }