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

  --max-w: 1320px;
  --space-x: 1.22rem;
  --space-y: 1.5rem;
  --gap: 1.46rem;

  --radius-xl: 1.4rem;
  --radius-lg: 1rem;
  --radius-md: 0.62rem;
  --radius-sm: 0.27rem;

  --shadow-sm: 0 3px 5px rgba(0,0,0,0.18);
  --shadow-md: 0 10px 30px rgba(0,0,0,0.23);
  --shadow-lg: 0 20px 58px rgba(0,0,0,0.28);

  --overlay: rgba(0, 0, 0, 0.5);
  --anim-duration: 200ms;
  --anim-ease: cubic-bezier(0.2,0.8,0.2,1);
  --random-number: 2;

  --brand: #0056b3;
  --brand-contrast: #ffffff;
  --accent: #e63946;
  --accent-contrast: #ffffff;

  --neutral-0: #ffffff;
  --neutral-100: #f8f9fa;
  --neutral-300: #dee2e6;
  --neutral-600: #6c757d;
  --neutral-800: #343a40;
  --neutral-900: #212529;

  --bg-page: #ffffff;
  --fg-on-page: #212529;

  --bg-alt: #f8f9fa;
  --fg-on-alt: #343a40;

  --surface-1: #ffffff;
  --surface-2: #f8f9fa;
  --fg-on-surface: #212529;
  --border-on-surface: #dee2e6;

  --surface-light: #ffffff;
  --fg-on-surface-light: #495057;
  --border-on-surface-light: #ced4da;

  --bg-primary: #0056b3;
  --fg-on-primary: #ffffff;
  --bg-primary-hover: #004494;
  --ring: #0056b3;

  --bg-accent: #ffeef0;
  --fg-on-accent: #a4161a;
  --bg-accent-hover: #ff6b7a;

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

  --gradient-hero: linear-gradient(135deg, #0056b3 0%, #003d82 100%);
  --gradient-accent: linear-gradient(135deg, #e63946 0%, #c1121f 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);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

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

.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    transition: color var(--anim-duration) var(--anim-ease);
    order: 1;
}

.logo:hover,
.logo:focus {
    color: var(--accent);
    outline: none;
}

.burger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 2.5rem;
    height: 2.5rem;
    padding: 0.5rem;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    border-radius: var(--radius-sm);
    order: 3;
}

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

.burger-btn[aria-expanded="true"] {
    background-color: var(--bg-alt);
}

.burger-line {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--fg-on-surface);
    border-radius: 1px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

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

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

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

.main-nav {
    order: 2;
}

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

.nav-link {
    color: var(--link);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}

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

.nav-link[aria-current="page"] {
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
}

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

    .main-nav {
        order: 4;
        flex-basis: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--anim-duration) var(--anim-ease);
    }

    .main-nav[data-visible="true"] {
        max-height: 300px;
    }

    .nav-list {
        flex-direction: column;
        padding-top: var(--space-y);
        gap: 0.5rem;
    }

    .nav-link {
        display: block;
        padding: 0.75rem 1rem;
        border-radius: var(--radius-sm);
    }
}

* {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: sans-serif;
    }
    footer {
        background-color: #1a1a1a;
        color: #f0f0f0;
        padding: 3rem 1.5rem 1.5rem;
        width: 100%;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto 2.5rem;
        display: flex;
        flex-direction: column;
        gap: 2.5rem;
    }
    @media (min-width: 768px) {
        .footer-container {
            flex-direction: row;
            justify-content: space-between;
        }
    }
    .footer-brand {
        flex: 1;
    }
    .footer-logo {
        font-size: 2rem;
        font-weight: 800;
        letter-spacing: 1px;
        color: #ffffff;
        margin-bottom: 0.5rem;
    }
    .footer-tagline {
        color: #b0b0b0;
        font-size: 0.95rem;
        line-height: 1.5;
    }
    .footer-content {
        flex: 2;
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }
    @media (min-width: 768px) {
        .footer-content {
            flex-direction: row;
            justify-content: flex-end;
            gap: 4rem;
        }
    }
    .footer-nav h3,
    .footer-legal h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
        color: #ffffff;
    }
    .footer-nav ul,
    .footer-legal ul {
        list-style: none;
    }
    .footer-nav li,
    .footer-legal li {
        margin-bottom: 0.7rem;
    }
    .footer-nav a,
    .footer-legal a {
        color: #cccccc;
        text-decoration: none;
        transition: color 0.2s ease;
        font-size: 0.95rem;
    }
    .footer-nav a:hover,
    .footer-legal a:hover {
        color: #ffffff;
        text-decoration: underline;
    }
    .footer-bottom {
        max-width: 1200px;
        margin: 0 auto;
        padding-top: 1.5rem;
        border-top: 1px solid #333;
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    @media (min-width: 768px) {
        .footer-bottom {
            flex-direction: row;
            justify-content: space-between;
            align-items: center;
            text-align: left;
        }
    }
    .footer-contacts {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        color: #b0b0b0;
        font-size: 0.9rem;
        order: 2;
    }
    @media (min-width: 768px) {
        .footer-contacts {
            order: 1;
        }
    }
    .footer-contacts address {
        font-style: normal;
    }
    .footer-contacts a {
        color: #b0b0b0;
        text-decoration: none;
    }
    .footer-contacts a:hover {
        color: #ffffff;
        text-decoration: underline;
    }
    .footer-disclaimer {
        color: #888;
        font-size: 0.8rem;
        line-height: 1.5;
        order: 1;
    }
    @media (min-width: 768px) {
        .footer-disclaimer {
            order: 2;
            max-width: 60%;
            text-align: right;
        }
    }
    #currentYear {
        font-weight: bold;
    }

.cookie-lv10 {
        position: fixed;
        right: var(--space-x);
        bottom: var(--space-y);
        width: min(420px, calc(100vw - (var(--space-x) * 2)));
        z-index: 1200;
    }

    .cookie-lv10__body {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-md);
        background: var(--bg-alt);
        color: var(--fg-on-page);
        padding: 12px;
        box-shadow: var(--shadow-sm);
    }

    .cookie-lv10__body p {
        margin: 0;
        color: var(--neutral-600);
    }

    .cookie-lv10__actions {
        margin-top: 10px;
        display: flex;
        justify-content: flex-end;
        gap: 8px;
    }

    .cookie-lv10__actions button {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-sm);
        background: var(--surface-1);
        color: var(--fg-on-page);
        padding: 7px 10px;
        cursor: pointer;
    }

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

.intro-slice-c6 {
        padding: clamp(3.8rem, 8vw, 6.8rem) var(--space-x);
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
    }

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

    .intro-slice-c6__image {
        flex: 1 1 18rem;
        order: var(--random-number);
    }

    .intro-slice-c6__copy {
        flex: 1 1 22rem;
        order: calc(3 - var(--random-number));
    }

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

    .intro-slice-c6__copy p {
        margin: 0;
        color: rgba(255, 255, 255, .78);
        text-transform: uppercase;
        letter-spacing: .1em;
        font-size: .82rem;
    }

    .intro-slice-c6__copy h1 {
        margin: .55rem 0 0;
        font-size: clamp(2.4rem, 5vw, 4.6rem);
        line-height: 1;
    }

    .intro-slice-c6__copy strong {
        display: block;
        margin-top: .65rem;
        font-size: clamp(1.1rem, 2vw, 1.5rem);
    }

    .intro-slice-c6__copy span {
        display: block;
        margin-top: .9rem;

    }

    .intro-slice-c6__meta {
        margin-top: 1rem;
        padding: .85rem 1rem;
        border-radius: var(--radius-md);
        background: rgba(255, 255, 255, .12);
    }

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

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

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

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

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

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

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

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

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

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

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

.two-column-section {
    padding: clamp(48px, 8vw, 80px) 0;
}

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

.two-column-section__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: calc(var(--gap) * 2);
    align-items: start;
}

.two-column-section--split .two-column-section__text {
    padding: 0 0 0 0;
    border-left: 2px solid var(--border-on-surface);
    padding-left: var(--space-x);
}

.two-column-section--split .two-column-section__text:first-child {
    border-left: 0;
    padding-left: 0;
}

.two-column-section__text h2 {
    margin-bottom: var(--space-y);
    color: var(--fg-on-page);
}

.two-column-section__text p {
    margin-bottom: var(--space-y);
    color: var(--neutral-600);
}

