:root {
  --font-family: "IBM Plex Sans", sans-serif;
  --font-size-base: 15.8px;
  --line-height-base: 1.54;

  --max-w: 1140px;
  --space-x: 1.29rem;
  --space-y: 1.45rem;
  --gap: 0.84rem;

  --radius-xl: 1.07rem;
  --radius-lg: 0.77rem;
  --radius-md: 0.43rem;
  --radius-sm: 0.27rem;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.13);
  --shadow-md: 0 4px 14px rgba(0,0,0,0.17);
  --shadow-lg: 0 10px 26px rgba(0,0,0,0.21);

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

  --brand: #2563eb;
  --brand-contrast: #ffffff;
  --accent: #3b82f6;
  --accent-contrast: #ffffff;

  --neutral-0: #ffffff;
  --neutral-100: #f8fafc;
  --neutral-300: #cbd5e1;
  --neutral-600: #475569;
  --neutral-800: #1e293b;
  --neutral-900: #0f172a;

  --bg-page: #ffffff;
  --fg-on-page: #0f172a;

  --bg-alt: #f8fafc;
  --fg-on-alt: #1e293b;

  --surface-1: #ffffff;
  --surface-2: #f1f5f9;
  --fg-on-surface: #0f172a;
  --border-on-surface: #e2e8f0;

  --surface-light: #ffffff;
  --fg-on-surface-light: #475569;
  --border-on-surface-light: #e2e8f0;

  --bg-primary: #2563eb;
  --fg-on-primary: #ffffff;
  --bg-primary-hover: #1d4ed8;
  --ring: #3b82f6;

  --bg-accent: #dbeafe;
  --fg-on-accent: #1e40af;
  --bg-accent-hover: #60a5fa;

  --link: #2563eb;
  --link-hover: #1d4ed8;

  --gradient-hero: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
  --gradient-accent: linear-gradient(90deg, #dbeafe 0%, #eff6ff 100%);

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

.site-header {
        background-color: var(--surface-1);
        border-bottom: 1px solid var(--border-on-surface-light);
        padding: var(--space-y) 0;
        position: sticky;
        top: 0;
        z-index: 100;
    }

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

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

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

    .main-nav {
        flex-grow: 1;
        display: flex;
        justify-content: center;
    }

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

    .nav-link {
        color: var(--fg-on-surface);
        text-decoration: none;
        font-weight: 500;
        padding: calc(var(--space-y) / 2) var(--space-x);
        border-radius: var(--radius-sm);
        transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }

    .nav-link:hover,
    .nav-link:focus {
        background-color: var(--btn-ghost-bg-hover);
        color: var(--link-hover);
    }

    .cta-button {
        background-color: var(--bg-primary);
        color: var(--fg-on-primary);
        padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 1.5);
        border-radius: var(--radius-lg);
        text-decoration: none;
        font-weight: 600;
        white-space: nowrap;
        flex-shrink: 0;
        transition: background-color var(--anim-duration) var(--anim-ease);
    }

    .cta-button:hover,
    .cta-button:focus {
        background-color: var(--bg-primary-hover);
    }

    .burger-menu {
        display: none;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 24px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 101;
    }

    .burger-line {
        display: block;
        height: 3px;
        width: 100%;
        background-color: var(--neutral-800);
        border-radius: var(--radius-sm);
        transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
    }

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

        .main-nav {
            position: fixed;
            top: 0;
            right: 0;
            bottom: 0;
            background-color: var(--surface-2);
            width: 70%;
            max-width: 300px;
            padding: calc(var(--space-y) * 3) var(--space-x);
            transform: translateX(100%);
            transition: transform var(--anim-duration) var(--anim-ease);
            box-shadow: var(--shadow-lg);
            z-index: 100;
            justify-content: flex-start;
            overflow-y: auto;
        }

        .main-nav.is-active {
            transform: translateX(0);
        }

        .nav-list {
            flex-direction: column;
            gap: var(--gap);
            width: 100%;
        }

        .nav-link {
            display: block;
            padding: var(--space-y) var(--space-x);
        }

        .cta-button {
            display: none;
        }

        .burger-menu[aria-expanded="true"] .burger-line:nth-child(1) {
            transform: translateY(10.5px) rotate(45deg);
        }

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

        .burger-menu[aria-expanded="true"] .burger-line:nth-child(3) {
            transform: translateY(-10.5px) rotate(-45deg);
        }
    }

.footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 3rem 1.5rem 1.5rem;
        display: flex;
        flex-direction: column;
        gap: 2.5rem;
        font-family: system-ui, -apple-system, sans-serif;
        color: #333;
        border-top: 1px solid #eaeaea;
    }
    .footer-brand {
        flex: 1;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #1a56db;
        margin: 0 0 0.5rem 0;
    }
    .footer-tagline {
        color: #6b7280;
        margin: 0;
        line-height: 1.5;
    }
    .footer-right {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    .footer-nav a {
        text-decoration: none;
        color: #4b5563;
        font-weight: 500;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #1a56db;
    }
    .footer-legal-links {
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .footer-legal-links a {
        text-decoration: none;
        color: #6b7280;
        font-size: 0.9rem;
    }
    .footer-legal-links a:hover {
        text-decoration: underline;
        color: #374151;
    }
    .footer-contacts {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        color: #4b5563;
        padding-top: 1.5rem;
        border-top: 1px solid #e5e7eb;
    }
    .footer-contacts address {
        font-style: normal;
    }
    .footer-contacts a {
        text-decoration: none;
        color: #4b5563;
    }
    .footer-contacts a:hover {
        color: #1a56db;
        text-decoration: underline;
    }
    .footer-bottom {
        padding-top: 1.5rem;
        border-top: 1px solid #e5e7eb;
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
        color: #6b7280;
        font-size: 0.85rem;
    }
    .footer-copyright {
        margin: 0;
        order: 2;
    }
    .footer-disclaimer {
        margin: 0;
        line-height: 1.5;
        order: 1;
    }
    @media (min-width: 768px) {
        .footer-container {
            flex-direction: row;
            flex-wrap: wrap;
        }
        .footer-brand, .footer-right {
            flex: 0 0 50%;
        }
        .footer-contacts {
            flex-direction: row;
            flex-wrap: wrap;
            gap: 2rem;
            order: 3;
            width: 100%;
            border-top: none;
            padding-top: 0;
        }
        .footer-bottom {
            flex-direction: row;
            justify-content: space-between;
            align-items: center;
            order: 4;
            width: 100%;
            text-align: left;
        }
        .footer-disclaimer {
            order: 2;
            max-width: 70%;
            text-align: right;
        }
        .footer-copyright {
            order: 1;
        }
    }
    @media (min-width: 1024px) {
        .footer-right {
            flex-direction: row;
            justify-content: space-between;
        }
        .footer-nav ul {
            flex-direction: row;
            gap: 2rem;
        }
    }

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

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

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

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

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

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

.intro-spokes-c3 {
        padding: clamp(4rem, 9vw, 7rem) var(--space-x);
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
    }

    .intro-spokes-c3__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        gap: 1.5rem;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .intro-spokes-c3__hero {
        flex: 1 1 22rem;
    }

    .intro-spokes-c3__hero p {
        margin: 0;
        color: rgba(255, 255, 255, .76);
        letter-spacing: .12em;
        text-transform: uppercase;
        font-size: .82rem;
    }

    .intro-spokes-c3__hero h1 {
        margin: .6rem 0 0;
        font-size: clamp(2.5rem, 5vw, 4.6rem);
        line-height: 1.02;
    }

    .intro-spokes-c3__hero span {
        display: block;
        margin-top: 1rem;
        color: rgba(255, 255, 255, .88);
        max-width: 38rem;
    }

    .intro-spokes-c3__wheel {
        flex: 0 0 18rem;
        min-height: 18rem;
        position: relative;
    }

    .intro-spokes-c3__core {
        position: absolute;
        inset: 50% auto auto 50%;
        transform: translate(-50%, -50%);
        width: 8rem;
        height: 8rem;
        display: grid;
        place-items: center;
        border-radius: 50%;
        background: rgba(255, 255, 255, .16);
        font-size: 2.2rem;
        font-weight: 700;
    }

    .intro-spokes-c3__note {
        position: absolute;
        padding: .6rem .8rem;
        border-radius: 999px;
        background: rgba(255, 255, 255, .14);
        border: 1px solid rgba(255, 255, 255, .18);
    }

    .intro-spokes-c3__note--a {
        top: 0;
        left: 18%;
    }

    .intro-spokes-c3__note--b {
        right: 0;
        top: 42%;
    }

    .intro-spokes-c3__note--c {
        left: 0;
        bottom: 12%;
    }

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

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

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

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

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

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

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

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

    .cta-struct-v2 .actions a, .cta-struct-v2 .center a, .cta-struct-v2 .banner > a, .cta-struct-v2 .duo a {
        display: inline-flex;
        min-height: 2.35rem;
        padding: 0 .85rem;
        align-items: center;
        border-radius: var(--radius-sm);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border: 1px solid var(--ring)
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.values-papers-l6 {
        padding: clamp(3.1rem, 7vw, 5.7rem) var(--space-x);
        background: linear-gradient(180deg, var(--surface-1), var(--bg-alt));
        color: var(--fg-on-page);
    }

    .values-papers-l6__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .values-papers-l6__head {
        margin-bottom: 1.1rem;
    }

    .values-papers-l6__head p {
        margin: 0;
        color: var(--brand);
        font-size: .82rem;
        letter-spacing: .1em;
        text-transform: uppercase;
    }

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

    .values-papers-l6__grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
        gap: var(--gap);
    }

    .values-papers-l6__grid article {
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        border: 1px dashed var(--border-on-surface-light);
    }

    .values-papers-l6__grid div {
        font-size: 1.25rem;
    }

    .values-papers-l6__grid h3 {
        margin: .75rem 0 .35rem;
    }

    .values-papers-l6__grid p {
        margin: 0;
        color: var(--neutral-600);
    }

    .values-papers-l6__grid small {
        display: block;
        margin-top: .55rem;
        color: var(--neutral-800);
    }

.site-header {
        background-color: var(--surface-1);
        border-bottom: 1px solid var(--border-on-surface-light);
        padding: var(--space-y) 0;
        position: sticky;
        top: 0;
        z-index: 100;
    }

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

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

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

    .main-nav {
        flex-grow: 1;
        display: flex;
        justify-content: center;
    }

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

    .nav-link {
        color: var(--fg-on-surface);
        text-decoration: none;
        font-weight: 500;
        padding: calc(var(--space-y) / 2) var(--space-x);
        border-radius: var(--radius-sm);
        transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }

    .nav-link:hover,
    .nav-link:focus {
        background-color: var(--btn-ghost-bg-hover);
        color: var(--link-hover);
    }

    .cta-button {
        background-color: var(--bg-primary);
        color: var(--fg-on-primary);
        padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 1.5);
        border-radius: var(--radius-lg);
        text-decoration: none;
        font-weight: 600;
        white-space: nowrap;
        flex-shrink: 0;
        transition: background-color var(--anim-duration) var(--anim-ease);
    }

    .cta-button:hover,
    .cta-button:focus {
        background-color: var(--bg-primary-hover);
    }

    .burger-menu {
        display: none;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 24px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 101;
    }

    .burger-line {
        display: block;
        height: 3px;
        width: 100%;
        background-color: var(--neutral-800);
        border-radius: var(--radius-sm);
        transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
    }

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

        .main-nav {
            position: fixed;
            top: 0;
            right: 0;
            bottom: 0;
            background-color: var(--surface-2);
            width: 70%;
            max-width: 300px;
            padding: calc(var(--space-y) * 3) var(--space-x);
            transform: translateX(100%);
            transition: transform var(--anim-duration) var(--anim-ease);
            box-shadow: var(--shadow-lg);
            z-index: 100;
            justify-content: flex-start;
            overflow-y: auto;
        }

        .main-nav.is-active {
            transform: translateX(0);
        }

        .nav-list {
            flex-direction: column;
            gap: var(--gap);
            width: 100%;
        }

        .nav-link {
            display: block;
            padding: var(--space-y) var(--space-x);
        }

        .cta-button {
            display: none;
        }

        .burger-menu[aria-expanded="true"] .burger-line:nth-child(1) {
            transform: translateY(10.5px) rotate(45deg);
        }

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

        .burger-menu[aria-expanded="true"] .burger-line:nth-child(3) {
            transform: translateY(-10.5px) rotate(-45deg);
        }
    }

.footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 3rem 1.5rem 1.5rem;
        display: flex;
        flex-direction: column;
        gap: 2.5rem;
        font-family: system-ui, -apple-system, sans-serif;
        color: #333;
        border-top: 1px solid #eaeaea;
    }
    .footer-brand {
        flex: 1;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #1a56db;
        margin: 0 0 0.5rem 0;
    }
    .footer-tagline {
        color: #6b7280;
        margin: 0;
        line-height: 1.5;
    }
    .footer-right {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    .footer-nav a {
        text-decoration: none;
        color: #4b5563;
        font-weight: 500;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #1a56db;
    }
    .footer-legal-links {
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .footer-legal-links a {
        text-decoration: none;
        color: #6b7280;
        font-size: 0.9rem;
    }
    .footer-legal-links a:hover {
        text-decoration: underline;
        color: #374151;
    }
    .footer-contacts {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        color: #4b5563;
        padding-top: 1.5rem;
        border-top: 1px solid #e5e7eb;
    }
    .footer-contacts address {
        font-style: normal;
    }
    .footer-contacts a {
        text-decoration: none;
        color: #4b5563;
    }
    .footer-contacts a:hover {
        color: #1a56db;
        text-decoration: underline;
    }
    .footer-bottom {
        padding-top: 1.5rem;
        border-top: 1px solid #e5e7eb;
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
        color: #6b7280;
        font-size: 0.85rem;
    }
    .footer-copyright {
        margin: 0;
        order: 2;
    }
    .footer-disclaimer {
        margin: 0;
        line-height: 1.5;
        order: 1;
    }
    @media (min-width: 768px) {
        .footer-container {
            flex-direction: row;
            flex-wrap: wrap;
        }
        .footer-brand, .footer-right {
            flex: 0 0 50%;
        }
        .footer-contacts {
            flex-direction: row;
            flex-wrap: wrap;
            gap: 2rem;
            order: 3;
            width: 100%;
            border-top: none;
            padding-top: 0;
        }
        .footer-bottom {
            flex-direction: row;
            justify-content: space-between;
            align-items: center;
            order: 4;
            width: 100%;
            text-align: left;
        }
        .footer-disclaimer {
            order: 2;
            max-width: 70%;
            text-align: right;
        }
        .footer-copyright {
            order: 1;
        }
    }
    @media (min-width: 1024px) {
        .footer-right {
            flex-direction: row;
            justify-content: space-between;
        }
        .footer-nav ul {
            flex-direction: row;
            gap: 2rem;
        }
    }

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

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

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

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

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

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

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

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

.partners__header {
    text-align: center;
    margin-bottom: 20px;
}

.partners__header h2 {
    margin: 0 0 4px;
    font-size: clamp(22px,3.5vw,28px);
    color: var(--brand-contrast);
}

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

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

.partners__logo {
    border-radius: var(--radius-xl);
    padding: 10px 12px;
    background: rgba(15,23,42,0.96);
    border: 1px solid rgba(148,163,184,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
}

.partners__logo--gold {
    border-color: var(--accent);
}
.partners__logo--prime {
    border-color: var(--bg-primary);
}
.partners__logo--trusted {
    border-color: var(--accent);
}

.partners__logo-text {
    font-size: 0.9rem;
    color: var(--neutral-0);
}

.identity-lv4 {
        padding: clamp(50px, 7vw, 90px) clamp(16px, 4vw, 36px);
        background: var(--surface-1);
        color: var(--fg-on-page);
    }

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

    .identity-lv4__head {
        margin-bottom: 15px;
    }

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

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

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

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

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

    .identity-lv4__line {
        display: flex;
        align-items: baseline;
        gap: 8px;
        flex-wrap: wrap;
    }

    .identity-lv4__line i {
        font-style: normal;
        color: var(--link);
    }

    .identity-lv4__line h3 {
        margin: 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.site-header {
        background-color: var(--surface-1);
        border-bottom: 1px solid var(--border-on-surface-light);
        padding: var(--space-y) 0;
        position: sticky;
        top: 0;
        z-index: 100;
    }

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

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

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

    .main-nav {
        flex-grow: 1;
        display: flex;
        justify-content: center;
    }

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

    .nav-link {
        color: var(--fg-on-surface);
        text-decoration: none;
        font-weight: 500;
        padding: calc(var(--space-y) / 2) var(--space-x);
        border-radius: var(--radius-sm);
        transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }

    .nav-link:hover,
    .nav-link:focus {
        background-color: var(--btn-ghost-bg-hover);
        color: var(--link-hover);
    }

    .cta-button {
        background-color: var(--bg-primary);
        color: var(--fg-on-primary);
        padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 1.5);
        border-radius: var(--radius-lg);
        text-decoration: none;
        font-weight: 600;
        white-space: nowrap;
        flex-shrink: 0;
        transition: background-color var(--anim-duration) var(--anim-ease);
    }

    .cta-button:hover,
    .cta-button:focus {
        background-color: var(--bg-primary-hover);
    }

    .burger-menu {
        display: none;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 24px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 101;
    }

    .burger-line {
        display: block;
        height: 3px;
        width: 100%;
        background-color: var(--neutral-800);
        border-radius: var(--radius-sm);
        transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
    }

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

        .main-nav {
            position: fixed;
            top: 0;
            right: 0;
            bottom: 0;
            background-color: var(--surface-2);
            width: 70%;
            max-width: 300px;
            padding: calc(var(--space-y) * 3) var(--space-x);
            transform: translateX(100%);
            transition: transform var(--anim-duration) var(--anim-ease);
            box-shadow: var(--shadow-lg);
            z-index: 100;
            justify-content: flex-start;
            overflow-y: auto;
        }

        .main-nav.is-active {
            transform: translateX(0);
        }

        .nav-list {
            flex-direction: column;
            gap: var(--gap);
            width: 100%;
        }

        .nav-link {
            display: block;
            padding: var(--space-y) var(--space-x);
        }

        .cta-button {
            display: none;
        }

        .burger-menu[aria-expanded="true"] .burger-line:nth-child(1) {
            transform: translateY(10.5px) rotate(45deg);
        }

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

        .burger-menu[aria-expanded="true"] .burger-line:nth-child(3) {
            transform: translateY(-10.5px) rotate(-45deg);
        }
    }

.footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 3rem 1.5rem 1.5rem;
        display: flex;
        flex-direction: column;
        gap: 2.5rem;
        font-family: system-ui, -apple-system, sans-serif;
        color: #333;
        border-top: 1px solid #eaeaea;
    }
    .footer-brand {
        flex: 1;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #1a56db;
        margin: 0 0 0.5rem 0;
    }
    .footer-tagline {
        color: #6b7280;
        margin: 0;
        line-height: 1.5;
    }
    .footer-right {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    .footer-nav a {
        text-decoration: none;
        color: #4b5563;
        font-weight: 500;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #1a56db;
    }
    .footer-legal-links {
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .footer-legal-links a {
        text-decoration: none;
        color: #6b7280;
        font-size: 0.9rem;
    }
    .footer-legal-links a:hover {
        text-decoration: underline;
        color: #374151;
    }
    .footer-contacts {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        color: #4b5563;
        padding-top: 1.5rem;
        border-top: 1px solid #e5e7eb;
    }
    .footer-contacts address {
        font-style: normal;
    }
    .footer-contacts a {
        text-decoration: none;
        color: #4b5563;
    }
    .footer-contacts a:hover {
        color: #1a56db;
        text-decoration: underline;
    }
    .footer-bottom {
        padding-top: 1.5rem;
        border-top: 1px solid #e5e7eb;
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
        color: #6b7280;
        font-size: 0.85rem;
    }
    .footer-copyright {
        margin: 0;
        order: 2;
    }
    .footer-disclaimer {
        margin: 0;
        line-height: 1.5;
        order: 1;
    }
    @media (min-width: 768px) {
        .footer-container {
            flex-direction: row;
            flex-wrap: wrap;
        }
        .footer-brand, .footer-right {
            flex: 0 0 50%;
        }
        .footer-contacts {
            flex-direction: row;
            flex-wrap: wrap;
            gap: 2rem;
            order: 3;
            width: 100%;
            border-top: none;
            padding-top: 0;
        }
        .footer-bottom {
            flex-direction: row;
            justify-content: space-between;
            align-items: center;
            order: 4;
            width: 100%;
            text-align: left;
        }
        .footer-disclaimer {
            order: 2;
            max-width: 70%;
            text-align: right;
        }
        .footer-copyright {
            order: 1;
        }
    }
    @media (min-width: 1024px) {
        .footer-right {
            flex-direction: row;
            justify-content: space-between;
        }
        .footer-nav ul {
            flex-direction: row;
            gap: 2rem;
        }
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.index-feedback {
        background: radial-gradient(circle at 20% 25%, rgba(255, 255, 255, 0.7), transparent 60%),
        radial-gradient(circle at 85% 65%, rgba(212, 165, 165, 0.35), transparent 55%),
        var(--gradient-accent);
        color: var(--fg-on-primary);
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 40px);
        overflow: hidden;
    }

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

    .index-feedback__h {
        text-align: center;
        margin-bottom: clamp(28px, 6vw, 60px);

        transform: translateY(-18px);
    }

    .index-feedback__eyebrow {
        margin: 0 0 10px;
        text-transform: uppercase;
        letter-spacing: 0.22em;
        font-size: 12px;
        color: rgba(58, 46, 61, 0.75);
    }

    .index-feedback__h h2 {
        margin: 0;
        font-size: clamp(28px, 4.6vw, 48px);
        letter-spacing: -0.02em;
        color: var(--fg-on-page);
    }

    .index-feedback__grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
        gap: clamp(14px, 2.6vw, 22px);
    }

    .index-feedback__card {
        border-radius: var(--radius-xl);
        border: 1px solid rgba(58, 46, 61, 0.12);
        background: rgba(255, 255, 255, 0.6);
        box-shadow: var(--shadow-lg);
        padding: clamp(18px, 3vw, 26px);
        backdrop-filter: blur(10px);

        transform: translateY(28px);
        position: relative;
        overflow: hidden;
    }

    .index-feedback__card::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.6), transparent 55%);
        opacity: 0.6;
        pointer-events: none;
    }

    .index-feedback__top {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 14px;
        position: relative;
        z-index: 1;
    }

    .index-feedback__who {
        display: flex;
        align-items: center;
        gap: 12px;
        min-width: 0;
    }

    .index-feedback__name {
        margin: 0;
        font-size: 16px;
        font-weight: 700;
        color: var(--fg-on-page);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 18ch;
    }

    .index-feedback__meta {
        margin: 2px 0 0;
        font-size: 13px;
        color: rgba(58, 46, 61, 0.7);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 22ch;
    }

    .index-feedback__rating {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 8px 10px;
        border-radius: 999px;
        background: var(--bg-page);
        border: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-sm);
        flex: 0 0 auto;
    }

    .index-feedback__stars {
        font-size: 14px;
        letter-spacing: 0.08em;
        color: var(--accent);
        line-height: 1;
    }

    .index-feedback__score {
        font-size: 12px;
        font-weight: 700;
        color: var(--fg-on-page);
    }

    .index-feedback__quote {
        margin: 14px 0 0;
        position: relative;
        z-index: 1;
        color: rgba(58, 46, 61, 0.88);
        font-size: 14px;
        line-height: 1.65;
    }

    .index-feedback__badge {
        display: inline-flex;
        margin-top: 12px;
        position: relative;
        z-index: 1;
        padding: 6px 10px;
        border-radius: 999px;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border: 1px solid var(--border-on-surface-light);
        font-size: 11px;
        letter-spacing: 0.14em;
        text-transform: uppercase;
    }