.next-strip-l2 {
        padding: clamp(3rem, 7vw, 5.6rem) var(--space-x);
        background: var(--surface-1);
        color: var(--fg-on-page);
    }

    .next-strip-l2__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        gap: 1rem;
        align-items: end;
        flex-wrap: wrap;
    }

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

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

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

    .next-strip-l2__actions {
        max-width: var(--max-w);
        margin: 1rem auto 0;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
        gap: .75rem;
    }

    .next-strip-l2__actions a {
        display: block;
        padding: .95rem;
        border-radius: var(--radius-lg);
        background: var(--bg-alt);
        border: 1px solid var(--border-on-surface-light);
        text-decoration: none;
        color: var(--fg-on-page);
    }

    .next-strip-l2__actions span {
        display: block;
        margin-top: .35rem;
        color: var(--neutral-600);
    }

    /* macro-bg:next-strip-l2__wrap */
    .next-strip-l2 {
        overflow: hidden;
    }

    .next-strip-l2__wrap {
        background-image: linear-gradient(rgba(255, 255, 255, .86), rgba(255, 255, 255, .86)), url('https://images.pexels.com/photos/3862632/pexels-photo-3862632.jpeg?auto=compress&cs=tinysrgb&w=800');
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        border-radius: var(--radius-xl);
        overflow: hidden;
    }

.why-choose {

        padding: clamp(16px, 3vw, 44px);
    }

    .why-choose--colored.why-choose--v2 {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
    }

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

    .why-choose__top {
        display: grid;
        grid-template-columns:1.35fr 0.65fr;
        gap: clamp(14px, 2vw, 20px);
        align-items: start;
        margin-bottom: clamp(14px, 2.4vw, 26px);
    }

    .why-choose__title {
        margin: 0;
        font-size: clamp(26px, 4.6vw, 42px);
        line-height: 1.1;
        color: var(--fg-on-primary);
        letter-spacing: -0.02em;
    }

    .why-choose__subtitle {
        margin: 10px 0 0;
        color: rgba(255, 255, 255, 0.8);
        max-width: 68ch;
    }

    .why-choose__stats {
        display: grid;
        gap: 12px;
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-xl);
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.16);
        box-shadow: var(--shadow-md);
    }

    .why-choose__statValue {
        font-size: clamp(20px, 2.8vw, 28px);
        font-weight: 700;
        color: var(--fg-on-primary);
    }

    .why-choose__statLabel {
        margin-top: 4px;
        color: rgba(255, 255, 255, 0.78);
        font-size: 0.9rem;
    }

    .why-choose__list {
        display: grid;
        gap: 12px;
    }

    .why-choose__row {
        position: relative;
        display: grid;
        grid-template-columns:18px 1fr;
        gap: 12px;
        padding: clamp(14px, 2vw, 18px);
        border-radius: var(--radius-xl);
        background: rgba(0, 0, 0, 0.12);
        border: 1px solid rgba(255, 255, 255, 0.14);
        box-shadow: var(--shadow-sm);
        overflow: hidden;
        transition: transform var(--anim-duration) var(--anim-ease);
        will-change: transform;
    }

    .why-choose__row:hover {
        transform: translateY(-3px);
    }

    /* SHIMMER SWEEP */
    .why-choose__row::after {
        content: '';
        position: absolute;
        inset: -40px -60px;
        transform: translateX(-120%) rotate(12deg);
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);

        pointer-events: none;
    }

    .why-choose__row:hover::after {
        opacity: 1;
        animation: whyChooseShimmer 900ms var(--anim-ease) 1;
    }

    @keyframes whyChooseShimmer {
        0% {
            transform: translateX(-120%) rotate(12deg);
        }
        100% {
            transform: translateX(120%) rotate(12deg);
        }
    }

    .why-choose__bullet {
        width: 12px;
        height: 12px;
        border-radius: 999px;
        margin-top: 6px;
        background: var(--accent);
        box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.12);
    }

    .why-choose__rowTitle {
        font-weight: 700;
        color: var(--fg-on-primary);
        margin-bottom: 6px;
    }

    .why-choose__rowText {
        color: rgba(255, 255, 255, 0.78);
        line-height: var(--line-height-base);
    }

    @media (max-width: 920px) {
        .why-choose__top {
            grid-template-columns:1fr;
        }
    }

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

        .why-choose__row::after {
            display: none;
        }
    }

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

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

.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    transition: color var(--anim-duration) var(--anim-ease);
    order: 1;
}

.logo:hover,
.logo:focus {
    color: var(--accent);
    outline: none;
}

.burger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 2.5rem;
    height: 2.5rem;
    padding: 0.5rem;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    border-radius: var(--radius-sm);
    order: 3;
}

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

.burger-btn[aria-expanded="true"] {
    background-color: var(--bg-alt);
}

.burger-line {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--fg-on-surface);
    border-radius: 1px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

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

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

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

.main-nav {
    order: 2;
}

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

.nav-link {
    color: var(--link);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}

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

.nav-link[aria-current="page"] {
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
}

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

    .main-nav {
        order: 4;
        flex-basis: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--anim-duration) var(--anim-ease);
    }

    .main-nav[data-visible="true"] {
        max-height: 300px;
    }

    .nav-list {
        flex-direction: column;
        padding-top: var(--space-y);
        gap: 0.5rem;
    }

    .nav-link {
        display: block;
        padding: 0.75rem 1rem;
        border-radius: var(--radius-sm);
    }
}

* {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: sans-serif;
    }
    footer {
        background-color: #1a1a1a;
        color: #f0f0f0;
        padding: 3rem 1.5rem 1.5rem;
        width: 100%;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto 2.5rem;
        display: flex;
        flex-direction: column;
        gap: 2.5rem;
    }
    @media (min-width: 768px) {
        .footer-container {
            flex-direction: row;
            justify-content: space-between;
        }
    }
    .footer-brand {
        flex: 1;
    }
    .footer-logo {
        font-size: 2rem;
        font-weight: 800;
        letter-spacing: 1px;
        color: #ffffff;
        margin-bottom: 0.5rem;
    }
    .footer-tagline {
        color: #b0b0b0;
        font-size: 0.95rem;
        line-height: 1.5;
    }
    .footer-content {
        flex: 2;
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }
    @media (min-width: 768px) {
        .footer-content {
            flex-direction: row;
            justify-content: flex-end;
            gap: 4rem;
        }
    }
    .footer-nav h3,
    .footer-legal h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
        color: #ffffff;
    }
    .footer-nav ul,
    .footer-legal ul {
        list-style: none;
    }
    .footer-nav li,
    .footer-legal li {
        margin-bottom: 0.7rem;
    }
    .footer-nav a,
    .footer-legal a {
        color: #cccccc;
        text-decoration: none;
        transition: color 0.2s ease;
        font-size: 0.95rem;
    }
    .footer-nav a:hover,
    .footer-legal a:hover {
        color: #ffffff;
        text-decoration: underline;
    }
    .footer-bottom {
        max-width: 1200px;
        margin: 0 auto;
        padding-top: 1.5rem;
        border-top: 1px solid #333;
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    @media (min-width: 768px) {
        .footer-bottom {
            flex-direction: row;
            justify-content: space-between;
            align-items: center;
            text-align: left;
        }
    }
    .footer-contacts {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        color: #b0b0b0;
        font-size: 0.9rem;
        order: 2;
    }
    @media (min-width: 768px) {
        .footer-contacts {
            order: 1;
        }
    }
    .footer-contacts address {
        font-style: normal;
    }
    .footer-contacts a {
        color: #b0b0b0;
        text-decoration: none;
    }
    .footer-contacts a:hover {
        color: #ffffff;
        text-decoration: underline;
    }
    .footer-disclaimer {
        color: #888;
        font-size: 0.8rem;
        line-height: 1.5;
        order: 1;
    }
    @media (min-width: 768px) {
        .footer-disclaimer {
            order: 2;
            max-width: 60%;
            text-align: right;
        }
    }
    #currentYear {
        font-weight: bold;
    }

.cookie-lv10 {
        position: fixed;
        right: var(--space-x);
        bottom: var(--space-y);
        width: min(420px, calc(100vw - (var(--space-x) * 2)));
        z-index: 1200;
    }

    .cookie-lv10__body {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-md);
        background: var(--bg-alt);
        color: var(--fg-on-page);
        padding: 12px;
        box-shadow: var(--shadow-sm);
    }

    .cookie-lv10__body p {
        margin: 0;
        color: var(--neutral-600);
    }

    .cookie-lv10__actions {
        margin-top: 10px;
        display: flex;
        justify-content: flex-end;
        gap: 8px;
    }

    .cookie-lv10__actions button {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-sm);
        background: var(--surface-1);
        color: var(--fg-on-page);
        padding: 7px 10px;
        cursor: pointer;
    }

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

.post-list {

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

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

    .post-list .post-list__h {
        text-align: center;
        margin-bottom: var(--space-y);
    }

    .post-list h1 {
        font-size: clamp(28px, 5vw, 48px);
        margin: 0 0 0.5rem;
        color: var(--fg-on-primary);
    }

    .post-list .post-list__categories {
        display: flex;
        gap: 0.5rem;
        flex-wrap: wrap;
        margin-bottom: var(--space-y);
        justify-content: center;
    }

    .post-list .post-list__category {
        padding: 0.5rem 1rem;
        border-radius: var(--radius-md);
        background: var(--surface-light);
        color: var(--fg-on-primary);
        text-decoration: none;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .post-list .post-list__category:hover {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
    }

    .post-list .post-list__list {
        display: flex;
        flex-direction: column;
        gap: var(--space-x);
    }

    .post-list .post-list__item {
        background: var(--surface-light);
        border: 1px solid var(--ring);
        border-radius: var(--radius-lg);
        padding: clamp(16px, 2vw, 24px);
        box-shadow: var(--shadow-sm);
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .post-list .post-list__item:hover {
        box-shadow: var(--shadow-md);
        transform: translateX(4px);
    }

    .post-list .post-list__meta {
        display: flex;
        gap: 1rem;
        color: var(--neutral-600);
        font-size: 0.875rem;
        margin-bottom: 0.75rem;
    }

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

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

    .post-list h3 a:hover {
        color: var(--bg-primary);
    }

    .post-list p {
        color: var(--neutral-600);
        margin: 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

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

.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    transition: color var(--anim-duration) var(--anim-ease);
    order: 1;
}

.logo:hover,
.logo:focus {
    color: var(--accent);
    outline: none;
}

.burger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 2.5rem;
    height: 2.5rem;
    padding: 0.5rem;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    border-radius: var(--radius-sm);
    order: 3;
}

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

.burger-btn[aria-expanded="true"] {
    background-color: var(--bg-alt);
}

.burger-line {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--fg-on-surface);
    border-radius: 1px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

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

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

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

.main-nav {
    order: 2;
}

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

.nav-link {
    color: var(--link);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}

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

.nav-link[aria-current="page"] {
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
}

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

    .main-nav {
        order: 4;
        flex-basis: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--anim-duration) var(--anim-ease);
    }

    .main-nav[data-visible="true"] {
        max-height: 300px;
    }

    .nav-list {
        flex-direction: column;
        padding-top: var(--space-y);
        gap: 0.5rem;
    }

    .nav-link {
        display: block;
        padding: 0.75rem 1rem;
        border-radius: var(--radius-sm);
    }
}

* {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: sans-serif;
    }
    footer {
        background-color: #1a1a1a;
        color: #f0f0f0;
        padding: 3rem 1.5rem 1.5rem;
        width: 100%;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto 2.5rem;
        display: flex;
        flex-direction: column;
        gap: 2.5rem;
    }
    @media (min-width: 768px) {
        .footer-container {
            flex-direction: row;
            justify-content: space-between;
        }
    }
    .footer-brand {
        flex: 1;
    }
    .footer-logo {
        font-size: 2rem;
        font-weight: 800;
        letter-spacing: 1px;
        color: #ffffff;
        margin-bottom: 0.5rem;
    }
    .footer-tagline {
        color: #b0b0b0;
        font-size: 0.95rem;
        line-height: 1.5;
    }
    .footer-content {
        flex: 2;
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }
    @media (min-width: 768px) {
        .footer-content {
            flex-direction: row;
            justify-content: flex-end;
            gap: 4rem;
        }
    }
    .footer-nav h3,
    .footer-legal h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
        color: #ffffff;
    }
    .footer-nav ul,
    .footer-legal ul {
        list-style: none;
    }
    .footer-nav li,
    .footer-legal li {
        margin-bottom: 0.7rem;
    }
    .footer-nav a,
    .footer-legal a {
        color: #cccccc;
        text-decoration: none;
        transition: color 0.2s ease;
        font-size: 0.95rem;
    }
    .footer-nav a:hover,
    .footer-legal a:hover {
        color: #ffffff;
        text-decoration: underline;
    }
    .footer-bottom {
        max-width: 1200px;
        margin: 0 auto;
        padding-top: 1.5rem;
        border-top: 1px solid #333;
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    @media (min-width: 768px) {
        .footer-bottom {
            flex-direction: row;
            justify-content: space-between;
            align-items: center;
            text-align: left;
        }
    }
    .footer-contacts {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        color: #b0b0b0;
        font-size: 0.9rem;
        order: 2;
    }
    @media (min-width: 768px) {
        .footer-contacts {
            order: 1;
        }
    }
    .footer-contacts address {
        font-style: normal;
    }
    .footer-contacts a {
        color: #b0b0b0;
        text-decoration: none;
    }
    .footer-contacts a:hover {
        color: #ffffff;
        text-decoration: underline;
    }
    .footer-disclaimer {
        color: #888;
        font-size: 0.8rem;
        line-height: 1.5;
        order: 1;
    }
    @media (min-width: 768px) {
        .footer-disclaimer {
            order: 2;
            max-width: 60%;
            text-align: right;
        }
    }
    #currentYear {
        font-weight: bold;
    }

.cookie-lv10 {
        position: fixed;
        right: var(--space-x);
        bottom: var(--space-y);
        width: min(420px, calc(100vw - (var(--space-x) * 2)));
        z-index: 1200;
    }

    .cookie-lv10__body {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-md);
        background: var(--bg-alt);
        color: var(--fg-on-page);
        padding: 12px;
        box-shadow: var(--shadow-sm);
    }

    .cookie-lv10__body p {
        margin: 0;
        color: var(--neutral-600);
    }

    .cookie-lv10__actions {
        margin-top: 10px;
        display: flex;
        justify-content: flex-end;
        gap: 8px;
    }

    .cookie-lv10__actions button {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-sm);
        background: var(--surface-1);
        color: var(--fg-on-page);
        padding: 7px 10px;
        cursor: pointer;
    }

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

.post-item {

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

    .post-item .post-item__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .post-item .post-item__header {
        margin-bottom: var(--space-y);
    }

    .post-item h1 {
        font-size: clamp(28px, 5vw, 42px);
        margin: 0 0 1rem;
        color: var(--fg-on-page);
    }

    .post-item .post-item__meta {
        display: flex;
        gap: 1rem;

        font-size: 0.875rem;
    }

    .post-item .post-item__content {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        padding: clamp(24px, 3vw, 40px);
        border-radius: var(--radius-lg);
        line-height: 1.8;
        color: var(--fg-on-page);
        margin-bottom: var(--space-y);
    }

    .post-item .post-item__comments {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        padding: clamp(24px, 3vw, 40px);
        border-radius: var(--radius-lg);
    }

    .post-item .post-item__comments h3 {
        margin: 0 0 1.5rem;
        color: var(--fg-on-page);
    }

    .post-item .post-item__comments-list {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        margin-bottom: var(--space-y);
    }

    .post-item .post-item__comment {
        background: rgba(255, 255, 255, 0.1);
        padding: 1rem;
        border-radius: var(--radius-md);
    }

    .post-item .post-item__comment-author {
        font-weight: 600;
        color: var(--fg-on-page);
        margin-bottom: 0.5rem;
    }

    .post-item .post-item__comment-text {

        margin-bottom: 0.5rem;
    }

    .post-item .post-item__comment-date {
        font-size: 0.875rem;

    }

    .post-item .post-item__reply-form {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .post-item .post-item__reply-form textarea {
        padding: 1rem;
        border-radius: var(--radius-md);
        border: none;
        outline: none;
        min-height: 100px;

    }

    .post-item .post-item__reply-form button {
        padding: 0.875rem 2rem;
        border-radius: var(--radius-md);
        border: none;
        background: var(--bg-page);
        color: var(--bg-primary);
        font-weight: 600;
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .post-item .post-item__reply-form button:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
    }

.articles {

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

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

    .articles .articles__header {
        margin-bottom: clamp(32px, 5vw, 48px);
    }

    .articles .articles__header h2 {
        font-size: clamp(28px, 5vw, 48px);
        margin: 0;
        color: var(--fg-on-page);
    }

    .articles .articles__list {
        display: flex;
        flex-direction: column;
        gap: clamp(20px, 3vw, 28px);
    }

    .articles .articles__item {
        padding-bottom: clamp(20px, 3vw, 28px);
        border-bottom: 1px solid var(--border-on-surface);
    }

    .articles .articles__item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .articles .articles__link {
        display: block;
        text-decoration: none;
        color: inherit;
    }

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

    .articles .articles__link:hover h3 {
        color: var(--link-hover);
    }

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

    .articles .articles__meta {
        font-size: clamp(13px, 2vw, 15px);
        color: var(--neutral-600);
    }

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

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

.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    transition: color var(--anim-duration) var(--anim-ease);
    order: 1;
}

.logo:hover,
.logo:focus {
    color: var(--accent);
    outline: none;
}

.burger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 2.5rem;
    height: 2.5rem;
    padding: 0.5rem;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    border-radius: var(--radius-sm);
    order: 3;
}

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

.burger-btn[aria-expanded="true"] {
    background-color: var(--bg-alt);
}

.burger-line {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--fg-on-surface);
    border-radius: 1px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

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

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

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

.main-nav {
    order: 2;
}

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

.nav-link {
    color: var(--link);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}

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

.nav-link[aria-current="page"] {
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
}

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

    .main-nav {
        order: 4;
        flex-basis: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--anim-duration) var(--anim-ease);
    }

    .main-nav[data-visible="true"] {
        max-height: 300px;
    }

    .nav-list {
        flex-direction: column;
        padding-top: var(--space-y);
        gap: 0.5rem;
    }

    .nav-link {
        display: block;
        padding: 0.75rem 1rem;
        border-radius: var(--radius-sm);
    }
}