.hiw-column-l5 {
        padding: clamp(3.2rem, 7vw, 5.8rem) var(--space-x);
        background: linear-gradient(180deg, var(--surface-1), var(--bg-alt));
        color: var(--fg-on-page);
    }

    .hiw-column-l5__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1.15fr .85fr;
        gap: 1.25rem;
    }

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

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

    .hiw-column-l5__copy {
        margin: .85rem 0 0;
        color: var(--neutral-600);
    }

    .hiw-column-l5__side {
        padding: 1rem;
        border-radius: var(--radius-xl);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface-light);
        box-shadow: var(--shadow-sm);
    }

    .hiw-column-l5__side img {
        display: block;
        width: 100%;
        border-radius: var(--radius-lg);
    }

    .hiw-column-l5__side strong {
        display: block;
        margin-top: .9rem;
        color: var(--brand);
    }

    .hiw-column-l5__item {
        margin-top: .65rem;
        padding: .75rem .85rem;
        border-radius: var(--radius-md);
        background: var(--surface-2);
    }

    @media (max-width: 840px) {
        .hiw-column-l5__wrap {
            grid-template-columns: 1fr;
        }
    }

.site-header {
        background-color: var(--surface-1);
        border-bottom: 1px solid var(--border-on-surface-light);
        padding: var(--space-y) 0;
        position: sticky;
        top: 0;
        z-index: 100;
    }

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

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

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

    .main-nav {
        flex-grow: 1;
        display: flex;
        justify-content: center;
    }

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

    .nav-link {
        color: var(--fg-on-surface);
        text-decoration: none;
        font-weight: 500;
        padding: calc(var(--space-y) / 2) var(--space-x);
        border-radius: var(--radius-sm);
        transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }

    .nav-link:hover,
    .nav-link:focus {
        background-color: var(--btn-ghost-bg-hover);
        color: var(--link-hover);
    }

    .cta-button {
        background-color: var(--bg-primary);
        color: var(--fg-on-primary);
        padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 1.5);
        border-radius: var(--radius-lg);
        text-decoration: none;
        font-weight: 600;
        white-space: nowrap;
        flex-shrink: 0;
        transition: background-color var(--anim-duration) var(--anim-ease);
    }

    .cta-button:hover,
    .cta-button:focus {
        background-color: var(--bg-primary-hover);
    }

    .burger-menu {
        display: none;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 24px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 101;
    }

    .burger-line {
        display: block;
        height: 3px;
        width: 100%;
        background-color: var(--neutral-800);
        border-radius: var(--radius-sm);
        transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
    }

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

        .main-nav {
            position: fixed;
            top: 0;
            right: 0;
            bottom: 0;
            background-color: var(--surface-2);
            width: 70%;
            max-width: 300px;
            padding: calc(var(--space-y) * 3) var(--space-x);
            transform: translateX(100%);
            transition: transform var(--anim-duration) var(--anim-ease);
            box-shadow: var(--shadow-lg);
            z-index: 100;
            justify-content: flex-start;
            overflow-y: auto;
        }

        .main-nav.is-active {
            transform: translateX(0);
        }

        .nav-list {
            flex-direction: column;
            gap: var(--gap);
            width: 100%;
        }

        .nav-link {
            display: block;
            padding: var(--space-y) var(--space-x);
        }

        .cta-button {
            display: none;
        }

        .burger-menu[aria-expanded="true"] .burger-line:nth-child(1) {
            transform: translateY(10.5px) rotate(45deg);
        }

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

        .burger-menu[aria-expanded="true"] .burger-line:nth-child(3) {
            transform: translateY(-10.5px) rotate(-45deg);
        }
    }

.footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 3rem 1.5rem 1.5rem;
        display: flex;
        flex-direction: column;
        gap: 2.5rem;
        font-family: system-ui, -apple-system, sans-serif;
        color: #333;
        border-top: 1px solid #eaeaea;
    }
    .footer-brand {
        flex: 1;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #1a56db;
        margin: 0 0 0.5rem 0;
    }
    .footer-tagline {
        color: #6b7280;
        margin: 0;
        line-height: 1.5;
    }
    .footer-right {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    .footer-nav a {
        text-decoration: none;
        color: #4b5563;
        font-weight: 500;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #1a56db;
    }
    .footer-legal-links {
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .footer-legal-links a {
        text-decoration: none;
        color: #6b7280;
        font-size: 0.9rem;
    }
    .footer-legal-links a:hover {
        text-decoration: underline;
        color: #374151;
    }
    .footer-contacts {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        color: #4b5563;
        padding-top: 1.5rem;
        border-top: 1px solid #e5e7eb;
    }
    .footer-contacts address {
        font-style: normal;
    }
    .footer-contacts a {
        text-decoration: none;
        color: #4b5563;
    }
    .footer-contacts a:hover {
        color: #1a56db;
        text-decoration: underline;
    }
    .footer-bottom {
        padding-top: 1.5rem;
        border-top: 1px solid #e5e7eb;
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
        color: #6b7280;
        font-size: 0.85rem;
    }
    .footer-copyright {
        margin: 0;
        order: 2;
    }
    .footer-disclaimer {
        margin: 0;
        line-height: 1.5;
        order: 1;
    }
    @media (min-width: 768px) {
        .footer-container {
            flex-direction: row;
            flex-wrap: wrap;
        }
        .footer-brand, .footer-right {
            flex: 0 0 50%;
        }
        .footer-contacts {
            flex-direction: row;
            flex-wrap: wrap;
            gap: 2rem;
            order: 3;
            width: 100%;
            border-top: none;
            padding-top: 0;
        }
        .footer-bottom {
            flex-direction: row;
            justify-content: space-between;
            align-items: center;
            order: 4;
            width: 100%;
            text-align: left;
        }
        .footer-disclaimer {
            order: 2;
            max-width: 70%;
            text-align: right;
        }
        .footer-copyright {
            order: 1;
        }
    }
    @media (min-width: 1024px) {
        .footer-right {
            flex-direction: row;
            justify-content: space-between;
        }
        .footer-nav ul {
            flex-direction: row;
            gap: 2rem;
        }
    }

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

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

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

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

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

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

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

    .form-layout-a .wrap {
        max-width: 820px;
        margin: 0 auto;
    }

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

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

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

    .form-layout-a .card {
        border: 1px solid rgba(255, 255, 255, .28);
        border-radius: var(--radius-lg);
        padding: 16px;
        background: rgba(255, 255, 255, .1);
    }

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

    .form-layout-a input:not([type="checkbox"]), .form-layout-a textarea {
        width: 100%;
        border: 1px solid rgba(255, 255, 255, .34);
        border-radius: var(--radius-sm);
        background: rgba(255, 255, 255, .15);
        color: var(--fg-on-primary);
        padding: 9px;
        font: inherit;
    }

    .form-layout-a .agree {
        display: flex;
        gap: 8px;
        align-items: center;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .contact-layout-e .row a {
        color: var(--link);
        text-decoration: none;
    }

    .contact-layout-e .row a:hover {
        color: var(--link-hover);
        text-decoration: underline;
    }

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

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

    .map-poster-c7__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        gap: 1.25rem;
        flex-wrap: wrap;
        align-items: start;
    }

    .map-poster-c7__copy {
        flex: 1 1 18rem;
    }

    .map-poster-c7__embed {
        flex: 1 1 24rem;
    }

    .map-poster-c7__copy p {
        margin: 0;
        color: rgba(255, 255, 255, .76);
        font-size: .82rem;
        text-transform: uppercase;
        letter-spacing: .1em;
    }

    .map-poster-c7__copy h2 {
        margin: .55rem 0 0;
        font-size: clamp(2rem, 4vw, 3.2rem);
    }

    .map-poster-c7__details {
        margin-top: 1rem;
        display: grid;
        gap: .75rem;
    }

    .map-poster-c7__details div {
        padding: .9rem;
        border-radius: var(--radius-md);
        background: rgba(255, 255, 255, .12);
        border: 1px solid rgba(255, 255, 255, .18);
    }

    .map-poster-c7__details span {
        display: block;
        margin-top: .35rem;
        color: rgba(255, 255, 255, .84);
    }

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

.site-header {
        background-color: var(--surface-1);
        border-bottom: 1px solid var(--border-on-surface-light);
        padding: var(--space-y) 0;
        position: sticky;
        top: 0;
        z-index: 100;
    }

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

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

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

    .main-nav {
        flex-grow: 1;
        display: flex;
        justify-content: center;
    }

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

    .nav-link {
        color: var(--fg-on-surface);
        text-decoration: none;
        font-weight: 500;
        padding: calc(var(--space-y) / 2) var(--space-x);
        border-radius: var(--radius-sm);
        transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }

    .nav-link:hover,
    .nav-link:focus {
        background-color: var(--btn-ghost-bg-hover);
        color: var(--link-hover);
    }

    .cta-button {
        background-color: var(--bg-primary);
        color: var(--fg-on-primary);
        padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 1.5);
        border-radius: var(--radius-lg);
        text-decoration: none;
        font-weight: 600;
        white-space: nowrap;
        flex-shrink: 0;
        transition: background-color var(--anim-duration) var(--anim-ease);
    }

    .cta-button:hover,
    .cta-button:focus {
        background-color: var(--bg-primary-hover);
    }

    .burger-menu {
        display: none;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 24px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 101;
    }

    .burger-line {
        display: block;
        height: 3px;
        width: 100%;
        background-color: var(--neutral-800);
        border-radius: var(--radius-sm);
        transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
    }

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

        .main-nav {
            position: fixed;
            top: 0;
            right: 0;
            bottom: 0;
            background-color: var(--surface-2);
            width: 70%;
            max-width: 300px;
            padding: calc(var(--space-y) * 3) var(--space-x);
            transform: translateX(100%);
            transition: transform var(--anim-duration) var(--anim-ease);
            box-shadow: var(--shadow-lg);
            z-index: 100;
            justify-content: flex-start;
            overflow-y: auto;
        }

        .main-nav.is-active {
            transform: translateX(0);
        }

        .nav-list {
            flex-direction: column;
            gap: var(--gap);
            width: 100%;
        }

        .nav-link {
            display: block;
            padding: var(--space-y) var(--space-x);
        }

        .cta-button {
            display: none;
        }

        .burger-menu[aria-expanded="true"] .burger-line:nth-child(1) {
            transform: translateY(10.5px) rotate(45deg);
        }

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

        .burger-menu[aria-expanded="true"] .burger-line:nth-child(3) {
            transform: translateY(-10.5px) rotate(-45deg);
        }
    }

.footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 3rem 1.5rem 1.5rem;
        display: flex;
        flex-direction: column;
        gap: 2.5rem;
        font-family: system-ui, -apple-system, sans-serif;
        color: #333;
        border-top: 1px solid #eaeaea;
    }
    .footer-brand {
        flex: 1;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #1a56db;
        margin: 0 0 0.5rem 0;
    }
    .footer-tagline {
        color: #6b7280;
        margin: 0;
        line-height: 1.5;
    }
    .footer-right {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    .footer-nav a {
        text-decoration: none;
        color: #4b5563;
        font-weight: 500;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #1a56db;
    }
    .footer-legal-links {
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .footer-legal-links a {
        text-decoration: none;
        color: #6b7280;
        font-size: 0.9rem;
    }
    .footer-legal-links a:hover {
        text-decoration: underline;
        color: #374151;
    }
    .footer-contacts {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        color: #4b5563;
        padding-top: 1.5rem;
        border-top: 1px solid #e5e7eb;
    }
    .footer-contacts address {
        font-style: normal;
    }
    .footer-contacts a {
        text-decoration: none;
        color: #4b5563;
    }
    .footer-contacts a:hover {
        color: #1a56db;
        text-decoration: underline;
    }
    .footer-bottom {
        padding-top: 1.5rem;
        border-top: 1px solid #e5e7eb;
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
        color: #6b7280;
        font-size: 0.85rem;
    }
    .footer-copyright {
        margin: 0;
        order: 2;
    }
    .footer-disclaimer {
        margin: 0;
        line-height: 1.5;
        order: 1;
    }
    @media (min-width: 768px) {
        .footer-container {
            flex-direction: row;
            flex-wrap: wrap;
        }
        .footer-brand, .footer-right {
            flex: 0 0 50%;
        }
        .footer-contacts {
            flex-direction: row;
            flex-wrap: wrap;
            gap: 2rem;
            order: 3;
            width: 100%;
            border-top: none;
            padding-top: 0;
        }
        .footer-bottom {
            flex-direction: row;
            justify-content: space-between;
            align-items: center;
            order: 4;
            width: 100%;
            text-align: left;
        }
        .footer-disclaimer {
            order: 2;
            max-width: 70%;
            text-align: right;
        }
        .footer-copyright {
            order: 1;
        }
    }
    @media (min-width: 1024px) {
        .footer-right {
            flex-direction: row;
            justify-content: space-between;
        }
        .footer-nav ul {
            flex-direction: row;
            gap: 2rem;
        }
    }

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

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

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

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

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

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

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

    .policy-layout-c .wrap {
        max-width: 920px;
        margin: 0 auto;
    }

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

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

    .policy-layout-c .section-head p {
        margin: 10px 0 0;
        opacity: .92;
    }

    .policy-layout-c .stack {
        display: grid;
        gap: 10px;
    }

    .policy-layout-c article {
        border: 1px solid rgba(255, 255, 255, .3);
        border-radius: var(--radius-md);
        padding: 12px;
        background: rgba(255, 255, 255, .1);
    }

    .policy-layout-c h3 {
        margin: 0;
        display: flex;
        gap: 8px;
        align-items: center;
    }

    .policy-layout-c h3 span {
        display: inline-grid;
        place-items: center;
        width: 28px;
        height: 28px;
        border-radius: 50%;
        background: rgba(255, 255, 255, .18);
    }

    .policy-layout-c article p {
        margin: 8px 0 0;
        opacity: .95;
    }

.site-header {
        background-color: var(--surface-1);
        border-bottom: 1px solid var(--border-on-surface-light);
        padding: var(--space-y) 0;
        position: sticky;
        top: 0;
        z-index: 100;
    }

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

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

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

    .main-nav {
        flex-grow: 1;
        display: flex;
        justify-content: center;
    }

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

    .nav-link {
        color: var(--fg-on-surface);
        text-decoration: none;
        font-weight: 500;
        padding: calc(var(--space-y) / 2) var(--space-x);
        border-radius: var(--radius-sm);
        transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }

    .nav-link:hover,
    .nav-link:focus {
        background-color: var(--btn-ghost-bg-hover);
        color: var(--link-hover);
    }

    .cta-button {
        background-color: var(--bg-primary);
        color: var(--fg-on-primary);
        padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 1.5);
        border-radius: var(--radius-lg);
        text-decoration: none;
        font-weight: 600;
        white-space: nowrap;
        flex-shrink: 0;
        transition: background-color var(--anim-duration) var(--anim-ease);
    }

    .cta-button:hover,
    .cta-button:focus {
        background-color: var(--bg-primary-hover);
    }

    .burger-menu {
        display: none;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 24px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 101;
    }

    .burger-line {
        display: block;
        height: 3px;
        width: 100%;
        background-color: var(--neutral-800);
        border-radius: var(--radius-sm);
        transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
    }

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

        .main-nav {
            position: fixed;
            top: 0;
            right: 0;
            bottom: 0;
            background-color: var(--surface-2);
            width: 70%;
            max-width: 300px;
            padding: calc(var(--space-y) * 3) var(--space-x);
            transform: translateX(100%);
            transition: transform var(--anim-duration) var(--anim-ease);
            box-shadow: var(--shadow-lg);
            z-index: 100;
            justify-content: flex-start;
            overflow-y: auto;
        }

        .main-nav.is-active {
            transform: translateX(0);
        }

        .nav-list {
            flex-direction: column;
            gap: var(--gap);
            width: 100%;
        }

        .nav-link {
            display: block;
            padding: var(--space-y) var(--space-x);
        }

        .cta-button {
            display: none;
        }

        .burger-menu[aria-expanded="true"] .burger-line:nth-child(1) {
            transform: translateY(10.5px) rotate(45deg);
        }

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

        .burger-menu[aria-expanded="true"] .burger-line:nth-child(3) {
            transform: translateY(-10.5px) rotate(-45deg);
        }
    }

.footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 3rem 1.5rem 1.5rem;
        display: flex;
        flex-direction: column;
        gap: 2.5rem;
        font-family: system-ui, -apple-system, sans-serif;
        color: #333;
        border-top: 1px solid #eaeaea;
    }
    .footer-brand {
        flex: 1;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #1a56db;
        margin: 0 0 0.5rem 0;
    }
    .footer-tagline {
        color: #6b7280;
        margin: 0;
        line-height: 1.5;
    }
    .footer-right {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    .footer-nav a {
        text-decoration: none;
        color: #4b5563;
        font-weight: 500;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #1a56db;
    }
    .footer-legal-links {
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .footer-legal-links a {
        text-decoration: none;
        color: #6b7280;
        font-size: 0.9rem;
    }
    .footer-legal-links a:hover {
        text-decoration: underline;
        color: #374151;
    }
    .footer-contacts {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        color: #4b5563;
        padding-top: 1.5rem;
        border-top: 1px solid #e5e7eb;
    }
    .footer-contacts address {
        font-style: normal;
    }
    .footer-contacts a {
        text-decoration: none;
        color: #4b5563;
    }
    .footer-contacts a:hover {
        color: #1a56db;
        text-decoration: underline;
    }
    .footer-bottom {
        padding-top: 1.5rem;
        border-top: 1px solid #e5e7eb;
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
        color: #6b7280;
        font-size: 0.85rem;
    }
    .footer-copyright {
        margin: 0;
        order: 2;
    }
    .footer-disclaimer {
        margin: 0;
        line-height: 1.5;
        order: 1;
    }
    @media (min-width: 768px) {
        .footer-container {
            flex-direction: row;
            flex-wrap: wrap;
        }
        .footer-brand, .footer-right {
            flex: 0 0 50%;
        }
        .footer-contacts {
            flex-direction: row;
            flex-wrap: wrap;
            gap: 2rem;
            order: 3;
            width: 100%;
            border-top: none;
            padding-top: 0;
        }
        .footer-bottom {
            flex-direction: row;
            justify-content: space-between;
            align-items: center;
            order: 4;
            width: 100%;
            text-align: left;
        }
        .footer-disclaimer {
            order: 2;
            max-width: 70%;
            text-align: right;
        }
        .footer-copyright {
            order: 1;
        }
    }
    @media (min-width: 1024px) {
        .footer-right {
            flex-direction: row;
            justify-content: space-between;
        }
        .footer-nav ul {
            flex-direction: row;
            gap: 2rem;
        }
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.site-header {
        background-color: var(--surface-1);
        border-bottom: 1px solid var(--border-on-surface-light);
        padding: var(--space-y) 0;
        position: sticky;
        top: 0;
        z-index: 100;
    }

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

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

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

    .main-nav {
        flex-grow: 1;
        display: flex;
        justify-content: center;
    }

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

    .nav-link {
        color: var(--fg-on-surface);
        text-decoration: none;
        font-weight: 500;
        padding: calc(var(--space-y) / 2) var(--space-x);
        border-radius: var(--radius-sm);
        transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }

    .nav-link:hover,
    .nav-link:focus {
        background-color: var(--btn-ghost-bg-hover);
        color: var(--link-hover);
    }

    .cta-button {
        background-color: var(--bg-primary);
        color: var(--fg-on-primary);
        padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 1.5);
        border-radius: var(--radius-lg);
        text-decoration: none;
        font-weight: 600;
        white-space: nowrap;
        flex-shrink: 0;
        transition: background-color var(--anim-duration) var(--anim-ease);
    }

    .cta-button:hover,
    .cta-button:focus {
        background-color: var(--bg-primary-hover);
    }

    .burger-menu {
        display: none;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 24px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 101;
    }

    .burger-line {
        display: block;
        height: 3px;
        width: 100%;
        background-color: var(--neutral-800);
        border-radius: var(--radius-sm);
        transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
    }

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

        .main-nav {
            position: fixed;
            top: 0;
            right: 0;
            bottom: 0;
            background-color: var(--surface-2);
            width: 70%;
            max-width: 300px;
            padding: calc(var(--space-y) * 3) var(--space-x);
            transform: translateX(100%);
            transition: transform var(--anim-duration) var(--anim-ease);
            box-shadow: var(--shadow-lg);
            z-index: 100;
            justify-content: flex-start;
            overflow-y: auto;
        }

        .main-nav.is-active {
            transform: translateX(0);
        }

        .nav-list {
            flex-direction: column;
            gap: var(--gap);
            width: 100%;
        }

        .nav-link {
            display: block;
            padding: var(--space-y) var(--space-x);
        }

        .cta-button {
            display: none;
        }

        .burger-menu[aria-expanded="true"] .burger-line:nth-child(1) {
            transform: translateY(10.5px) rotate(45deg);
        }

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

        .burger-menu[aria-expanded="true"] .burger-line:nth-child(3) {
            transform: translateY(-10.5px) rotate(-45deg);
        }
    }

.footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 3rem 1.5rem 1.5rem;
        display: flex;
        flex-direction: column;
        gap: 2.5rem;
        font-family: system-ui, -apple-system, sans-serif;
        color: #333;
        border-top: 1px solid #eaeaea;
    }
    .footer-brand {
        flex: 1;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #1a56db;
        margin: 0 0 0.5rem 0;
    }
    .footer-tagline {
        color: #6b7280;
        margin: 0;
        line-height: 1.5;
    }
    .footer-right {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    .footer-nav a {
        text-decoration: none;
        color: #4b5563;
        font-weight: 500;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #1a56db;
    }
    .footer-legal-links {
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .footer-legal-links a {
        text-decoration: none;
        color: #6b7280;
        font-size: 0.9rem;
    }
    .footer-legal-links a:hover {
        text-decoration: underline;
        color: #374151;
    }
    .footer-contacts {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        color: #4b5563;
        padding-top: 1.5rem;
        border-top: 1px solid #e5e7eb;
    }
    .footer-contacts address {
        font-style: normal;
    }
    .footer-contacts a {
        text-decoration: none;
        color: #4b5563;
    }
    .footer-contacts a:hover {
        color: #1a56db;
        text-decoration: underline;
    }
    .footer-bottom {
        padding-top: 1.5rem;
        border-top: 1px solid #e5e7eb;
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
        color: #6b7280;
        font-size: 0.85rem;
    }
    .footer-copyright {
        margin: 0;
        order: 2;
    }
    .footer-disclaimer {
        margin: 0;
        line-height: 1.5;
        order: 1;
    }
    @media (min-width: 768px) {
        .footer-container {
            flex-direction: row;
            flex-wrap: wrap;
        }
        .footer-brand, .footer-right {
            flex: 0 0 50%;
        }
        .footer-contacts {
            flex-direction: row;
            flex-wrap: wrap;
            gap: 2rem;
            order: 3;
            width: 100%;
            border-top: none;
            padding-top: 0;
        }
        .footer-bottom {
            flex-direction: row;
            justify-content: space-between;
            align-items: center;
            order: 4;
            width: 100%;
            text-align: left;
        }
        .footer-disclaimer {
            order: 2;
            max-width: 70%;
            text-align: right;
        }
        .footer-copyright {
            order: 1;
        }
    }
    @media (min-width: 1024px) {
        .footer-right {
            flex-direction: row;
            justify-content: space-between;
        }
        .footer-nav ul {
            flex-direction: row;
            gap: 2rem;
        }
    }

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

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

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

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

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

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

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

    .thank-mode-d .core {
        max-width: 740px;
        margin: 0 auto;
        text-align: center;
        padding: clamp(28px, 4vw, 46px);
        border-radius: var(--radius-lg);
        border: 1px solid rgba(255, 255, 255, .24);
    }

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

    .thank-mode-d p {
        margin: 12px 0 0;
        opacity: .9;
    }

    .thank-mode-d a {
        display: inline-block;
        margin-top: 18px;
        padding: 10px 16px;
        border-radius: 999px;
        text-decoration: none;
        background: var(--accent);
        color: var(--accent-contrast);
    }

.site-header {
        background-color: var(--surface-1);
        border-bottom: 1px solid var(--border-on-surface-light);
        padding: var(--space-y) 0;
        position: sticky;
        top: 0;
        z-index: 100;
    }

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

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

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

    .main-nav {
        flex-grow: 1;
        display: flex;
        justify-content: center;
    }

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

    .nav-link {
        color: var(--fg-on-surface);
        text-decoration: none;
        font-weight: 500;
        padding: calc(var(--space-y) / 2) var(--space-x);
        border-radius: var(--radius-sm);
        transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }

    .nav-link:hover,
    .nav-link:focus {
        background-color: var(--btn-ghost-bg-hover);
        color: var(--link-hover);
    }

    .cta-button {
        background-color: var(--bg-primary);
        color: var(--fg-on-primary);
        padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 1.5);
        border-radius: var(--radius-lg);
        text-decoration: none;
        font-weight: 600;
        white-space: nowrap;
        flex-shrink: 0;
        transition: background-color var(--anim-duration) var(--anim-ease);
    }

    .cta-button:hover,
    .cta-button:focus {
        background-color: var(--bg-primary-hover);
    }

    .burger-menu {
        display: none;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 24px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 101;
    }

    .burger-line {
        display: block;
        height: 3px;
        width: 100%;
        background-color: var(--neutral-800);
        border-radius: var(--radius-sm);
        transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
    }

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

        .main-nav {
            position: fixed;
            top: 0;
            right: 0;
            bottom: 0;
            background-color: var(--surface-2);
            width: 70%;
            max-width: 300px;
            padding: calc(var(--space-y) * 3) var(--space-x);
            transform: translateX(100%);
            transition: transform var(--anim-duration) var(--anim-ease);
            box-shadow: var(--shadow-lg);
            z-index: 100;
            justify-content: flex-start;
            overflow-y: auto;
        }

        .main-nav.is-active {
            transform: translateX(0);
        }

        .nav-list {
            flex-direction: column;
            gap: var(--gap);
            width: 100%;
        }

        .nav-link {
            display: block;
            padding: var(--space-y) var(--space-x);
        }

        .cta-button {
            display: none;
        }

        .burger-menu[aria-expanded="true"] .burger-line:nth-child(1) {
            transform: translateY(10.5px) rotate(45deg);
        }

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

        .burger-menu[aria-expanded="true"] .burger-line:nth-child(3) {
            transform: translateY(-10.5px) rotate(-45deg);
        }
    }

.footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 3rem 1.5rem 1.5rem;
        display: flex;
        flex-direction: column;
        gap: 2.5rem;
        font-family: system-ui, -apple-system, sans-serif;
        color: #333;
        border-top: 1px solid #eaeaea;
    }
    .footer-brand {
        flex: 1;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #1a56db;
        margin: 0 0 0.5rem 0;
    }
    .footer-tagline {
        color: #6b7280;
        margin: 0;
        line-height: 1.5;
    }
    .footer-right {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    .footer-nav a {
        text-decoration: none;
        color: #4b5563;
        font-weight: 500;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #1a56db;
    }
    .footer-legal-links {
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .footer-legal-links a {
        text-decoration: none;
        color: #6b7280;
        font-size: 0.9rem;
    }
    .footer-legal-links a:hover {
        text-decoration: underline;
        color: #374151;
    }
    .footer-contacts {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        color: #4b5563;
        padding-top: 1.5rem;
        border-top: 1px solid #e5e7eb;
    }
    .footer-contacts address {
        font-style: normal;
    }
    .footer-contacts a {
        text-decoration: none;
        color: #4b5563;
    }
    .footer-contacts a:hover {
        color: #1a56db;
        text-decoration: underline;
    }
    .footer-bottom {
        padding-top: 1.5rem;
        border-top: 1px solid #e5e7eb;
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
        color: #6b7280;
        font-size: 0.85rem;
    }
    .footer-copyright {
        margin: 0;
        order: 2;
    }
    .footer-disclaimer {
        margin: 0;
        line-height: 1.5;
        order: 1;
    }
    @media (min-width: 768px) {
        .footer-container {
            flex-direction: row;
            flex-wrap: wrap;
        }
        .footer-brand, .footer-right {
            flex: 0 0 50%;
        }
        .footer-contacts {
            flex-direction: row;
            flex-wrap: wrap;
            gap: 2rem;
            order: 3;
            width: 100%;
            border-top: none;
            padding-top: 0;
        }
        .footer-bottom {
            flex-direction: row;
            justify-content: space-between;
            align-items: center;
            order: 4;
            width: 100%;
            text-align: left;
        }
        .footer-disclaimer {
            order: 2;
            max-width: 70%;
            text-align: right;
        }
        .footer-copyright {
            order: 1;
        }
    }
    @media (min-width: 1024px) {
        .footer-right {
            flex-direction: row;
            justify-content: space-between;
        }
        .footer-nav ul {
            flex-direction: row;
            gap: 2rem;
        }
    }

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

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

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

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

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

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

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

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

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

.err-slab-b p {
    margin: 10px 0 0;
    color: var(--neutral-600);
}

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