* {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: sans-serif;
    }
    footer {
        background-color: #1a1a1a;
        color: #f0f0f0;
        padding: 3rem 1.5rem 1.5rem;
        width: 100%;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto 2.5rem;
        display: flex;
        flex-direction: column;
        gap: 2.5rem;
    }
    @media (min-width: 768px) {
        .footer-container {
            flex-direction: row;
            justify-content: space-between;
        }
    }
    .footer-brand {
        flex: 1;
    }
    .footer-logo {
        font-size: 2rem;
        font-weight: 800;
        letter-spacing: 1px;
        color: #ffffff;
        margin-bottom: 0.5rem;
    }
    .footer-tagline {
        color: #b0b0b0;
        font-size: 0.95rem;
        line-height: 1.5;
    }
    .footer-content {
        flex: 2;
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }
    @media (min-width: 768px) {
        .footer-content {
            flex-direction: row;
            justify-content: flex-end;
            gap: 4rem;
        }
    }
    .footer-nav h3,
    .footer-legal h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
        color: #ffffff;
    }
    .footer-nav ul,
    .footer-legal ul {
        list-style: none;
    }
    .footer-nav li,
    .footer-legal li {
        margin-bottom: 0.7rem;
    }
    .footer-nav a,
    .footer-legal a {
        color: #cccccc;
        text-decoration: none;
        transition: color 0.2s ease;
        font-size: 0.95rem;
    }
    .footer-nav a:hover,
    .footer-legal a:hover {
        color: #ffffff;
        text-decoration: underline;
    }
    .footer-bottom {
        max-width: 1200px;
        margin: 0 auto;
        padding-top: 1.5rem;
        border-top: 1px solid #333;
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    @media (min-width: 768px) {
        .footer-bottom {
            flex-direction: row;
            justify-content: space-between;
            align-items: center;
            text-align: left;
        }
    }
    .footer-contacts {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        color: #b0b0b0;
        font-size: 0.9rem;
        order: 2;
    }
    @media (min-width: 768px) {
        .footer-contacts {
            order: 1;
        }
    }
    .footer-contacts address {
        font-style: normal;
    }
    .footer-contacts a {
        color: #b0b0b0;
        text-decoration: none;
    }
    .footer-contacts a:hover {
        color: #ffffff;
        text-decoration: underline;
    }
    .footer-disclaimer {
        color: #888;
        font-size: 0.8rem;
        line-height: 1.5;
        order: 1;
    }
    @media (min-width: 768px) {
        .footer-disclaimer {
            order: 2;
            max-width: 60%;
            text-align: right;
        }
    }
    #currentYear {
        font-weight: bold;
    }

.cookie-lv10 {
        position: fixed;
        right: var(--space-x);
        bottom: var(--space-y);
        width: min(420px, calc(100vw - (var(--space-x) * 2)));
        z-index: 1200;
    }

    .cookie-lv10__body {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-md);
        background: var(--bg-alt);
        color: var(--fg-on-page);
        padding: 12px;
        box-shadow: var(--shadow-sm);
    }

    .cookie-lv10__body p {
        margin: 0;
        color: var(--neutral-600);
    }

    .cookie-lv10__actions {
        margin-top: 10px;
        display: flex;
        justify-content: flex-end;
        gap: 8px;
    }

    .cookie-lv10__actions button {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-sm);
        background: var(--surface-1);
        color: var(--fg-on-page);
        padding: 7px 10px;
        cursor: pointer;
    }

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

.post-item {

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

    .post-item .post-item__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .post-item .post-item__header {
        margin-bottom: var(--space-y);
    }

    .post-item h1 {
        font-size: clamp(28px, 5vw, 42px);
        margin: 0 0 1rem;
        color: var(--fg-on-page);
    }

    .post-item .post-item__meta {
        display: flex;
        gap: 1rem;
        font-size: 0.875rem;
    }

    .post-item .post-item__content {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        padding: clamp(24px, 3vw, 40px);
        border-radius: var(--radius-lg);
        line-height: 1.8;
        color: var(--fg-on-page);
        margin-bottom: var(--space-y);
    }

    .post-item .post-item__comments {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        padding: clamp(24px, 3vw, 40px);
        border-radius: var(--radius-lg);
    }

    .post-item .post-item__comments h3 {
        margin: 0 0 1.5rem;
        color: var(--fg-on-page);
    }

    .post-item .post-item__comments-list {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        margin-bottom: var(--space-y);
    }

    .post-item .post-item__comment {
        background: rgba(255, 255, 255, 0.1);
        padding: 1rem;
        border-radius: var(--radius-md);
    }

    .post-item .post-item__comment-author {
        font-weight: 600;
        color: var(--fg-on-page);
        margin-bottom: 0.5rem;
    }

    .post-item .post-item__comment-text {
        margin-bottom: 0.5rem;
    }

    .post-item .post-item__comment-date {
        font-size: 0.875rem;
    }

    .post-item .post-item__reply-form {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .post-item .post-item__reply-form textarea {
        padding: 1rem;
        border-radius: var(--radius-md);
        border: 1px solid var(--fg-on-page);
        outline: none;
        min-height: 100px;

    }

    .post-item .post-item__reply-form button {
        padding: 0.875rem 2rem;
        border-radius: var(--radius-md);
        border: none;
        background: var(--fg-on-page);
        color: var(--bg-page);
        font-weight: 600;
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .post-item .post-item__reply-form button:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
    }

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

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

.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    transition: color var(--anim-duration) var(--anim-ease);
    order: 1;
}

.logo:hover,
.logo:focus {
    color: var(--accent);
    outline: none;
}

.burger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 2.5rem;
    height: 2.5rem;
    padding: 0.5rem;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    border-radius: var(--radius-sm);
    order: 3;
}

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

.burger-btn[aria-expanded="true"] {
    background-color: var(--bg-alt);
}

.burger-line {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--fg-on-surface);
    border-radius: 1px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

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

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

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

.main-nav {
    order: 2;
}

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

.nav-link {
    color: var(--link);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}

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

.nav-link[aria-current="page"] {
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
}

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

    .main-nav {
        order: 4;
        flex-basis: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--anim-duration) var(--anim-ease);
    }

    .main-nav[data-visible="true"] {
        max-height: 300px;
    }

    .nav-list {
        flex-direction: column;
        padding-top: var(--space-y);
        gap: 0.5rem;
    }

    .nav-link {
        display: block;
        padding: 0.75rem 1rem;
        border-radius: var(--radius-sm);
    }
}

* {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: sans-serif;
    }
    footer {
        background-color: #1a1a1a;
        color: #f0f0f0;
        padding: 3rem 1.5rem 1.5rem;
        width: 100%;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto 2.5rem;
        display: flex;
        flex-direction: column;
        gap: 2.5rem;
    }
    @media (min-width: 768px) {
        .footer-container {
            flex-direction: row;
            justify-content: space-between;
        }
    }
    .footer-brand {
        flex: 1;
    }
    .footer-logo {
        font-size: 2rem;
        font-weight: 800;
        letter-spacing: 1px;
        color: #ffffff;
        margin-bottom: 0.5rem;
    }
    .footer-tagline {
        color: #b0b0b0;
        font-size: 0.95rem;
        line-height: 1.5;
    }
    .footer-content {
        flex: 2;
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }
    @media (min-width: 768px) {
        .footer-content {
            flex-direction: row;
            justify-content: flex-end;
            gap: 4rem;
        }
    }
    .footer-nav h3,
    .footer-legal h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
        color: #ffffff;
    }
    .footer-nav ul,
    .footer-legal ul {
        list-style: none;
    }
    .footer-nav li,
    .footer-legal li {
        margin-bottom: 0.7rem;
    }
    .footer-nav a,
    .footer-legal a {
        color: #cccccc;
        text-decoration: none;
        transition: color 0.2s ease;
        font-size: 0.95rem;
    }
    .footer-nav a:hover,
    .footer-legal a:hover {
        color: #ffffff;
        text-decoration: underline;
    }
    .footer-bottom {
        max-width: 1200px;
        margin: 0 auto;
        padding-top: 1.5rem;
        border-top: 1px solid #333;
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    @media (min-width: 768px) {
        .footer-bottom {
            flex-direction: row;
            justify-content: space-between;
            align-items: center;
            text-align: left;
        }
    }
    .footer-contacts {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        color: #b0b0b0;
        font-size: 0.9rem;
        order: 2;
    }
    @media (min-width: 768px) {
        .footer-contacts {
            order: 1;
        }
    }
    .footer-contacts address {
        font-style: normal;
    }
    .footer-contacts a {
        color: #b0b0b0;
        text-decoration: none;
    }
    .footer-contacts a:hover {
        color: #ffffff;
        text-decoration: underline;
    }
    .footer-disclaimer {
        color: #888;
        font-size: 0.8rem;
        line-height: 1.5;
        order: 1;
    }
    @media (min-width: 768px) {
        .footer-disclaimer {
            order: 2;
            max-width: 60%;
            text-align: right;
        }
    }
    #currentYear {
        font-weight: bold;
    }

.cookie-lv10 {
        position: fixed;
        right: var(--space-x);
        bottom: var(--space-y);
        width: min(420px, calc(100vw - (var(--space-x) * 2)));
        z-index: 1200;
    }

    .cookie-lv10__body {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-md);
        background: var(--bg-alt);
        color: var(--fg-on-page);
        padding: 12px;
        box-shadow: var(--shadow-sm);
    }

    .cookie-lv10__body p {
        margin: 0;
        color: var(--neutral-600);
    }

    .cookie-lv10__actions {
        margin-top: 10px;
        display: flex;
        justify-content: flex-end;
        gap: 8px;
    }

    .cookie-lv10__actions button {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-sm);
        background: var(--surface-1);
        color: var(--fg-on-page);
        padding: 7px 10px;
        cursor: pointer;
    }

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

.post-item {

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

    .post-item .post-item__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .post-item .post-item__header {
        margin-bottom: var(--space-y);
    }

    .post-item h1 {
        font-size: clamp(28px, 5vw, 42px);
        margin: 0 0 1rem;
        color: var(--fg-on-primary);
    }

    .post-item .post-item__meta {
        display: flex;
        gap: 1rem;

        font-size: 0.875rem;
    }

    .post-item .post-item__content {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        padding: clamp(24px, 3vw, 40px);
        border-radius: var(--radius-lg);
        line-height: 1.8;
        color: var(--fg-on-primary);
        margin-bottom: var(--space-y);
    }

    .post-item .post-item__comments {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        padding: clamp(24px, 3vw, 40px);
        border-radius: var(--radius-lg);
    }

    .post-item .post-item__comments h3 {
        margin: 0 0 1.5rem;
        color: var(--fg-on-primary);
    }

    .post-item .post-item__comments-list {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        margin-bottom: var(--space-y);
    }

    .post-item .post-item__comment {
        background: rgba(255, 255, 255, 0.1);
        padding: 1rem;
        border-radius: var(--radius-md);
    }

    .post-item .post-item__comment-author {
        font-weight: 600;
        color: var(--fg-on-primary);
        margin-bottom: 0.5rem;
    }

    .post-item .post-item__comment-text {
        color: var(--fg-on-primary);
        margin-bottom: 0.5rem;
    }

    .post-item .post-item__comment-date {
        font-size: 0.875rem;
        color: rgba(255, 255, 255, 0.7);
    }

    .post-item .post-item__reply-form {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .post-item .post-item__reply-form textarea {
        padding: 1rem;
        border-radius: var(--radius-md);
        border: none;
        outline: none;
        min-height: 100px;
        background: rgba(255, 255, 255, 0.9);
        color: var(--neutral-900);
    }

    .post-item .post-item__reply-form button {
        padding: 0.875rem 2rem;
        border-radius: var(--radius-md);
        border: none;
        background: var(--gradient-hero);
        color: var(--bg-primary);
        font-weight: 600;
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .post-item .post-item__reply-form button:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
    }

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

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

.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    transition: color var(--anim-duration) var(--anim-ease);
    order: 1;
}

.logo:hover,
.logo:focus {
    color: var(--accent);
    outline: none;
}

.burger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 2.5rem;
    height: 2.5rem;
    padding: 0.5rem;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    border-radius: var(--radius-sm);
    order: 3;
}

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

.burger-btn[aria-expanded="true"] {
    background-color: var(--bg-alt);
}

.burger-line {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--fg-on-surface);
    border-radius: 1px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

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

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

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

.main-nav {
    order: 2;
}

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

.nav-link {
    color: var(--link);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}

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

.nav-link[aria-current="page"] {
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
}

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

    .main-nav {
        order: 4;
        flex-basis: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--anim-duration) var(--anim-ease);
    }

    .main-nav[data-visible="true"] {
        max-height: 300px;
    }

    .nav-list {
        flex-direction: column;
        padding-top: var(--space-y);
        gap: 0.5rem;
    }

    .nav-link {
        display: block;
        padding: 0.75rem 1rem;
        border-radius: var(--radius-sm);
    }
}

* {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: sans-serif;
    }
    footer {
        background-color: #1a1a1a;
        color: #f0f0f0;
        padding: 3rem 1.5rem 1.5rem;
        width: 100%;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto 2.5rem;
        display: flex;
        flex-direction: column;
        gap: 2.5rem;
    }
    @media (min-width: 768px) {
        .footer-container {
            flex-direction: row;
            justify-content: space-between;
        }
    }
    .footer-brand {
        flex: 1;
    }
    .footer-logo {
        font-size: 2rem;
        font-weight: 800;
        letter-spacing: 1px;
        color: #ffffff;
        margin-bottom: 0.5rem;
    }
    .footer-tagline {
        color: #b0b0b0;
        font-size: 0.95rem;
        line-height: 1.5;
    }
    .footer-content {
        flex: 2;
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }
    @media (min-width: 768px) {
        .footer-content {
            flex-direction: row;
            justify-content: flex-end;
            gap: 4rem;
        }
    }
    .footer-nav h3,
    .footer-legal h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
        color: #ffffff;
    }
    .footer-nav ul,
    .footer-legal ul {
        list-style: none;
    }
    .footer-nav li,
    .footer-legal li {
        margin-bottom: 0.7rem;
    }
    .footer-nav a,
    .footer-legal a {
        color: #cccccc;
        text-decoration: none;
        transition: color 0.2s ease;
        font-size: 0.95rem;
    }
    .footer-nav a:hover,
    .footer-legal a:hover {
        color: #ffffff;
        text-decoration: underline;
    }
    .footer-bottom {
        max-width: 1200px;
        margin: 0 auto;
        padding-top: 1.5rem;
        border-top: 1px solid #333;
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    @media (min-width: 768px) {
        .footer-bottom {
            flex-direction: row;
            justify-content: space-between;
            align-items: center;
            text-align: left;
        }
    }
    .footer-contacts {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        color: #b0b0b0;
        font-size: 0.9rem;
        order: 2;
    }
    @media (min-width: 768px) {
        .footer-contacts {
            order: 1;
        }
    }
    .footer-contacts address {
        font-style: normal;
    }
    .footer-contacts a {
        color: #b0b0b0;
        text-decoration: none;
    }
    .footer-contacts a:hover {
        color: #ffffff;
        text-decoration: underline;
    }
    .footer-disclaimer {
        color: #888;
        font-size: 0.8rem;
        line-height: 1.5;
        order: 1;
    }
    @media (min-width: 768px) {
        .footer-disclaimer {
            order: 2;
            max-width: 60%;
            text-align: right;
        }
    }
    #currentYear {
        font-weight: bold;
    }

.cookie-lv10 {
        position: fixed;
        right: var(--space-x);
        bottom: var(--space-y);
        width: min(420px, calc(100vw - (var(--space-x) * 2)));
        z-index: 1200;
    }

    .cookie-lv10__body {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-md);
        background: var(--bg-alt);
        color: var(--fg-on-page);
        padding: 12px;
        box-shadow: var(--shadow-sm);
    }

    .cookie-lv10__body p {
        margin: 0;
        color: var(--neutral-600);
    }

    .cookie-lv10__actions {
        margin-top: 10px;
        display: flex;
        justify-content: flex-end;
        gap: 8px;
    }

    .cookie-lv10__actions button {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-sm);
        background: var(--surface-1);
        color: var(--fg-on-page);
        padding: 7px 10px;
        cursor: pointer;
    }

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

.article-list--light-v6 {

    padding: 48px 20px;
    background: var(--surface-light);
    color: var(--fg-on-surface-light);
}

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

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

.article-list__list {
    display: grid;
    gap: 12px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

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

.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    transition: color var(--anim-duration) var(--anim-ease);
    order: 1;
}

.logo:hover,
.logo:focus {
    color: var(--accent);
    outline: none;
}

.burger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 2.5rem;
    height: 2.5rem;
    padding: 0.5rem;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    border-radius: var(--radius-sm);
    order: 3;
}

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

.burger-btn[aria-expanded="true"] {
    background-color: var(--bg-alt);
}

.burger-line {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--fg-on-surface);
    border-radius: 1px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

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

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

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

.main-nav {
    order: 2;
}

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

.nav-link {
    color: var(--link);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}

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

.nav-link[aria-current="page"] {
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
}

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

    .main-nav {
        order: 4;
        flex-basis: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--anim-duration) var(--anim-ease);
    }

    .main-nav[data-visible="true"] {
        max-height: 300px;
    }

    .nav-list {
        flex-direction: column;
        padding-top: var(--space-y);
        gap: 0.5rem;
    }

    .nav-link {
        display: block;
        padding: 0.75rem 1rem;
        border-radius: var(--radius-sm);
    }
}

* {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: sans-serif;
    }
    footer {
        background-color: #1a1a1a;
        color: #f0f0f0;
        padding: 3rem 1.5rem 1.5rem;
        width: 100%;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto 2.5rem;
        display: flex;
        flex-direction: column;
        gap: 2.5rem;
    }
    @media (min-width: 768px) {
        .footer-container {
            flex-direction: row;
            justify-content: space-between;
        }
    }
    .footer-brand {
        flex: 1;
    }
    .footer-logo {
        font-size: 2rem;
        font-weight: 800;
        letter-spacing: 1px;
        color: #ffffff;
        margin-bottom: 0.5rem;
    }
    .footer-tagline {
        color: #b0b0b0;
        font-size: 0.95rem;
        line-height: 1.5;
    }
    .footer-content {
        flex: 2;
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }
    @media (min-width: 768px) {
        .footer-content {
            flex-direction: row;
            justify-content: flex-end;
            gap: 4rem;
        }
    }
    .footer-nav h3,
    .footer-legal h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
        color: #ffffff;
    }
    .footer-nav ul,
    .footer-legal ul {
        list-style: none;
    }
    .footer-nav li,
    .footer-legal li {
        margin-bottom: 0.7rem;
    }
    .footer-nav a,
    .footer-legal a {
        color: #cccccc;
        text-decoration: none;
        transition: color 0.2s ease;
        font-size: 0.95rem;
    }
    .footer-nav a:hover,
    .footer-legal a:hover {
        color: #ffffff;
        text-decoration: underline;
    }
    .footer-bottom {
        max-width: 1200px;
        margin: 0 auto;
        padding-top: 1.5rem;
        border-top: 1px solid #333;
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    @media (min-width: 768px) {
        .footer-bottom {
            flex-direction: row;
            justify-content: space-between;
            align-items: center;
            text-align: left;
        }
    }
    .footer-contacts {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        color: #b0b0b0;
        font-size: 0.9rem;
        order: 2;
    }
    @media (min-width: 768px) {
        .footer-contacts {
            order: 1;
        }
    }
    .footer-contacts address {
        font-style: normal;
    }
    .footer-contacts a {
        color: #b0b0b0;
        text-decoration: none;
    }
    .footer-contacts a:hover {
        color: #ffffff;
        text-decoration: underline;
    }
    .footer-disclaimer {
        color: #888;
        font-size: 0.8rem;
        line-height: 1.5;
        order: 1;
    }
    @media (min-width: 768px) {
        .footer-disclaimer {
            order: 2;
            max-width: 60%;
            text-align: right;
        }
    }
    #currentYear {
        font-weight: bold;
    }

.cookie-lv10 {
        position: fixed;
        right: var(--space-x);
        bottom: var(--space-y);
        width: min(420px, calc(100vw - (var(--space-x) * 2)));
        z-index: 1200;
    }

    .cookie-lv10__body {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-md);
        background: var(--bg-alt);
        color: var(--fg-on-page);
        padding: 12px;
        box-shadow: var(--shadow-sm);
    }

    .cookie-lv10__body p {
        margin: 0;
        color: var(--neutral-600);
    }

    .cookie-lv10__actions {
        margin-top: 10px;
        display: flex;
        justify-content: flex-end;
        gap: 8px;
    }

    .cookie-lv10__actions button {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-sm);
        background: var(--surface-1);
        color: var(--fg-on-page);
        padding: 7px 10px;
        cursor: pointer;
    }

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

.contacts-fresh-v6 {
        padding: calc(var(--space-y) * 2.8) var(--space-x);
        background: var(--surface-2);
        color: var(--fg-on-surface);
    }

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

    .contacts-fresh-v6 h2 {
        margin: 0;
        font-size: clamp(1.8rem, 3vw, 2.5rem);
    }

    .contacts-fresh-v6 .columns {
        display: flex;
        gap: var(--gap);
        overflow: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: .2rem;
    }

    .contacts-fresh-v6 article {
        min-width: 260px;
        scroll-snap-align: start;
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
    }

    .contacts-fresh-v6 h3 {
        margin: 0 0 .5rem;
    }

    .contacts-fresh-v6 p {
        margin: 0;
    }

    .contacts-fresh-v6 .hint {
        margin: .4rem 0 .8rem;
        color: var(--fg-on-surface-light);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.form-fresh-v6 {
        padding: calc(var(--space-y) * 2.9) var(--space-x);
        background: var(--surface-2);
        color: var(--fg-on-surface);
    }

    .form-fresh-v6 .shell {
        max-width: 900px;
        margin: 0 auto;
        display: grid;
        gap: var(--gap);
    }

    .form-fresh-v6 h2 {
        margin: 0;
        font-size: clamp(1.8rem, 3.2vw, 2.4rem);
    }

    .form-fresh-v6 form {
        display: grid;
        gap: .85rem;
    }

    .form-fresh-v6 .rows {
        display: grid;
        gap: .6rem;
    }

    .form-fresh-v6 label {
        display: grid;
        grid-template-columns:180px 1fr;
        gap: .8rem;
        align-items: center;
        padding: .6rem .8rem;
        border-radius: var(--radius-sm);
        border: 1px solid var(--border-on-surface);
        background: var(--surface-1);
    }

    .form-fresh-v6 b {
        font-size: .9rem;
    }

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

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

    @media (max-width: 720px) {
        .form-fresh-v6 label {
            grid-template-columns:1fr;
        }
    }

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

    .map-note-c3__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        grid-template-columns: .9fr 1.1fr;
        gap: 1rem;
    }

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

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

    .map-note-c3__notes {
        margin-top: 1rem;
        display: grid;
        gap: .7rem;
    }

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

    .map-note-c3__notes span {
        display: block;
        margin-top: .3rem;
        color: rgba(255, 255, 255, .84);
    }

    .map-note-c3__embed {
        overflow: hidden;
        border-radius: var(--radius-xl);
        border: 1px solid rgba(255, 255, 255, .18);
    }

    .map-note-c3__embed iframe {
        display: block;
        width: 100%;
        height: 24rem;
    }

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

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

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

.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    transition: color var(--anim-duration) var(--anim-ease);
    order: 1;
}

.logo:hover,
.logo:focus {
    color: var(--accent);
    outline: none;
}

.burger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 2.5rem;
    height: 2.5rem;
    padding: 0.5rem;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    border-radius: var(--radius-sm);
    order: 3;
}

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

.burger-btn[aria-expanded="true"] {
    background-color: var(--bg-alt);
}

.burger-line {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--fg-on-surface);
    border-radius: 1px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

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

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

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

.main-nav {
    order: 2;
}

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

.nav-link {
    color: var(--link);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}

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

.nav-link[aria-current="page"] {
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
}

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

    .main-nav {
        order: 4;
        flex-basis: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--anim-duration) var(--anim-ease);
    }

    .main-nav[data-visible="true"] {
        max-height: 300px;
    }

    .nav-list {
        flex-direction: column;
        padding-top: var(--space-y);
        gap: 0.5rem;
    }

    .nav-link {
        display: block;
        padding: 0.75rem 1rem;
        border-radius: var(--radius-sm);
    }
}

* {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: sans-serif;
    }
    footer {
        background-color: #1a1a1a;
        color: #f0f0f0;
        padding: 3rem 1.5rem 1.5rem;
        width: 100%;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto 2.5rem;
        display: flex;
        flex-direction: column;
        gap: 2.5rem;
    }
    @media (min-width: 768px) {
        .footer-container {
            flex-direction: row;
            justify-content: space-between;
        }
    }
    .footer-brand {
        flex: 1;
    }
    .footer-logo {
        font-size: 2rem;
        font-weight: 800;
        letter-spacing: 1px;
        color: #ffffff;
        margin-bottom: 0.5rem;
    }
    .footer-tagline {
        color: #b0b0b0;
        font-size: 0.95rem;
        line-height: 1.5;
    }
    .footer-content {
        flex: 2;
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }
    @media (min-width: 768px) {
        .footer-content {
            flex-direction: row;
            justify-content: flex-end;
            gap: 4rem;
        }
    }
    .footer-nav h3,
    .footer-legal h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
        color: #ffffff;
    }
    .footer-nav ul,
    .footer-legal ul {
        list-style: none;
    }
    .footer-nav li,
    .footer-legal li {
        margin-bottom: 0.7rem;
    }
    .footer-nav a,
    .footer-legal a {
        color: #cccccc;
        text-decoration: none;
        transition: color 0.2s ease;
        font-size: 0.95rem;
    }
    .footer-nav a:hover,
    .footer-legal a:hover {
        color: #ffffff;
        text-decoration: underline;
    }
    .footer-bottom {
        max-width: 1200px;
        margin: 0 auto;
        padding-top: 1.5rem;
        border-top: 1px solid #333;
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    @media (min-width: 768px) {
        .footer-bottom {
            flex-direction: row;
            justify-content: space-between;
            align-items: center;
            text-align: left;
        }
    }
    .footer-contacts {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        color: #b0b0b0;
        font-size: 0.9rem;
        order: 2;
    }
    @media (min-width: 768px) {
        .footer-contacts {
            order: 1;
        }
    }
    .footer-contacts address {
        font-style: normal;
    }
    .footer-contacts a {
        color: #b0b0b0;
        text-decoration: none;
    }
    .footer-contacts a:hover {
        color: #ffffff;
        text-decoration: underline;
    }
    .footer-disclaimer {
        color: #888;
        font-size: 0.8rem;
        line-height: 1.5;
        order: 1;
    }
    @media (min-width: 768px) {
        .footer-disclaimer {
            order: 2;
            max-width: 60%;
            text-align: right;
        }
    }
    #currentYear {
        font-weight: bold;
    }

.cookie-lv10 {
        position: fixed;
        right: var(--space-x);
        bottom: var(--space-y);
        width: min(420px, calc(100vw - (var(--space-x) * 2)));
        z-index: 1200;
    }

    .cookie-lv10__body {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-md);
        background: var(--bg-alt);
        color: var(--fg-on-page);
        padding: 12px;
        box-shadow: var(--shadow-sm);
    }

    .cookie-lv10__body p {
        margin: 0;
        color: var(--neutral-600);
    }

    .cookie-lv10__actions {
        margin-top: 10px;
        display: flex;
        justify-content: flex-end;
        gap: 8px;
    }

    .cookie-lv10__actions button {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-sm);
        background: var(--surface-1);
        color: var(--fg-on-page);
        padding: 7px 10px;
        cursor: pointer;
    }

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

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

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

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

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

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

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

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

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

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

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

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

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

.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    transition: color var(--anim-duration) var(--anim-ease);
    order: 1;
}

.logo:hover,
.logo:focus {
    color: var(--accent);
    outline: none;
}

.burger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 2.5rem;
    height: 2.5rem;
    padding: 0.5rem;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    border-radius: var(--radius-sm);
    order: 3;
}

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

.burger-btn[aria-expanded="true"] {
    background-color: var(--bg-alt);
}

.burger-line {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--fg-on-surface);
    border-radius: 1px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

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

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

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

.main-nav {
    order: 2;
}

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

.nav-link {
    color: var(--link);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}

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

.nav-link[aria-current="page"] {
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
}

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

    .main-nav {
        order: 4;
        flex-basis: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--anim-duration) var(--anim-ease);
    }

    .main-nav[data-visible="true"] {
        max-height: 300px;
    }

    .nav-list {
        flex-direction: column;
        padding-top: var(--space-y);
        gap: 0.5rem;
    }

    .nav-link {
        display: block;
        padding: 0.75rem 1rem;
        border-radius: var(--radius-sm);
    }
}

* {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: sans-serif;
    }
    footer {
        background-color: #1a1a1a;
        color: #f0f0f0;
        padding: 3rem 1.5rem 1.5rem;
        width: 100%;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto 2.5rem;
        display: flex;
        flex-direction: column;
        gap: 2.5rem;
    }
    @media (min-width: 768px) {
        .footer-container {
            flex-direction: row;
            justify-content: space-between;
        }
    }
    .footer-brand {
        flex: 1;
    }
    .footer-logo {
        font-size: 2rem;
        font-weight: 800;
        letter-spacing: 1px;
        color: #ffffff;
        margin-bottom: 0.5rem;
    }
    .footer-tagline {
        color: #b0b0b0;
        font-size: 0.95rem;
        line-height: 1.5;
    }
    .footer-content {
        flex: 2;
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }
    @media (min-width: 768px) {
        .footer-content {
            flex-direction: row;
            justify-content: flex-end;
            gap: 4rem;
        }
    }
    .footer-nav h3,
    .footer-legal h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
        color: #ffffff;
    }
    .footer-nav ul,
    .footer-legal ul {
        list-style: none;
    }
    .footer-nav li,
    .footer-legal li {
        margin-bottom: 0.7rem;
    }
    .footer-nav a,
    .footer-legal a {
        color: #cccccc;
        text-decoration: none;
        transition: color 0.2s ease;
        font-size: 0.95rem;
    }
    .footer-nav a:hover,
    .footer-legal a:hover {
        color: #ffffff;
        text-decoration: underline;
    }
    .footer-bottom {
        max-width: 1200px;
        margin: 0 auto;
        padding-top: 1.5rem;
        border-top: 1px solid #333;
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    @media (min-width: 768px) {
        .footer-bottom {
            flex-direction: row;
            justify-content: space-between;
            align-items: center;
            text-align: left;
        }
    }
    .footer-contacts {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        color: #b0b0b0;
        font-size: 0.9rem;
        order: 2;
    }
    @media (min-width: 768px) {
        .footer-contacts {
            order: 1;
        }
    }
    .footer-contacts address {
        font-style: normal;
    }
    .footer-contacts a {
        color: #b0b0b0;
        text-decoration: none;
    }
    .footer-contacts a:hover {
        color: #ffffff;
        text-decoration: underline;
    }
    .footer-disclaimer {
        color: #888;
        font-size: 0.8rem;
        line-height: 1.5;
        order: 1;
    }
    @media (min-width: 768px) {
        .footer-disclaimer {
            order: 2;
            max-width: 60%;
            text-align: right;
        }
    }
    #currentYear {
        font-weight: bold;
    }

.cookie-lv10 {
        position: fixed;
        right: var(--space-x);
        bottom: var(--space-y);
        width: min(420px, calc(100vw - (var(--space-x) * 2)));
        z-index: 1200;
    }

    .cookie-lv10__body {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-md);
        background: var(--bg-alt);
        color: var(--fg-on-page);
        padding: 12px;
        box-shadow: var(--shadow-sm);
    }

    .cookie-lv10__body p {
        margin: 0;
        color: var(--neutral-600);
    }

    .cookie-lv10__actions {
        margin-top: 10px;
        display: flex;
        justify-content: flex-end;
        gap: 8px;
    }

    .cookie-lv10__actions button {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-sm);
        background: var(--surface-1);
        color: var(--fg-on-page);
        padding: 7px 10px;
        cursor: pointer;
    }

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

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

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

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

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

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

    .terms-layout-e .rows {
        display: grid;
        gap: 10px;
    }

    .terms-layout-e article {
        border-left: 4px solid var(--brand);
        background: var(--surface-1);
        border-radius: var(--radius-sm);
        padding: 12px 12px 12px 14px;
        box-shadow: var(--shadow-sm);
    }

    .terms-layout-e .head h3 {
        margin: 0 0 8px;
    }

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

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

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

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

.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    transition: color var(--anim-duration) var(--anim-ease);
    order: 1;
}

.logo:hover,
.logo:focus {
    color: var(--accent);
    outline: none;
}

.burger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 2.5rem;
    height: 2.5rem;
    padding: 0.5rem;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    border-radius: var(--radius-sm);
    order: 3;
}

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

.burger-btn[aria-expanded="true"] {
    background-color: var(--bg-alt);
}

.burger-line {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--fg-on-surface);
    border-radius: 1px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

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

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

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

.main-nav {
    order: 2;
}

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

.nav-link {
    color: var(--link);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}

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

.nav-link[aria-current="page"] {
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
}

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

    .main-nav {
        order: 4;
        flex-basis: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--anim-duration) var(--anim-ease);
    }

    .main-nav[data-visible="true"] {
        max-height: 300px;
    }

    .nav-list {
        flex-direction: column;
        padding-top: var(--space-y);
        gap: 0.5rem;
    }

    .nav-link {
        display: block;
        padding: 0.75rem 1rem;
        border-radius: var(--radius-sm);
    }
}

* {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: sans-serif;
    }
    footer {
        background-color: #1a1a1a;
        color: #f0f0f0;
        padding: 3rem 1.5rem 1.5rem;
        width: 100%;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto 2.5rem;
        display: flex;
        flex-direction: column;
        gap: 2.5rem;
    }
    @media (min-width: 768px) {
        .footer-container {
            flex-direction: row;
            justify-content: space-between;
        }
    }
    .footer-brand {
        flex: 1;
    }
    .footer-logo {
        font-size: 2rem;
        font-weight: 800;
        letter-spacing: 1px;
        color: #ffffff;
        margin-bottom: 0.5rem;
    }
    .footer-tagline {
        color: #b0b0b0;
        font-size: 0.95rem;
        line-height: 1.5;
    }
    .footer-content {
        flex: 2;
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }
    @media (min-width: 768px) {
        .footer-content {
            flex-direction: row;
            justify-content: flex-end;
            gap: 4rem;
        }
    }
    .footer-nav h3,
    .footer-legal h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
        color: #ffffff;
    }
    .footer-nav ul,
    .footer-legal ul {
        list-style: none;
    }
    .footer-nav li,
    .footer-legal li {
        margin-bottom: 0.7rem;
    }
    .footer-nav a,
    .footer-legal a {
        color: #cccccc;
        text-decoration: none;
        transition: color 0.2s ease;
        font-size: 0.95rem;
    }
    .footer-nav a:hover,
    .footer-legal a:hover {
        color: #ffffff;
        text-decoration: underline;
    }
    .footer-bottom {
        max-width: 1200px;
        margin: 0 auto;
        padding-top: 1.5rem;
        border-top: 1px solid #333;
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    @media (min-width: 768px) {
        .footer-bottom {
            flex-direction: row;
            justify-content: space-between;
            align-items: center;
            text-align: left;
        }
    }
    .footer-contacts {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        color: #b0b0b0;
        font-size: 0.9rem;
        order: 2;
    }
    @media (min-width: 768px) {
        .footer-contacts {
            order: 1;
        }
    }
    .footer-contacts address {
        font-style: normal;
    }
    .footer-contacts a {
        color: #b0b0b0;
        text-decoration: none;
    }
    .footer-contacts a:hover {
        color: #ffffff;
        text-decoration: underline;
    }
    .footer-disclaimer {
        color: #888;
        font-size: 0.8rem;
        line-height: 1.5;
        order: 1;
    }
    @media (min-width: 768px) {
        .footer-disclaimer {
            order: 2;
            max-width: 60%;
            text-align: right;
        }
    }
    #currentYear {
        font-weight: bold;
    }

.cookie-lv10 {
        position: fixed;
        right: var(--space-x);
        bottom: var(--space-y);
        width: min(420px, calc(100vw - (var(--space-x) * 2)));
        z-index: 1200;
    }

    .cookie-lv10__body {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-md);
        background: var(--bg-alt);
        color: var(--fg-on-page);
        padding: 12px;
        box-shadow: var(--shadow-sm);
    }

    .cookie-lv10__body p {
        margin: 0;
        color: var(--neutral-600);
    }

    .cookie-lv10__actions {
        margin-top: 10px;
        display: flex;
        justify-content: flex-end;
        gap: 8px;
    }

    .cookie-lv10__actions button {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-sm);
        background: var(--surface-1);
        color: var(--fg-on-page);
        padding: 7px 10px;
        cursor: pointer;
    }

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

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

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

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

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

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

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

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

.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    transition: color var(--anim-duration) var(--anim-ease);
    order: 1;
}

.logo:hover,
.logo:focus {
    color: var(--accent);
    outline: none;
}

.burger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 2.5rem;
    height: 2.5rem;
    padding: 0.5rem;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    border-radius: var(--radius-sm);
    order: 3;
}

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

.burger-btn[aria-expanded="true"] {
    background-color: var(--bg-alt);
}

.burger-line {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--fg-on-surface);
    border-radius: 1px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

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

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

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

.main-nav {
    order: 2;
}

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

.nav-link {
    color: var(--link);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}

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

.nav-link[aria-current="page"] {
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
}

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

    .main-nav {
        order: 4;
        flex-basis: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--anim-duration) var(--anim-ease);
    }

    .main-nav[data-visible="true"] {
        max-height: 300px;
    }

    .nav-list {
        flex-direction: column;
        padding-top: var(--space-y);
        gap: 0.5rem;
    }

    .nav-link {
        display: block;
        padding: 0.75rem 1rem;
        border-radius: var(--radius-sm);
    }
}

* {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: sans-serif;
    }
    footer {
        background-color: #1a1a1a;
        color: #f0f0f0;
        padding: 3rem 1.5rem 1.5rem;
        width: 100%;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto 2.5rem;
        display: flex;
        flex-direction: column;
        gap: 2.5rem;
    }
    @media (min-width: 768px) {
        .footer-container {
            flex-direction: row;
            justify-content: space-between;
        }
    }
    .footer-brand {
        flex: 1;
    }
    .footer-logo {
        font-size: 2rem;
        font-weight: 800;
        letter-spacing: 1px;
        color: #ffffff;
        margin-bottom: 0.5rem;
    }
    .footer-tagline {
        color: #b0b0b0;
        font-size: 0.95rem;
        line-height: 1.5;
    }
    .footer-content {
        flex: 2;
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }
    @media (min-width: 768px) {
        .footer-content {
            flex-direction: row;
            justify-content: flex-end;
            gap: 4rem;
        }
    }
    .footer-nav h3,
    .footer-legal h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
        color: #ffffff;
    }
    .footer-nav ul,
    .footer-legal ul {
        list-style: none;
    }
    .footer-nav li,
    .footer-legal li {
        margin-bottom: 0.7rem;
    }
    .footer-nav a,
    .footer-legal a {
        color: #cccccc;
        text-decoration: none;
        transition: color 0.2s ease;
        font-size: 0.95rem;
    }
    .footer-nav a:hover,
    .footer-legal a:hover {
        color: #ffffff;
        text-decoration: underline;
    }
    .footer-bottom {
        max-width: 1200px;
        margin: 0 auto;
        padding-top: 1.5rem;
        border-top: 1px solid #333;
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    @media (min-width: 768px) {
        .footer-bottom {
            flex-direction: row;
            justify-content: space-between;
            align-items: center;
            text-align: left;
        }
    }
    .footer-contacts {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        color: #b0b0b0;
        font-size: 0.9rem;
        order: 2;
    }
    @media (min-width: 768px) {
        .footer-contacts {
            order: 1;
        }
    }
    .footer-contacts address {
        font-style: normal;
    }
    .footer-contacts a {
        color: #b0b0b0;
        text-decoration: none;
    }
    .footer-contacts a:hover {
        color: #ffffff;
        text-decoration: underline;
    }
    .footer-disclaimer {
        color: #888;
        font-size: 0.8rem;
        line-height: 1.5;
        order: 1;
    }
    @media (min-width: 768px) {
        .footer-disclaimer {
            order: 2;
            max-width: 60%;
            text-align: right;
        }
    }
    #currentYear {
        font-weight: bold;
    }

.cookie-lv10 {
        position: fixed;
        right: var(--space-x);
        bottom: var(--space-y);
        width: min(420px, calc(100vw - (var(--space-x) * 2)));
        z-index: 1200;
    }

    .cookie-lv10__body {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-md);
        background: var(--bg-alt);
        color: var(--fg-on-page);
        padding: 12px;
        box-shadow: var(--shadow-sm);
    }

    .cookie-lv10__body p {
        margin: 0;
        color: var(--neutral-600);
    }

    .cookie-lv10__actions {
        margin-top: 10px;
        display: flex;
        justify-content: flex-end;
        gap: 8px;
    }

    .cookie-lv10__actions button {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-sm);
        background: var(--surface-1);
        color: var(--fg-on-page);
        padding: 7px 10px;
        cursor: pointer;
    }

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

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

    .err-slab-f .chip {
        max-width: 760px;
        margin: 0 auto;
        text-align: center;
        padding: clamp(28px, 4vw, 46px);
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-on-surface-light);
        box-shadow: var(--shadow-sm);
        position: relative;
    }

    .err-slab-f .chip::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 6px;
        border-radius: var(--radius-lg) var(--radius-lg) 0 0;
        background: var(--gradient-accent);
    }

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

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

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